1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:47:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/ShowMoreButton.cs

98 lines
3.0 KiB
C#
Raw Normal View History

2019-10-13 19:43:30 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-05-31 03:55:59 +08:00
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics.Sprites;
using osuTK;
2019-10-13 19:43:30 +08:00
using osuTK.Graphics;
2019-05-31 03:55:59 +08:00
using System.Collections.Generic;
2019-10-13 19:43:30 +08:00
namespace osu.Game.Graphics.UserInterface
2019-05-31 03:55:59 +08:00
{
2019-10-17 18:57:17 +08:00
public class ShowMoreButton : LoadingButton
2019-05-31 03:55:59 +08:00
{
2019-10-24 22:49:34 +08:00
private const int duration = 200;
2019-10-13 19:43:30 +08:00
private Color4 chevronIconColour;
2019-05-31 03:55:59 +08:00
2019-10-16 14:54:00 +08:00
protected Color4 ChevronIconColour
2019-10-13 19:43:30 +08:00
{
get => chevronIconColour;
2019-10-15 05:10:02 +08:00
set => chevronIconColour = leftChevron.Colour = rightChevron.Colour = value;
2019-10-13 19:43:30 +08:00
}
public string Text
{
get => text.Text;
2019-10-14 22:33:14 +08:00
set => text.Text = value;
2019-10-13 19:43:30 +08:00
}
2019-05-31 03:55:59 +08:00
2019-10-13 19:43:30 +08:00
protected override IEnumerable<Drawable> EffectTargets => new[] { background };
2019-10-17 18:57:17 +08:00
private ChevronIcon leftChevron;
private ChevronIcon rightChevron;
private SpriteText text;
private Box background;
2019-10-24 22:49:34 +08:00
private FillFlowContainer textContainer;
2019-10-17 18:57:17 +08:00
2019-05-31 03:55:59 +08:00
public ShowMoreButton()
{
2020-01-31 14:51:56 +08:00
Height = 30;
Width = 140;
2019-05-31 03:55:59 +08:00
}
2019-10-24 22:49:34 +08:00
protected override Drawable CreateContent() => new CircularContainer
2019-05-31 03:55:59 +08:00
{
2019-10-17 18:57:17 +08:00
Masking = true,
2020-01-31 14:51:56 +08:00
RelativeSizeAxes = Axes.Both,
2019-10-17 18:57:17 +08:00
Children = new Drawable[]
2019-06-04 09:26:21 +08:00
{
2019-10-24 22:49:34 +08:00
background = new Box
{
RelativeSizeAxes = Axes.Both,
},
textContainer = new FillFlowContainer
2019-10-17 18:57:17 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-10-24 22:49:34 +08:00
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(7),
Children = new Drawable[]
{
leftChevron = new ChevronIcon(),
text = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Bold),
Text = "show more".ToUpper(),
},
rightChevron = new ChevronIcon(),
}
}
2019-06-04 09:26:21 +08:00
}
2019-10-17 18:57:17 +08:00
};
2019-05-31 03:55:59 +08:00
2019-10-24 22:49:34 +08:00
protected override void OnLoadStarted() => textContainer.FadeOut(duration, Easing.OutQuint);
protected override void OnLoadFinished() => textContainer.FadeIn(duration, Easing.OutQuint);
2019-05-31 03:55:59 +08:00
private class ChevronIcon : SpriteIcon
{
private const int icon_size = 8;
public ChevronIcon()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
Size = new Vector2(icon_size);
Icon = FontAwesome.Solid.ChevronDown;
}
}
}
}