-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19455 from peppy/confirm-playlist-discard
Add confirmation dialog when about to discard a playlist
- Loading branch information
Showing
6 changed files
with
175 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// 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.Overlays.Dialog; | ||
|
||
namespace osu.Game.Screens.Menu | ||
{ | ||
public class ConfirmDiscardChangesDialog : PopupDialog | ||
{ | ||
/// <summary> | ||
/// Construct a new discard changes confirmation dialog. | ||
/// </summary> | ||
/// <param name="onConfirm">An action to perform on confirmation.</param> | ||
/// <param name="onCancel">An optional action to perform on cancel.</param> | ||
public ConfirmDiscardChangesDialog(Action onConfirm, Action? onCancel = null) | ||
{ | ||
HeaderText = "Are you sure you want to go back?"; | ||
BodyText = "This will discard any unsaved changes"; | ||
|
||
Icon = FontAwesome.Solid.ExclamationTriangle; | ||
|
||
Buttons = new PopupDialogButton[] | ||
{ | ||
new PopupDialogDangerousButton | ||
{ | ||
Text = @"Yes", | ||
Action = onConfirm | ||
}, | ||
new PopupDialogCancelButton | ||
{ | ||
Text = @"No I didn't mean to", | ||
Action = onCancel | ||
}, | ||
}; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters