1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 01:37:26 +08:00
osu-lazer/osu.Game/Overlays/Chat/Tabs/TabCloseButton.cs

56 lines
1.5 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-14 19:32:48 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Input.Events;
2018-04-14 19:32:48 +08:00
using osu.Game.Graphics.Containers;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2018-04-14 19:32:48 +08:00
namespace osu.Game.Overlays.Chat.Tabs
2018-04-14 19:32:48 +08:00
{
public class TabCloseButton : OsuClickableContainer
2018-04-14 19:32:48 +08:00
{
private readonly SpriteIcon icon;
public TabCloseButton()
2018-04-14 19:32:48 +08:00
{
Size = new Vector2(20);
Child = icon = new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Scale = new Vector2(0.75f),
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Solid.TimesCircle,
2018-04-14 19:32:48 +08:00
RelativeSizeAxes = Axes.Both,
};
}
protected override bool OnMouseDown(MouseDownEvent e)
2018-04-14 19:32:48 +08:00
{
icon.ScaleTo(0.5f, 1000, Easing.OutQuint);
return base.OnMouseDown(e);
2018-04-14 19:32:48 +08:00
}
protected override bool OnMouseUp(MouseUpEvent e)
2018-04-14 19:32:48 +08:00
{
icon.ScaleTo(0.75f, 1000, Easing.OutElastic);
return base.OnMouseUp(e);
2018-04-14 19:32:48 +08:00
}
protected override bool OnHover(HoverEvent e)
2018-04-14 19:32:48 +08:00
{
icon.FadeColour(Color4.Red, 200, Easing.OutQuint);
return base.OnHover(e);
2018-04-14 19:32:48 +08:00
}
protected override void OnHoverLost(HoverLostEvent e)
2018-04-14 19:32:48 +08:00
{
icon.FadeColour(Color4.White, 200, Easing.OutQuint);
base.OnHoverLost(e);
2018-04-14 19:32:48 +08:00
}
}
}