diff options
| author | TSR Berry <20988865+TSRBerry@users.noreply.github.com> | 2023-04-08 01:22:00 +0200 |
|---|---|---|
| committer | Mary <thog@protonmail.com> | 2023-04-27 23:51:14 +0200 |
| commit | cee712105850ac3385cd0091a923438167433f9f (patch) | |
| tree | 4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs | |
| parent | cd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff) | |
Move solution and projects to src
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs deleted file mode 100644 index b17debfc..00000000 --- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardRequest.cs +++ /dev/null @@ -1,48 +0,0 @@ -namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard -{ - /// <summary> - /// Possible requests to the software keyboard when running in inline mode. - /// </summary> - enum InlineKeyboardRequest : uint - { - /// <summary> - /// Finalize the keyboard applet. - /// </summary> - Finalize = 0x4, - - /// <summary> - /// Set user words for text prediction. - /// </summary> - SetUserWordInfo = 0x6, - - /// <summary> - /// Sets the CustomizeDic data. Can't be used if CustomizedDictionaries is already set. - /// </summary> - SetCustomizeDic = 0x7, - - /// <summary> - /// Configure the keyboard applet and put it in a state where it is processing input. - /// </summary> - Calc = 0xA, - - /// <summary> - /// Set custom dictionaries for text prediction. Can't be used if SetCustomizeDic is already set. - /// </summary> - SetCustomizedDictionaries = 0xB, - - /// <summary> - /// Release custom dictionaries data. - /// </summary> - UnsetCustomizedDictionaries = 0xC, - - /// <summary> - /// [8.0.0+] Request the keyboard applet to use the ChangedStringV2 response when notifying changes in text data. - /// </summary> - UseChangedStringV2 = 0xD, - - /// <summary> - /// [8.0.0+] Request the keyboard applet to use the MovedCursorV2 response when notifying changes in cursor position. - /// </summary> - UseMovedCursorV2 = 0xE - } -} |
