1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:47:25 +08:00
osu-lazer/osu.Game.Tests/Visual/UserInterface/TestSceneDialogOverlay.cs

80 lines
2.6 KiB
C#
Raw Normal View History

// 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 17:19:50 +08:00
using NUnit.Framework;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Overlays;
using osu.Game.Overlays.Dialog;
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.UserInterface
2018-04-13 17:19:50 +08:00
{
[TestFixture]
public class TestSceneDialogOverlay : OsuTestScene
2018-04-13 17:19:50 +08:00
{
public TestSceneDialogOverlay()
2018-04-13 17:19:50 +08:00
{
DialogOverlay overlay;
Add(overlay = new DialogOverlay());
2019-09-13 14:27:29 +08:00
AddStep("dialog #1", () => overlay.Push(new TestPopupDialog
2018-04-13 17:19:50 +08:00
{
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Regular.TrashAlt,
2018-04-13 17:19:50 +08:00
HeaderText = @"Confirm deletion of",
BodyText = @"Ayase Rie - Yuima-ru*World TVver.",
Buttons = new PopupDialogButton[]
{
new PopupDialogOkButton
{
Text = @"I never want to see this again.",
Action = () => System.Console.WriteLine(@"OK"),
},
new PopupDialogCancelButton
{
Text = @"Firetruck, I still want quick ranks!",
Action = () => System.Console.WriteLine(@"Cancel"),
},
},
}));
2019-09-13 14:27:29 +08:00
AddStep("dialog #2", () => overlay.Push(new TestPopupDialog
2018-04-13 17:19:50 +08:00
{
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Solid.Cog,
2018-04-13 17:19:50 +08:00
HeaderText = @"What do you want to do with",
BodyText = "Camellia as \"Bang Riot\" - Blastix Riotz",
Buttons = new PopupDialogButton[]
{
new PopupDialogOkButton
{
Text = @"Manage collections",
},
new PopupDialogOkButton
{
Text = @"Delete...",
},
new PopupDialogOkButton
{
Text = @"Remove from unplayed",
},
new PopupDialogOkButton
{
Text = @"Clear local scores",
},
new PopupDialogOkButton
{
Text = @"Edit",
},
new PopupDialogCancelButton
{
Text = @"Cancel",
},
},
}));
}
2019-09-13 14:27:29 +08:00
private class TestPopupDialog : PopupDialog
{
}
2018-04-13 17:19:50 +08:00
}
}