1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 22:47:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/ProfileItemContainer.cs

90 lines
2.3 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.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input.Events;
using osuTK.Graphics;
namespace osu.Game.Overlays.Profile.Sections
{
public class ProfileItemContainer : Container
{
private const int hover_duration = 200;
protected override Container<Drawable> Content => content;
private readonly Box background;
private readonly Container content;
private Color4 idleColour;
2020-03-05 04:19:26 +08:00
protected Color4 IdleColour
{
get => idleColour;
2020-03-05 04:19:26 +08:00
set
{
idleColour = value;
2020-03-06 06:10:14 +08:00
fadeBackgroundColour();
2020-03-05 04:19:26 +08:00
}
}
2020-03-05 04:19:26 +08:00
private Color4 hoverColour;
protected Color4 HoverColour
{
get => hoverColour;
set
{
hoverColour = value;
2020-03-06 06:10:14 +08:00
fadeBackgroundColour();
2020-03-05 04:19:26 +08:00
}
}
public ProfileItemContainer()
{
RelativeSizeAxes = Axes.Both;
Masking = true;
CornerRadius = 6;
AddRangeInternal(new Drawable[]
{
background = new Box
{
RelativeSizeAxes = Axes.Both,
},
content = new Container
{
RelativeSizeAxes = Axes.Both,
}
});
}
[BackgroundDependencyLoader]
2020-01-27 17:55:19 +08:00
private void load(OverlayColourProvider colourProvider)
{
IdleColour = colourProvider.Background3;
HoverColour = colourProvider.Background2;
}
protected override bool OnHover(HoverEvent e)
{
2020-03-06 06:10:14 +08:00
fadeBackgroundColour(hover_duration);
2020-03-06 06:15:53 +08:00
return true;
}
protected override void OnHoverLost(HoverLostEvent e)
{
base.OnHoverLost(e);
2020-03-06 06:10:14 +08:00
fadeBackgroundColour(hover_duration);
}
private void fadeBackgroundColour(double fadeDuration = 0)
{
background.FadeColour(IsHovered ? HoverColour : IdleColour, fadeDuration, Easing.OutQuint);
}
}
}