osu/osu.Game/Overlays/Settings/SidebarButton.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.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 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
using osu.Framework.Allocation;
using osu.Framework.Input.Events;
using osu.Game.Graphics.UserInterface;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Overlays.Settings
2016-11-12 06:53:20 +00:00
{
public abstract partial class SidebarButton : OsuButton
2016-11-12 06:53:20 +00:00
{
protected const double FADE_DURATION = 500;
[Resolved]
protected OverlayColourProvider ColourProvider { get; private set; }
2018-04-13 09:19:50 +00:00
protected SidebarButton()
: base(HoverSampleSet.ButtonSidebar)
{
}
[BackgroundDependencyLoader]
private void load()
{
BackgroundColour = ColourProvider.Background5;
}
protected override void LoadComplete()
{
base.LoadComplete();
UpdateState();
FinishTransforms(true);
}
protected override bool OnHover(HoverEvent e)
{
UpdateState();
return false;
}
protected override void OnHoverLost(HoverLostEvent e) => UpdateState();
protected abstract void UpdateState();
2016-11-12 06:53:20 +00:00
}
}