diff options
author | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2019-12-03 15:00:56 +1100 |
---|---|---|
committer | Ac_K <Acoustik666@gmail.com> | 2019-12-03 05:00:56 +0100 |
commit | d562ba37a0bc603e9719bb36dc9e7e9bf4406687 (patch) | |
tree | 1f178efe04524530690fa994979f395049c3521a /Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs | |
parent | bb7600e215456fd271ba1ec2f7b4fa5088ec2802 (diff) |
Fully reverse swkbd configuration structure and follow-up to swkbd implementation (#839)
* am: Fully reverse swkbd configuration structure
* Add documentation
* Remove explicit access modifiers
* Fix formatting
* Fix further formatting issues
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs new file mode 100644 index 00000000..c3ce2c12 --- /dev/null +++ b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InputFormMode.cs @@ -0,0 +1,18 @@ +namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard +{ + /// <summary> + /// Identifies the text entry mode. + /// </summary> + enum InputFormMode : uint + { + /// <summary> + /// Displays the text entry area as a single-line field. + /// </summary> + SingleLine, + + /// <summary> + /// Displays the text entry area as a multi-line field. + /// </summary> + MultiLine + } +} |