2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2019-01-25 18:20:08 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-10-02 11:02:47 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2019-01-25 18:20:08 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2018-06-29 22:28:15 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Input;
|
2019-10-01 23:26:34 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A textbox which holds focus eagerly.
|
|
|
|
|
/// </summary>
|
2019-10-01 23:26:34 +08:00
|
|
|
|
public class FocusedTextBox : OsuTextBox, IKeyBindingHandler<GlobalAction>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private bool focus;
|
2018-06-29 22:28:15 +08:00
|
|
|
|
|
2019-01-25 18:20:08 +08:00
|
|
|
|
private bool allowImmediateFocus => host?.OnScreenKeyboardOverlapsGameWindow != true;
|
|
|
|
|
|
|
|
|
|
public void TakeFocus()
|
|
|
|
|
{
|
2021-08-16 17:44:00 +08:00
|
|
|
|
if (!allowImmediateFocus)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Schedule(() => GetContainingInputManager().ChangeFocus(this));
|
2019-01-25 18:20:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public bool HoldFocus
|
|
|
|
|
{
|
2019-01-25 18:34:25 +08:00
|
|
|
|
get => allowImmediateFocus && focus;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
focus = value;
|
|
|
|
|
if (!focus && HasFocus)
|
2018-07-01 13:08:34 +08:00
|
|
|
|
base.KillFocus();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-14 21:14:00 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private GameHost host { get; set; }
|
2019-01-25 18:20:08 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-02-14 21:14:00 +08:00
|
|
|
|
private void load()
|
2019-01-25 18:20:08 +08:00
|
|
|
|
{
|
2019-03-23 00:44:05 +08:00
|
|
|
|
BackgroundUnfocused = new Color4(10, 10, 10, 255);
|
|
|
|
|
BackgroundFocused = new Color4(10, 10, 10, 255);
|
2019-01-25 18:20:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
// We may not be focused yet, but we need to handle keyboard input to be able to request focus
|
2018-09-26 13:01:15 +08:00
|
|
|
|
public override bool HandleNonPositionalInput => HoldFocus || base.HandleNonPositionalInput;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override void OnFocus(FocusEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-10-02 11:02:47 +08:00
|
|
|
|
base.OnFocus(e);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
BorderThickness = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
2018-06-30 22:51:27 +08:00
|
|
|
|
{
|
|
|
|
|
if (!HasFocus) return false;
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
if (e.Key == Key.Escape)
|
2019-10-01 23:37:08 +08:00
|
|
|
|
return false; // disable the framework-level handling of escape key for conformity (we use GlobalAction.Back).
|
2018-07-02 10:04:40 +08:00
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
return base.OnKeyDown(e);
|
2018-06-30 22:51:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 23:26:34 +08:00
|
|
|
|
public bool OnPressed(GlobalAction action)
|
2018-06-29 22:28:15 +08:00
|
|
|
|
{
|
2020-07-21 02:52:02 +08:00
|
|
|
|
if (!HasFocus) return false;
|
|
|
|
|
|
2018-06-29 22:28:15 +08:00
|
|
|
|
if (action == GlobalAction.Back)
|
|
|
|
|
{
|
|
|
|
|
if (Text.Length > 0)
|
|
|
|
|
{
|
|
|
|
|
Text = string.Empty;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 23:26:34 +08:00
|
|
|
|
return false;
|
2018-06-29 22:28:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 12:22:34 +08:00
|
|
|
|
public void OnReleased(GlobalAction action)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public override bool RequestsFocus => HoldFocus;
|
|
|
|
|
}
|
|
|
|
|
}
|