2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-11-20 07:51:59 +00:00
|
|
|
|
using osuTK;
|
2017-02-07 04:52:19 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2017-05-07 18:35:57 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-08-23 03:48:53 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2021-07-15 03:50:34 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
2019-02-12 04:04:46 +00:00
|
|
|
|
using osu.Game.Graphics;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-05-15 01:55:29 +00:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
2022-11-16 06:54:52 +00:00
|
|
|
|
public abstract partial class SettingsSubsection : FillFlowContainer, IFilterable
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
2017-08-23 03:48:53 +00:00
|
|
|
|
protected override Container<Drawable> Content => FlowContent;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-23 03:48:53 +00:00
|
|
|
|
protected readonly FillFlowContainer FlowContent;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-07-15 03:50:34 +00:00
|
|
|
|
protected abstract LocalisableString Header { get; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-05-16 05:09:37 +00:00
|
|
|
|
public virtual IEnumerable<LocalisableString> FilterTerms => new[] { Header };
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2017-05-30 07:33:26 +00:00
|
|
|
|
public bool MatchingFilter
|
2017-05-07 18:35:57 +00:00
|
|
|
|
{
|
2019-02-28 04:58:19 +00:00
|
|
|
|
set => this.FadeTo(value ? 1 : 0);
|
2017-05-07 18:35:57 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-28 15:29:07 +00:00
|
|
|
|
public bool FilteringActive { get; set; }
|
|
|
|
|
|
2017-05-15 01:55:29 +00:00
|
|
|
|
protected SettingsSubsection()
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2017-03-04 10:00:17 +00:00
|
|
|
|
Direction = FillDirection.Vertical;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-08-23 03:48:53 +00:00
|
|
|
|
FlowContent = new FillFlowContainer
|
|
|
|
|
{
|
2021-10-09 17:54:20 +00:00
|
|
|
|
Margin = new MarginPadding { Top = SettingsSection.ITEM_SPACING },
|
2017-08-23 03:48:53 +00:00
|
|
|
|
Direction = FillDirection.Vertical,
|
2021-10-09 17:54:20 +00:00
|
|
|
|
Spacing = new Vector2(0, SettingsSection.ITEM_SPACING),
|
2017-08-23 03:48:53 +00:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-09 17:54:20 +00:00
|
|
|
|
private const int header_height = 43;
|
|
|
|
|
private const int header_font_size = 20;
|
|
|
|
|
|
2017-08-23 03:48:53 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2017-07-11 13:58:06 +00:00
|
|
|
|
AddRangeInternal(new Drawable[]
|
2017-02-07 04:52:19 +00:00
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
2021-10-09 17:54:20 +00:00
|
|
|
|
Text = Header,
|
|
|
|
|
Margin = new MarginPadding { Vertical = (header_height - header_font_size) * 0.5f, Horizontal = SettingsPanel.CONTENT_MARGINS },
|
|
|
|
|
Font = OsuFont.GetFont(size: header_font_size),
|
2017-02-07 04:52:19 +00:00
|
|
|
|
},
|
2017-08-23 03:48:53 +00:00
|
|
|
|
FlowContent
|
2017-02-07 04:52:19 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|