2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-28 11:19:28 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-02-28 14:09:36 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-02-28 11:19:28 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
|
|
2017-03-03 09:28:05 +08:00
|
|
|
|
namespace osu.Game.Screens.Select
|
2017-02-28 11:19:28 +08:00
|
|
|
|
{
|
|
|
|
|
public class BeatmapDeleteDialog : PopupDialog
|
|
|
|
|
{
|
2017-07-27 15:56:41 +08:00
|
|
|
|
private BeatmapManager manager;
|
2017-02-28 14:09:36 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2017-07-27 15:56:41 +08:00
|
|
|
|
private void load(BeatmapManager beatmapManager)
|
2017-02-28 14:09:36 +08:00
|
|
|
|
{
|
2017-07-27 15:56:41 +08:00
|
|
|
|
manager = beatmapManager;
|
2017-02-28 14:09:36 +08:00
|
|
|
|
}
|
2017-02-28 11:19:28 +08:00
|
|
|
|
|
2017-08-31 14:49:56 +08:00
|
|
|
|
public BeatmapDeleteDialog(BeatmapSetInfo beatmap)
|
2017-02-28 11:19:28 +08:00
|
|
|
|
{
|
2017-08-31 14:49:56 +08:00
|
|
|
|
BodyText = $@"{beatmap.Metadata?.Artist} - {beatmap.Metadata?.Title}";
|
2017-03-07 09:59:19 +08:00
|
|
|
|
|
2017-02-28 11:19:28 +08:00
|
|
|
|
Icon = FontAwesome.fa_trash_o;
|
|
|
|
|
HeaderText = @"Confirm deletion of";
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Yes. Totally. Delete it.",
|
2017-08-31 14:49:56 +08:00
|
|
|
|
Action = () => manager.Delete(beatmap),
|
2017-02-28 11:19:28 +08:00
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Firetruck, I didn't mean to!",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|