2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
2023-02-27 21:57:59 +01:00
|
|
|
|
public partial class BeatmapDeleteDialog : DangerousActionDialog
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2022-07-23 21:20:27 +02:00
|
|
|
|
private readonly BeatmapSetInfo beatmapSet;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-07-23 21:20:27 +02:00
|
|
|
|
public BeatmapDeleteDialog(BeatmapSetInfo beatmapSet)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2022-07-23 21:20:27 +02:00
|
|
|
|
this.beatmapSet = beatmapSet;
|
|
|
|
|
BodyText = $@"{beatmapSet.Metadata.Artist} - {beatmapSet.Metadata.Title}";
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-23 21:20:27 +02:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(BeatmapManager beatmapManager)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2023-03-05 20:57:26 +01:00
|
|
|
|
DangerousAction = () => beatmapManager.Delete(beatmapSet);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|