1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 04:57:27 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarOverlayToggleButton.cs

78 lines
2.2 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.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
namespace osu.Game.Overlays.Toolbar
{
2022-11-24 13:32:20 +08:00
public partial class ToolbarOverlayToggleButton : ToolbarButton
2018-04-13 17:19:50 +08:00
{
private Box stateBackground;
2018-04-13 17:19:50 +08:00
private OverlayContainer stateContainer;
private readonly Bindable<Visibility> overlayState = new Bindable<Visibility>();
2018-04-13 17:19:50 +08:00
public OverlayContainer StateContainer
{
get => stateContainer;
2018-04-13 17:19:50 +08:00
set
{
stateContainer = value;
2019-04-01 11:16:05 +08:00
overlayState.UnbindBindings();
2018-04-13 17:19:50 +08:00
if (stateContainer != null)
{
Action = stateContainer.ToggleVisibility;
overlayState.BindTo(stateContainer.State);
2018-04-13 17:19:50 +08:00
}
if (stateContainer is INamedOverlayComponent named)
{
TooltipMain = named.Title;
TooltipSub = named.Description;
SetIcon(named.Icon);
}
2018-04-13 17:19:50 +08:00
}
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
2018-04-13 17:19:50 +08:00
{
BackgroundContent.Add(stateBackground = new Box
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
Colour = colours.Carmine.Opacity(180),
2019-08-21 12:29:50 +08:00
Blending = BlendingParameters.Additive,
Depth = float.MaxValue,
2018-04-13 17:19:50 +08:00
Alpha = 0,
});
overlayState.ValueChanged += stateChanged;
2018-04-13 17:19:50 +08:00
}
private void stateChanged(ValueChangedEvent<Visibility> state)
2018-04-13 17:19:50 +08:00
{
switch (state.NewValue)
2018-04-13 17:19:50 +08:00
{
case Visibility.Hidden:
stateBackground.FadeOut(200, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
break;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
case Visibility.Visible:
stateBackground.FadeIn(200, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
break;
}
}
}
}