mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
47 lines
1.3 KiB
C#
47 lines
1.3 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 osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Online.Placeholders
|
|
{
|
|
public sealed class LoginPlaceholder : Placeholder
|
|
{
|
|
[Resolved(CanBeNull = true)]
|
|
private LoginOverlay login { get; set; }
|
|
|
|
public LoginPlaceholder()
|
|
{
|
|
AddIcon(FontAwesome.Solid.UserLock, cp =>
|
|
{
|
|
cp.Font = cp.Font.With(size: TEXT_SIZE);
|
|
cp.Padding = new MarginPadding { Right = 10 };
|
|
});
|
|
|
|
AddText(@"Please sign in to view online leaderboards!");
|
|
}
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
this.ScaleTo(0.8f, 4000, Easing.OutQuint);
|
|
return base.OnMouseDown(e);
|
|
}
|
|
|
|
protected override bool OnMouseUp(MouseUpEvent e)
|
|
{
|
|
this.ScaleTo(1, 1000, Easing.OutElastic);
|
|
return base.OnMouseUp(e);
|
|
}
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
{
|
|
login?.Show();
|
|
return base.OnClick(e);
|
|
}
|
|
}
|
|
}
|