mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 11:27:24 +08:00
45 lines
1.4 KiB
C#
45 lines
1.4 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 OpenTK;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Overlays.Options
|
|
{
|
|
public abstract class OptionsSubsection : FlowContainer
|
|
{
|
|
private Container<Drawable> content;
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
protected abstract string Header { get; }
|
|
|
|
public OptionsSubsection()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
Direction = FlowDirections.Vertical;
|
|
AddInternal(new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Text = Header.ToUpper(),
|
|
Margin = new MarginPadding { Bottom = 10 },
|
|
Font = @"Exo2.0-Black",
|
|
},
|
|
content = new FlowContainer
|
|
{
|
|
Direction = FlowDirections.Vertical,
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Spacing = new Vector2(0, 5),
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|