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

45 lines
1.3 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;
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
2021-09-16 18:26:12 +09:00
using osu.Framework.Input.Events;
namespace osu.Game.Screens.OnlinePlay.Match.Components
{
public abstract class CreateRoomButton : PurpleTriangleButton, IKeyBindingHandler<PlatformAction>
{
[BackgroundDependencyLoader]
private void load()
{
2021-08-09 16:17:51 +09:00
SpriteText.Font = SpriteText.Font.With(size: 14);
Triangles.TriangleScale = 1.5f;
}
2021-09-16 18:26:12 +09:00
public bool OnPressed(KeyBindingPressEvent<PlatformAction> e)
{
if (e.Repeat)
return false;
if (!Enabled.Value)
return false;
2021-09-16 18:26:12 +09:00
switch (e.Action)
{
case PlatformAction.DocumentNew:
// might as well also handle new tab. it's a bit of an undefined flow on this screen.
case PlatformAction.TabNew:
2021-08-05 13:22:59 +09:00
TriggerClick();
return true;
}
return false;
}
2021-09-16 18:26:12 +09:00
public void OnReleased(KeyBindingReleaseEvent<PlatformAction> e)
{
}
}
}