2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
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.Overlays.Dialog;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-03-03 09:28:05 +08:00
|
|
|
|
namespace osu.Game.Screens.Select
|
2017-02-28 11:19:28 +08:00
|
|
|
|
{
|
2022-07-24 03:20:27 +08:00
|
|
|
|
public class BeatmapDeleteDialog : DeleteConfirmationDialog
|
2017-02-28 11:19:28 +08:00
|
|
|
|
{
|
2022-07-24 03:20:27 +08:00
|
|
|
|
private readonly BeatmapSetInfo beatmapSet;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-07-24 03:20:27 +08:00
|
|
|
|
public BeatmapDeleteDialog(BeatmapSetInfo beatmapSet)
|
2017-02-28 14:09:36 +08:00
|
|
|
|
{
|
2022-07-24 03:20:27 +08:00
|
|
|
|
this.beatmapSet = beatmapSet;
|
|
|
|
|
BodyText = $@"{beatmapSet.Metadata.Artist} - {beatmapSet.Metadata.Title}";
|
2017-02-28 14:09:36 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-07-24 03:20:27 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(BeatmapManager beatmapManager)
|
2017-02-28 11:19:28 +08:00
|
|
|
|
{
|
2022-07-24 03:20:27 +08:00
|
|
|
|
DeleteAction = () => beatmapManager.Delete(beatmapSet);
|
2017-02-28 11:19:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|