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

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

77 lines
2.4 KiB
C#
Raw Normal View History

2020-03-25 05:03:38 +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 osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
2020-03-25 05:03:38 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osuTK;
namespace osu.Game.Overlays
{
public abstract partial class OverlayTitle : CompositeDrawable, INamedOverlayComponent
2020-03-25 05:03:38 +08:00
{
2020-09-18 05:56:08 +08:00
public const float ICON_SIZE = 30;
private readonly OsuSpriteText titleText;
private readonly Container iconContainer;
2020-03-25 05:03:38 +08:00
private LocalisableString title;
public LocalisableString Title
2020-03-25 05:03:38 +08:00
{
get => title;
protected set => titleText.Text = title = value;
2020-03-25 05:03:38 +08:00
}
public LocalisableString Description { get; protected set; }
private IconUsage icon;
public IconUsage Icon
2020-03-25 05:03:38 +08:00
{
get => icon;
protected set => iconContainer.Child = new SpriteIcon
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
FillMode = FillMode.Fit,
Icon = icon = value,
};
2020-03-25 05:03:38 +08:00
}
protected OverlayTitle()
{
AutoSizeAxes = Axes.Both;
InternalChild = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(10, 0),
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
iconContainer = new Container
2020-03-25 05:03:38 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Margin = new MarginPadding { Horizontal = 5 }, // compensates for osu-web sprites having around 5px of whitespace on each side
2020-09-18 05:56:08 +08:00
Size = new Vector2(ICON_SIZE)
2020-03-25 05:03:38 +08:00
},
titleText = new OsuSpriteText
2020-03-25 05:03:38 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 20, weight: FontWeight.Regular),
Margin = new MarginPadding { Vertical = 17.5f } // 15px padding + 2.5px line-height difference compensation
}
}
};
}
}
}