1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 01:07:42 +08:00
osu-lazer/osu.Game/Overlays/Options/OptionsSubsection.cs

57 lines
1.7 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-02-07 12:52:19 +08:00
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
using osu.Game.Graphics.Sprites;
using System.Collections.Generic;
using System.Linq;
2017-02-07 12:52:19 +08:00
namespace osu.Game.Overlays.Options
{
public abstract class OptionsSubsection : FillFlowContainer, IHasFilterableChildren
2017-02-07 12:52:19 +08:00
{
protected override Container<Drawable> Content => content;
private readonly Container<Drawable> content;
2017-02-07 12:52:19 +08:00
protected abstract string Header { get; }
public IEnumerable<IFilterable> FilterableChildren => Children.OfType<IFilterable>();
public string[] FilterTerms => new[] { Header };
public bool MatchingCurrentFilter
{
set
{
FadeTo(value ? 1 : 0);
}
}
2017-03-09 13:01:08 +08:00
protected OptionsSubsection()
2017-02-07 12:52:19 +08:00
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Vertical;
2017-02-07 12:52:19 +08:00
AddInternal(new Drawable[]
{
new OsuSpriteText
{
Text = Header.ToUpper(),
Margin = new MarginPadding { Bottom = 10 },
Font = @"Exo2.0-Black",
},
content = new FillFlowContainer
2017-02-07 12:52:19 +08:00
{
2017-03-04 18:00:17 +08:00
Direction = FillDirection.Vertical,
2017-03-02 02:33:01 +08:00
Spacing = new Vector2(0, 5),
2017-02-07 12:52:19 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
},
});
}
}
}