1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 11:27:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/PageTabControl.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

118 lines
3.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-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using System;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
using osu.Framework.Allocation;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
2017-06-21 16:03:47 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2021-06-16 14:58:07 +08:00
using osu.Framework.Localisation;
using osu.Game.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.UserInterface
{
public class PageTabControl<T> : OsuTabControl<T>
{
protected override TabItem<T> CreateTabItem(T value) => new PageTabItem(value);
2018-04-13 17:19:50 +08:00
public PageTabControl()
{
Height = 30;
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
AccentColour = colours.Yellow;
}
public class PageTabItem : TabItem<T>, IHasAccentColour
{
2017-05-20 06:50:45 +08:00
private const float transition_duration = 100;
2018-04-13 17:19:50 +08:00
2017-05-20 06:50:45 +08:00
private readonly Box box;
2018-04-13 17:19:50 +08:00
2017-06-09 16:01:16 +08:00
protected readonly SpriteText Text;
2018-04-13 17:19:50 +08:00
private Color4 accentColour;
public Color4 AccentColour
2019-08-12 18:08:15 +08:00
{
get => accentColour;
set
{
accentColour = value;
box.Colour = accentColour;
}
2019-08-12 18:08:15 +08:00
}
2019-02-28 12:31:40 +08:00
public PageTabItem(T value)
: base(value)
{
AutoSizeAxes = Axes.X;
RelativeSizeAxes = Axes.Y;
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
2017-06-09 16:01:16 +08:00
Text = new OsuSpriteText
2017-05-20 03:22:54 +08:00
{
Margin = new MarginPadding { Top = 8, Bottom = 8 },
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
Text = CreateText(),
Font = OsuFont.GetFont(size: 14)
2017-05-20 03:22:54 +08:00
},
box = new Box
{
RelativeSizeAxes = Axes.X,
Height = 5,
Scale = new Vector2(1f, 0f),
Colour = Color4.White,
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
},
2021-06-18 16:26:28 +08:00
new HoverClickSounds(HoverSampleSet.TabSelect)
};
2020-03-13 12:32:16 +08:00
Active.BindValueChanged(active => Text.Font = Text.Font.With(Typeface.Torus, weight: active.NewValue ? FontWeight.Bold : FontWeight.Medium), true);
}
2018-04-13 17:19:50 +08:00
2021-06-16 14:58:07 +08:00
protected virtual LocalisableString CreateText() => (Value as Enum)?.GetLocalisableDescription() ?? Value.ToString();
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
{
2019-02-21 17:56:34 +08:00
if (!Active.Value)
slideActive();
return true;
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
{
2019-02-21 17:56:34 +08:00
if (!Active.Value)
slideInactive();
}
2018-04-13 17:19:50 +08:00
private void slideActive()
{
box.ScaleTo(new Vector2(1f), transition_duration);
}
2018-04-13 17:19:50 +08:00
private void slideInactive()
{
box.ScaleTo(new Vector2(1f, 0f), transition_duration);
}
2018-04-13 17:19:50 +08:00
2017-06-12 17:39:22 +08:00
protected override void OnActivated() => slideActive();
2018-04-13 17:19:50 +08:00
2017-06-12 17:39:22 +08:00
protected override void OnDeactivated() => slideInactive();
}
}
}