1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Overlays/OnlineOverlay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
2.0 KiB
C#
Raw Normal View History

2021-01-18 15:48:12 +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;
2021-01-18 15:48:12 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online;
2021-01-18 15:48:12 +08:00
namespace osu.Game.Overlays
{
2021-01-18 16:13:38 +08:00
public abstract class OnlineOverlay<T> : FullscreenOverlay<T>
2021-01-18 15:48:12 +08:00
where T : OverlayHeader
{
protected override Container<Drawable> Content => content;
[Cached]
2021-01-18 15:48:12 +08:00
protected readonly OverlayScrollContainer ScrollFlow;
2021-01-18 15:48:12 +08:00
protected readonly LoadingLayer Loading;
private readonly Container content;
protected OnlineOverlay(OverlayColourScheme colourScheme, bool requiresSignIn = true)
2021-01-18 15:48:12 +08:00
: base(colourScheme)
{
var mainContent = requiresSignIn
? new OnlineViewContainer($"Sign in to view the {Header.Title.Title}")
: new Container();
mainContent.RelativeSizeAxes = Axes.Both;
mainContent.AddRange(new Drawable[]
2021-01-18 15:48:12 +08:00
{
ScrollFlow = new OverlayScrollContainer
{
RelativeSizeAxes = Axes.Both,
ScrollbarVisible = false,
Child = new FillFlowContainer
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
Header.With(h => h.Depth = float.MinValue),
content = new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y
}
}
}
2021-01-18 15:48:12 +08:00
},
Loading = new LoadingLayer(true)
2021-01-18 15:48:12 +08:00
});
base.Content.Add(mainContent);
2021-01-18 15:48:12 +08:00
}
}
}