mirror of
https://github.com/ppy/osu.git
synced 2026-05-17 18:13:18 +08:00
69 lines
2.1 KiB
C#
69 lines
2.1 KiB
C#
// 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.Allocation;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Ranking.Statistics
|
|
{
|
|
public partial class StatisticItemHeader : CompositeDrawable, IHasText
|
|
{
|
|
public LocalisableString Text
|
|
{
|
|
get => text;
|
|
set
|
|
{
|
|
if (text == value) return;
|
|
|
|
text = value;
|
|
if (IsLoaded)
|
|
spriteText.Text = value;
|
|
}
|
|
}
|
|
|
|
private LocalisableString text;
|
|
private OsuSpriteText spriteText = null!;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
InternalChild = new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 20,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(5, 0),
|
|
Children = new Drawable[]
|
|
{
|
|
new Circle
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Height = 9,
|
|
Width = 4,
|
|
Colour = Color4Extensions.FromHex("#00FFAA")
|
|
},
|
|
spriteText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Text = text,
|
|
Font = OsuFont.GetFont(size: StatisticItem.FONT_SIZE, weight: FontWeight.SemiBold),
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|