2020-09-09 18:31:18 +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.Overlays.Dialog;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit
|
|
|
|
{
|
|
|
|
public class PromptForSaveDialog : PopupDialog
|
|
|
|
{
|
2021-09-06 01:11:46 +08:00
|
|
|
public PromptForSaveDialog(Action exit, Action saveAndExit, Action cancel)
|
2020-09-09 18:31:18 +08:00
|
|
|
{
|
|
|
|
HeaderText = "Did you want to save your changes?";
|
|
|
|
|
|
|
|
Icon = FontAwesome.Regular.Save;
|
|
|
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
{
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
{
|
|
|
|
Text = @"Save my masterpiece!",
|
|
|
|
Action = saveAndExit
|
|
|
|
},
|
|
|
|
new PopupDialogOkButton
|
|
|
|
{
|
|
|
|
Text = @"Forget all changes",
|
|
|
|
Action = exit
|
|
|
|
},
|
2020-09-09 19:00:38 +08:00
|
|
|
new PopupDialogCancelButton
|
|
|
|
{
|
|
|
|
Text = @"Oops, continue editing",
|
2021-09-06 01:11:46 +08:00
|
|
|
Action = cancel
|
2020-09-09 19:00:38 +08:00
|
|
|
},
|
2020-09-09 18:31:18 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|