mirror of
https://github.com/SK-la/Ez2Lazer.git
synced 2026-03-13 11:20:28 +00:00
71 lines
2.2 KiB
C#
71 lines
2.2 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 osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Cursor;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Graphics.Cursor;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Tests.Visual.SongSelect
|
|
{
|
|
public abstract partial class SongSelectComponentsTestScene : OsuManualInputManagerTestScene
|
|
{
|
|
[Cached]
|
|
protected readonly OverlayColourProvider ColourProvider = new OverlayColourProvider(OverlayColourScheme.Aquamarine);
|
|
|
|
protected override Container<Drawable> Content { get; } = new OsuContextMenuContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
};
|
|
|
|
private Container? resizeContainer;
|
|
|
|
protected virtual Anchor ComponentAnchor => Anchor.TopLeft;
|
|
protected virtual float InitialRelativeWidth => 0.5f;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
base.Content.Child = new PopoverContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Child = resizeContainer = new Container
|
|
{
|
|
Anchor = ComponentAnchor,
|
|
Origin = ComponentAnchor,
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Width = InitialRelativeWidth,
|
|
Child = Content
|
|
}
|
|
};
|
|
|
|
AddSliderStep("change relative width", 0, 1f, InitialRelativeWidth, v =>
|
|
{
|
|
if (resizeContainer != null)
|
|
resizeContainer.Width = v;
|
|
});
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
ChangeBackgroundColour(ColourProvider.Background6);
|
|
}
|
|
|
|
[SetUpSteps]
|
|
public virtual void SetUpSteps()
|
|
{
|
|
AddStep("reset dependencies", () =>
|
|
{
|
|
Beatmap.SetDefault();
|
|
SelectedMods.SetDefault();
|
|
});
|
|
}
|
|
}
|
|
}
|