1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 14:47:24 +08:00
osu-lazer/osu.Game/Overlays/Dashboard/Home/News/ShowMoreNewsPanel.cs

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

55 lines
1.5 KiB
C#
Raw Normal View History

2020-08-07 18:18:31 +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
2020-08-07 18:18:31 +08:00
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Resources.Localisation.Web;
2020-08-07 18:18:31 +08:00
using osuTK.Graphics;
namespace osu.Game.Overlays.Dashboard.Home.News
{
2020-08-12 16:24:26 +08:00
public class ShowMoreNewsPanel : OsuHoverContainer
2020-08-07 18:18:31 +08:00
{
protected override IEnumerable<Drawable> EffectTargets => new[] { text };
[Resolved(canBeNull: true)]
private NewsOverlay overlay { get; set; }
private OsuSpriteText text;
2020-08-12 16:24:26 +08:00
public ShowMoreNewsPanel()
2020-08-07 18:18:31 +08:00
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
Child = new HomePanel
{
Child = text = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Margin = new MarginPadding { Vertical = 20 },
Text = CommonStrings.ButtonsSeeMore
2020-08-07 18:18:31 +08:00
}
};
IdleColour = colourProvider.Light1;
HoverColour = Color4.White;
Action = () =>
{
overlay?.ShowFrontPage();
};
}
}
}