1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 02:47:37 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseDialogOverlay.cs

77 lines
2.6 KiB
C#
Raw Normal View History

2017-02-24 12:05:37 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-28 20:03:34 +08:00
using osu.Framework.Testing;
2017-02-24 12:05:37 +08:00
using osu.Game.Graphics;
using osu.Game.Overlays;
2017-02-24 12:05:37 +08:00
using osu.Game.Overlays.Dialog;
namespace osu.Desktop.VisualTests.Tests
{
2017-03-07 09:59:19 +08:00
internal class TestCaseDialogOverlay : TestCase
2017-02-24 12:05:37 +08:00
{
public override string Description => @"Display dialogs";
2017-02-24 12:05:37 +08:00
public TestCaseDialogOverlay()
2017-02-24 12:05:37 +08:00
{
2017-07-08 17:17:47 +08:00
DialogOverlay overlay;
2017-03-01 05:09:31 +08:00
Add(overlay = new DialogOverlay());
2017-03-31 16:55:07 +08:00
AddStep("dialog #1", () => overlay.Push(new PopupDialog
2017-02-24 12:05:37 +08:00
{
Icon = FontAwesome.fa_trash_o,
HeaderText = @"Confirm deletion of",
BodyText = @"Ayase Rie - Yuima-ru*World TVver.",
Buttons = new PopupDialogButton[]
2017-02-27 11:35:13 +08:00
{
2017-02-28 08:55:10 +08:00
new PopupDialogOkButton
2017-02-27 11:35:13 +08:00
{
Text = @"I never want to see this again.",
Action = () => System.Console.WriteLine(@"OK"),
},
new PopupDialogCancelButton
2017-02-24 12:05:37 +08:00
{
2017-02-27 11:35:13 +08:00
Text = @"Firetruck, I still want quick ranks!",
Action = () => System.Console.WriteLine(@"Cancel"),
2017-02-24 12:05:37 +08:00
},
2017-02-27 11:35:13 +08:00
},
}));
2017-03-31 16:55:07 +08:00
AddStep("dialog #2", () => overlay.Push(new PopupDialog
2017-02-24 12:05:37 +08:00
{
Icon = FontAwesome.fa_gear,
HeaderText = @"What do you want to do with",
BodyText = "Camellia as \"Bang Riot\" - Blastix Riotz",
Buttons = new PopupDialogButton[]
{
2017-02-28 08:55:10 +08:00
new PopupDialogOkButton
2017-02-24 12:05:37 +08:00
{
2017-02-27 11:35:13 +08:00
Text = @"Manage collections",
2017-02-24 12:05:37 +08:00
},
2017-02-28 08:55:10 +08:00
new PopupDialogOkButton
2017-02-24 12:05:37 +08:00
{
2017-02-27 11:35:13 +08:00
Text = @"Delete...",
2017-02-24 12:05:37 +08:00
},
2017-02-28 08:55:10 +08:00
new PopupDialogOkButton
2017-02-24 12:05:37 +08:00
{
2017-02-27 11:35:13 +08:00
Text = @"Remove from unplayed",
2017-02-24 12:05:37 +08:00
},
2017-02-28 08:55:10 +08:00
new PopupDialogOkButton
2017-02-24 12:05:37 +08:00
{
2017-02-27 11:35:13 +08:00
Text = @"Clear local scores",
2017-02-24 12:05:37 +08:00
},
2017-02-28 08:55:10 +08:00
new PopupDialogOkButton
2017-02-24 12:05:37 +08:00
{
2017-02-27 11:35:13 +08:00
Text = @"Edit",
2017-02-24 12:05:37 +08:00
},
new PopupDialogCancelButton
{
2017-02-27 11:35:13 +08:00
Text = @"Cancel",
2017-02-24 12:05:37 +08:00
},
},
}));
2017-02-24 12:05:37 +08:00
}
}
}