mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
dc9c474033
This allows tests to successfully retrieve rulesets, as they are referenced.
76 lines
2.6 KiB
C#
76 lines
2.6 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
internal class TestCaseDialogOverlay : OsuTestCase
|
|
{
|
|
public override string Description => @"Display dialogs";
|
|
|
|
public TestCaseDialogOverlay()
|
|
{
|
|
DialogOverlay overlay;
|
|
|
|
Add(overlay = new DialogOverlay());
|
|
|
|
AddStep("dialog #1", () => overlay.Push(new PopupDialog
|
|
{
|
|
Icon = FontAwesome.fa_trash_o,
|
|
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"),
|
|
},
|
|
},
|
|
}));
|
|
|
|
AddStep("dialog #2", () => overlay.Push(new PopupDialog
|
|
{
|
|
Icon = FontAwesome.fa_gear,
|
|
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",
|
|
},
|
|
},
|
|
}));
|
|
}
|
|
}
|
|
}
|