namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard { /// /// Identifies the variant of keyboard displayed on screen. /// public enum KeyboardMode : uint { /// /// All UTF-16 characters allowed. /// Default = 0, /// /// Only numbers allowed. /// NumbersOnly = 1, /// /// Only ASCII characters allowed. /// ASCII = 2, /// /// Synonymous with default. /// FullLatin = 3, /// /// All UTF-16 characters except CJK characters allowed. /// Alphabet = 4, SimplifiedChinese = 5, TraditionalChinese = 6, Korean = 7, LanguageSet2 = 8, LanguageSet2Latin = 9, } }