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

67 lines
2.1 KiB
C#
Raw Normal View History

// 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;
2019-08-10 23:06:52 +08:00
using osu.Framework.Bindables;
2019-08-10 18:22:45 +08:00
using osu.Framework.Graphics;
2019-08-10 18:53:34 +08:00
using osu.Framework.Graphics.Containers;
2019-08-10 18:22:45 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
2019-08-10 18:53:34 +08:00
using osu.Game.Graphics.Containers;
using osu.Game.Overlays.News;
2019-08-10 18:22:45 +08:00
namespace osu.Game.Overlays
{
public class NewsOverlay : FullscreenOverlay
{
2019-08-10 18:53:34 +08:00
private NewsHeader header;
private Container<NewsContent> content;
2019-08-10 18:53:34 +08:00
2019-08-10 23:06:52 +08:00
public readonly Bindable<string> Current = new Bindable<string>(null);
2019-08-10 18:22:45 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
2019-08-10 18:26:54 +08:00
Colour = colours.PurpleDarkAlternative
2019-08-10 18:53:34 +08:00
},
new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
Child = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
header = new NewsHeader()
{
ShowFrontPage = ShowFrontPage
},
content = new Container<NewsContent>()
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
}
2019-08-10 18:53:34 +08:00
},
},
},
2019-08-10 18:22:45 +08:00
};
2019-08-10 23:06:52 +08:00
header.Current.BindTo(Current);
Current.TriggerChange();
}
public void ShowFrontPage()
{
Current.Value = null;
Show();
2019-08-10 18:22:45 +08:00
}
}
}