From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- .../SoftwareKeyboard/InlineKeyboardState.cs | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs (limited to 'src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs') diff --git a/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs new file mode 100644 index 00000000..47e1a774 --- /dev/null +++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs @@ -0,0 +1,33 @@ +namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard +{ + /// + /// Possible states for the software keyboard when running in inline mode. + /// + enum InlineKeyboardState : uint + { + /// + /// The software keyboard has just been created or finalized and is uninitialized. + /// + Uninitialized = 0x0, + + /// + /// The software keyboard is initialized, but it is not visible and not processing input. + /// + Initialized = 0x1, + + /// + /// The software keyboard is transitioning to a visible state. + /// + Appearing = 0x2, + + /// + /// The software keyboard is visible and receiving processing input. + /// + Shown = 0x3, + + /// + /// software keyboard is transitioning to a hidden state because the user pressed either OK or Cancel. + /// + Disappearing = 0x4 + } +} -- cgit v1.2.3