1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 01:07:20 +08:00

74 lines
2.0 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.
2018-04-13 18:19:50 +09:00
2019-06-25 18:30:43 +09:00
using System;
2018-04-13 18:19:50 +09:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2019-06-25 18:30:43 +09:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Input.Bindings;
using osu.Game.Input.Bindings;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Graphics.UserInterface
{
2019-07-29 18:45:16 +09:00
public class BackButton : VisibilityContainer
2018-04-13 18:19:50 +09:00
{
2019-06-25 18:30:43 +09:00
public Action Action;
private readonly TwoLayerButton button;
public BackButton(Receptor receptor)
2018-04-13 18:19:50 +09:00
{
receptor.OnBackPressed = () => button.Click();
2019-07-29 18:45:16 +09:00
2019-06-25 18:30:43 +09:00
Size = TwoLayerButton.SIZE_EXTENDED;
Child = button = new TwoLayerButton
{
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
2019-06-25 18:30:43 +09:00
Text = @"back",
Icon = OsuIcon.LeftCircle,
Action = () => Action?.Invoke()
};
2018-04-13 18:19:50 +09:00
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2019-06-25 18:30:43 +09:00
button.BackgroundColour = colours.Pink;
button.HoverColour = colours.PinkDark;
2018-04-13 18:19:50 +09:00
}
2019-06-25 18:30:43 +09:00
protected override void PopIn()
{
button.MoveToX(0, 400, Easing.OutQuint);
button.FadeIn(150, Easing.OutQuint);
}
protected override void PopOut()
{
2019-06-25 20:23:34 +09:00
button.MoveToX(-TwoLayerButton.SIZE_EXTENDED.X / 2, 400, Easing.OutQuint);
button.FadeOut(400, Easing.OutQuint);
2019-06-25 18:30:43 +09:00
}
2019-07-29 18:45:16 +09:00
public class Receptor : Drawable, IKeyBindingHandler<GlobalAction>
2019-07-29 18:45:16 +09:00
{
public Action OnBackPressed;
public bool OnPressed(GlobalAction action)
{
switch (action)
{
case GlobalAction.Back:
2019-09-25 22:14:42 +09:00
OnBackPressed?.Invoke();
2019-07-29 18:45:16 +09:00
return true;
}
return false;
}
public bool OnReleased(GlobalAction action) => action == GlobalAction.Back;
}
2018-04-13 18:19:50 +09:00
}
}