1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 01:27:35 +08:00
osu-lazer/osu.Game/Overlays/Rankings/RankingsOverlayHeader.cs

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

44 lines
1.5 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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Bindables;
using osu.Game.Localisation;
2021-08-03 15:34:21 +08:00
using osu.Game.Resources.Localisation.Web;
2021-08-03 17:29:02 +08:00
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Rulesets;
using osu.Game.Users;
namespace osu.Game.Overlays.Rankings
{
public partial class RankingsOverlayHeader : TabControlOverlayHeader<RankingsScope>
{
2020-02-19 02:26:25 +08:00
public Bindable<RulesetInfo> Ruleset => rulesetSelector.Current;
2020-02-19 02:28:38 +08:00
2022-07-18 13:40:34 +08:00
public Bindable<CountryCode> Country => countryFilter.Current;
2020-02-19 02:26:25 +08:00
private OverlayRulesetSelector rulesetSelector;
private CountryFilter countryFilter;
protected override OverlayTitle CreateTitle() => new RankingsTitle();
protected override Drawable CreateTabControlContent() => rulesetSelector = new OverlayRulesetSelector();
2020-02-19 02:26:25 +08:00
protected override Drawable CreateContent() => countryFilter = new CountryFilter();
2020-02-04 01:32:20 +08:00
protected override Drawable CreateBackground() => new OverlayHeaderBackground("Headers/rankings");
2020-02-13 19:12:10 +08:00
private partial class RankingsTitle : OverlayTitle
{
public RankingsTitle()
{
2021-08-03 15:34:21 +08:00
Title = PageTitleStrings.MainRankingControllerDefault;
Description = NamedOverlayComponentStrings.RankingsDescription;
Icon = HexaconsIcons.Rankings;
}
}
}
}