1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 02:07:24 +08:00
osu-lazer/osu.Desktop.Tests/Visual/TestCaseReplaySettingsOverlay.cs

53 lines
1.5 KiB
C#
Raw Normal View History

2017-05-19 01:21:58 +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;
2017-05-19 22:28:01 +08:00
using osu.Game.Graphics.UserInterface;
2017-06-05 15:47:42 +08:00
using osu.Game.Screens.Play;
2017-05-22 14:07:08 +08:00
using osu.Game.Screens.Play.ReplaySettings;
2017-05-19 01:21:58 +08:00
namespace osu.Desktop.Tests.Visual
2017-05-19 01:21:58 +08:00
{
internal class TestCaseReplaySettingsOverlay : OsuTestCase
2017-05-19 01:21:58 +08:00
{
public override string Description => @"Settings visible in replay/auto";
public TestCaseReplaySettingsOverlay()
2017-05-19 01:21:58 +08:00
{
2017-07-08 17:17:47 +08:00
ExampleContainer container;
Add(new ReplaySettingsOverlay
2017-05-19 01:21:58 +08:00
{
2017-05-19 22:28:01 +08:00
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
2017-05-19 01:21:58 +08:00
});
2017-05-19 22:28:01 +08:00
Add(container = new ExampleContainer());
AddStep(@"Add button", () => container.Add(new OsuButton
{
RelativeSizeAxes = Axes.X,
Text = @"Button",
}));
2017-06-05 15:47:42 +08:00
AddStep(@"Add checkbox", () => container.Add(new ReplayCheckbox
2017-05-19 22:28:01 +08:00
{
LabelText = "Checkbox",
}));
AddStep(@"Add textbox", () => container.Add(new FocusedTextBox
{
RelativeSizeAxes = Axes.X,
Height = 30,
PlaceholderText = "Textbox",
HoldFocus = false,
}));
}
2017-06-05 15:47:42 +08:00
private class ExampleContainer : ReplayGroup
2017-05-19 22:28:01 +08:00
{
2017-05-28 05:56:11 +08:00
protected override string Title => @"example";
2017-05-19 01:21:58 +08:00
}
}
}