2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-02-28 06:09:36 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-27 10:29:27 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-02-28 03:19:28 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-03 01:28:05 +00:00
|
|
|
|
namespace osu.Game.Screens.Select
|
2017-02-28 03:19:28 +00:00
|
|
|
|
{
|
|
|
|
|
public class BeatmapDeleteDialog : PopupDialog
|
|
|
|
|
{
|
2017-07-27 07:56:41 +00:00
|
|
|
|
private BeatmapManager manager;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-02-28 06:09:36 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-07-27 07:56:41 +00:00
|
|
|
|
private void load(BeatmapManager beatmapManager)
|
2017-02-28 06:09:36 +00:00
|
|
|
|
{
|
2017-07-27 07:56:41 +00:00
|
|
|
|
manager = beatmapManager;
|
2017-02-28 06:09:36 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-31 06:49:56 +00:00
|
|
|
|
public BeatmapDeleteDialog(BeatmapSetInfo beatmap)
|
2017-02-28 03:19:28 +00:00
|
|
|
|
{
|
2022-01-04 05:35:18 +00:00
|
|
|
|
BodyText = $@"{beatmap.Metadata.Artist} - {beatmap.Metadata.Title}";
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-04-02 10:55:24 +00:00
|
|
|
|
Icon = FontAwesome.Regular.TrashAlt;
|
2017-02-28 03:19:28 +00:00
|
|
|
|
HeaderText = @"Confirm deletion of";
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
2022-04-04 17:22:53 +00:00
|
|
|
|
new PopupDialogDangerousButton
|
2017-02-28 03:19:28 +00:00
|
|
|
|
{
|
|
|
|
|
Text = @"Yes. Totally. Delete it.",
|
2021-11-04 07:11:23 +00:00
|
|
|
|
Action = () => manager?.Delete(beatmap),
|
2017-02-28 03:19:28 +00:00
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Firetruck, I didn't mean to!",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|