2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// 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.Game.Graphics.Sprites;
|
2017-05-08 02:35:57 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2017-08-23 11:48:53 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public abstract class SettingsSubsection : FillFlowContainer, IHasFilterableChildren
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
2017-08-23 11:48:53 +08:00
|
|
|
|
protected override Container<Drawable> Content => FlowContent;
|
2017-03-09 13:25:49 +08:00
|
|
|
|
|
2017-08-23 11:48:53 +08:00
|
|
|
|
protected readonly FillFlowContainer FlowContent;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
|
|
|
|
|
protected abstract string Header { get; }
|
|
|
|
|
|
2017-05-08 02:35:57 +08:00
|
|
|
|
public IEnumerable<IFilterable> FilterableChildren => Children.OfType<IFilterable>();
|
2017-09-13 22:18:02 +08:00
|
|
|
|
public IEnumerable<string> FilterTerms => new[] { Header };
|
2017-05-30 15:33:26 +08:00
|
|
|
|
public bool MatchingFilter
|
2017-05-08 02:35:57 +08:00
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-07-15 00:18:12 +08:00
|
|
|
|
this.FadeTo(value ? 1 : 0);
|
2017-05-08 02:35:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
protected SettingsSubsection()
|
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-08-23 11:48:53 +08:00
|
|
|
|
|
|
|
|
|
FlowContent = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Spacing = new Vector2(0, 5),
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2017-07-11 21:58:06 +08:00
|
|
|
|
AddRangeInternal(new Drawable[]
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = Header.ToUpper(),
|
2017-10-21 10:12:11 +08:00
|
|
|
|
Margin = new MarginPadding { Bottom = 10, Left = SettingsOverlay.CONTENT_MARGINS, Right = SettingsOverlay.CONTENT_MARGINS },
|
2017-02-07 12:52:19 +08:00
|
|
|
|
Font = @"Exo2.0-Black",
|
|
|
|
|
},
|
2017-08-23 11:48:53 +08:00
|
|
|
|
FlowContent
|
2017-02-07 12:52:19 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|