// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using System.Linq; using OpenTK; using OpenTK.Graphics; using osu.Framework.Allocation; using osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Primitives; using osu.Framework.Graphics.UserInterface; using osu.Framework.Input; namespace osu.Game.Graphics.UserInterface { public class OsuTabControl : TabControl { protected override DropDownMenu CreateDropDownMenu() => new OsuTabDropDownMenu(); protected override TabItem CreateTabItem(T value) => new OsuTabItem { Value = value }; protected override bool InternalContains(Vector2 screenSpacePos) => base.InternalContains(screenSpacePos) || DropDown.Contains(screenSpacePos); public OsuTabControl() { if (!typeof(T).IsEnum) throw new InvalidOperationException("OsuTabControl only supports enums as the generic type argument"); foreach (var val in (T[])Enum.GetValues(typeof(T))) AddItem(val); } [BackgroundDependencyLoader] private void load(OsuColour colours) { if (accentColour == null) AccentColour = colours.Blue; } private Color4? accentColour; public Color4 AccentColour { get { return accentColour.GetValueOrDefault(); } set { accentColour = value; var dropDown = DropDown as OsuTabDropDownMenu; if (dropDown != null) dropDown.AccentColour = value; foreach (var item in TabContainer.Children.OfType>()) item.AccentColour = value; } } public class OsuTabDropDownMenu : OsuDropDownMenu { protected override DropDownHeader CreateHeader() => new OsuTabDropDownHeader { AccentColour = AccentColour, Anchor = Anchor.TopRight, Origin = Anchor.TopRight, }; protected override DropDownMenuItem CreateDropDownItem(string key, T1 value) { var item = base.CreateDropDownItem(key, value); item.ForegroundColourHover = Color4.Black; return item; } public OsuTabDropDownMenu() { ContentContainer.Anchor = Anchor.TopRight; ContentContainer.Origin = Anchor.TopRight; RelativeSizeAxes = Axes.X; ContentBackground.Colour = Color4.Black.Opacity(0.7f); MaxDropDownHeight = 400; } public class OsuTabDropDownHeader : OsuDropDownHeader { public override Color4 AccentColour { get { return base.AccentColour; } set { base.AccentColour = value; Foreground.Colour = value; } } protected override bool OnHover(InputState state) { Foreground.Colour = BackgroundColour; return base.OnHover(state); } protected override void OnHoverLost(InputState state) { Foreground.Colour = BackgroundColourHover; base.OnHoverLost(state); } public OsuTabDropDownHeader() { RelativeSizeAxes = Axes.None; AutoSizeAxes = Axes.X; BackgroundColour = Color4.Black.Opacity(0.5f); Background.Height = 0.5f; Background.CornerRadius = 5; Background.Masking = true; Foreground.RelativeSizeAxes = Axes.None; Foreground.AutoSizeAxes = Axes.X; Foreground.RelativeSizeAxes = Axes.Y; Foreground.Margin = new MarginPadding(5); Foreground.Children = new Drawable[] { new TextAwesome { Icon = FontAwesome.fa_ellipsis_h, TextSize = 14, Origin = Anchor.Centre, Anchor = Anchor.Centre, } }; Padding = new MarginPadding { Left = 5, Right = 5 }; } } } } }