// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Numerics; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.UserInterface; using osu.Framework.Localisation; using osu.Game.Graphics.Containers; using osu.Game.Graphics.Sprites; using Vector2 = osuTK.Vector2; namespace osu.Game.Graphics.UserInterface { /// /// An implementation for the UI slider bar control. /// public partial class ExpandableSlider : CompositeDrawable, IExpandable, IHasCurrentValue where T : struct, INumber, IMinMaxValue where TSlider : RoundedSliderBar, new() { private readonly OsuSpriteText label; private readonly TSlider slider; private LocalisableString contractedLabelText; /// /// The label text to display when this slider is in a contracted state. /// public LocalisableString ContractedLabelText { get => contractedLabelText; set { if (value == contractedLabelText) return; contractedLabelText = value; if (!Expanded.Value) label.Text = value; } } private LocalisableString expandedLabelText; /// /// The label text to display when this slider is in an expanded state. /// public LocalisableString ExpandedLabelText { get => expandedLabelText; set { if (value == expandedLabelText) return; expandedLabelText = value; if (Expanded.Value) label.Text = value; } } public Bindable Current { get => slider.Current; set => slider.Current = value; } /// /// A custom step value for each key press which actuates a change on this control. /// public float KeyboardStep { get => slider.KeyboardStep; set => slider.KeyboardStep = value; } public BindableBool Expanded { get; } = new BindableBool(); public override bool HandlePositionalInput => true; public ExpandableSlider() { RelativeSizeAxes = Axes.X; AutoSizeAxes = Axes.Y; InternalChild = new FillFlowContainer { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, Spacing = new Vector2(0f, 10f), Children = new Drawable[] { label = new OsuSpriteText(), slider = new TSlider { RelativeSizeAxes = Axes.X, }, } }; } [Resolved] private IExpandingContainer? expandingContainer { get; set; } protected override void LoadComplete() { base.LoadComplete(); expandingContainer?.Expanded.BindValueChanged(containerExpanded => { Expanded.Value = containerExpanded.NewValue; }, true); Expanded.BindValueChanged(v => { label.Text = v.NewValue ? expandedLabelText : contractedLabelText; slider.FadeTo(v.NewValue ? 1f : 0f, 500, Easing.OutQuint); slider.BypassAutoSizeAxes = !v.NewValue ? Axes.Y : Axes.None; }, true); } } /// /// An implementation for the UI slider bar control. /// public partial class ExpandableSlider : ExpandableSlider> where T : struct, INumber, IMinMaxValue { } }