mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:58:21 +08:00
51 lines
1.5 KiB
C#
51 lines
1.5 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.Framework.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Screens.Play.HUD;
|
|
using osu.Game.Screens.Play.ReplaySettings;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
public class TestCaseReplaySettingsOverlay : OsuTestCase
|
|
{
|
|
public TestCaseReplaySettingsOverlay()
|
|
{
|
|
ExampleContainer container;
|
|
|
|
Add(new ReplaySettingsOverlay
|
|
{
|
|
Anchor = Anchor.TopRight,
|
|
Origin = Anchor.TopRight,
|
|
});
|
|
|
|
Add(container = new ExampleContainer());
|
|
|
|
AddStep(@"Add button", () => container.Add(new TriangleButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Text = @"Button",
|
|
}));
|
|
|
|
AddStep(@"Add checkbox", () => container.Add(new ReplayCheckbox
|
|
{
|
|
LabelText = "Checkbox",
|
|
}));
|
|
|
|
AddStep(@"Add textbox", () => container.Add(new FocusedTextBox
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 30,
|
|
PlaceholderText = "Textbox",
|
|
HoldFocus = false,
|
|
}));
|
|
}
|
|
|
|
private class ExampleContainer : ReplayGroup
|
|
{
|
|
protected override string Title => @"example";
|
|
}
|
|
}
|
|
}
|