2020-03-12 12:29:09 +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.Allocation;
|
2020-03-12 13:06:40 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-03-12 12:29:09 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Components
|
|
|
|
{
|
2020-03-12 13:06:40 +08:00
|
|
|
public class DrawableTournamentHeaderText : CompositeDrawable
|
2020-03-12 12:29:09 +08:00
|
|
|
{
|
2020-03-17 12:16:18 +08:00
|
|
|
public DrawableTournamentHeaderText(bool center = true)
|
2020-03-12 12:29:09 +08:00
|
|
|
{
|
2020-03-17 12:16:18 +08:00
|
|
|
InternalChild = new TextSprite
|
|
|
|
{
|
|
|
|
Anchor = center ? Anchor.Centre : Anchor.TopLeft,
|
|
|
|
Origin = center ? Anchor.Centre : Anchor.TopLeft,
|
|
|
|
};
|
2020-03-12 13:06:40 +08:00
|
|
|
|
2020-03-12 13:26:39 +08:00
|
|
|
Height = 22;
|
2020-03-12 13:06:40 +08:00
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
}
|
|
|
|
|
|
|
|
private class TextSprite : Sprite
|
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(TextureStore textures)
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
FillMode = FillMode.Fit;
|
|
|
|
|
|
|
|
Texture = textures.Get("header-text");
|
|
|
|
}
|
2020-03-12 12:29:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|