2020-01-18 06:36:14 +08:00
|
|
|
|
// 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;
|
2020-01-20 03:57:39 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
|
using osuTK.Graphics;
|
2020-01-18 06:36:14 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections
|
|
|
|
|
{
|
2020-01-20 03:57:39 +08:00
|
|
|
|
public class ProfileItemContainer : Container
|
2020-01-18 06:36:14 +08:00
|
|
|
|
{
|
2020-01-20 03:57:39 +08:00
|
|
|
|
private const int hover_duration = 200;
|
|
|
|
|
|
2020-01-18 06:36:14 +08:00
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
|
|
|
|
|
private readonly Box background;
|
|
|
|
|
private readonly Container content;
|
|
|
|
|
|
2020-02-29 04:09:49 +08:00
|
|
|
|
private Color4 idleColour;
|
|
|
|
|
|
2020-03-05 04:19:26 +08:00
|
|
|
|
protected Color4 IdleColour
|
2020-02-29 04:09:49 +08:00
|
|
|
|
{
|
|
|
|
|
get => idleColour;
|
2020-03-05 04:19:26 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
idleColour = value;
|
|
|
|
|
if (!IsHovered)
|
|
|
|
|
background.Colour = value;
|
|
|
|
|
}
|
2020-02-29 04:09:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-05 04:19:26 +08:00
|
|
|
|
private Color4 hoverColour;
|
|
|
|
|
|
|
|
|
|
protected Color4 HoverColour
|
|
|
|
|
{
|
|
|
|
|
get => hoverColour;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
hoverColour = value;
|
|
|
|
|
if (IsHovered)
|
|
|
|
|
background.Colour = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-29 04:09:49 +08:00
|
|
|
|
|
2020-01-20 03:48:11 +08:00
|
|
|
|
public ProfileItemContainer()
|
2020-01-18 06:36:14 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Masking = true;
|
|
|
|
|
CornerRadius = 6;
|
|
|
|
|
|
2020-01-20 03:57:39 +08:00
|
|
|
|
AddRangeInternal(new Drawable[]
|
2020-01-18 06:36:14 +08:00
|
|
|
|
{
|
|
|
|
|
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)
|
2020-01-18 06:36:14 +08:00
|
|
|
|
{
|
2020-02-29 04:09:49 +08:00
|
|
|
|
IdleColour = colourProvider.Background3;
|
|
|
|
|
HoverColour = colourProvider.Background2;
|
2020-01-20 03:57:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
|
|
|
{
|
2020-02-29 04:09:49 +08:00
|
|
|
|
background.FadeColour(HoverColour, hover_duration, Easing.OutQuint);
|
2020-01-20 03:57:39 +08:00
|
|
|
|
return base.OnHover(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
|
|
|
{
|
|
|
|
|
base.OnHoverLost(e);
|
2020-02-29 04:09:49 +08:00
|
|
|
|
background.FadeColour(IdleColour, hover_duration, Easing.OutQuint);
|
2020-01-18 06:36:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|