1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 04:07:25 +08:00
osu-lazer/osu.Game/Overlays/Settings/SettingsSubsection.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
2.2 KiB
C#
Raw Normal View History

// 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 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2018-11-20 15:51:59 +08:00
using osuTK;
2017-02-07 12:52:19 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Localisation;
using osu.Framework.Testing;
using osu.Game.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings
2017-02-07 12:52:19 +08:00
{
[ExcludeFromDynamicCompile]
public abstract partial class SettingsSubsection : FillFlowContainer, IFilterable
2017-02-07 12:52:19 +08:00
{
protected override Container<Drawable> Content => FlowContent;
2018-04-13 17:19:50 +08:00
protected readonly FillFlowContainer FlowContent;
2018-04-13 17:19:50 +08:00
protected abstract LocalisableString Header { get; }
2018-04-13 17:19:50 +08:00
public virtual IEnumerable<LocalisableString> FilterTerms => new[] { Header };
2019-02-28 12:31:40 +08:00
2017-05-30 15:33:26 +08:00
public bool MatchingFilter
{
set => this.FadeTo(value ? 1 : 0);
}
2018-04-13 17:19:50 +08:00
2019-03-28 23:29:07 +08:00
public bool FilteringActive { get; set; }
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;
2018-04-13 17:19:50 +08:00
FlowContent = new FillFlowContainer
{
Margin = new MarginPadding { Top = SettingsSection.ITEM_SPACING },
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, SettingsSection.ITEM_SPACING),
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
};
}
2018-04-13 17:19:50 +08:00
private const int header_height = 43;
private const int header_font_size = 20;
[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,
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 12:52:19 +08:00
},
FlowContent
2017-02-07 12:52:19 +08:00
});
}
}
}