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 0-9 or '.' allowed.
///
Numeric = 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,
}
}