2020-10-06 14:17:15 +08:00
|
|
|
// 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.Game.Graphics;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Setup
|
|
|
|
{
|
|
|
|
internal class SetupSection : Container
|
|
|
|
{
|
2020-10-06 18:26:57 +08:00
|
|
|
private readonly FillFlowContainer flow;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
protected OsuColour Colours { get; private set; }
|
|
|
|
|
|
|
|
[Resolved]
|
2021-01-04 15:47:08 +08:00
|
|
|
protected EditorBeatmap Beatmap { get; private set; }
|
2020-10-06 14:17:15 +08:00
|
|
|
|
2020-10-06 18:26:57 +08:00
|
|
|
protected override Container<Drawable> Content => flow;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
|
|
|
public SetupSection()
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
Padding = new MarginPadding(10);
|
|
|
|
|
2020-10-06 18:26:57 +08:00
|
|
|
InternalChild = flow = new FillFlowContainer
|
2020-10-06 14:17:15 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Spacing = new Vector2(20),
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|