2019-05-20 17:02:13 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-12-27 12:15:55 +08:00
|
|
|
using JetBrains.Annotations;
|
2020-01-16 03:41:22 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-05-20 17:02:13 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-12-27 03:09:06 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osuTK.Graphics;
|
2019-05-20 17:02:13 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
{
|
2019-12-31 23:12:03 +08:00
|
|
|
public abstract partial class OverlayHeader : Container
|
2019-05-20 17:02:13 +08:00
|
|
|
{
|
2020-09-03 14:46:56 +08:00
|
|
|
public OverlayTitle Title { get; }
|
|
|
|
|
2020-07-22 01:02:22 +08:00
|
|
|
private float contentSidePadding;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Horizontal padding of the header content.
|
|
|
|
/// </summary>
|
|
|
|
protected float ContentSidePadding
|
|
|
|
{
|
|
|
|
get => contentSidePadding;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
contentSidePadding = value;
|
|
|
|
content.Padding = new MarginPadding
|
|
|
|
{
|
|
|
|
Horizontal = value
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2020-04-16 17:07:38 +08:00
|
|
|
|
2019-12-27 03:09:06 +08:00
|
|
|
private readonly Box titleBackground;
|
2020-07-22 01:02:22 +08:00
|
|
|
private readonly Container content;
|
2019-12-27 03:09:06 +08:00
|
|
|
|
2020-01-20 13:52:03 +08:00
|
|
|
protected readonly FillFlowContainer HeaderInfo;
|
2019-12-27 03:09:06 +08:00
|
|
|
|
2020-01-24 17:33:34 +08:00
|
|
|
protected OverlayHeader()
|
2019-05-20 17:02:13 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
2019-12-27 12:15:55 +08:00
|
|
|
Add(new FillFlowContainer
|
2019-05-20 17:02:13 +08:00
|
|
|
{
|
2019-12-27 03:09:06 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
2019-12-27 12:15:55 +08:00
|
|
|
Children = new[]
|
2019-05-20 17:02:13 +08:00
|
|
|
{
|
2020-01-04 04:22:19 +08:00
|
|
|
HeaderInfo = new FillFlowContainer
|
2019-12-27 03:09:06 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2020-01-04 04:22:19 +08:00
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
Depth = -float.MaxValue,
|
2020-01-27 21:45:10 +08:00
|
|
|
Children = new[]
|
2019-12-27 03:09:06 +08:00
|
|
|
{
|
2020-01-27 20:36:19 +08:00
|
|
|
CreateBackground(),
|
2020-01-04 04:22:19 +08:00
|
|
|
new Container
|
2019-12-27 03:09:06 +08:00
|
|
|
{
|
2020-01-04 04:22:19 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Children = new Drawable[]
|
2019-12-27 03:09:06 +08:00
|
|
|
{
|
2020-01-04 04:22:19 +08:00
|
|
|
titleBackground = new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4.Gray,
|
|
|
|
},
|
2020-07-22 01:02:22 +08:00
|
|
|
content = new Container
|
2020-01-04 04:22:19 +08:00
|
|
|
{
|
2020-02-03 16:09:46 +08:00
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2023-01-14 04:50:12 +08:00
|
|
|
Child = Title = CreateTitle().With(title =>
|
2020-02-03 16:09:46 +08:00
|
|
|
{
|
2023-01-14 04:50:12 +08:00
|
|
|
title.Anchor = Anchor.CentreLeft;
|
|
|
|
title.Origin = Anchor.CentreLeft;
|
|
|
|
}),
|
2020-02-03 16:09:46 +08:00
|
|
|
}
|
2020-01-04 04:22:19 +08:00
|
|
|
}
|
2019-12-27 03:09:06 +08:00
|
|
|
},
|
2019-05-20 17:02:13 +08:00
|
|
|
}
|
2019-12-27 12:15:55 +08:00
|
|
|
},
|
|
|
|
CreateContent()
|
2019-12-27 02:21:15 +08:00
|
|
|
}
|
|
|
|
});
|
2020-07-22 01:02:22 +08:00
|
|
|
|
2020-07-22 01:11:10 +08:00
|
|
|
ContentSidePadding = 50;
|
2019-05-20 17:02:13 +08:00
|
|
|
}
|
|
|
|
|
2020-01-16 03:41:22 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2020-01-24 17:33:34 +08:00
|
|
|
private void load(OverlayColourProvider colourProvider)
|
2020-01-16 03:41:22 +08:00
|
|
|
{
|
2020-01-24 17:33:34 +08:00
|
|
|
titleBackground.Colour = colourProvider.Dark5;
|
2020-01-16 03:41:22 +08:00
|
|
|
}
|
|
|
|
|
2019-12-27 12:15:55 +08:00
|
|
|
[NotNull]
|
2020-02-03 16:09:46 +08:00
|
|
|
protected virtual Drawable CreateContent() => Empty();
|
|
|
|
|
|
|
|
[NotNull]
|
|
|
|
protected virtual Drawable CreateBackground() => Empty();
|
2019-05-20 17:02:13 +08:00
|
|
|
|
2020-03-25 05:08:20 +08:00
|
|
|
protected abstract OverlayTitle CreateTitle();
|
2019-05-20 17:02:13 +08:00
|
|
|
}
|
|
|
|
}
|