scim_event.h File Reference

Defines the scim::KeyEvent class and related enums, functions. More...


Classes

struct  scim::KeyEvent
 The class to store a keyboard event. More...

Namespaces

namespace  scim

Typedefs

typedef std::vector< KeyEvent > scim::KeyEventList
 The container to store a set of KeyEvent objects.

Enumerations

enum  scim::KeyMask {
  scim::SCIM_KEY_NullMask = 0, scim::SCIM_KEY_ShiftMask = (1<<0), scim::SCIM_KEY_CapsLockMask = (1<<1), scim::SCIM_KEY_ControlMask = (1<<2),
  scim::SCIM_KEY_AltMask = (1<<3), scim::SCIM_KEY_MetaMask = (1<<4), scim::SCIM_KEY_SuperMask = (1<<5), scim::SCIM_KEY_HyperMask = (1<<6),
  scim::SCIM_KEY_NumLockMask = (1<<7), scim::SCIM_KEY_LockMask = SCIM_KEY_CapsLockMask, scim::SCIM_KEY_Mod1Mask = SCIM_KEY_AltMask, scim::SCIM_KEY_Mod2Mask = SCIM_KEY_MetaMask,
  scim::SCIM_KEY_Mod3Mask = SCIM_KEY_SuperMask, scim::SCIM_KEY_Mod4Mask = SCIM_KEY_HyperMask, scim::SCIM_KEY_Mod5Mask = SCIM_KEY_NumLockMask, scim::SCIM_KEY_ScrollLockMask = 0,
  scim::SCIM_KEY_QuirkKanaRoMask = (1<<14), scim::SCIM_KEY_ReleaseMask = (1<<15), scim::SCIM_KEY_AllMasks = 0xC0FF
}
 Enum values of all valid key masks. More...
enum  scim::KeyCode {
  scim::SCIM_KEY_NullKey = 0, scim::SCIM_KEY_VoidSymbol = 0xFFFFFF, scim::SCIM_KEY_BackSpace = 0xFF08, scim::SCIM_KEY_Tab = 0xFF09,
  scim::SCIM_KEY_Linefeed = 0xFF0A, scim::SCIM_KEY_Clear = 0xFF0B, scim::SCIM_KEY_Return = 0xFF0D, scim::SCIM_KEY_Pause = 0xFF13,
  scim::SCIM_KEY_Scroll_Lock = 0xFF14, scim::SCIM_KEY_Sys_Req = 0xFF15, scim::SCIM_KEY_Escape = 0xFF1B, scim::SCIM_KEY_Delete = 0xFFFF,
  scim::SCIM_KEY_Multi_key = 0xFF20, scim::SCIM_KEY_Codeinput = 0xFF37, scim::SCIM_KEY_SingleCandidate = 0xFF3C, scim::SCIM_KEY_MultipleCandidate = 0xFF3D,
  scim::SCIM_KEY_PreviousCandidate = 0xFF3E, scim::SCIM_KEY_Kanji = 0xFF21, scim::SCIM_KEY_Muhenkan = 0xFF22, scim::SCIM_KEY_Henkan_Mode = 0xFF23,
  scim::SCIM_KEY_Henkan = 0xFF23, scim::SCIM_KEY_Romaji = 0xFF24, scim::SCIM_KEY_Hiragana = 0xFF25, scim::SCIM_KEY_Katakana = 0xFF26,
  scim::SCIM_KEY_Hiragana_Katakana = 0xFF27, scim::SCIM_KEY_Zenkaku = 0xFF28, scim::SCIM_KEY_Hankaku = 0xFF29, scim::SCIM_KEY_Zenkaku_Hankaku = 0xFF2A,
  scim::SCIM_KEY_Touroku = 0xFF2B, scim::SCIM_KEY_Massyo = 0xFF2C, scim::SCIM_KEY_Kana_Lock = 0xFF2D, scim::SCIM_KEY_Kana_Shift = 0xFF2E,
  scim::SCIM_KEY_Eisu_Shift = 0xFF2F, scim::SCIM_KEY_Eisu_toggle = 0xFF30, scim::SCIM_KEY_Kanji_Bangou = 0xFF37, scim::SCIM_KEY_Zen_Koho = 0xFF3D,
  scim::SCIM_KEY_Mae_Koho = 0xFF3E, scim::SCIM_KEY_Home = 0xFF50, scim::SCIM_KEY_Left = 0xFF51, scim::SCIM_KEY_Up = 0xFF52,
  scim::SCIM_KEY_Right = 0xFF53, scim::SCIM_KEY_Down = 0xFF54, scim::SCIM_KEY_Prior = 0xFF55, scim::SCIM_KEY_Page_Up = 0xFF55,
  scim::SCIM_KEY_Next = 0xFF56, scim::SCIM_KEY_Page_Down = 0xFF56, scim::SCIM_KEY_End = 0xFF57, scim::SCIM_KEY_Begin = 0xFF58,
  scim::SCIM_KEY_Select = 0xFF60, scim::SCIM_KEY_Print = 0xFF61, scim::SCIM_KEY_Execute = 0xFF62, scim::SCIM_KEY_Insert = 0xFF63,
  scim::SCIM_KEY_Undo = 0xFF65, scim::SCIM_KEY_Redo = 0xFF66, scim::SCIM_KEY_Menu = 0xFF67, scim::SCIM_KEY_Find = 0xFF68,
  scim::SCIM_KEY_Cancel = 0xFF69, scim::SCIM_KEY_Help = 0xFF6A, scim::SCIM_KEY_Break = 0xFF6B, scim::SCIM_KEY_Mode_switch = 0xFF7E,
  scim::SCIM_KEY_Num_Lock = 0xFF7F, scim::SCIM_KEY_KP_Space = 0xFF80, scim::SCIM_KEY_KP_Tab = 0xFF89, scim::SCIM_KEY_KP_Enter = 0xFF8D,
  scim::SCIM_KEY_KP_F1 = 0xFF91, scim::SCIM_KEY_KP_F2 = 0xFF92, scim::SCIM_KEY_KP_F3 = 0xFF93, scim::SCIM_KEY_KP_F4 = 0xFF94,
  scim::SCIM_KEY_KP_Home = 0xFF95, scim::SCIM_KEY_KP_Left = 0xFF96, scim::SCIM_KEY_KP_Up = 0xFF97, scim::SCIM_KEY_KP_Right = 0xFF98,
  scim::SCIM_KEY_KP_Down = 0xFF99, scim::SCIM_KEY_KP_Prior = 0xFF9A, scim::SCIM_KEY_KP_Page_Up = 0xFF9A, scim::SCIM_KEY_KP_Next = 0xFF9B,
  scim::SCIM_KEY_KP_Page_Down = 0xFF9B, scim::SCIM_KEY_KP_End = 0xFF9C, scim::SCIM_KEY_KP_Begin = 0xFF9D, scim::SCIM_KEY_KP_Insert = 0xFF9E,
  scim::SCIM_KEY_KP_Delete = 0xFF9F, scim::SCIM_KEY_KP_Equal = 0xFFBD, scim::SCIM_KEY_KP_Multiply = 0xFFAA, scim::SCIM_KEY_KP_Add = 0xFFAB,
  scim::SCIM_KEY_KP_Separator = 0xFFAC, scim::SCIM_KEY_KP_Subtract = 0xFFAD, scim::SCIM_KEY_KP_Decimal = 0xFFAE, scim::SCIM_KEY_KP_Divide = 0xFFAF,
  scim::SCIM_KEY_KP_0 = 0xFFB0, scim::SCIM_KEY_KP_1 = 0xFFB1, scim::SCIM_KEY_KP_2 = 0xFFB2, scim::SCIM_KEY_KP_3 = 0xFFB3,
  scim::SCIM_KEY_KP_4 = 0xFFB4, scim::SCIM_KEY_KP_5 = 0xFFB5, scim::SCIM_KEY_KP_6 = 0xFFB6, scim::SCIM_KEY_KP_7 = 0xFFB7,
  scim::SCIM_KEY_KP_8 = 0xFFB8, scim::SCIM_KEY_KP_9 = 0xFFB9, scim::SCIM_KEY_F1 = 0xFFBE, scim::SCIM_KEY_F2 = 0xFFBF,
  scim::SCIM_KEY_F3 = 0xFFC0, scim::SCIM_KEY_F4 = 0xFFC1, scim::SCIM_KEY_F5 = 0xFFC2, scim::SCIM_KEY_F6 = 0xFFC3,
  scim::SCIM_KEY_F7 = 0xFFC4, scim::SCIM_KEY_F8 = 0xFFC5, scim::SCIM_KEY_F9 = 0xFFC6, scim::SCIM_KEY_F10 = 0xFFC7,
  scim::SCIM_KEY_F11 = 0xFFC8, scim::SCIM_KEY_F12 = 0xFFC9, scim::SCIM_KEY_F13 = 0xFFCA, scim::SCIM_KEY_F14 = 0xFFCB,
  scim::SCIM_KEY_F15 = 0xFFCC, scim::SCIM_KEY_F16 = 0xFFCD, scim::SCIM_KEY_F17 = 0xFFCE, scim::SCIM_KEY_F18 = 0xFFCF,
  scim::SCIM_KEY_F19 = 0xFFD0, scim::SCIM_KEY_F20 = 0xFFD1, scim::SCIM_KEY_F21 = 0xFFD2, scim::SCIM_KEY_F22 = 0xFFD3,
  scim::SCIM_KEY_F23 = 0xFFD4, scim::SCIM_KEY_F24 = 0xFFD5, scim::SCIM_KEY_F25 = 0xFFD6, scim::SCIM_KEY_F26 = 0xFFD7,
  scim::SCIM_KEY_F27 = 0xFFD8, scim::SCIM_KEY_F28 = 0xFFD9, scim::SCIM_KEY_F29 = 0xFFDA, scim::SCIM_KEY_F30 = 0xFFDB,
  scim::SCIM_KEY_F31 = 0xFFDC, scim::SCIM_KEY_F32 = 0xFFDD, scim::SCIM_KEY_F33 = 0xFFDE, scim::SCIM_KEY_F34 = 0xFFDF,
  scim::SCIM_KEY_F35 = 0xFFE0, scim::SCIM_KEY_Shift_L = 0xFFE1, scim::SCIM_KEY_Shift_R = 0xFFE2, scim::SCIM_KEY_Control_L = 0xFFE3,
  scim::SCIM_KEY_Control_R = 0xFFE4, scim::SCIM_KEY_Caps_Lock = 0xFFE5, scim::SCIM_KEY_Shift_Lock = 0xFFE6, scim::SCIM_KEY_Meta_L = 0xFFE7,
  scim::SCIM_KEY_Meta_R = 0xFFE8, scim::SCIM_KEY_Alt_L = 0xFFE9, scim::SCIM_KEY_Alt_R = 0xFFEA, scim::SCIM_KEY_Super_L = 0xFFEB,
  scim::SCIM_KEY_Super_R = 0xFFEC, scim::SCIM_KEY_Hyper_L = 0xFFED, scim::SCIM_KEY_Hyper_R = 0xFFEE, scim::SCIM_KEY_ISO_Lock = 0xFE01,
  scim::SCIM_KEY_ISO_Level2_Latch = 0xFE02, scim::SCIM_KEY_ISO_Level3_Shift = 0xFE03, scim::SCIM_KEY_ISO_Level3_Latch = 0xFE04, scim::SCIM_KEY_ISO_Level3_Lock = 0xFE05,
  scim::SCIM_KEY_ISO_Group_Shift = 0xFF7E, scim::SCIM_KEY_ISO_Group_Latch = 0xFE06, scim::SCIM_KEY_ISO_Group_Lock = 0xFE07, scim::SCIM_KEY_ISO_Next_Group = 0xFE08,
  scim::SCIM_KEY_ISO_Next_Group_Lock = 0xFE09, scim::SCIM_KEY_ISO_Prev_Group = 0xFE0A, scim::SCIM_KEY_ISO_Prev_Group_Lock = 0xFE0B, scim::SCIM_KEY_ISO_First_Group = 0xFE0C,
  scim::SCIM_KEY_ISO_First_Group_Lock = 0xFE0D, scim::SCIM_KEY_ISO_Last_Group = 0xFE0E, scim::SCIM_KEY_ISO_Last_Group_Lock = 0xFE0F, scim::SCIM_KEY_ISO_Left_Tab = 0xFE20,
  scim::SCIM_KEY_ISO_Move_Line_Up = 0xFE21, scim::SCIM_KEY_ISO_Move_Line_Down = 0xFE22, scim::SCIM_KEY_ISO_Partial_Line_Up = 0xFE23, scim::SCIM_KEY_ISO_Partial_Line_Down = 0xFE24,
  scim::SCIM_KEY_ISO_Partial_Space_Left = 0xFE25, scim::SCIM_KEY_ISO_Partial_Space_Right = 0xFE26, scim::SCIM_KEY_ISO_Set_Margin_Left = 0xFE27, scim::SCIM_KEY_ISO_Set_Margin_Right = 0xFE28,
  scim::SCIM_KEY_ISO_Release_Margin_Left = 0xFE29, scim::SCIM_KEY_ISO_Release_Margin_Right = 0xFE2A, scim::SCIM_KEY_ISO_Release_Both_Margins = 0xFE2B, scim::SCIM_KEY_ISO_Fast_Cursor_Left = 0xFE2C,
  scim::SCIM_KEY_ISO_Fast_Cursor_Right = 0xFE2D, scim::SCIM_KEY_ISO_Fast_Cursor_Up = 0xFE2E, scim::SCIM_KEY_ISO_Fast_Cursor_Down = 0xFE2F, scim::SCIM_KEY_ISO_Continuous_Underline = 0xFE30,
  scim::SCIM_KEY_ISO_Discontinuous_Underline = 0xFE31, scim::SCIM_KEY_ISO_Emphasize = 0xFE32, scim::SCIM_KEY_ISO_Center_Object = 0xFE33, scim::SCIM_KEY_ISO_Enter = 0xFE34,
  scim::SCIM_KEY_dead_grave = 0xFE50, scim::SCIM_KEY_dead_acute = 0xFE51, scim::SCIM_KEY_dead_circumflex = 0xFE52, scim::SCIM_KEY_dead_tilde = 0xFE53,
  scim::SCIM_KEY_dead_macron = 0xFE54, scim::SCIM_KEY_dead_breve = 0xFE55, scim::SCIM_KEY_dead_abovedot = 0xFE56, scim::SCIM_KEY_dead_diaeresis = 0xFE57,
  scim::SCIM_KEY_dead_abovering = 0xFE58, scim::SCIM_KEY_dead_doubleacute = 0xFE59, scim::SCIM_KEY_dead_caron = 0xFE5A, scim::SCIM_KEY_dead_cedilla = 0xFE5B,
  scim::SCIM_KEY_dead_ogonek = 0xFE5C, scim::SCIM_KEY_dead_iota = 0xFE5D, scim::SCIM_KEY_dead_voiced_sound = 0xFE5E, scim::SCIM_KEY_dead_semivoiced_sound = 0xFE5F,
  scim::SCIM_KEY_dead_belowdot = 0xFE60, scim::SCIM_KEY_dead_hook = 0xFE61, scim::SCIM_KEY_dead_horn = 0xFE62, scim::SCIM_KEY_First_Virtual_Screen = 0xFED0,
  scim::SCIM_KEY_Prev_Virtual_Screen = 0xFED1, scim::SCIM_KEY_Next_Virtual_Screen = 0xFED2, scim::SCIM_KEY_Last_Virtual_Screen = 0xFED4, scim::SCIM_KEY_Terminate_Server = 0xFED5,
  scim::SCIM_KEY_AccessX_Enable = 0xFE70, scim::SCIM_KEY_AccessX_Feedback_Enable = 0xFE71, scim::SCIM_KEY_RepeatKeys_Enable = 0xFE72, scim::SCIM_KEY_SlowKeys_Enable = 0xFE73,
  scim::SCIM_KEY_BounceKeys_Enable = 0xFE74, scim::SCIM_KEY_StickyKeys_Enable = 0xFE75, scim::SCIM_KEY_MouseKeys_Enable = 0xFE76, scim::SCIM_KEY_MouseKeys_Accel_Enable = 0xFE77,
  scim::SCIM_KEY_Overlay1_Enable = 0xFE78, scim::SCIM_KEY_Overlay2_Enable = 0xFE79, scim::SCIM_KEY_AudibleBell_Enable = 0xFE7A, scim::SCIM_KEY_Pointer_Left = 0xFEE0,
  scim::SCIM_KEY_Pointer_Right = 0xFEE1, scim::SCIM_KEY_Pointer_Up = 0xFEE2, scim::SCIM_KEY_Pointer_Down = 0xFEE3, scim::SCIM_KEY_Pointer_UpLeft = 0xFEE4,
  scim::SCIM_KEY_Pointer_UpRight = 0xFEE5, scim::SCIM_KEY_Pointer_DownLeft = 0xFEE6, scim::SCIM_KEY_Pointer_DownRight = 0xFEE7, scim::SCIM_KEY_Pointer_Button_Dflt = 0xFEE8,
  scim::SCIM_KEY_Pointer_Button1 = 0xFEE9, scim::SCIM_KEY_Pointer_Button2 = 0xFEEA, scim::SCIM_KEY_Pointer_Button3 = 0xFEEB, scim::SCIM_KEY_Pointer_Button4 = 0xFEEC,
  scim::SCIM_KEY_Pointer_Button5 = 0xFEED, scim::SCIM_KEY_Pointer_DblClick_Dflt = 0xFEEE, scim::SCIM_KEY_Pointer_DblClick1 = 0xFEEF, scim::SCIM_KEY_Pointer_DblClick2 = 0xFEF0,
  scim::SCIM_KEY_Pointer_DblClick3 = 0xFEF1, scim::SCIM_KEY_Pointer_DblClick4 = 0xFEF2, scim::SCIM_KEY_Pointer_DblClick5 = 0xFEF3, scim::SCIM_KEY_Pointer_Drag_Dflt = 0xFEF4,
  scim::SCIM_KEY_Pointer_Drag1 = 0xFEF5, scim::SCIM_KEY_Pointer_Drag2 = 0xFEF6, scim::SCIM_KEY_Pointer_Drag3 = 0xFEF7, scim::SCIM_KEY_Pointer_Drag4 = 0xFEF8,
  scim::SCIM_KEY_Pointer_Drag5 = 0xFEFD, scim::SCIM_KEY_Pointer_EnableKeys = 0xFEF9, scim::SCIM_KEY_Pointer_Accelerate = 0xFEFA, scim::SCIM_KEY_Pointer_DfltBtnNext = 0xFEFB,
  scim::SCIM_KEY_Pointer_DfltBtnPrev = 0xFEFC, scim::SCIM_KEY_3270_Duplicate = 0xFD01, scim::SCIM_KEY_3270_FieldMark = 0xFD02, scim::SCIM_KEY_3270_Right2 = 0xFD03,
  scim::SCIM_KEY_3270_Left2 = 0xFD04, scim::SCIM_KEY_3270_BackTab = 0xFD05, scim::SCIM_KEY_3270_EraseEOF = 0xFD06, scim::SCIM_KEY_3270_EraseInput = 0xFD07,
  scim::SCIM_KEY_3270_Reset = 0xFD08, scim::SCIM_KEY_3270_Quit = 0xFD09, scim::SCIM_KEY_3270_PA1 = 0xFD0A, scim::SCIM_KEY_3270_PA2 = 0xFD0B,
  scim::SCIM_KEY_3270_PA3 = 0xFD0C, scim::SCIM_KEY_3270_Test = 0xFD0D, scim::SCIM_KEY_3270_Attn = 0xFD0E, scim::SCIM_KEY_3270_CursorBlink = 0xFD0F,
  scim::SCIM_KEY_3270_AltCursor = 0xFD10, scim::SCIM_KEY_3270_KeyClick = 0xFD11, scim::SCIM_KEY_3270_Jump = 0xFD12, scim::SCIM_KEY_3270_Ident = 0xFD13,
  scim::SCIM_KEY_3270_Rule = 0xFD14, scim::SCIM_KEY_3270_Copy = 0xFD15, scim::SCIM_KEY_3270_Play = 0xFD16, scim::SCIM_KEY_3270_Setup = 0xFD17,
  scim::SCIM_KEY_3270_Record = 0xFD18, scim::SCIM_KEY_3270_ChangeScreen = 0xFD19, scim::SCIM_KEY_3270_DeleteWord = 0xFD1A, scim::SCIM_KEY_3270_ExSelect = 0xFD1B,
  scim::SCIM_KEY_3270_CursorSelect = 0xFD1C, scim::SCIM_KEY_3270_PrintScreen = 0xFD1D, scim::SCIM_KEY_3270_Enter = 0xFD1E, scim::SCIM_KEY_space = 0x020,
  scim::SCIM_KEY_exclam = 0x021, scim::SCIM_KEY_quotedbl = 0x022, scim::SCIM_KEY_numbersign = 0x023, scim::SCIM_KEY_dollar = 0x024,
  scim::SCIM_KEY_percent = 0x025, scim::SCIM_KEY_ampersand = 0x026, scim::SCIM_KEY_apostrophe = 0x027, scim::SCIM_KEY_quoteright = 0x027,
  scim::SCIM_KEY_parenleft = 0x028, scim::SCIM_KEY_parenright = 0x029, scim::SCIM_KEY_asterisk = 0x02a, scim::SCIM_KEY_plus = 0x02b,
  scim::SCIM_KEY_comma = 0x02c, scim::SCIM_KEY_minus = 0x02d, scim::SCIM_KEY_period = 0x02e, scim::SCIM_KEY_slash = 0x02f,
  scim::SCIM_KEY_0 = 0x030, scim::SCIM_KEY_1 = 0x031, scim::SCIM_KEY_2 = 0x032, scim::SCIM_KEY_3 = 0x033,
  scim::SCIM_KEY_4 = 0x034, scim::SCIM_KEY_5 = 0x035, scim::SCIM_KEY_6 = 0x036, scim::SCIM_KEY_7 = 0x037,
  scim::SCIM_KEY_8 = 0x038, scim::SCIM_KEY_9 = 0x039, scim::SCIM_KEY_colon = 0x03a, scim::SCIM_KEY_semicolon = 0x03b,
  scim::SCIM_KEY_less = 0x03c, scim::SCIM_KEY_equal = 0x03d, scim::SCIM_KEY_greater = 0x03e, scim::SCIM_KEY_question = 0x03f,
  scim::SCIM_KEY_at = 0x040, scim::SCIM_KEY_A = 0x041, scim::SCIM_KEY_B = 0x042, scim::SCIM_KEY_C = 0x043,
  scim::SCIM_KEY_D = 0x044, scim::SCIM_KEY_E = 0x045, scim::SCIM_KEY_F = 0x046, scim::SCIM_KEY_G = 0x047,
  scim::SCIM_KEY_H = 0x048, scim::SCIM_KEY_I = 0x049, scim::SCIM_KEY_J = 0x04a, scim::SCIM_KEY_K = 0x04b,
  scim::SCIM_KEY_L = 0x04c, scim::SCIM_KEY_M = 0x04d, scim::SCIM_KEY_N = 0x04e, scim::SCIM_KEY_O = 0x04f,
  scim::SCIM_KEY_P = 0x050, scim::SCIM_KEY_Q = 0x051, scim::SCIM_KEY_R = 0x052, scim::SCIM_KEY_S = 0x053,
  scim::SCIM_KEY_T = 0x054, scim::SCIM_KEY_U = 0x055, scim::SCIM_KEY_V = 0x056, scim::SCIM_KEY_W = 0x057,
  scim::SCIM_KEY_X = 0x058, scim::SCIM_KEY_Y = 0x059, scim::SCIM_KEY_Z = 0x05a, scim::SCIM_KEY_bracketleft = 0x05b,
  scim::SCIM_KEY_backslash = 0x05c, scim::SCIM_KEY_bracketright = 0x05d, scim::SCIM_KEY_asciicircum = 0x05e, scim::SCIM_KEY_underscore = 0x05f,
  scim::SCIM_KEY_grave = 0x060, scim::SCIM_KEY_a = 0x061, scim::SCIM_KEY_b = 0x062, scim::SCIM_KEY_c = 0x063,
  scim::SCIM_KEY_d = 0x064, scim::SCIM_KEY_e = 0x065, scim::SCIM_KEY_f = 0x066, scim::SCIM_KEY_g = 0x067,
  scim::SCIM_KEY_h = 0x068, scim::SCIM_KEY_i = 0x069, scim::SCIM_KEY_j = 0x06a, scim::SCIM_KEY_k = 0x06b,
  scim::SCIM_KEY_l = 0x06c, scim::SCIM_KEY_m = 0x06d, scim::SCIM_KEY_n = 0x06e, scim::SCIM_KEY_o = 0x06f,
  scim::SCIM_KEY_p = 0x070, scim::SCIM_KEY_q = 0x071, scim::SCIM_KEY_r = 0x072, scim::SCIM_KEY_s = 0x073,
  scim::SCIM_KEY_t = 0x074, scim::SCIM_KEY_u = 0x075, scim::SCIM_KEY_v = 0x076, scim::SCIM_KEY_w = 0x077,
  scim::SCIM_KEY_x = 0x078, scim::SCIM_KEY_y = 0x079, scim::SCIM_KEY_z = 0x07a, scim::SCIM_KEY_braceleft = 0x07b,
  scim::SCIM_KEY_bar = 0x07c, scim::SCIM_KEY_braceright = 0x07d, scim::SCIM_KEY_asciitilde = 0x07e, scim::SCIM_KEY_nobreakspace = 0x0a0,
  scim::SCIM_KEY_exclamdown = 0x0a1, scim::SCIM_KEY_cent = 0x0a2, scim::SCIM_KEY_sterling = 0x0a3, scim::SCIM_KEY_currency = 0x0a4,
  scim::SCIM_KEY_yen = 0x0a5, scim::SCIM_KEY_brokenbar = 0x0a6, scim::SCIM_KEY_section = 0x0a7, scim::SCIM_KEY_diaeresis = 0x0a8,
  scim::SCIM_KEY_copyright = 0x0a9, scim::SCIM_KEY_ordfeminine = 0x0aa, scim::SCIM_KEY_guillemotleft = 0x0ab, scim::SCIM_KEY_notsign = 0x0ac,
  scim::SCIM_KEY_hyphen = 0x0ad, scim::SCIM_KEY_registered = 0x0ae, scim::SCIM_KEY_macron = 0x0af, scim::SCIM_KEY_degree = 0x0b0,
  scim::SCIM_KEY_plusminus = 0x0b1, scim::SCIM_KEY_twosuperior = 0x0b2, scim::SCIM_KEY_threesuperior = 0x0b3, scim::SCIM_KEY_acute = 0x0b4,
  scim::SCIM_KEY_mu = 0x0b5, scim::SCIM_KEY_paragraph = 0x0b6, scim::SCIM_KEY_periodcentered = 0x0b7, scim::SCIM_KEY_cedilla = 0x0b8,
  scim::SCIM_KEY_onesuperior = 0x0b9, scim::SCIM_KEY_masculine = 0x0ba, scim::SCIM_KEY_guillemotright = 0x0bb, scim::SCIM_KEY_onequarter = 0x0bc,
  scim::SCIM_KEY_onehalf = 0x0bd, scim::SCIM_KEY_threequarters = 0x0be, scim::SCIM_KEY_questiondown = 0x0bf, scim::SCIM_KEY_Agrave = 0x0c0,
  scim::SCIM_KEY_Aacute = 0x0c1, scim::SCIM_KEY_Acircumflex = 0x0c2, scim::SCIM_KEY_Atilde = 0x0c3, scim::SCIM_KEY_Adiaeresis = 0x0c4,
  scim::SCIM_KEY_Aring = 0x0c5, scim::SCIM_KEY_AE = 0x0c6, scim::SCIM_KEY_Ccedilla = 0x0c7, scim::SCIM_KEY_Egrave = 0x0c8,
  scim::SCIM_KEY_Eacute = 0x0c9, scim::SCIM_KEY_Ecircumflex = 0x0ca, scim::SCIM_KEY_Ediaeresis = 0x0cb, scim::SCIM_KEY_Igrave = 0x0cc,
  scim::SCIM_KEY_Iacute = 0x0cd, scim::SCIM_KEY_Icircumflex = 0x0ce, scim::SCIM_KEY_Idiaeresis = 0x0cf, scim::SCIM_KEY_ETH = 0x0d0,
  scim::SCIM_KEY_Eth = 0x0d0, scim::SCIM_KEY_Ntilde = 0x0d1, scim::SCIM_KEY_Ograve = 0x0d2, scim::SCIM_KEY_Oacute = 0x0d3,
  scim::SCIM_KEY_Ocircumflex = 0x0d4, scim::SCIM_KEY_Otilde = 0x0d5, scim::SCIM_KEY_Odiaeresis = 0x0d6, scim::SCIM_KEY_multiply = 0x0d7,
  scim::SCIM_KEY_Ooblique = 0x0d8, scim::SCIM_KEY_Oslash = SCIM_KEY_Ooblique, scim::SCIM_KEY_Ugrave = 0x0d9, scim::SCIM_KEY_Uacute = 0x0da,
  scim::SCIM_KEY_Ucircumflex = 0x0db, scim::SCIM_KEY_Udiaeresis = 0x0dc, scim::SCIM_KEY_Yacute = 0x0dd, scim::SCIM_KEY_THORN = 0x0de,
  scim::SCIM_KEY_Thorn = 0x0de, scim::SCIM_KEY_ssharp = 0x0df, scim::SCIM_KEY_agrave = 0x0e0, scim::SCIM_KEY_aacute = 0x0e1,
  scim::SCIM_KEY_acircumflex = 0x0e2, scim::SCIM_KEY_atilde = 0x0e3, scim::SCIM_KEY_adiaeresis = 0x0e4, scim::SCIM_KEY_aring = 0x0e5,
  scim::SCIM_KEY_ae = 0x0e6, scim::SCIM_KEY_ccedilla = 0x0e7, scim::SCIM_KEY_egrave = 0x0e8, scim::SCIM_KEY_eacute = 0x0e9,
  scim::SCIM_KEY_ecircumflex = 0x0ea, scim::SCIM_KEY_ediaeresis = 0x0eb, scim::SCIM_KEY_igrave = 0x0ec, scim::SCIM_KEY_iacute = 0x0ed,
  scim::SCIM_KEY_icircumflex = 0x0ee, scim::SCIM_KEY_idiaeresis = 0x0ef, scim::SCIM_KEY_eth = 0x0f0, scim::SCIM_KEY_ntilde = 0x0f1,
  scim::SCIM_KEY_ograve = 0x0f2, scim::SCIM_KEY_oacute = 0x0f3, scim::SCIM_KEY_ocircumflex = 0x0f4, scim::SCIM_KEY_otilde = 0x0f5,
  scim::SCIM_KEY_odiaeresis = 0x0f6, scim::SCIM_KEY_division = 0x0f7, scim::SCIM_KEY_oslash = 0x0f8, scim::SCIM_KEY_ooblique = SCIM_KEY_oslash,
  scim::SCIM_KEY_ugrave = 0x0f9, scim::SCIM_KEY_uacute = 0x0fa, scim::SCIM_KEY_ucircumflex = 0x0fb, scim::SCIM_KEY_udiaeresis = 0x0fc,
  scim::SCIM_KEY_yacute = 0x0fd, scim::SCIM_KEY_thorn = 0x0fe, scim::SCIM_KEY_ydiaeresis = 0x0ff, scim::SCIM_KEY_Aogonek = 0x1a1,
  scim::SCIM_KEY_breve = 0x1a2, scim::SCIM_KEY_Lstroke = 0x1a3, scim::SCIM_KEY_Lcaron = 0x1a5, scim::SCIM_KEY_Sacute = 0x1a6,
  scim::SCIM_KEY_Scaron = 0x1a9, scim::SCIM_KEY_Scedilla = 0x1aa, scim::SCIM_KEY_Tcaron = 0x1ab, scim::SCIM_KEY_Zacute = 0x1ac,
  scim::SCIM_KEY_Zcaron = 0x1ae, scim::SCIM_KEY_Zabovedot = 0x1af, scim::SCIM_KEY_aogonek = 0x1b1, scim::SCIM_KEY_ogonek = 0x1b2,
  scim::SCIM_KEY_lstroke = 0x1b3, scim::SCIM_KEY_lcaron = 0x1b5, scim::SCIM_KEY_sacute = 0x1b6, scim::SCIM_KEY_caron = 0x1b7,
  scim::SCIM_KEY_scaron = 0x1b9, scim::SCIM_KEY_scedilla = 0x1ba, scim::SCIM_KEY_tcaron = 0x1bb, scim::SCIM_KEY_zacute = 0x1bc,
  scim::SCIM_KEY_doubleacute = 0x1bd, scim::SCIM_KEY_zcaron = 0x1be, scim::SCIM_KEY_zabovedot = 0x1bf, scim::SCIM_KEY_Racute = 0x1c0,
  scim::SCIM_KEY_Abreve = 0x1c3, scim::SCIM_KEY_Lacute = 0x1c5, scim::SCIM_KEY_Cacute = 0x1c6, scim::SCIM_KEY_Ccaron = 0x1c8,
  scim::SCIM_KEY_Eogonek = 0x1ca, scim::SCIM_KEY_Ecaron = 0x1cc, scim::SCIM_KEY_Dcaron = 0x1cf, scim::SCIM_KEY_Dstroke = 0x1d0,
  scim::SCIM_KEY_Nacute = 0x1d1, scim::SCIM_KEY_Ncaron = 0x1d2, scim::SCIM_KEY_Odoubleacute = 0x1d5, scim::SCIM_KEY_Rcaron = 0x1d8,
  scim::SCIM_KEY_Uring = 0x1d9, scim::SCIM_KEY_Udoubleacute = 0x1db, scim::SCIM_KEY_Tcedilla = 0x1de, scim::SCIM_KEY_racute = 0x1e0,
  scim::SCIM_KEY_abreve = 0x1e3, scim::SCIM_KEY_lacute = 0x1e5, scim::SCIM_KEY_cacute = 0x1e6, scim::SCIM_KEY_ccaron = 0x1e8,
  scim::SCIM_KEY_eogonek = 0x1ea, scim::SCIM_KEY_ecaron = 0x1ec, scim::SCIM_KEY_dcaron = 0x1ef, scim::SCIM_KEY_dstroke = 0x1f0,
  scim::SCIM_KEY_nacute = 0x1f1, scim::SCIM_KEY_ncaron = 0x1f2, scim::SCIM_KEY_odoubleacute = 0x1f5, scim::SCIM_KEY_udoubleacute = 0x1fb,
  scim::SCIM_KEY_rcaron = 0x1f8, scim::SCIM_KEY_uring = 0x1f9, scim::SCIM_KEY_tcedilla = 0x1fe, scim::SCIM_KEY_abovedot = 0x1ff,
  scim::SCIM_KEY_Hstroke = 0x2a1, scim::SCIM_KEY_Hcircumflex = 0x2a6, scim::SCIM_KEY_Iabovedot = 0x2a9, scim::SCIM_KEY_Gbreve = 0x2ab,
  scim::SCIM_KEY_Jcircumflex = 0x2ac, scim::SCIM_KEY_hstroke = 0x2b1, scim::SCIM_KEY_hcircumflex = 0x2b6, scim::SCIM_KEY_idotless = 0x2b9,
  scim::SCIM_KEY_gbreve = 0x2bb, scim::SCIM_KEY_jcircumflex = 0x2bc, scim::SCIM_KEY_Cabovedot = 0x2c5, scim::SCIM_KEY_Ccircumflex = 0x2c6,
  scim::SCIM_KEY_Gabovedot = 0x2d5, scim::SCIM_KEY_Gcircumflex = 0x2d8, scim::SCIM_KEY_Ubreve = 0x2dd, scim::SCIM_KEY_Scircumflex = 0x2de,
  scim::SCIM_KEY_cabovedot = 0x2e5, scim::SCIM_KEY_ccircumflex = 0x2e6, scim::SCIM_KEY_gabovedot = 0x2f5, scim::SCIM_KEY_gcircumflex = 0x2f8,
  scim::SCIM_KEY_ubreve = 0x2fd, scim::SCIM_KEY_scircumflex = 0x2fe, scim::SCIM_KEY_kra = 0x3a2, scim::SCIM_KEY_kappa = 0x3a2,
  scim::SCIM_KEY_Rcedilla = 0x3a3, scim::SCIM_KEY_Itilde = 0x3a5, scim::SCIM_KEY_Lcedilla = 0x3a6, scim::SCIM_KEY_Emacron = 0x3aa,
  scim::SCIM_KEY_Gcedilla = 0x3ab, scim::SCIM_KEY_Tslash = 0x3ac, scim::SCIM_KEY_rcedilla = 0x3b3, scim::SCIM_KEY_itilde = 0x3b5,
  scim::SCIM_KEY_lcedilla = 0x3b6, scim::SCIM_KEY_emacron = 0x3ba, scim::SCIM_KEY_gcedilla = 0x3bb, scim::SCIM_KEY_tslash = 0x3bc,
  scim::SCIM_KEY_ENG = 0x3bd, scim::SCIM_KEY_eng = 0x3bf, scim::SCIM_KEY_Amacron = 0x3c0, scim::SCIM_KEY_Iogonek = 0x3c7,
  scim::SCIM_KEY_Eabovedot = 0x3cc, scim::SCIM_KEY_Imacron = 0x3cf, scim::SCIM_KEY_Ncedilla = 0x3d1, scim::SCIM_KEY_Omacron = 0x3d2,
  scim::SCIM_KEY_Kcedilla = 0x3d3, scim::SCIM_KEY_Uogonek = 0x3d9, scim::SCIM_KEY_Utilde = 0x3dd, scim::SCIM_KEY_Umacron = 0x3de,
  scim::SCIM_KEY_amacron = 0x3e0, scim::SCIM_KEY_iogonek = 0x3e7, scim::SCIM_KEY_eabovedot = 0x3ec, scim::SCIM_KEY_imacron = 0x3ef,
  scim::SCIM_KEY_ncedilla = 0x3f1, scim::SCIM_KEY_omacron = 0x3f2, scim::SCIM_KEY_kcedilla = 0x3f3, scim::SCIM_KEY_uogonek = 0x3f9,
  scim::SCIM_KEY_utilde = 0x3fd, scim::SCIM_KEY_umacron = 0x3fe, scim::SCIM_KEY_Babovedot = 0x12a1, scim::SCIM_KEY_babovedot = 0x12a2,
  scim::SCIM_KEY_Dabovedot = 0x12a6, scim::SCIM_KEY_Wgrave = 0x12a8, scim::SCIM_KEY_Wacute = 0x12aa, scim::SCIM_KEY_dabovedot = 0x12ab,
  scim::SCIM_KEY_Ygrave = 0x12ac, scim::SCIM_KEY_Fabovedot = 0x12b0, scim::SCIM_KEY_fabovedot = 0x12b1, scim::SCIM_KEY_Mabovedot = 0x12b4,
  scim::SCIM_KEY_mabovedot = 0x12b5, scim::SCIM_KEY_Pabovedot = 0x12b7, scim::SCIM_KEY_wgrave = 0x12b8, scim::SCIM_KEY_pabovedot = 0x12b9,
  scim::SCIM_KEY_wacute = 0x12ba, scim::SCIM_KEY_Sabovedot = 0x12bb, scim::SCIM_KEY_ygrave = 0x12bc, scim::SCIM_KEY_Wdiaeresis = 0x12bd,
  scim::SCIM_KEY_wdiaeresis = 0x12be, scim::SCIM_KEY_sabovedot = 0x12bf, scim::SCIM_KEY_Wcircumflex = 0x12d0, scim::SCIM_KEY_Tabovedot = 0x12d7,
  scim::SCIM_KEY_Ycircumflex = 0x12de, scim::SCIM_KEY_wcircumflex = 0x12f0, scim::SCIM_KEY_tabovedot = 0x12f7, scim::SCIM_KEY_ycircumflex = 0x12fe,
  scim::SCIM_KEY_OE = 0x13bc, scim::SCIM_KEY_oe = 0x13bd, scim::SCIM_KEY_Ydiaeresis = 0x13be, scim::SCIM_KEY_overline = 0x47e,
  scim::SCIM_KEY_kana_fullstop = 0x4a1, scim::SCIM_KEY_kana_openingbracket = 0x4a2, scim::SCIM_KEY_kana_closingbracket = 0x4a3, scim::SCIM_KEY_kana_comma = 0x4a4,
  scim::SCIM_KEY_kana_conjunctive = 0x4a5, scim::SCIM_KEY_kana_middledot = 0x4a5, scim::SCIM_KEY_kana_WO = 0x4a6, scim::SCIM_KEY_kana_a = 0x4a7,
  scim::SCIM_KEY_kana_i = 0x4a8, scim::SCIM_KEY_kana_u = 0x4a9, scim::SCIM_KEY_kana_e = 0x4aa, scim::SCIM_KEY_kana_o = 0x4ab,
  scim::SCIM_KEY_kana_ya = 0x4ac, scim::SCIM_KEY_kana_yu = 0x4ad, scim::SCIM_KEY_kana_yo = 0x4ae, scim::SCIM_KEY_kana_tsu = 0x4af,
  scim::SCIM_KEY_kana_tu = 0x4af, scim::SCIM_KEY_prolongedsound = 0x4b0, scim::SCIM_KEY_kana_A = 0x4b1, scim::SCIM_KEY_kana_I = 0x4b2,
  scim::SCIM_KEY_kana_U = 0x4b3, scim::SCIM_KEY_kana_E = 0x4b4, scim::SCIM_KEY_kana_O = 0x4b5, scim::SCIM_KEY_kana_KA = 0x4b6,
  scim::SCIM_KEY_kana_KI = 0x4b7, scim::SCIM_KEY_kana_KU = 0x4b8, scim::SCIM_KEY_kana_KE = 0x4b9, scim::SCIM_KEY_kana_KO = 0x4ba,
  scim::SCIM_KEY_kana_SA = 0x4bb, scim::SCIM_KEY_kana_SHI = 0x4bc, scim::SCIM_KEY_kana_SU = 0x4bd, scim::SCIM_KEY_kana_SE = 0x4be,
  scim::SCIM_KEY_kana_SO = 0x4bf, scim::SCIM_KEY_kana_TA = 0x4c0, scim::SCIM_KEY_kana_CHI = 0x4c1, scim::SCIM_KEY_kana_TI = 0x4c1,
  scim::SCIM_KEY_kana_TSU = 0x4c2, scim::SCIM_KEY_kana_TU = 0x4c2, scim::SCIM_KEY_kana_TE = 0x4c3, scim::SCIM_KEY_kana_TO = 0x4c4,
  scim::SCIM_KEY_kana_NA = 0x4c5, scim::SCIM_KEY_kana_NI = 0x4c6, scim::SCIM_KEY_kana_NU = 0x4c7, scim::SCIM_KEY_kana_NE = 0x4c8,
  scim::SCIM_KEY_kana_NO = 0x4c9, scim::SCIM_KEY_kana_HA = 0x4ca, scim::SCIM_KEY_kana_HI = 0x4cb, scim::SCIM_KEY_kana_FU = 0x4cc,
  scim::SCIM_KEY_kana_HU = 0x4cc, scim::SCIM_KEY_kana_HE = 0x4cd, scim::SCIM_KEY_kana_HO = 0x4ce, scim::SCIM_KEY_kana_MA = 0x4cf,
  scim::SCIM_KEY_kana_MI = 0x4d0, scim::SCIM_KEY_kana_MU = 0x4d1, scim::SCIM_KEY_kana_ME = 0x4d2, scim::SCIM_KEY_kana_MO = 0x4d3,
  scim::SCIM_KEY_kana_YA = 0x4d4, scim::SCIM_KEY_kana_YU = 0x4d5, scim::SCIM_KEY_kana_YO = 0x4d6, scim::SCIM_KEY_kana_RA = 0x4d7,
  scim::SCIM_KEY_kana_RI = 0x4d8, scim::SCIM_KEY_kana_RU = 0x4d9, scim::SCIM_KEY_kana_RE = 0x4da, scim::SCIM_KEY_kana_RO = 0x4db,
  scim::SCIM_KEY_kana_WA = 0x4dc, scim::SCIM_KEY_kana_N = 0x4dd, scim::SCIM_KEY_voicedsound = 0x4de, scim::SCIM_KEY_semivoicedsound = 0x4df,
  scim::SCIM_KEY_kana_switch = 0xFF7E, scim::SCIM_KEY_Farsi_0 = 0x590, scim::SCIM_KEY_Farsi_1 = 0x591, scim::SCIM_KEY_Farsi_2 = 0x592,
  scim::SCIM_KEY_Farsi_3 = 0x593, scim::SCIM_KEY_Farsi_4 = 0x594, scim::SCIM_KEY_Farsi_5 = 0x595, scim::SCIM_KEY_Farsi_6 = 0x596,
  scim::SCIM_KEY_Farsi_7 = 0x597, scim::SCIM_KEY_Farsi_8 = 0x598, scim::SCIM_KEY_Farsi_9 = 0x599, scim::SCIM_KEY_Arabic_percent = 0x5a5,
  scim::SCIM_KEY_Arabic_superscript_alef = 0x5a6, scim::SCIM_KEY_Arabic_tteh = 0x5a7, scim::SCIM_KEY_Arabic_peh = 0x5a8, scim::SCIM_KEY_Arabic_tcheh = 0x5a9,
  scim::SCIM_KEY_Arabic_ddal = 0x5aa, scim::SCIM_KEY_Arabic_rreh = 0x5ab, scim::SCIM_KEY_Arabic_comma = 0x5ac, scim::SCIM_KEY_Arabic_fullstop = 0x5ae,
  scim::SCIM_KEY_Arabic_0 = 0x5b0, scim::SCIM_KEY_Arabic_1 = 0x5b1, scim::SCIM_KEY_Arabic_2 = 0x5b2, scim::SCIM_KEY_Arabic_3 = 0x5b3,
  scim::SCIM_KEY_Arabic_4 = 0x5b4, scim::SCIM_KEY_Arabic_5 = 0x5b5, scim::SCIM_KEY_Arabic_6 = 0x5b6, scim::SCIM_KEY_Arabic_7 = 0x5b7,
  scim::SCIM_KEY_Arabic_8 = 0x5b8, scim::SCIM_KEY_Arabic_9 = 0x5b9, scim::SCIM_KEY_Arabic_semicolon = 0x5bb, scim::SCIM_KEY_Arabic_question_mark = 0x5bf,
  scim::SCIM_KEY_Arabic_hamza = 0x5c1, scim::SCIM_KEY_Arabic_maddaonalef = 0x5c2, scim::SCIM_KEY_Arabic_hamzaonalef = 0x5c3, scim::SCIM_KEY_Arabic_hamzaonwaw = 0x5c4,
  scim::SCIM_KEY_Arabic_hamzaunderalef = 0x5c5, scim::SCIM_KEY_Arabic_hamzaonyeh = 0x5c6, scim::SCIM_KEY_Arabic_alef = 0x5c7, scim::SCIM_KEY_Arabic_beh = 0x5c8,
  scim::SCIM_KEY_Arabic_tehmarbuta = 0x5c9, scim::SCIM_KEY_Arabic_teh = 0x5ca, scim::SCIM_KEY_Arabic_theh = 0x5cb, scim::SCIM_KEY_Arabic_jeem = 0x5cc,
  scim::SCIM_KEY_Arabic_hah = 0x5cd, scim::SCIM_KEY_Arabic_khah = 0x5ce, scim::SCIM_KEY_Arabic_dal = 0x5cf, scim::SCIM_KEY_Arabic_thal = 0x5d0,
  scim::SCIM_KEY_Arabic_ra = 0x5d1, scim::SCIM_KEY_Arabic_zain = 0x5d2, scim::SCIM_KEY_Arabic_seen = 0x5d3, scim::SCIM_KEY_Arabic_sheen = 0x5d4,
  scim::SCIM_KEY_Arabic_sad = 0x5d5, scim::SCIM_KEY_Arabic_dad = 0x5d6, scim::SCIM_KEY_Arabic_tah = 0x5d7, scim::SCIM_KEY_Arabic_zah = 0x5d8,
  scim::SCIM_KEY_Arabic_ain = 0x5d9, scim::SCIM_KEY_Arabic_ghain = 0x5da, scim::SCIM_KEY_Arabic_tatweel = 0x5e0, scim::SCIM_KEY_Arabic_feh = 0x5e1,
  scim::SCIM_KEY_Arabic_qaf = 0x5e2, scim::SCIM_KEY_Arabic_kaf = 0x5e3, scim::SCIM_KEY_Arabic_lam = 0x5e4, scim::SCIM_KEY_Arabic_meem = 0x5e5,
  scim::SCIM_KEY_Arabic_noon = 0x5e6, scim::SCIM_KEY_Arabic_ha = 0x5e7, scim::SCIM_KEY_Arabic_heh = 0x5e7, scim::SCIM_KEY_Arabic_waw = 0x5e8,
  scim::SCIM_KEY_Arabic_alefmaksura = 0x5e9, scim::SCIM_KEY_Arabic_yeh = 0x5ea, scim::SCIM_KEY_Arabic_fathatan = 0x5eb, scim::SCIM_KEY_Arabic_dammatan = 0x5ec,
  scim::SCIM_KEY_Arabic_kasratan = 0x5ed, scim::SCIM_KEY_Arabic_fatha = 0x5ee, scim::SCIM_KEY_Arabic_damma = 0x5ef, scim::SCIM_KEY_Arabic_kasra = 0x5f0,
  scim::SCIM_KEY_Arabic_shadda = 0x5f1, scim::SCIM_KEY_Arabic_sukun = 0x5f2, scim::SCIM_KEY_Arabic_madda_above = 0x5f3, scim::SCIM_KEY_Arabic_hamza_above = 0x5f4,
  scim::SCIM_KEY_Arabic_hamza_below = 0x5f5, scim::SCIM_KEY_Arabic_jeh = 0x5f6, scim::SCIM_KEY_Arabic_veh = 0x5f7, scim::SCIM_KEY_Arabic_keheh = 0x5f8,
  scim::SCIM_KEY_Arabic_gaf = 0x5f9, scim::SCIM_KEY_Arabic_noon_ghunna = 0x5fa, scim::SCIM_KEY_Arabic_heh_doachashmee = 0x5fb, scim::SCIM_KEY_Farsi_yeh = 0x5fc,
  scim::SCIM_KEY_Arabic_farsi_yeh = SCIM_KEY_Farsi_yeh, scim::SCIM_KEY_Arabic_yeh_baree = 0x5fd, scim::SCIM_KEY_Arabic_heh_goal = 0x5fe, scim::SCIM_KEY_Arabic_switch = 0xFF7E,
  scim::SCIM_KEY_Cyrillic_GHE_bar = 0x680, scim::SCIM_KEY_Cyrillic_ghe_bar = 0x690, scim::SCIM_KEY_Cyrillic_ZHE_descender = 0x681, scim::SCIM_KEY_Cyrillic_zhe_descender = 0x691,
  scim::SCIM_KEY_Cyrillic_KA_descender = 0x682, scim::SCIM_KEY_Cyrillic_ka_descender = 0x692, scim::SCIM_KEY_Cyrillic_KA_vertstroke = 0x683, scim::SCIM_KEY_Cyrillic_ka_vertstroke = 0x693,
  scim::SCIM_KEY_Cyrillic_EN_descender = 0x684, scim::SCIM_KEY_Cyrillic_en_descender = 0x694, scim::SCIM_KEY_Cyrillic_U_straight = 0x685, scim::SCIM_KEY_Cyrillic_u_straight = 0x695,
  scim::SCIM_KEY_Cyrillic_U_straight_bar = 0x686, scim::SCIM_KEY_Cyrillic_u_straight_bar = 0x696, scim::SCIM_KEY_Cyrillic_HA_descender = 0x687, scim::SCIM_KEY_Cyrillic_ha_descender = 0x697,
  scim::SCIM_KEY_Cyrillic_CHE_descender = 0x688, scim::SCIM_KEY_Cyrillic_che_descender = 0x698, scim::SCIM_KEY_Cyrillic_CHE_vertstroke = 0x689, scim::SCIM_KEY_Cyrillic_che_vertstroke = 0x699,
  scim::SCIM_KEY_Cyrillic_SHHA = 0x68a, scim::SCIM_KEY_Cyrillic_shha = 0x69a, scim::SCIM_KEY_Cyrillic_SCHWA = 0x68c, scim::SCIM_KEY_Cyrillic_schwa = 0x69c,
  scim::SCIM_KEY_Cyrillic_I_macron = 0x68d, scim::SCIM_KEY_Cyrillic_i_macron = 0x69d, scim::SCIM_KEY_Cyrillic_O_bar = 0x68e, scim::SCIM_KEY_Cyrillic_o_bar = 0x69e,
  scim::SCIM_KEY_Cyrillic_U_macron = 0x68f, scim::SCIM_KEY_Cyrillic_u_macron = 0x69f, scim::SCIM_KEY_Serbian_dje = 0x6a1, scim::SCIM_KEY_Macedonia_gje = 0x6a2,
  scim::SCIM_KEY_Cyrillic_io = 0x6a3, scim::SCIM_KEY_Ukrainian_ie = 0x6a4, scim::SCIM_KEY_Ukranian_je = 0x6a4, scim::SCIM_KEY_Macedonia_dse = 0x6a5,
  scim::SCIM_KEY_Ukrainian_i = 0x6a6, scim::SCIM_KEY_Ukranian_i = 0x6a6, scim::SCIM_KEY_Ukrainian_yi = 0x6a7, scim::SCIM_KEY_Ukranian_yi = 0x6a7,
  scim::SCIM_KEY_Cyrillic_je = 0x6a8, scim::SCIM_KEY_Serbian_je = 0x6a8, scim::SCIM_KEY_Cyrillic_lje = 0x6a9, scim::SCIM_KEY_Serbian_lje = 0x6a9,
  scim::SCIM_KEY_Cyrillic_nje = 0x6aa, scim::SCIM_KEY_Serbian_nje = 0x6aa, scim::SCIM_KEY_Serbian_tshe = 0x6ab, scim::SCIM_KEY_Macedonia_kje = 0x6ac,
  scim::SCIM_KEY_Ukrainian_ghe_with_upturn = 0x6ad, scim::SCIM_KEY_Byelorussian_shortu = 0x6ae, scim::SCIM_KEY_Cyrillic_dzhe = 0x6af, scim::SCIM_KEY_Serbian_dze = 0x6af,
  scim::SCIM_KEY_numerosign = 0x6b0, scim::SCIM_KEY_Serbian_DJE = 0x6b1, scim::SCIM_KEY_Macedonia_GJE = 0x6b2, scim::SCIM_KEY_Cyrillic_IO = 0x6b3,
  scim::SCIM_KEY_Ukrainian_IE = 0x6b4, scim::SCIM_KEY_Ukranian_JE = 0x6b4, scim::SCIM_KEY_Macedonia_DSE = 0x6b5, scim::SCIM_KEY_Ukrainian_I = 0x6b6,
  scim::SCIM_KEY_Ukranian_I = 0x6b6, scim::SCIM_KEY_Ukrainian_YI = 0x6b7, scim::SCIM_KEY_Ukranian_YI = 0x6b7, scim::SCIM_KEY_Cyrillic_JE = 0x6b8,
  scim::SCIM_KEY_Serbian_JE = 0x6b8, scim::SCIM_KEY_Cyrillic_LJE = 0x6b9, scim::SCIM_KEY_Serbian_LJE = 0x6b9, scim::SCIM_KEY_Cyrillic_NJE = 0x6ba,
  scim::SCIM_KEY_Serbian_NJE = 0x6ba, scim::SCIM_KEY_Serbian_TSHE = 0x6bb, scim::SCIM_KEY_Macedonia_KJE = 0x6bc, scim::SCIM_KEY_Ukrainian_GHE_WITH_UPTURN = 0x6bd,
  scim::SCIM_KEY_Byelorussian_SHORTU = 0x6be, scim::SCIM_KEY_Cyrillic_DZHE = 0x6bf, scim::SCIM_KEY_Serbian_DZE = 0x6bf, scim::SCIM_KEY_Cyrillic_yu = 0x6c0,
  scim::SCIM_KEY_Cyrillic_a = 0x6c1, scim::SCIM_KEY_Cyrillic_be = 0x6c2, scim::SCIM_KEY_Cyrillic_tse = 0x6c3, scim::SCIM_KEY_Cyrillic_de = 0x6c4,
  scim::SCIM_KEY_Cyrillic_ie = 0x6c5, scim::SCIM_KEY_Cyrillic_ef = 0x6c6, scim::SCIM_KEY_Cyrillic_ghe = 0x6c7, scim::SCIM_KEY_Cyrillic_ha = 0x6c8,
  scim::SCIM_KEY_Cyrillic_i = 0x6c9, scim::SCIM_KEY_Cyrillic_shorti = 0x6ca, scim::SCIM_KEY_Cyrillic_ka = 0x6cb, scim::SCIM_KEY_Cyrillic_el = 0x6cc,
  scim::SCIM_KEY_Cyrillic_em = 0x6cd, scim::SCIM_KEY_Cyrillic_en = 0x6ce, scim::SCIM_KEY_Cyrillic_o = 0x6cf, scim::SCIM_KEY_Cyrillic_pe = 0x6d0,
  scim::SCIM_KEY_Cyrillic_ya = 0x6d1, scim::SCIM_KEY_Cyrillic_er = 0x6d2, scim::SCIM_KEY_Cyrillic_es = 0x6d3, scim::SCIM_KEY_Cyrillic_te = 0x6d4,
  scim::SCIM_KEY_Cyrillic_u = 0x6d5, scim::SCIM_KEY_Cyrillic_zhe = 0x6d6, scim::SCIM_KEY_Cyrillic_ve = 0x6d7, scim::SCIM_KEY_Cyrillic_softsign = 0x6d8,
  scim::SCIM_KEY_Cyrillic_yeru = 0x6d9, scim::SCIM_KEY_Cyrillic_ze = 0x6da, scim::SCIM_KEY_Cyrillic_sha = 0x6db, scim::SCIM_KEY_Cyrillic_e = 0x6dc,
  scim::SCIM_KEY_Cyrillic_shcha = 0x6dd, scim::SCIM_KEY_Cyrillic_che = 0x6de, scim::SCIM_KEY_Cyrillic_hardsign = 0x6df, scim::SCIM_KEY_Cyrillic_YU = 0x6e0,
  scim::SCIM_KEY_Cyrillic_A = 0x6e1, scim::SCIM_KEY_Cyrillic_BE = 0x6e2, scim::SCIM_KEY_Cyrillic_TSE = 0x6e3, scim::SCIM_KEY_Cyrillic_DE = 0x6e4,
  scim::SCIM_KEY_Cyrillic_IE = 0x6e5, scim::SCIM_KEY_Cyrillic_EF = 0x6e6, scim::SCIM_KEY_Cyrillic_GHE = 0x6e7, scim::SCIM_KEY_Cyrillic_HA = 0x6e8,
  scim::SCIM_KEY_Cyrillic_I = 0x6e9, scim::SCIM_KEY_Cyrillic_SHORTI = 0x6ea, scim::SCIM_KEY_Cyrillic_KA = 0x6eb, scim::SCIM_KEY_Cyrillic_EL = 0x6ec,
  scim::SCIM_KEY_Cyrillic_EM = 0x6ed, scim::SCIM_KEY_Cyrillic_EN = 0x6ee, scim::SCIM_KEY_Cyrillic_O = 0x6ef, scim::SCIM_KEY_Cyrillic_PE = 0x6f0,
  scim::SCIM_KEY_Cyrillic_YA = 0x6f1, scim::SCIM_KEY_Cyrillic_ER = 0x6f2, scim::SCIM_KEY_Cyrillic_ES = 0x6f3, scim::SCIM_KEY_Cyrillic_TE = 0x6f4,
  scim::SCIM_KEY_Cyrillic_U = 0x6f5, scim::SCIM_KEY_Cyrillic_ZHE = 0x6f6, scim::SCIM_KEY_Cyrillic_VE = 0x6f7, scim::SCIM_KEY_Cyrillic_SOFTSIGN = 0x6f8,
  scim::SCIM_KEY_Cyrillic_YERU = 0x6f9, scim::SCIM_KEY_Cyrillic_ZE = 0x6fa, scim::SCIM_KEY_Cyrillic_SHA = 0x6fb, scim::SCIM_KEY_Cyrillic_E = 0x6fc,
  scim::SCIM_KEY_Cyrillic_SHCHA = 0x6fd, scim::SCIM_KEY_Cyrillic_CHE = 0x6fe, scim::SCIM_KEY_Cyrillic_HARDSIGN = 0x6ff, scim::SCIM_KEY_Greek_ALPHAaccent = 0x7a1,
  scim::SCIM_KEY_Greek_EPSILONaccent = 0x7a2, scim::SCIM_KEY_Greek_ETAaccent = 0x7a3, scim::SCIM_KEY_Greek_IOTAaccent = 0x7a4, scim::SCIM_KEY_Greek_IOTAdieresis = 0x7a5,
  scim::SCIM_KEY_Greek_IOTAdiaeresis = SCIM_KEY_Greek_IOTAdieresis, scim::SCIM_KEY_Greek_OMICRONaccent = 0x7a7, scim::SCIM_KEY_Greek_UPSILONaccent = 0x7a8, scim::SCIM_KEY_Greek_UPSILONdieresis = 0x7a9,
  scim::SCIM_KEY_Greek_OMEGAaccent = 0x7ab, scim::SCIM_KEY_Greek_accentdieresis = 0x7ae, scim::SCIM_KEY_Greek_horizbar = 0x7af, scim::SCIM_KEY_Greek_alphaaccent = 0x7b1,
  scim::SCIM_KEY_Greek_epsilonaccent = 0x7b2, scim::SCIM_KEY_Greek_etaaccent = 0x7b3, scim::SCIM_KEY_Greek_iotaaccent = 0x7b4, scim::SCIM_KEY_Greek_iotadieresis = 0x7b5,
  scim::SCIM_KEY_Greek_iotaaccentdieresis = 0x7b6, scim::SCIM_KEY_Greek_omicronaccent = 0x7b7, scim::SCIM_KEY_Greek_upsilonaccent = 0x7b8, scim::SCIM_KEY_Greek_upsilondieresis = 0x7b9,
  scim::SCIM_KEY_Greek_upsilonaccentdieresis = 0x7ba, scim::SCIM_KEY_Greek_omegaaccent = 0x7bb, scim::SCIM_KEY_Greek_ALPHA = 0x7c1, scim::SCIM_KEY_Greek_BETA = 0x7c2,
  scim::SCIM_KEY_Greek_GAMMA = 0x7c3, scim::SCIM_KEY_Greek_DELTA = 0x7c4, scim::SCIM_KEY_Greek_EPSILON = 0x7c5, scim::SCIM_KEY_Greek_ZETA = 0x7c6,
  scim::SCIM_KEY_Greek_ETA = 0x7c7, scim::SCIM_KEY_Greek_THETA = 0x7c8, scim::SCIM_KEY_Greek_IOTA = 0x7c9, scim::SCIM_KEY_Greek_KAPPA = 0x7ca,
  scim::SCIM_KEY_Greek_LAMDA = 0x7cb, scim::SCIM_KEY_Greek_LAMBDA = 0x7cb, scim::SCIM_KEY_Greek_MU = 0x7cc, scim::SCIM_KEY_Greek_NU = 0x7cd,
  scim::SCIM_KEY_Greek_XI = 0x7ce, scim::SCIM_KEY_Greek_OMICRON = 0x7cf, scim::SCIM_KEY_Greek_PI = 0x7d0, scim::SCIM_KEY_Greek_RHO = 0x7d1,
  scim::SCIM_KEY_Greek_SIGMA = 0x7d2, scim::SCIM_KEY_Greek_TAU = 0x7d4, scim::SCIM_KEY_Greek_UPSILON = 0x7d5, scim::SCIM_KEY_Greek_PHI = 0x7d6,
  scim::SCIM_KEY_Greek_CHI = 0x7d7, scim::SCIM_KEY_Greek_PSI = 0x7d8, scim::SCIM_KEY_Greek_OMEGA = 0x7d9, scim::SCIM_KEY_Greek_alpha = 0x7e1,
  scim::SCIM_KEY_Greek_beta = 0x7e2, scim::SCIM_KEY_Greek_gamma = 0x7e3, scim::SCIM_KEY_Greek_delta = 0x7e4, scim::SCIM_KEY_Greek_epsilon = 0x7e5,
  scim::SCIM_KEY_Greek_zeta = 0x7e6, scim::SCIM_KEY_Greek_eta = 0x7e7, scim::SCIM_KEY_Greek_theta = 0x7e8, scim::SCIM_KEY_Greek_iota = 0x7e9,
  scim::SCIM_KEY_Greek_kappa = 0x7ea, scim::SCIM_KEY_Greek_lamda = 0x7eb, scim::SCIM_KEY_Greek_lambda = 0x7eb, scim::SCIM_KEY_Greek_mu = 0x7ec,
  scim::SCIM_KEY_Greek_nu = 0x7ed, scim::SCIM_KEY_Greek_xi = 0x7ee, scim::SCIM_KEY_Greek_omicron = 0x7ef, scim::SCIM_KEY_Greek_pi = 0x7f0,
  scim::SCIM_KEY_Greek_rho = 0x7f1, scim::SCIM_KEY_Greek_sigma = 0x7f2, scim::SCIM_KEY_Greek_finalsmallsigma = 0x7f3, scim::SCIM_KEY_Greek_tau = 0x7f4,
  scim::SCIM_KEY_Greek_upsilon = 0x7f5, scim::SCIM_KEY_Greek_phi = 0x7f6, scim::SCIM_KEY_Greek_chi = 0x7f7, scim::SCIM_KEY_Greek_psi = 0x7f8,
  scim::SCIM_KEY_Greek_omega = 0x7f9, scim::SCIM_KEY_Greek_switch = 0xFF7E, scim::SCIM_KEY_leftradical = 0x8a1, scim::SCIM_KEY_topleftradical = 0x8a2,
  scim::SCIM_KEY_horizconnector = 0x8a3, scim::SCIM_KEY_topintegral = 0x8a4, scim::SCIM_KEY_botintegral = 0x8a5, scim::SCIM_KEY_vertconnector = 0x8a6,
  scim::SCIM_KEY_topleftsqbracket = 0x8a7, scim::SCIM_KEY_botleftsqbracket = 0x8a8, scim::SCIM_KEY_toprightsqbracket = 0x8a9, scim::SCIM_KEY_botrightsqbracket = 0x8aa,
  scim::SCIM_KEY_topleftparens = 0x8ab, scim::SCIM_KEY_botleftparens = 0x8ac, scim::SCIM_KEY_toprightparens = 0x8ad, scim::SCIM_KEY_botrightparens = 0x8ae,
  scim::SCIM_KEY_leftmiddlecurlybrace = 0x8af, scim::SCIM_KEY_rightmiddlecurlybrace = 0x8b0, scim::SCIM_KEY_topleftsummation = 0x8b1, scim::SCIM_KEY_botleftsummation = 0x8b2,
  scim::SCIM_KEY_topvertsummationconnector = 0x8b3, scim::SCIM_KEY_botvertsummationconnector = 0x8b4, scim::SCIM_KEY_toprightsummation = 0x8b5, scim::SCIM_KEY_botrightsummation = 0x8b6,
  scim::SCIM_KEY_rightmiddlesummation = 0x8b7, scim::SCIM_KEY_lessthanequal = 0x8bc, scim::SCIM_KEY_notequal = 0x8bd, scim::SCIM_KEY_greaterthanequal = 0x8be,
  scim::SCIM_KEY_integral = 0x8bf, scim::SCIM_KEY_therefore = 0x8c0, scim::SCIM_KEY_variation = 0x8c1, scim::SCIM_KEY_infinity = 0x8c2,
  scim::SCIM_KEY_nabla = 0x8c5, scim::SCIM_KEY_approximate = 0x8c8, scim::SCIM_KEY_similarequal = 0x8c9, scim::SCIM_KEY_ifonlyif = 0x8cd,
  scim::SCIM_KEY_implies = 0x8ce, scim::SCIM_KEY_identical = 0x8cf, scim::SCIM_KEY_radical = 0x8d6, scim::SCIM_KEY_includedin = 0x8da,
  scim::SCIM_KEY_includes = 0x8db, scim::SCIM_KEY_intersection = 0x8dc, scim::SCIM_KEY_union = 0x8dd, scim::SCIM_KEY_logicaland = 0x8de,
  scim::SCIM_KEY_logicalor = 0x8df, scim::SCIM_KEY_partialderivative = 0x8ef, scim::SCIM_KEY_function = 0x8f6, scim::SCIM_KEY_leftarrow = 0x8fb,
  scim::SCIM_KEY_uparrow = 0x8fc, scim::SCIM_KEY_rightarrow = 0x8fd, scim::SCIM_KEY_downarrow = 0x8fe, scim::SCIM_KEY_blank = 0x9df,
  scim::SCIM_KEY_soliddiamond = 0x9e0, scim::SCIM_KEY_checkerboard = 0x9e1, scim::SCIM_KEY_ht = 0x9e2, scim::SCIM_KEY_ff = 0x9e3,
  scim::SCIM_KEY_cr = 0x9e4, scim::SCIM_KEY_lf = 0x9e5, scim::SCIM_KEY_nl = 0x9e8, scim::SCIM_KEY_vt = 0x9e9,
  scim::SCIM_KEY_lowrightcorner = 0x9ea, scim::SCIM_KEY_uprightcorner = 0x9eb, scim::SCIM_KEY_upleftcorner = 0x9ec, scim::SCIM_KEY_lowleftcorner = 0x9ed,
  scim::SCIM_KEY_crossinglines = 0x9ee, scim::SCIM_KEY_horizlinescan1 = 0x9ef, scim::SCIM_KEY_horizlinescan3 = 0x9f0, scim::SCIM_KEY_horizlinescan5 = 0x9f1,
  scim::SCIM_KEY_horizlinescan7 = 0x9f2, scim::SCIM_KEY_horizlinescan9 = 0x9f3, scim::SCIM_KEY_leftt = 0x9f4, scim::SCIM_KEY_rightt = 0x9f5,
  scim::SCIM_KEY_bott = 0x9f6, scim::SCIM_KEY_topt = 0x9f7, scim::SCIM_KEY_vertbar = 0x9f8, scim::SCIM_KEY_emspace = 0xaa1,
  scim::SCIM_KEY_enspace = 0xaa2, scim::SCIM_KEY_em3space = 0xaa3, scim::SCIM_KEY_em4space = 0xaa4, scim::SCIM_KEY_digitspace = 0xaa5,
  scim::SCIM_KEY_punctspace = 0xaa6, scim::SCIM_KEY_thinspace = 0xaa7, scim::SCIM_KEY_hairspace = 0xaa8, scim::SCIM_KEY_emdash = 0xaa9,
  scim::SCIM_KEY_endash = 0xaaa, scim::SCIM_KEY_signifblank = 0xaac, scim::SCIM_KEY_ellipsis = 0xaae, scim::SCIM_KEY_doubbaselinedot = 0xaaf,
  scim::SCIM_KEY_onethird = 0xab0, scim::SCIM_KEY_twothirds = 0xab1, scim::SCIM_KEY_onefifth = 0xab2, scim::SCIM_KEY_twofifths = 0xab3,
  scim::SCIM_KEY_threefifths = 0xab4, scim::SCIM_KEY_fourfifths = 0xab5, scim::SCIM_KEY_onesixth = 0xab6, scim::SCIM_KEY_fivesixths = 0xab7,
  scim::SCIM_KEY_careof = 0xab8, scim::SCIM_KEY_figdash = 0xabb, scim::SCIM_KEY_leftanglebracket = 0xabc, scim::SCIM_KEY_decimalpoint = 0xabd,
  scim::SCIM_KEY_rightanglebracket = 0xabe, scim::SCIM_KEY_marker = 0xabf, scim::SCIM_KEY_oneeighth = 0xac3, scim::SCIM_KEY_threeeighths = 0xac4,
  scim::SCIM_KEY_fiveeighths = 0xac5, scim::SCIM_KEY_seveneighths = 0xac6, scim::SCIM_KEY_trademark = 0xac9, scim::SCIM_KEY_signaturemark = 0xaca,
  scim::SCIM_KEY_trademarkincircle = 0xacb, scim::SCIM_KEY_leftopentriangle = 0xacc, scim::SCIM_KEY_rightopentriangle = 0xacd, scim::SCIM_KEY_emopencircle = 0xace,
  scim::SCIM_KEY_emopenrectangle = 0xacf, scim::SCIM_KEY_leftsinglequotemark = 0xad0, scim::SCIM_KEY_rightsinglequotemark = 0xad1, scim::SCIM_KEY_leftdoublequotemark = 0xad2,
  scim::SCIM_KEY_rightdoublequotemark = 0xad3, scim::SCIM_KEY_prescription = 0xad4, scim::SCIM_KEY_minutes = 0xad6, scim::SCIM_KEY_seconds = 0xad7,
  scim::SCIM_KEY_latincross = 0xad9, scim::SCIM_KEY_hexagram = 0xada, scim::SCIM_KEY_filledrectbullet = 0xadb, scim::SCIM_KEY_filledlefttribullet = 0xadc,
  scim::SCIM_KEY_filledrighttribullet = 0xadd, scim::SCIM_KEY_emfilledcircle = 0xade, scim::SCIM_KEY_emfilledrect = 0xadf, scim::SCIM_KEY_enopencircbullet = 0xae0,
  scim::SCIM_KEY_enopensquarebullet = 0xae1, scim::SCIM_KEY_openrectbullet = 0xae2, scim::SCIM_KEY_opentribulletup = 0xae3, scim::SCIM_KEY_opentribulletdown = 0xae4,
  scim::SCIM_KEY_openstar = 0xae5, scim::SCIM_KEY_enfilledcircbullet = 0xae6, scim::SCIM_KEY_enfilledsqbullet = 0xae7, scim::SCIM_KEY_filledtribulletup = 0xae8,
  scim::SCIM_KEY_filledtribulletdown = 0xae9, scim::SCIM_KEY_leftpointer = 0xaea, scim::SCIM_KEY_rightpointer = 0xaeb, scim::SCIM_KEY_club = 0xaec,
  scim::SCIM_KEY_diamond = 0xaed, scim::SCIM_KEY_heart = 0xaee, scim::SCIM_KEY_maltesecross = 0xaf0, scim::SCIM_KEY_dagger = 0xaf1,
  scim::SCIM_KEY_doubledagger = 0xaf2, scim::SCIM_KEY_checkmark = 0xaf3, scim::SCIM_KEY_ballotcross = 0xaf4, scim::SCIM_KEY_musicalsharp = 0xaf5,
  scim::SCIM_KEY_musicalflat = 0xaf6, scim::SCIM_KEY_malesymbol = 0xaf7, scim::SCIM_KEY_femalesymbol = 0xaf8, scim::SCIM_KEY_telephone = 0xaf9,
  scim::SCIM_KEY_telephonerecorder = 0xafa, scim::SCIM_KEY_phonographcopyright = 0xafb, scim::SCIM_KEY_caret = 0xafc, scim::SCIM_KEY_singlelowquotemark = 0xafd,
  scim::SCIM_KEY_doublelowquotemark = 0xafe, scim::SCIM_KEY_cursor = 0xaff, scim::SCIM_KEY_leftcaret = 0xba3, scim::SCIM_KEY_rightcaret = 0xba6,
  scim::SCIM_KEY_downcaret = 0xba8, scim::SCIM_KEY_upcaret = 0xba9, scim::SCIM_KEY_overbar = 0xbc0, scim::SCIM_KEY_downtack = 0xbc2,
  scim::SCIM_KEY_upshoe = 0xbc3, scim::SCIM_KEY_downstile = 0xbc4, scim::SCIM_KEY_underbar = 0xbc6, scim::SCIM_KEY_jot = 0xbca,
  scim::SCIM_KEY_quad = 0xbcc, scim::SCIM_KEY_uptack = 0xbce, scim::SCIM_KEY_circle = 0xbcf, scim::SCIM_KEY_upstile = 0xbd3,
  scim::SCIM_KEY_downshoe = 0xbd6, scim::SCIM_KEY_rightshoe = 0xbd8, scim::SCIM_KEY_leftshoe = 0xbda, scim::SCIM_KEY_lefttack = 0xbdc,
  scim::SCIM_KEY_righttack = 0xbfc, scim::SCIM_KEY_hebrew_doublelowline = 0xcdf, scim::SCIM_KEY_hebrew_aleph = 0xce0, scim::SCIM_KEY_hebrew_bet = 0xce1,
  scim::SCIM_KEY_hebrew_beth = 0xce1, scim::SCIM_KEY_hebrew_gimel = 0xce2, scim::SCIM_KEY_hebrew_gimmel = 0xce2, scim::SCIM_KEY_hebrew_dalet = 0xce3,
  scim::SCIM_KEY_hebrew_daleth = 0xce3, scim::SCIM_KEY_hebrew_he = 0xce4, scim::SCIM_KEY_hebrew_waw = 0xce5, scim::SCIM_KEY_hebrew_zain = 0xce6,
  scim::SCIM_KEY_hebrew_zayin = 0xce6, scim::SCIM_KEY_hebrew_chet = 0xce7, scim::SCIM_KEY_hebrew_het = 0xce7, scim::SCIM_KEY_hebrew_tet = 0xce8,
  scim::SCIM_KEY_hebrew_teth = 0xce8, scim::SCIM_KEY_hebrew_yod = 0xce9, scim::SCIM_KEY_hebrew_finalkaph = 0xcea, scim::SCIM_KEY_hebrew_kaph = 0xceb,
  scim::SCIM_KEY_hebrew_lamed = 0xcec, scim::SCIM_KEY_hebrew_finalmem = 0xced, scim::SCIM_KEY_hebrew_mem = 0xcee, scim::SCIM_KEY_hebrew_finalnun = 0xcef,
  scim::SCIM_KEY_hebrew_nun = 0xcf0, scim::SCIM_KEY_hebrew_samech = 0xcf1, scim::SCIM_KEY_hebrew_samekh = 0xcf1, scim::SCIM_KEY_hebrew_ayin = 0xcf2,
  scim::SCIM_KEY_hebrew_finalpe = 0xcf3, scim::SCIM_KEY_hebrew_pe = 0xcf4, scim::SCIM_KEY_hebrew_finalzade = 0xcf5, scim::SCIM_KEY_hebrew_finalzadi = 0xcf5,
  scim::SCIM_KEY_hebrew_zade = 0xcf6, scim::SCIM_KEY_hebrew_zadi = 0xcf6, scim::SCIM_KEY_hebrew_qoph = 0xcf7, scim::SCIM_KEY_hebrew_kuf = 0xcf7,
  scim::SCIM_KEY_hebrew_resh = 0xcf8, scim::SCIM_KEY_hebrew_shin = 0xcf9, scim::SCIM_KEY_hebrew_taw = 0xcfa, scim::SCIM_KEY_hebrew_taf = 0xcfa,
  scim::SCIM_KEY_Hebrew_switch = 0xFF7E, scim::SCIM_KEY_Thai_kokai = 0xda1, scim::SCIM_KEY_Thai_khokhai = 0xda2, scim::SCIM_KEY_Thai_khokhuat = 0xda3,
  scim::SCIM_KEY_Thai_khokhwai = 0xda4, scim::SCIM_KEY_Thai_khokhon = 0xda5, scim::SCIM_KEY_Thai_khorakhang = 0xda6, scim::SCIM_KEY_Thai_ngongu = 0xda7,
  scim::SCIM_KEY_Thai_chochan = 0xda8, scim::SCIM_KEY_Thai_choching = 0xda9, scim::SCIM_KEY_Thai_chochang = 0xdaa, scim::SCIM_KEY_Thai_soso = 0xdab,
  scim::SCIM_KEY_Thai_chochoe = 0xdac, scim::SCIM_KEY_Thai_yoying = 0xdad, scim::SCIM_KEY_Thai_dochada = 0xdae, scim::SCIM_KEY_Thai_topatak = 0xdaf,
  scim::SCIM_KEY_Thai_thothan = 0xdb0, scim::SCIM_KEY_Thai_thonangmontho = 0xdb1, scim::SCIM_KEY_Thai_thophuthao = 0xdb2, scim::SCIM_KEY_Thai_nonen = 0xdb3,
  scim::SCIM_KEY_Thai_dodek = 0xdb4, scim::SCIM_KEY_Thai_totao = 0xdb5, scim::SCIM_KEY_Thai_thothung = 0xdb6, scim::SCIM_KEY_Thai_thothahan = 0xdb7,
  scim::SCIM_KEY_Thai_thothong = 0xdb8, scim::SCIM_KEY_Thai_nonu = 0xdb9, scim::SCIM_KEY_Thai_bobaimai = 0xdba, scim::SCIM_KEY_Thai_popla = 0xdbb,
  scim::SCIM_KEY_Thai_phophung = 0xdbc, scim::SCIM_KEY_Thai_fofa = 0xdbd, scim::SCIM_KEY_Thai_phophan = 0xdbe, scim::SCIM_KEY_Thai_fofan = 0xdbf,
  scim::SCIM_KEY_Thai_phosamphao = 0xdc0, scim::SCIM_KEY_Thai_moma = 0xdc1, scim::SCIM_KEY_Thai_yoyak = 0xdc2, scim::SCIM_KEY_Thai_rorua = 0xdc3,
  scim::SCIM_KEY_Thai_ru = 0xdc4, scim::SCIM_KEY_Thai_loling = 0xdc5, scim::SCIM_KEY_Thai_lu = 0xdc6, scim::SCIM_KEY_Thai_wowaen = 0xdc7,
  scim::SCIM_KEY_Thai_sosala = 0xdc8, scim::SCIM_KEY_Thai_sorusi = 0xdc9, scim::SCIM_KEY_Thai_sosua = 0xdca, scim::SCIM_KEY_Thai_hohip = 0xdcb,
  scim::SCIM_KEY_Thai_lochula = 0xdcc, scim::SCIM_KEY_Thai_oang = 0xdcd, scim::SCIM_KEY_Thai_honokhuk = 0xdce, scim::SCIM_KEY_Thai_paiyannoi = 0xdcf,
  scim::SCIM_KEY_Thai_saraa = 0xdd0, scim::SCIM_KEY_Thai_maihanakat = 0xdd1, scim::SCIM_KEY_Thai_saraaa = 0xdd2, scim::SCIM_KEY_Thai_saraam = 0xdd3,
  scim::SCIM_KEY_Thai_sarai = 0xdd4, scim::SCIM_KEY_Thai_saraii = 0xdd5, scim::SCIM_KEY_Thai_saraue = 0xdd6, scim::SCIM_KEY_Thai_sarauee = 0xdd7,
  scim::SCIM_KEY_Thai_sarau = 0xdd8, scim::SCIM_KEY_Thai_sarauu = 0xdd9, scim::SCIM_KEY_Thai_phinthu = 0xdda, scim::SCIM_KEY_Thai_maihanakat_maitho = 0xdde,
  scim::SCIM_KEY_Thai_baht = 0xddf, scim::SCIM_KEY_Thai_sarae = 0xde0, scim::SCIM_KEY_Thai_saraae = 0xde1, scim::SCIM_KEY_Thai_sarao = 0xde2,
  scim::SCIM_KEY_Thai_saraaimaimuan = 0xde3, scim::SCIM_KEY_Thai_saraaimaimalai = 0xde4, scim::SCIM_KEY_Thai_lakkhangyao = 0xde5, scim::SCIM_KEY_Thai_maiyamok = 0xde6,
  scim::SCIM_KEY_Thai_maitaikhu = 0xde7, scim::SCIM_KEY_Thai_maiek = 0xde8, scim::SCIM_KEY_Thai_maitho = 0xde9, scim::SCIM_KEY_Thai_maitri = 0xdea,
  scim::SCIM_KEY_Thai_maichattawa = 0xdeb, scim::SCIM_KEY_Thai_thanthakhat = 0xdec, scim::SCIM_KEY_Thai_nikhahit = 0xded, scim::SCIM_KEY_Thai_leksun = 0xdf0,
  scim::SCIM_KEY_Thai_leknung = 0xdf1, scim::SCIM_KEY_Thai_leksong = 0xdf2, scim::SCIM_KEY_Thai_leksam = 0xdf3, scim::SCIM_KEY_Thai_leksi = 0xdf4,
  scim::SCIM_KEY_Thai_lekha = 0xdf5, scim::SCIM_KEY_Thai_lekhok = 0xdf6, scim::SCIM_KEY_Thai_lekchet = 0xdf7, scim::SCIM_KEY_Thai_lekpaet = 0xdf8,
  scim::SCIM_KEY_Thai_lekkao = 0xdf9, scim::SCIM_KEY_Hangul = 0xff31, scim::SCIM_KEY_Hangul_Start = 0xff32, scim::SCIM_KEY_Hangul_End = 0xff33,
  scim::SCIM_KEY_Hangul_Hanja = 0xff34, scim::SCIM_KEY_Hangul_Jamo = 0xff35, scim::SCIM_KEY_Hangul_Romaja = 0xff36, scim::SCIM_KEY_Hangul_Codeinput = 0xff37,
  scim::SCIM_KEY_Hangul_Jeonja = 0xff38, scim::SCIM_KEY_Hangul_Banja = 0xff39, scim::SCIM_KEY_Hangul_PreHanja = 0xff3a, scim::SCIM_KEY_Hangul_PostHanja = 0xff3b,
  scim::SCIM_KEY_Hangul_SingleCandidate = 0xff3c, scim::SCIM_KEY_Hangul_MultipleCandidate = 0xff3d, scim::SCIM_KEY_Hangul_PreviousCandidate = 0xff3e, scim::SCIM_KEY_Hangul_Special = 0xff3f,
  scim::SCIM_KEY_Hangul_switch = 0xFF7E, scim::SCIM_KEY_Hangul_Kiyeog = 0xea1, scim::SCIM_KEY_Hangul_SsangKiyeog = 0xea2, scim::SCIM_KEY_Hangul_KiyeogSios = 0xea3,
  scim::SCIM_KEY_Hangul_Nieun = 0xea4, scim::SCIM_KEY_Hangul_NieunJieuj = 0xea5, scim::SCIM_KEY_Hangul_NieunHieuh = 0xea6, scim::SCIM_KEY_Hangul_Dikeud = 0xea7,
  scim::SCIM_KEY_Hangul_SsangDikeud = 0xea8, scim::SCIM_KEY_Hangul_Rieul = 0xea9, scim::SCIM_KEY_Hangul_RieulKiyeog = 0xeaa, scim::SCIM_KEY_Hangul_RieulMieum = 0xeab,
  scim::SCIM_KEY_Hangul_RieulPieub = 0xeac, scim::SCIM_KEY_Hangul_RieulSios = 0xead, scim::SCIM_KEY_Hangul_RieulTieut = 0xeae, scim::SCIM_KEY_Hangul_RieulPhieuf = 0xeaf,
  scim::SCIM_KEY_Hangul_RieulHieuh = 0xeb0, scim::SCIM_KEY_Hangul_Mieum = 0xeb1, scim::SCIM_KEY_Hangul_Pieub = 0xeb2, scim::SCIM_KEY_Hangul_SsangPieub = 0xeb3,
  scim::SCIM_KEY_Hangul_PieubSios = 0xeb4, scim::SCIM_KEY_Hangul_Sios = 0xeb5, scim::SCIM_KEY_Hangul_SsangSios = 0xeb6, scim::SCIM_KEY_Hangul_Ieung = 0xeb7,
  scim::SCIM_KEY_Hangul_Jieuj = 0xeb8, scim::SCIM_KEY_Hangul_SsangJieuj = 0xeb9, scim::SCIM_KEY_Hangul_Cieuc = 0xeba, scim::SCIM_KEY_Hangul_Khieuq = 0xebb,
  scim::SCIM_KEY_Hangul_Tieut = 0xebc, scim::SCIM_KEY_Hangul_Phieuf = 0xebd, scim::SCIM_KEY_Hangul_Hieuh = 0xebe, scim::SCIM_KEY_Hangul_A = 0xebf,
  scim::SCIM_KEY_Hangul_AE = 0xec0, scim::SCIM_KEY_Hangul_YA = 0xec1, scim::SCIM_KEY_Hangul_YAE = 0xec2, scim::SCIM_KEY_Hangul_EO = 0xec3,
  scim::SCIM_KEY_Hangul_E = 0xec4, scim::SCIM_KEY_Hangul_YEO = 0xec5, scim::SCIM_KEY_Hangul_YE = 0xec6, scim::SCIM_KEY_Hangul_O = 0xec7,
  scim::SCIM_KEY_Hangul_WA = 0xec8, scim::SCIM_KEY_Hangul_WAE = 0xec9, scim::SCIM_KEY_Hangul_OE = 0xeca, scim::SCIM_KEY_Hangul_YO = 0xecb,
  scim::SCIM_KEY_Hangul_U = 0xecc, scim::SCIM_KEY_Hangul_WEO = 0xecd, scim::SCIM_KEY_Hangul_WE = 0xece, scim::SCIM_KEY_Hangul_WI = 0xecf,
  scim::SCIM_KEY_Hangul_YU = 0xed0, scim::SCIM_KEY_Hangul_EU = 0xed1, scim::SCIM_KEY_Hangul_YI = 0xed2, scim::SCIM_KEY_Hangul_I = 0xed3,
  scim::SCIM_KEY_Hangul_J_Kiyeog = 0xed4, scim::SCIM_KEY_Hangul_J_SsangKiyeog = 0xed5, scim::SCIM_KEY_Hangul_J_KiyeogSios = 0xed6, scim::SCIM_KEY_Hangul_J_Nieun = 0xed7,
  scim::SCIM_KEY_Hangul_J_NieunJieuj = 0xed8, scim::SCIM_KEY_Hangul_J_NieunHieuh = 0xed9, scim::SCIM_KEY_Hangul_J_Dikeud = 0xeda, scim::SCIM_KEY_Hangul_J_Rieul = 0xedb,
  scim::SCIM_KEY_Hangul_J_RieulKiyeog = 0xedc, scim::SCIM_KEY_Hangul_J_RieulMieum = 0xedd, scim::SCIM_KEY_Hangul_J_RieulPieub = 0xede, scim::SCIM_KEY_Hangul_J_RieulSios = 0xedf,
  scim::SCIM_KEY_Hangul_J_RieulTieut = 0xee0, scim::SCIM_KEY_Hangul_J_RieulPhieuf = 0xee1, scim::SCIM_KEY_Hangul_J_RieulHieuh = 0xee2, scim::SCIM_KEY_Hangul_J_Mieum = 0xee3,
  scim::SCIM_KEY_Hangul_J_Pieub = 0xee4, scim::SCIM_KEY_Hangul_J_PieubSios = 0xee5, scim::SCIM_KEY_Hangul_J_Sios = 0xee6, scim::SCIM_KEY_Hangul_J_SsangSios = 0xee7,
  scim::SCIM_KEY_Hangul_J_Ieung = 0xee8, scim::SCIM_KEY_Hangul_J_Jieuj = 0xee9, scim::SCIM_KEY_Hangul_J_Cieuc = 0xeea, scim::SCIM_KEY_Hangul_J_Khieuq = 0xeeb,
  scim::SCIM_KEY_Hangul_J_Tieut = 0xeec, scim::SCIM_KEY_Hangul_J_Phieuf = 0xeed, scim::SCIM_KEY_Hangul_J_Hieuh = 0xeee, scim::SCIM_KEY_Hangul_RieulYeorinHieuh = 0xeef,
  scim::SCIM_KEY_Hangul_SunkyeongeumMieum = 0xef0, scim::SCIM_KEY_Hangul_SunkyeongeumPieub = 0xef1, scim::SCIM_KEY_Hangul_PanSios = 0xef2, scim::SCIM_KEY_Hangul_KkogjiDalrinIeung = 0xef3,
  scim::SCIM_KEY_Hangul_SunkyeongeumPhieuf = 0xef4, scim::SCIM_KEY_Hangul_YeorinHieuh = 0xef5, scim::SCIM_KEY_Hangul_AraeA = 0xef6, scim::SCIM_KEY_Hangul_AraeAE = 0xef7,
  scim::SCIM_KEY_Hangul_J_PanSios = 0xef8, scim::SCIM_KEY_Hangul_J_KkogjiDalrinIeung = 0xef9, scim::SCIM_KEY_Hangul_J_YeorinHieuh = 0xefa, scim::SCIM_KEY_Korean_Won = 0xeff,
  scim::SCIM_KEY_Armenian_eternity = 0x14a1, scim::SCIM_KEY_Armenian_ligature_ew = 0x14a2, scim::SCIM_KEY_Armenian_full_stop = 0x14a3, scim::SCIM_KEY_Armenian_verjaket = 0x14a3,
  scim::SCIM_KEY_Armenian_parenright = 0x14a4, scim::SCIM_KEY_Armenian_parenleft = 0x14a5, scim::SCIM_KEY_Armenian_guillemotright = 0x14a6, scim::SCIM_KEY_Armenian_guillemotleft = 0x14a7,
  scim::SCIM_KEY_Armenian_em_dash = 0x14a8, scim::SCIM_KEY_Armenian_dot = 0x14a9, scim::SCIM_KEY_Armenian_mijaket = 0x14a9, scim::SCIM_KEY_Armenian_separation_mark = 0x14aa,
  scim::SCIM_KEY_Armenian_but = 0x14aa, scim::SCIM_KEY_Armenian_comma = 0x14ab, scim::SCIM_KEY_Armenian_en_dash = 0x14ac, scim::SCIM_KEY_Armenian_hyphen = 0x14ad,
  scim::SCIM_KEY_Armenian_yentamna = 0x14ad, scim::SCIM_KEY_Armenian_ellipsis = 0x14ae, scim::SCIM_KEY_Armenian_exclam = 0x14af, scim::SCIM_KEY_Armenian_amanak = 0x14af,
  scim::SCIM_KEY_Armenian_accent = 0x14b0, scim::SCIM_KEY_Armenian_shesht = 0x14b0, scim::SCIM_KEY_Armenian_question = 0x14b1, scim::SCIM_KEY_Armenian_paruyk = 0x14b1,
  scim::SCIM_KEY_Armenian_AYB = 0x14b2, scim::SCIM_KEY_Armenian_ayb = 0x14b3, scim::SCIM_KEY_Armenian_BEN = 0x14b4, scim::SCIM_KEY_Armenian_ben = 0x14b5,
  scim::SCIM_KEY_Armenian_GIM = 0x14b6, scim::SCIM_KEY_Armenian_gim = 0x14b7, scim::SCIM_KEY_Armenian_DA = 0x14b8, scim::SCIM_KEY_Armenian_da = 0x14b9,
  scim::SCIM_KEY_Armenian_YECH = 0x14ba, scim::SCIM_KEY_Armenian_yech = 0x14bb, scim::SCIM_KEY_Armenian_ZA = 0x14bc, scim::SCIM_KEY_Armenian_za = 0x14bd,
  scim::SCIM_KEY_Armenian_E = 0x14be, scim::SCIM_KEY_Armenian_e = 0x14bf, scim::SCIM_KEY_Armenian_AT = 0x14c0, scim::SCIM_KEY_Armenian_at = 0x14c1,
  scim::SCIM_KEY_Armenian_TO = 0x14c2, scim::SCIM_KEY_Armenian_to = 0x14c3, scim::SCIM_KEY_Armenian_ZHE = 0x14c4, scim::SCIM_KEY_Armenian_zhe = 0x14c5,
  scim::SCIM_KEY_Armenian_INI = 0x14c6, scim::SCIM_KEY_Armenian_ini = 0x14c7, scim::SCIM_KEY_Armenian_LYUN = 0x14c8, scim::SCIM_KEY_Armenian_lyun = 0x14c9,
  scim::SCIM_KEY_Armenian_KHE = 0x14ca, scim::SCIM_KEY_Armenian_khe = 0x14cb, scim::SCIM_KEY_Armenian_TSA = 0x14cc, scim::SCIM_KEY_Armenian_tsa = 0x14cd,
  scim::SCIM_KEY_Armenian_KEN = 0x14ce, scim::SCIM_KEY_Armenian_ken = 0x14cf, scim::SCIM_KEY_Armenian_HO = 0x14d0, scim::SCIM_KEY_Armenian_ho = 0x14d1,
  scim::SCIM_KEY_Armenian_DZA = 0x14d2, scim::SCIM_KEY_Armenian_dza = 0x14d3, scim::SCIM_KEY_Armenian_GHAT = 0x14d4, scim::SCIM_KEY_Armenian_ghat = 0x14d5,
  scim::SCIM_KEY_Armenian_TCHE = 0x14d6, scim::SCIM_KEY_Armenian_tche = 0x14d7, scim::SCIM_KEY_Armenian_MEN = 0x14d8, scim::SCIM_KEY_Armenian_men = 0x14d9,
  scim::SCIM_KEY_Armenian_HI = 0x14da, scim::SCIM_KEY_Armenian_hi = 0x14db, scim::SCIM_KEY_Armenian_NU = 0x14dc, scim::SCIM_KEY_Armenian_nu = 0x14dd,
  scim::SCIM_KEY_Armenian_SHA = 0x14de, scim::SCIM_KEY_Armenian_sha = 0x14df, scim::SCIM_KEY_Armenian_VO = 0x14e0, scim::SCIM_KEY_Armenian_vo = 0x14e1,
  scim::SCIM_KEY_Armenian_CHA = 0x14e2, scim::SCIM_KEY_Armenian_cha = 0x14e3, scim::SCIM_KEY_Armenian_PE = 0x14e4, scim::SCIM_KEY_Armenian_pe = 0x14e5,
  scim::SCIM_KEY_Armenian_JE = 0x14e6, scim::SCIM_KEY_Armenian_je = 0x14e7, scim::SCIM_KEY_Armenian_RA = 0x14e8, scim::SCIM_KEY_Armenian_ra = 0x14e9,
  scim::SCIM_KEY_Armenian_SE = 0x14ea, scim::SCIM_KEY_Armenian_se = 0x14eb, scim::SCIM_KEY_Armenian_VEV = 0x14ec, scim::SCIM_KEY_Armenian_vev = 0x14ed,
  scim::SCIM_KEY_Armenian_TYUN = 0x14ee, scim::SCIM_KEY_Armenian_tyun = 0x14ef, scim::SCIM_KEY_Armenian_RE = 0x14f0, scim::SCIM_KEY_Armenian_re = 0x14f1,
  scim::SCIM_KEY_Armenian_TSO = 0x14f2, scim::SCIM_KEY_Armenian_tso = 0x14f3, scim::SCIM_KEY_Armenian_VYUN = 0x14f4, scim::SCIM_KEY_Armenian_vyun = 0x14f5,
  scim::SCIM_KEY_Armenian_PYUR = 0x14f6, scim::SCIM_KEY_Armenian_pyur = 0x14f7, scim::SCIM_KEY_Armenian_KE = 0x14f8, scim::SCIM_KEY_Armenian_ke = 0x14f9,
  scim::SCIM_KEY_Armenian_O = 0x14fa, scim::SCIM_KEY_Armenian_o = 0x14fb, scim::SCIM_KEY_Armenian_FE = 0x14fc, scim::SCIM_KEY_Armenian_fe = 0x14fd,
  scim::SCIM_KEY_Armenian_apostrophe = 0x14fe, scim::SCIM_KEY_Armenian_section_sign = 0x14ff, scim::SCIM_KEY_Georgian_an = 0x15d0, scim::SCIM_KEY_Georgian_ban = 0x15d1,
  scim::SCIM_KEY_Georgian_gan = 0x15d2, scim::SCIM_KEY_Georgian_don = 0x15d3, scim::SCIM_KEY_Georgian_en = 0x15d4, scim::SCIM_KEY_Georgian_vin = 0x15d5,
  scim::SCIM_KEY_Georgian_zen = 0x15d6, scim::SCIM_KEY_Georgian_tan = 0x15d7, scim::SCIM_KEY_Georgian_in = 0x15d8, scim::SCIM_KEY_Georgian_kan = 0x15d9,
  scim::SCIM_KEY_Georgian_las = 0x15da, scim::SCIM_KEY_Georgian_man = 0x15db, scim::SCIM_KEY_Georgian_nar = 0x15dc, scim::SCIM_KEY_Georgian_on = 0x15dd,
  scim::SCIM_KEY_Georgian_par = 0x15de, scim::SCIM_KEY_Georgian_zhar = 0x15df, scim::SCIM_KEY_Georgian_rae = 0x15e0, scim::SCIM_KEY_Georgian_san = 0x15e1,
  scim::SCIM_KEY_Georgian_tar = 0x15e2, scim::SCIM_KEY_Georgian_un = 0x15e3, scim::SCIM_KEY_Georgian_phar = 0x15e4, scim::SCIM_KEY_Georgian_khar = 0x15e5,
  scim::SCIM_KEY_Georgian_ghan = 0x15e6, scim::SCIM_KEY_Georgian_qar = 0x15e7, scim::SCIM_KEY_Georgian_shin = 0x15e8, scim::SCIM_KEY_Georgian_chin = 0x15e9,
  scim::SCIM_KEY_Georgian_can = 0x15ea, scim::SCIM_KEY_Georgian_jil = 0x15eb, scim::SCIM_KEY_Georgian_cil = 0x15ec, scim::SCIM_KEY_Georgian_char = 0x15ed,
  scim::SCIM_KEY_Georgian_xan = 0x15ee, scim::SCIM_KEY_Georgian_jhan = 0x15ef, scim::SCIM_KEY_Georgian_hae = 0x15f0, scim::SCIM_KEY_Georgian_he = 0x15f1,
  scim::SCIM_KEY_Georgian_hie = 0x15f2, scim::SCIM_KEY_Georgian_we = 0x15f3, scim::SCIM_KEY_Georgian_har = 0x15f4, scim::SCIM_KEY_Georgian_hoe = 0x15f5,
  scim::SCIM_KEY_Georgian_fi = 0x15f6, scim::SCIM_KEY_Ccedillaabovedot = 0x16a2, scim::SCIM_KEY_Xabovedot = 0x16a3, scim::SCIM_KEY_Qabovedot = 0x16a5,
  scim::SCIM_KEY_Ibreve = 0x16a6, scim::SCIM_KEY_IE = 0x16a7, scim::SCIM_KEY_UO = 0x16a8, scim::SCIM_KEY_Zstroke = 0x16a9,
  scim::SCIM_KEY_Gcaron = 0x16aa, scim::SCIM_KEY_Obarred = 0x16af, scim::SCIM_KEY_ccedillaabovedot = 0x16b2, scim::SCIM_KEY_xabovedot = 0x16b3,
  scim::SCIM_KEY_Ocaron = 0x16b4, scim::SCIM_KEY_qabovedot = 0x16b5, scim::SCIM_KEY_ibreve = 0x16b6, scim::SCIM_KEY_ie = 0x16b7,
  scim::SCIM_KEY_uo = 0x16b8, scim::SCIM_KEY_zstroke = 0x16b9, scim::SCIM_KEY_gcaron = 0x16ba, scim::SCIM_KEY_ocaron = 0x16bd,
  scim::SCIM_KEY_obarred = 0x16bf, scim::SCIM_KEY_SCHWA = 0x16c6, scim::SCIM_KEY_schwa = 0x16f6, scim::SCIM_KEY_Lbelowdot = 0x16d1,
  scim::SCIM_KEY_Lstrokebelowdot = 0x16d2, scim::SCIM_KEY_lbelowdot = 0x16e1, scim::SCIM_KEY_lstrokebelowdot = 0x16e2, scim::SCIM_KEY_Gtilde = 0x16d3,
  scim::SCIM_KEY_gtilde = 0x16e3, scim::SCIM_KEY_Abelowdot = 0x1ea0, scim::SCIM_KEY_abelowdot = 0x1ea1, scim::SCIM_KEY_Ahook = 0x1ea2,
  scim::SCIM_KEY_ahook = 0x1ea3, scim::SCIM_KEY_Acircumflexacute = 0x1ea4, scim::SCIM_KEY_acircumflexacute = 0x1ea5, scim::SCIM_KEY_Acircumflexgrave = 0x1ea6,
  scim::SCIM_KEY_acircumflexgrave = 0x1ea7, scim::SCIM_KEY_Acircumflexhook = 0x1ea8, scim::SCIM_KEY_acircumflexhook = 0x1ea9, scim::SCIM_KEY_Acircumflextilde = 0x1eaa,
  scim::SCIM_KEY_acircumflextilde = 0x1eab, scim::SCIM_KEY_Acircumflexbelowdot = 0x1eac, scim::SCIM_KEY_acircumflexbelowdot = 0x1ead, scim::SCIM_KEY_Abreveacute = 0x1eae,
  scim::SCIM_KEY_abreveacute = 0x1eaf, scim::SCIM_KEY_Abrevegrave = 0x1eb0, scim::SCIM_KEY_abrevegrave = 0x1eb1, scim::SCIM_KEY_Abrevehook = 0x1eb2,
  scim::SCIM_KEY_abrevehook = 0x1eb3, scim::SCIM_KEY_Abrevetilde = 0x1eb4, scim::SCIM_KEY_abrevetilde = 0x1eb5, scim::SCIM_KEY_Abrevebelowdot = 0x1eb6,
  scim::SCIM_KEY_abrevebelowdot = 0x1eb7, scim::SCIM_KEY_Ebelowdot = 0x1eb8, scim::SCIM_KEY_ebelowdot = 0x1eb9, scim::SCIM_KEY_Ehook = 0x1eba,
  scim::SCIM_KEY_ehook = 0x1ebb, scim::SCIM_KEY_Etilde = 0x1ebc, scim::SCIM_KEY_etilde = 0x1ebd, scim::SCIM_KEY_Ecircumflexacute = 0x1ebe,
  scim::SCIM_KEY_ecircumflexacute = 0x1ebf, scim::SCIM_KEY_Ecircumflexgrave = 0x1ec0, scim::SCIM_KEY_ecircumflexgrave = 0x1ec1, scim::SCIM_KEY_Ecircumflexhook = 0x1ec2,
  scim::SCIM_KEY_ecircumflexhook = 0x1ec3, scim::SCIM_KEY_Ecircumflextilde = 0x1ec4, scim::SCIM_KEY_ecircumflextilde = 0x1ec5, scim::SCIM_KEY_Ecircumflexbelowdot = 0x1ec6,
  scim::SCIM_KEY_ecircumflexbelowdot = 0x1ec7, scim::SCIM_KEY_Ihook = 0x1ec8, scim::SCIM_KEY_ihook = 0x1ec9, scim::SCIM_KEY_Ibelowdot = 0x1eca,
  scim::SCIM_KEY_ibelowdot = 0x1ecb, scim::SCIM_KEY_Obelowdot = 0x1ecc, scim::SCIM_KEY_obelowdot = 0x1ecd, scim::SCIM_KEY_Ohook = 0x1ece,
  scim::SCIM_KEY_ohook = 0x1ecf, scim::SCIM_KEY_Ocircumflexacute = 0x1ed0, scim::SCIM_KEY_ocircumflexacute = 0x1ed1, scim::SCIM_KEY_Ocircumflexgrave = 0x1ed2,
  scim::SCIM_KEY_ocircumflexgrave = 0x1ed3, scim::SCIM_KEY_Ocircumflexhook = 0x1ed4, scim::SCIM_KEY_ocircumflexhook = 0x1ed5, scim::SCIM_KEY_Ocircumflextilde = 0x1ed6,
  scim::SCIM_KEY_ocircumflextilde = 0x1ed7, scim::SCIM_KEY_Ocircumflexbelowdot = 0x1ed8, scim::SCIM_KEY_ocircumflexbelowdot = 0x1ed9, scim::SCIM_KEY_Ohornacute = 0x1eda,
  scim::SCIM_KEY_ohornacute = 0x1edb, scim::SCIM_KEY_Ohorngrave = 0x1edc, scim::SCIM_KEY_ohorngrave = 0x1edd, scim::SCIM_KEY_Ohornhook = 0x1ede,
  scim::SCIM_KEY_ohornhook = 0x1edf, scim::SCIM_KEY_Ohorntilde = 0x1ee0, scim::SCIM_KEY_ohorntilde = 0x1ee1, scim::SCIM_KEY_Ohornbelowdot = 0x1ee2,
  scim::SCIM_KEY_ohornbelowdot = 0x1ee3, scim::SCIM_KEY_Ubelowdot = 0x1ee4, scim::SCIM_KEY_ubelowdot = 0x1ee5, scim::SCIM_KEY_Uhook = 0x1ee6,
  scim::SCIM_KEY_uhook = 0x1ee7, scim::SCIM_KEY_Uhornacute = 0x1ee8, scim::SCIM_KEY_uhornacute = 0x1ee9, scim::SCIM_KEY_Uhorngrave = 0x1eea,
  scim::SCIM_KEY_uhorngrave = 0x1eeb, scim::SCIM_KEY_Uhornhook = 0x1eec, scim::SCIM_KEY_uhornhook = 0x1eed, scim::SCIM_KEY_Uhorntilde = 0x1eee,
  scim::SCIM_KEY_uhorntilde = 0x1eef, scim::SCIM_KEY_Uhornbelowdot = 0x1ef0, scim::SCIM_KEY_uhornbelowdot = 0x1ef1, scim::SCIM_KEY_Ybelowdot = 0x1ef4,
  scim::SCIM_KEY_ybelowdot = 0x1ef5, scim::SCIM_KEY_Yhook = 0x1ef6, scim::SCIM_KEY_yhook = 0x1ef7, scim::SCIM_KEY_Ytilde = 0x1ef8,
  scim::SCIM_KEY_ytilde = 0x1ef9, scim::SCIM_KEY_Ohorn = 0x1efa, scim::SCIM_KEY_ohorn = 0x1efb, scim::SCIM_KEY_Uhorn = 0x1efc,
  scim::SCIM_KEY_uhorn = 0x1efd, scim::SCIM_KEY_combining_tilde = 0x1e9f, scim::SCIM_KEY_combining_grave = 0x1ef2, scim::SCIM_KEY_combining_acute = 0x1ef3,
  scim::SCIM_KEY_combining_hook = 0x1efe, scim::SCIM_KEY_combining_belowdot = 0x1eff, scim::SCIM_KEY_EcuSign = 0x20a0, scim::SCIM_KEY_ColonSign = 0x20a1,
  scim::SCIM_KEY_CruzeiroSign = 0x20a2, scim::SCIM_KEY_FFrancSign = 0x20a3, scim::SCIM_KEY_LiraSign = 0x20a4, scim::SCIM_KEY_MillSign = 0x20a5,
  scim::SCIM_KEY_NairaSign = 0x20a6, scim::SCIM_KEY_PesetaSign = 0x20a7, scim::SCIM_KEY_RupeeSign = 0x20a8, scim::SCIM_KEY_WonSign = 0x20a9,
  scim::SCIM_KEY_NewSheqelSign = 0x20aa, scim::SCIM_KEY_DongSign = 0x20ab, scim::SCIM_KEY_EuroSign = 0x20ac
}
 Enum values of all valid key codes. More...
enum  scim::KeyboardLayout {
  scim::SCIM_KEYBOARD_Unknown = 0, scim::SCIM_KEYBOARD_Default = 1, scim::SCIM_KEYBOARD_US = 1, scim::SCIM_KEYBOARD_Belgian = 2,
  scim::SCIM_KEYBOARD_Croatian = 3, scim::SCIM_KEYBOARD_Czech = 4, scim::SCIM_KEYBOARD_Czech_Qwerty = 5, scim::SCIM_KEYBOARD_Danish = 6,
  scim::SCIM_KEYBOARD_Dutch = 7, scim::SCIM_KEYBOARD_Dvorak = 8, scim::SCIM_KEYBOARD_Estonian = 9, scim::SCIM_KEYBOARD_Finnish = 10,
  scim::SCIM_KEYBOARD_French = 11, scim::SCIM_KEYBOARD_French_Canadian = 12, scim::SCIM_KEYBOARD_French_Switzerland = 13, scim::SCIM_KEYBOARD_German = 14,
  scim::SCIM_KEYBOARD_German_Deadkeys = 15, scim::SCIM_KEYBOARD_German_Swiss = 16, scim::SCIM_KEYBOARD_Greek = 17, scim::SCIM_KEYBOARD_Hungarian = 18,
  scim::SCIM_KEYBOARD_Italian = 19, scim::SCIM_KEYBOARD_Japanese = 20, scim::SCIM_KEYBOARD_Norwegian = 21, scim::SCIM_KEYBOARD_Polish = 22,
  scim::SCIM_KEYBOARD_Portuguese = 23, scim::SCIM_KEYBOARD_Portuguese_Brazil = 24, scim::SCIM_KEYBOARD_Portuguese_Brazil_US_Accents = 25, scim::SCIM_KEYBOARD_Russian = 26,
  scim::SCIM_KEYBOARD_Slovak = 27, scim::SCIM_KEYBOARD_Slovak_Qwerty = 28, scim::SCIM_KEYBOARD_Slovene = 29, scim::SCIM_KEYBOARD_Spanish = 30,
  scim::SCIM_KEYBOARD_Spanish_CP850 = 31, scim::SCIM_KEYBOARD_Spanish_Latin_America = 32, scim::SCIM_KEYBOARD_Swedish = 33, scim::SCIM_KEYBOARD_Turkish = 34,
  scim::SCIM_KEYBOARD_UK = 35, scim::SCIM_KEYBOARD_Icelandic = 36, scim::SCIM_KEYBOARD_Lithuanian = 37, scim::SCIM_KEYBOARD_Ukrainian = 38,
  scim::SCIM_KEYBOARD_NUM_LAYOUTS = 39
}
 Enum values of all valid Keyboard Layout type. More...

Functions

bool scim::scim_key_to_string (String &str, const KeyEvent &key)
 Convert a key event to a string.
bool scim::scim_string_to_key (KeyEvent &key, const String &str)
 Convert a string to a KeyEvent.
bool scim::scim_key_list_to_string (String &str, const KeyEventList &keylist)
 Convert a set of KeyEvents to a string.
bool scim::scim_string_to_key_list (KeyEventList &keylist, const String &str)
 Covnert a string to a set of KeyEvents.
String scim::scim_keyboard_layout_to_string (KeyboardLayout layout)
 Convert a Keyboard Layout enum value to its String name.
KeyboardLayout scim::scim_string_to_keyboard_layout (const String &str)
 Convert a String name to the corresponding Keyboard Layout value.
String scim::scim_keyboard_layout_get_display_name (KeyboardLayout layout)
 Get the display name of a Keyboard Layout enum value.
KeyboardLayout scim::scim_get_default_keyboard_layout ()
 Get default Keyboard Layout setting.
void scim::scim_set_default_keyboard_layout (KeyboardLayout layout)
 Change the default Keyboard Layout setting.


Detailed Description

Defines the scim::KeyEvent class and related enums, functions.


Generated on Sat Jan 24 23:45:04 2009 for scim by  doxygen 1.5.7.1