mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 09:37:24 +08:00
54 lines
1.8 KiB
C#
54 lines
1.8 KiB
C#
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||
|
// See the LICENCE file in the repository root for full licence text.
|
||
|
|
||
|
using NUnit.Framework;
|
||
|
using osu.Framework.Allocation;
|
||
|
using osu.Framework.Bindables;
|
||
|
using osu.Framework.Graphics;
|
||
|
using osu.Framework.Graphics.Containers;
|
||
|
using osu.Framework.Graphics.Shapes;
|
||
|
using osu.Game.Graphics;
|
||
|
using osu.Game.Overlays;
|
||
|
using osuTK;
|
||
|
|
||
|
namespace osu.Game.Tests.Visual.Settings
|
||
|
{
|
||
|
public class TestSceneRestoreDefaultValueButton : OsuTestScene
|
||
|
{
|
||
|
[Resolved]
|
||
|
private OsuColour colours { get; set; }
|
||
|
|
||
|
[Test]
|
||
|
public void TestBasic()
|
||
|
{
|
||
|
RestoreDefaultValueButton<bool> restoreDefaultValueButton = null;
|
||
|
|
||
|
AddStep("create button", () => Child = new Container
|
||
|
{
|
||
|
RelativeSizeAxes = Axes.Both,
|
||
|
Children = new Drawable[]
|
||
|
{
|
||
|
new Box
|
||
|
{
|
||
|
RelativeSizeAxes = Axes.Both,
|
||
|
Colour = colours.GreySeafoam
|
||
|
},
|
||
|
restoreDefaultValueButton = new RestoreDefaultValueButton<bool>
|
||
|
{
|
||
|
Anchor = Anchor.Centre,
|
||
|
Origin = Anchor.Centre,
|
||
|
Current = new BindableBool(),
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
AddSliderStep("set scale", 1, 4, 1, scale =>
|
||
|
{
|
||
|
if (restoreDefaultValueButton != null)
|
||
|
restoreDefaultValueButton.Scale = new Vector2(scale);
|
||
|
});
|
||
|
AddToggleStep("toggle default state", state => restoreDefaultValueButton.Current.Value = state);
|
||
|
AddToggleStep("toggle disabled state", state => restoreDefaultValueButton.Current.Disabled = state);
|
||
|
}
|
||
|
}
|
||
|
}
|