mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 07:27:25 +08:00
87 lines
2.2 KiB
C#
87 lines
2.2 KiB
C#
// 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 osuTK;
|
|
using osuTK.Graphics;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Input.Events;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class IconButton : OsuAnimatedButton
|
|
{
|
|
public const float DEFAULT_BUTTON_SIZE = 30;
|
|
|
|
private Color4? iconColour;
|
|
|
|
/// <summary>
|
|
/// The icon colour. This does not affect <see cref="Drawable.Colour">Colour</see>.
|
|
/// </summary>
|
|
public Color4 IconColour
|
|
{
|
|
get => iconColour ?? Color4.White;
|
|
set
|
|
{
|
|
iconColour = value;
|
|
icon.Colour = value;
|
|
}
|
|
}
|
|
|
|
private Color4? iconHoverColour;
|
|
|
|
/// <summary>
|
|
/// The icon colour while the <see cref="IconButton"/> is hovered.
|
|
/// </summary>
|
|
public Color4 IconHoverColour
|
|
{
|
|
get => iconHoverColour ?? IconColour;
|
|
set => iconHoverColour = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The icon.
|
|
/// </summary>
|
|
public IconUsage Icon
|
|
{
|
|
get => icon.Icon;
|
|
set => icon.Icon = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The icon scale. This does not affect <see cref="Drawable.Scale">Scale</see>.
|
|
/// </summary>
|
|
public Vector2 IconScale
|
|
{
|
|
get => icon.Scale;
|
|
set => icon.Scale = value;
|
|
}
|
|
|
|
private readonly SpriteIcon icon;
|
|
|
|
public IconButton()
|
|
{
|
|
Size = new Vector2(DEFAULT_BUTTON_SIZE);
|
|
|
|
Add(icon = new SpriteIcon
|
|
{
|
|
Origin = Anchor.Centre,
|
|
Anchor = Anchor.Centre,
|
|
Size = new Vector2(18),
|
|
});
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
icon.FadeColour(IconHoverColour, 500, Easing.OutQuint);
|
|
return base.OnHover(e);
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
icon.FadeColour(IconColour, 500, Easing.OutQuint);
|
|
base.OnHoverLost(e);
|
|
}
|
|
}
|
|
}
|