// Copyright (c) ppy Pty Ltd . 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 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 { 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); } } }