1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 03:27:26 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/ScreenTitle.cs

93 lines
2.8 KiB
C#
Raw Normal View History

2019-03-09 06:44:01 +08: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.
using System;
2019-03-09 06:44:01 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-03-29 13:03:00 +08:00
using osu.Framework.Graphics.Sprites;
2019-03-09 06:44:01 +08:00
using osu.Game.Graphics.Sprites;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Graphics.UserInterface
{
public abstract class ScreenTitle : CompositeDrawable, IHasAccentColour
2019-03-09 06:44:01 +08:00
{
public const float ICON_WIDTH = ICON_SIZE + icon_spacing;
public const float ICON_SIZE = 25;
private SpriteIcon iconSprite;
2019-03-09 06:44:01 +08:00
private readonly OsuSpriteText titleText, pageText;
private const float icon_spacing = 10;
2019-03-09 06:44:01 +08:00
2019-03-29 13:03:00 +08:00
protected IconUsage Icon
2019-03-09 06:44:01 +08:00
{
set
{
if (iconSprite == null)
throw new InvalidOperationException($"Cannot use {nameof(Icon)} with a custom {nameof(CreateIcon)} function.");
iconSprite.Icon = value;
}
2019-03-09 06:44:01 +08:00
}
protected string Title
2019-03-09 06:44:01 +08:00
{
set => titleText.Text = value;
}
protected string Section
2019-03-09 06:44:01 +08:00
{
set => pageText.Text = value;
}
public Color4 AccentColour
{
get => pageText.Colour;
set => pageText.Colour = value;
}
protected virtual Drawable CreateIcon() => iconSprite = new SpriteIcon
{
Size = new Vector2(ICON_SIZE),
};
protected ScreenTitle()
2019-03-09 06:44:01 +08:00
{
AutoSizeAxes = Axes.Both;
InternalChildren = new Drawable[]
{
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
2019-04-04 06:24:42 +08:00
Spacing = new Vector2(icon_spacing, 0),
Children = new[]
2019-03-09 06:44:01 +08:00
{
CreateIcon(),
new FillFlowContainer
2019-03-09 06:44:01 +08:00
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(6, 0),
Children = new[]
{
titleText = new OsuSpriteText
{
2019-05-16 17:53:20 +08:00
Font = OsuFont.GetFont(size: 30, weight: FontWeight.Light),
},
pageText = new OsuSpriteText
{
2019-05-16 17:53:20 +08:00
Font = OsuFont.GetFont(size: 30, weight: FontWeight.Light),
}
}
2019-03-09 06:44:01 +08:00
}
}
},
2019-03-09 06:44:01 +08:00
};
}
}
}