mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 15:27:25 +08:00
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using Humanizer;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Database;
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
namespace osu.Game.Collections
|
|
{
|
|
public class DeleteCollectionDialog : PopupDialog
|
|
{
|
|
public DeleteCollectionDialog(Live<BeatmapCollection> collection, Action deleteAction)
|
|
{
|
|
HeaderText = "Confirm deletion of";
|
|
BodyText = collection.PerformRead(c => $"{c.Name} ({"beatmap".ToQuantity(c.BeatmapMD5Hashes.Count)})");
|
|
|
|
Icon = FontAwesome.Regular.TrashAlt;
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
{
|
|
new PopupDialogOkButton
|
|
{
|
|
Text = @"Yes. Go for it.",
|
|
Action = deleteAction
|
|
},
|
|
new PopupDialogCancelButton
|
|
{
|
|
Text = @"No! Abort mission!",
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|