// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics; using osu.Framework.Bindables; using osu.Game.Graphics.UserInterface; using osu.Game.Rulesets; using osu.Game.Users; namespace osu.Game.Overlays.Rankings { public class RankingsOverlayHeader : TabControlOverlayHeader { public Bindable Ruleset => rulesetSelector.Current; public Bindable Country => countryFilter.Current; private OverlayRulesetSelector rulesetSelector; private CountryFilter countryFilter; protected override ScreenTitle CreateTitle() => new RankingsTitle { Scope = { BindTarget = Current } }; protected override Drawable CreateTitleContent() => rulesetSelector = new OverlayRulesetSelector(); protected override Drawable CreateContent() => countryFilter = new CountryFilter(); private class RankingsTitle : ScreenTitle { public readonly Bindable Scope = new Bindable(); public RankingsTitle() { Title = "ranking"; } protected override void LoadComplete() { base.LoadComplete(); Scope.BindValueChanged(scope => Section = scope.NewValue.ToString().ToLowerInvariant(), true); } protected override Drawable CreateIcon() => new ScreenTitleTextureIcon(@"Icons/rankings"); } } public enum RankingsScope { Performance, Spotlights, Score, Country } }