1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Game/Overlays/Settings/SidebarButton.cs

108 lines
3.2 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
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Graphics.Containers;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings
{
public class SidebarButton : OsuButton
2018-04-13 17:19:50 +08:00
{
private readonly ConstrainedIconContainer iconContainer;
2018-04-13 17:19:50 +08:00
private readonly SpriteText headerText;
private readonly Box selectionIndicator;
private readonly Container text;
private SettingsSection section;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public SettingsSection Section
{
get => section;
2018-04-13 17:19:50 +08:00
set
{
section = value;
headerText.Text = value.Header;
iconContainer.Icon = value.CreateIcon();
2018-04-13 17:19:50 +08:00
}
}
private bool selected;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public bool Selected
{
get => selected;
2018-04-13 17:19:50 +08:00
set
{
selected = value;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
if (selected)
{
selectionIndicator.FadeIn(50);
text.FadeColour(Color4.White, 50);
}
else
{
selectionIndicator.FadeOut(50);
text.FadeColour(OsuColour.Gray(0.6f), 50);
}
}
}
public SidebarButton()
{
Height = Sidebar.DEFAULT_WIDTH;
RelativeSizeAxes = Axes.X;
2019-11-06 14:09:08 +08:00
BackgroundColour = Color4.Black;
2018-04-13 17:19:50 +08:00
AddRange(new Drawable[]
{
text = new Container
{
Width = Sidebar.DEFAULT_WIDTH,
RelativeSizeAxes = Axes.Y,
Colour = OsuColour.Gray(0.6f),
Children = new Drawable[]
{
headerText = new OsuSpriteText
{
Position = new Vector2(Sidebar.DEFAULT_WIDTH + 10, 0),
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
},
iconContainer = new ConstrainedIconContainer
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(20),
},
}
},
selectionIndicator = new Box
{
Alpha = 0,
RelativeSizeAxes = Axes.Y,
Width = 5,
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
},
2018-04-13 17:19:50 +08:00
});
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
selectionIndicator.Colour = colours.Yellow;
}
}
}