// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Input.Events; using osu.Framework.Threading; namespace osu.Game.Graphics.Containers { /// /// Represents a with the ability to expand/contract on hover. /// public class ExpandingContainer : Container, IExpandingContainer { private readonly float contractedWidth; private readonly float expandedWidth; public BindableBool Expanded { get; } = new BindableBool(); /// /// Delay before the container switches to expanded state from hover. /// protected virtual double HoverExpansionDelay => 0; protected override Container Content => FillFlow; protected FillFlowContainer FillFlow { get; } protected ExpandingContainer(float contractedWidth, float expandedWidth) { this.contractedWidth = contractedWidth; this.expandedWidth = expandedWidth; RelativeSizeAxes = Axes.Y; Width = contractedWidth; InternalChild = new OsuScrollContainer { RelativeSizeAxes = Axes.Both, ScrollbarVisible = false, Child = FillFlow = new FillFlowContainer { Origin = Anchor.CentreLeft, Anchor = Anchor.CentreLeft, RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, Direction = FillDirection.Vertical, }, }; } private ScheduledDelegate hoverExpandEvent; protected override void LoadComplete() { base.LoadComplete(); Expanded.BindValueChanged(v => { this.ResizeWidthTo(v.NewValue ? expandedWidth : contractedWidth, 500, Easing.OutQuint); }, true); } protected override bool OnHover(HoverEvent e) { updateHoverExpansion(); return true; } protected override bool OnMouseMove(MouseMoveEvent e) { updateHoverExpansion(); return base.OnMouseMove(e); } protected override void OnHoverLost(HoverLostEvent e) { if (hoverExpandEvent != null) { hoverExpandEvent?.Cancel(); hoverExpandEvent = null; Expanded.Value = false; return; } base.OnHoverLost(e); } private void updateHoverExpansion() { hoverExpandEvent?.Cancel(); if (IsHovered && !Expanded.Value) hoverExpandEvent = Scheduler.AddDelayed(() => Expanded.Value = true, HoverExpansionDelay); } } }