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