1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:07:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Header/Components/OverlinedInfoContainer.cs

67 lines
2.1 KiB
C#
Raw Normal View History

2019-03-10 06:58:14 +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.Shapes;
2021-07-17 21:18:45 +08:00
using osu.Framework.Localisation;
2019-03-10 06:58:14 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osuTK.Graphics;
2019-04-26 12:49:44 +08:00
namespace osu.Game.Overlays.Profile.Header.Components
2019-03-10 06:58:14 +08:00
{
public class OverlinedInfoContainer : CompositeDrawable
{
private readonly Circle line;
2019-04-25 19:05:59 +08:00
private readonly OsuSpriteText title;
private readonly OsuSpriteText content;
2019-03-10 06:58:14 +08:00
2021-07-17 21:18:45 +08:00
public LocalisableString Title
2019-03-10 06:58:14 +08:00
{
set => title.Text = value;
}
2021-07-24 05:12:22 +08:00
public LocalisableString Content
2019-03-10 06:58:14 +08:00
{
set => content.Text = value;
}
public Color4 LineColour
{
set => line.Colour = value;
}
public OverlinedInfoContainer(bool big = false, int minimumWidth = 60)
{
AutoSizeAxes = Axes.Both;
InternalChild = new FillFlowContainer
{
Direction = FillDirection.Vertical,
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
line = new Circle
{
RelativeSizeAxes = Axes.X,
2020-01-30 05:00:37 +08:00
Height = 2,
2020-01-30 11:36:38 +08:00
Margin = new MarginPadding { Bottom = 2 }
2019-03-10 06:58:14 +08:00
},
title = new OsuSpriteText
{
Font = OsuFont.GetFont(size: big ? 14 : 12, weight: FontWeight.Bold)
},
content = new OsuSpriteText
{
Font = OsuFont.GetFont(size: big ? 40 : 18, weight: FontWeight.Light)
},
2020-05-05 09:31:11 +08:00
new Container // Add a minimum size to the FillFlowContainer
2019-03-10 06:58:14 +08:00
{
Width = minimumWidth,
}
}
};
}
}
}