mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 18:07:28 +08:00
86 lines
3.0 KiB
C#
86 lines
3.0 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 JetBrains.Annotations;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public abstract class OverlayHeader : Container
|
|
{
|
|
private readonly Box titleBackground;
|
|
private readonly ScreenTitle title;
|
|
|
|
protected readonly FillFlowContainer HeaderInfo;
|
|
|
|
protected OverlayHeader()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
Add(new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
Children = new[]
|
|
{
|
|
HeaderInfo = new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
Depth = -float.MaxValue,
|
|
Children = new[]
|
|
{
|
|
CreateBackground(),
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Children = new Drawable[]
|
|
{
|
|
titleBackground = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.Gray,
|
|
},
|
|
title = CreateTitle().With(title =>
|
|
{
|
|
title.Margin = new MarginPadding
|
|
{
|
|
Vertical = 10,
|
|
Left = UserProfileOverlay.CONTENT_X_MARGIN
|
|
};
|
|
})
|
|
}
|
|
},
|
|
}
|
|
},
|
|
CreateContent()
|
|
}
|
|
});
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
titleBackground.Colour = colourProvider.Dark5;
|
|
title.AccentColour = colourProvider.Highlight1;
|
|
}
|
|
|
|
[NotNull]
|
|
protected virtual Drawable CreateContent() => Drawable.Empty();
|
|
|
|
[NotNull]
|
|
protected virtual Drawable CreateBackground() => Drawable.Empty();
|
|
|
|
protected abstract ScreenTitle CreateTitle();
|
|
}
|
|
}
|