1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 07:42:52 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCasePopupDialog.cs

84 lines
2.9 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
using osu.Framework.Graphics;
using osu.Framework.Screens.Testing;
using osu.Game.Graphics;
using osu.Game.Overlays.Dialog;
namespace osu.Desktop.VisualTests.Tests
{
public class TestCasePopupDialog : TestCase
{
public override string Name => @"Popup Dialog";
public override string Description => @"With various dialogs";
public override void Reset()
{
base.Reset();
var firstDialog = new PopupDialog
{
RelativeSizeAxes = Axes.Both,
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
{
new PopupDialogOKButton
{
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-02-24 12:05:37 +08:00
};
var secondDialog = new PopupDialog
{
RelativeSizeAxes = Axes.Both,
Icon = FontAwesome.fa_gear,
HeaderText = @"What do you want to do with",
BodyText = "Camellia as \"Bang Riot\" - Blastix Riotz",
Buttons = new PopupDialogButton[]
{
new PopupDialogOKButton
{
2017-02-27 11:35:13 +08:00
Text = @"Manage collections",
2017-02-24 12:05:37 +08:00
},
new PopupDialogOKButton
{
2017-02-27 11:35:13 +08:00
Text = @"Delete...",
2017-02-24 12:05:37 +08:00
},
new PopupDialogOKButton
{
2017-02-27 11:35:13 +08:00
Text = @"Remove from unplayed",
2017-02-24 12:05:37 +08:00
},
new PopupDialogOKButton
{
2017-02-27 11:35:13 +08:00
Text = @"Clear local scores",
2017-02-24 12:05:37 +08:00
},
new PopupDialogOKButton
{
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
},
},
};
Add(firstDialog);
Add(secondDialog);
AddButton("dialog #1", firstDialog.ToggleVisibility);
AddButton("dialog #2", secondDialog.ToggleVisibility);
}
}
}