2022-07-24 03:20:27 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Game.Localisation;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Dialog
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Base class for various confirmation dialogs that concern deletion actions.
|
|
|
|
/// Differs from <see cref="ConfirmDialog"/> in that the confirmation button is a "dangerous" one
|
|
|
|
/// (requires the confirm button to be held).
|
|
|
|
/// </summary>
|
2022-11-24 13:32:20 +08:00
|
|
|
public abstract partial class DeleteConfirmationDialog : PopupDialog
|
2022-07-24 03:20:27 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The action which performs the deletion.
|
|
|
|
/// </summary>
|
|
|
|
protected Action? DeleteAction { get; set; }
|
|
|
|
|
|
|
|
protected DeleteConfirmationDialog()
|
|
|
|
{
|
|
|
|
HeaderText = DeleteConfirmationDialogStrings.HeaderText;
|
|
|
|
|
|
|
|
Icon = FontAwesome.Regular.TrashAlt;
|
|
|
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
{
|
|
|
|
new PopupDialogDangerousButton
|
|
|
|
{
|
|
|
|
Text = DeleteConfirmationDialogStrings.Confirm,
|
|
|
|
Action = () => DeleteAction?.Invoke()
|
|
|
|
},
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
{
|
|
|
|
Text = DeleteConfirmationDialogStrings.Cancel
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|