1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 05:17:25 +08:00
osu-lazer/osu.Game/Users/Profile/ProfileSection.cs

42 lines
1.3 KiB
C#
Raw Normal View History

2017-05-25 02:11:07 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-06-09 14:53:00 +08:00
using osu.Framework.Graphics;
2017-05-25 02:11:07 +08:00
using osu.Framework.Graphics.Containers;
2017-06-09 14:53:00 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2017-05-25 02:11:07 +08:00
2017-06-05 21:07:57 +08:00
namespace osu.Game.Users.Profile
2017-05-25 02:11:07 +08:00
{
2017-06-09 14:53:00 +08:00
public abstract class ProfileSection : FillFlowContainer
2017-05-25 02:11:07 +08:00
{
public abstract string Title { get; }
2017-06-09 14:53:00 +08:00
protected ProfileSection()
2017-05-25 02:11:07 +08:00
{
2017-06-09 14:53:00 +08:00
Margin = new MarginPadding { Horizontal = UserProfile.CONTENT_X_MARGIN };
Direction = FillDirection.Vertical;
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
Children = new Drawable[]
{
new OsuSpriteText
{
Text = Title,
TextSize = 16,
Font = @"Exo2.0-RegularItalic",
Margin = new MarginPadding { Vertical = 20 }
},
new Box
{
RelativeSizeAxes = Axes.X,
Height = 1,
Colour = OsuColour.Gray(34),
Depth = float.MinValue
}
};
2017-05-25 02:11:07 +08:00
}
}
}