keysymdef.h
资源名称:X264CODEC.rar [点击查看]
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:164k
源码类别:
流媒体/Mpeg4/MP4
开发平台:
Visual C++
- /* $Xorg: keysymdef.h,v 1.4 2001/02/09 02:03:23 $ */
- /***********************************************************
- Copyright 1987, 1994, 1998 The Open Group
- Permission to use, copy, modify, distribute, and sell this software and its
- documentation for any purpose is hereby granted without fee, provided that
- the above copyright notice appear in all copies and that both that
- copyright notice and this permission notice appear in supporting
- documentation.
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
- OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- Except as contained in this notice, the name of The Open Group shall
- not be used in advertising or otherwise to promote the sale, use or
- other dealings in this Software without prior written authorization
- from The Open Group.
- Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts
- All Rights Reserved
- Permission to use, copy, modify, and distribute this software and its
- documentation for any purpose and without fee is hereby granted,
- provided that the above copyright notice appear in all copies and that
- both that copyright notice and this permission notice appear in
- supporting documentation, and that the name of Digital not be
- used in advertising or publicity pertaining to distribution of the
- software without specific, written prior permission.
- DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
- ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
- DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
- ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
- WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
- ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
- SOFTWARE.
- ******************************************************************/
- /* $XFree86: $ */
- /*
- * The "X11 Window System Protocol" standard defines in Appendix A the
- * keysym codes. These 29-bit integer values identify characters or
- * functions associated with each key (e.g., via the visible
- * engraving) of a keyboard layout. This file assigns mnemonic macro
- * names for these keysyms.
- *
- * This file is also compiled (by src/util/makekeys.c in libX11) into
- * hash tables that can be accessed with X11 library functions such as
- * XStringToKeysym() and XKeysymToString().
- *
- * Where a keysym corresponds one-to-one to an ISO 10646 / Unicode
- * character, this is noted in a comment that provides both the U+xxxx
- * Unicode position, as well as the official Unicode name of the
- * character.
- *
- * Where the correspondence is either not one-to-one or semantically
- * unclear, the Unicode position and name are enclosed in
- * parentheses. Such legacy keysyms should be considered deprecated
- * and are not recommended for use in future keyboard mappings.
- *
- * For any future extension of the keysyms with characters already
- * found in ISO 10646 / Unicode, the following algorithm shall be
- * used. The new keysym code position will simply be the character's
- * Unicode number plus 0x01000000. The keysym values in the range
- * 0x01000100 to 0x0110ffff are reserved to represent Unicode
- * characters in the range U+0100 to U+10FFFF.
- *
- * While most newer Unicode-based X11 clients do already accept
- * Unicode-mapped keysyms in the range 0x01000100 to 0x0110ffff, it
- * will remain necessary for clients -- in the interest of
- * compatibility with existing servers -- to also understand the
- * existing legacy keysym values in the range 0x0100 to 0x20ff.
- *
- * Where several mnemonic names are defined for the same keysym in this
- * file, all but the first one listed should be considered deprecated.
- *
- * Mnemonic names for keysyms are defined in this file with lines
- * that match one of these Perl regular expressions:
- *
- * /^#define XK_([a-zA-Z_0-9]+)s+0x([0-9a-f]+)s*/* U+([0-9A-F]{4,6}) (.*) */s*$/
- * /^#define XK_([a-zA-Z_0-9]+)s+0x([0-9a-f]+)s*/*(U+([0-9A-F]{4,6}) (.*))*/s*$/
- * /^#define XK_([a-zA-Z_0-9]+)s+0x([0-9a-f]+)s*(/*s*(.*)s**/)?s*$/
- *
- * Before adding new keysyms, please do consider the following: In
- * addition to the keysym names defined in this file, the
- * XStringToKeysym() and XKeysymToString() functions will also handle
- * any keysym string of the form "U0020" to "U007E" and "U00A0" to
- * "U10FFFF" for all possible Unicode characters. In other words,
- * every possible Unicode character has already a keysym string
- * defined algorithmically, even if it is not listed here. Therefore,
- * defining an additional keysym macro is only necessary where a
- * non-hexadecimal mnemonic name is needed, or where the new keysym
- * does not represent any existing Unicode character.
- *
- * When adding new keysyms to this file, do not forget to also update the
- * following:
- *
- * - the mappings in src/KeyBind.c in the repo
- * git://anongit.freedesktop.org/xorg/lib/libX11
- *
- * - the protocol specification in specs/XProtocol/X11.keysyms
- * in the repo git://anongit.freedesktop.org/xorg/doc/xorg-docs
- *
- */
- #define XK_VoidSymbol 0xffffff /* Void symbol */
- #ifdef XK_MISCELLANY
- /*
- * TTY function keys, cleverly chosen to map to ASCII, for convenience of
- * programming, but could have been arbitrary (at the cost of lookup
- * tables in client code).
- */
- #define XK_BackSpace 0xff08 /* Back space, back char */
- #define XK_Tab 0xff09
- #define XK_Linefeed 0xff0a /* Linefeed, LF */
- #define XK_Clear 0xff0b
- #define XK_Return 0xff0d /* Return, enter */
- #define XK_Pause 0xff13 /* Pause, hold */
- #define XK_Scroll_Lock 0xff14
- #define XK_Sys_Req 0xff15
- #define XK_Escape 0xff1b
- #define XK_Delete 0xffff /* Delete, rubout */
- /* International & multi-key character composition */
- #define XK_Multi_key 0xff20 /* Multi-key character compose */
- #define XK_Codeinput 0xff37
- #define XK_SingleCandidate 0xff3c
- #define XK_MultipleCandidate 0xff3d
- #define XK_PreviousCandidate 0xff3e
- /* Japanese keyboard support */
- #define XK_Kanji 0xff21 /* Kanji, Kanji convert */
- #define XK_Muhenkan 0xff22 /* Cancel Conversion */
- #define XK_Henkan_Mode 0xff23 /* Start/Stop Conversion */
- #define XK_Henkan 0xff23 /* Alias for Henkan_Mode */
- #define XK_Romaji 0xff24 /* to Romaji */
- #define XK_Hiragana 0xff25 /* to Hiragana */
- #define XK_Katakana 0xff26 /* to Katakana */
- #define XK_Hiragana_Katakana 0xff27 /* Hiragana/Katakana toggle */
- #define XK_Zenkaku 0xff28 /* to Zenkaku */
- #define XK_Hankaku 0xff29 /* to Hankaku */
- #define XK_Zenkaku_Hankaku 0xff2a /* Zenkaku/Hankaku toggle */
- #define XK_Touroku 0xff2b /* Add to Dictionary */
- #define XK_Massyo 0xff2c /* Delete from Dictionary */
- #define XK_Kana_Lock 0xff2d /* Kana Lock */
- #define XK_Kana_Shift 0xff2e /* Kana Shift */
- #define XK_Eisu_Shift 0xff2f /* Alphanumeric Shift */
- #define XK_Eisu_toggle 0xff30 /* Alphanumeric toggle */
- #define XK_Kanji_Bangou 0xff37 /* Codeinput */
- #define XK_Zen_Koho 0xff3d /* Multiple/All Candidate(s) */
- #define XK_Mae_Koho 0xff3e /* Previous Candidate */
- /* 0xff31 thru 0xff3f are under XK_KOREAN */
- /* Cursor control & motion */
- #define XK_Home 0xff50
- #define XK_Left 0xff51 /* Move left, left arrow */
- #define XK_Up 0xff52 /* Move up, up arrow */
- #define XK_Right 0xff53 /* Move right, right arrow */
- #define XK_Down 0xff54 /* Move down, down arrow */
- #define XK_Prior 0xff55 /* Prior, previous */
- #define XK_Page_Up 0xff55
- #define XK_Next 0xff56 /* Next */
- #define XK_Page_Down 0xff56
- #define XK_End 0xff57 /* EOL */
- #define XK_Begin 0xff58 /* BOL */
- /* Misc functions */
- #define XK_Select 0xff60 /* Select, mark */
- #define XK_Print 0xff61
- #define XK_Execute 0xff62 /* Execute, run, do */
- #define XK_Insert 0xff63 /* Insert, insert here */
- #define XK_Undo 0xff65
- #define XK_Redo 0xff66 /* Redo, again */
- #define XK_Menu 0xff67
- #define XK_Find 0xff68 /* Find, search */
- #define XK_Cancel 0xff69 /* Cancel, stop, abort, exit */
- #define XK_Help 0xff6a /* Help */
- #define XK_Break 0xff6b
- #define XK_Mode_switch 0xff7e /* Character set switch */
- #define XK_script_switch 0xff7e /* Alias for mode_switch */
- #define XK_Num_Lock 0xff7f
- /* Keypad functions, keypad numbers cleverly chosen to map to ASCII */
- #define XK_KP_Space 0xff80 /* Space */
- #define XK_KP_Tab 0xff89
- #define XK_KP_Enter 0xff8d /* Enter */
- #define XK_KP_F1 0xff91 /* PF1, KP_A, ... */
- #define XK_KP_F2 0xff92
- #define XK_KP_F3 0xff93
- #define XK_KP_F4 0xff94
- #define XK_KP_Home 0xff95
- #define XK_KP_Left 0xff96
- #define XK_KP_Up 0xff97
- #define XK_KP_Right 0xff98
- #define XK_KP_Down 0xff99
- #define XK_KP_Prior 0xff9a
- #define XK_KP_Page_Up 0xff9a
- #define XK_KP_Next 0xff9b
- #define XK_KP_Page_Down 0xff9b
- #define XK_KP_End 0xff9c
- #define XK_KP_Begin 0xff9d
- #define XK_KP_Insert 0xff9e
- #define XK_KP_Delete 0xff9f
- #define XK_KP_Equal 0xffbd /* Equals */
- #define XK_KP_Multiply 0xffaa
- #define XK_KP_Add 0xffab
- #define XK_KP_Separator 0xffac /* Separator, often comma */
- #define XK_KP_Subtract 0xffad
- #define XK_KP_Decimal 0xffae
- #define XK_KP_Divide 0xffaf
- #define XK_KP_0 0xffb0
- #define XK_KP_1 0xffb1
- #define XK_KP_2 0xffb2
- #define XK_KP_3 0xffb3
- #define XK_KP_4 0xffb4
- #define XK_KP_5 0xffb5
- #define XK_KP_6 0xffb6
- #define XK_KP_7 0xffb7
- #define XK_KP_8 0xffb8
- #define XK_KP_9 0xffb9
- /*
- * Auxiliary functions; note the duplicate definitions for left and right
- * function keys; Sun keyboards and a few other manufacturers have such
- * function key groups on the left and/or right sides of the keyboard.
- * We've not found a keyboard with more than 35 function keys total.
- */
- #define XK_F1 0xffbe
- #define XK_F2 0xffbf
- #define XK_F3 0xffc0
- #define XK_F4 0xffc1
- #define XK_F5 0xffc2
- #define XK_F6 0xffc3
- #define XK_F7 0xffc4
- #define XK_F8 0xffc5
- #define XK_F9 0xffc6
- #define XK_F10 0xffc7
- #define XK_F11 0xffc8
- #define XK_L1 0xffc8
- #define XK_F12 0xffc9
- #define XK_L2 0xffc9
- #define XK_F13 0xffca
- #define XK_L3 0xffca
- #define XK_F14 0xffcb
- #define XK_L4 0xffcb
- #define XK_F15 0xffcc
- #define XK_L5 0xffcc
- #define XK_F16 0xffcd
- #define XK_L6 0xffcd
- #define XK_F17 0xffce
- #define XK_L7 0xffce
- #define XK_F18 0xffcf
- #define XK_L8 0xffcf
- #define XK_F19 0xffd0
- #define XK_L9 0xffd0
- #define XK_F20 0xffd1
- #define XK_L10 0xffd1
- #define XK_F21 0xffd2
- #define XK_R1 0xffd2
- #define XK_F22 0xffd3
- #define XK_R2 0xffd3
- #define XK_F23 0xffd4
- #define XK_R3 0xffd4
- #define XK_F24 0xffd5
- #define XK_R4 0xffd5
- #define XK_F25 0xffd6
- #define XK_R5 0xffd6
- #define XK_F26 0xffd7
- #define XK_R6 0xffd7
- #define XK_F27 0xffd8
- #define XK_R7 0xffd8
- #define XK_F28 0xffd9
- #define XK_R8 0xffd9
- #define XK_F29 0xffda
- #define XK_R9 0xffda
- #define XK_F30 0xffdb
- #define XK_R10 0xffdb
- #define XK_F31 0xffdc
- #define XK_R11 0xffdc
- #define XK_F32 0xffdd
- #define XK_R12 0xffdd
- #define XK_F33 0xffde
- #define XK_R13 0xffde
- #define XK_F34 0xffdf
- #define XK_R14 0xffdf
- #define XK_F35 0xffe0
- #define XK_R15 0xffe0
- /* Modifiers */
- #define XK_Shift_L 0xffe1 /* Left shift */
- #define XK_Shift_R 0xffe2 /* Right shift */
- #define XK_Control_L 0xffe3 /* Left control */
- #define XK_Control_R 0xffe4 /* Right control */
- #define XK_Caps_Lock 0xffe5 /* Caps lock */
- #define XK_Shift_Lock 0xffe6 /* Shift lock */
- #define XK_Meta_L 0xffe7 /* Left meta */
- #define XK_Meta_R 0xffe8 /* Right meta */
- #define XK_Alt_L 0xffe9 /* Left alt */
- #define XK_Alt_R 0xffea /* Right alt */
- #define XK_Super_L 0xffeb /* Left super */
- #define XK_Super_R 0xffec /* Right super */
- #define XK_Hyper_L 0xffed /* Left hyper */
- #define XK_Hyper_R 0xffee /* Right hyper */
- #endif /* XK_MISCELLANY */
- /*
- * Keyboard (XKB) Extension function and modifier keys
- * (from Appendix C of "The X Keyboard Extension: Protocol Specification")
- * Byte 3 = 0xfe
- */
- #ifdef XK_XKB_KEYS
- #define XK_ISO_Lock 0xfe01
- #define XK_ISO_Level2_Latch 0xfe02
- #define XK_ISO_Level3_Shift 0xfe03
- #define XK_ISO_Level3_Latch 0xfe04
- #define XK_ISO_Level3_Lock 0xfe05
- #define XK_ISO_Level5_Shift 0xfe11
- #define XK_ISO_Level5_Latch 0xfe12
- #define XK_ISO_Level5_Lock 0xfe13
- #define XK_ISO_Group_Shift 0xff7e /* Alias for mode_switch */
- #define XK_ISO_Group_Latch 0xfe06
- #define XK_ISO_Group_Lock 0xfe07
- #define XK_ISO_Next_Group 0xfe08
- #define XK_ISO_Next_Group_Lock 0xfe09
- #define XK_ISO_Prev_Group 0xfe0a
- #define XK_ISO_Prev_Group_Lock 0xfe0b
- #define XK_ISO_First_Group 0xfe0c
- #define XK_ISO_First_Group_Lock 0xfe0d
- #define XK_ISO_Last_Group 0xfe0e
- #define XK_ISO_Last_Group_Lock 0xfe0f
- #define XK_ISO_Left_Tab 0xfe20
- #define XK_ISO_Move_Line_Up 0xfe21
- #define XK_ISO_Move_Line_Down 0xfe22
- #define XK_ISO_Partial_Line_Up 0xfe23
- #define XK_ISO_Partial_Line_Down 0xfe24
- #define XK_ISO_Partial_Space_Left 0xfe25
- #define XK_ISO_Partial_Space_Right 0xfe26
- #define XK_ISO_Set_Margin_Left 0xfe27
- #define XK_ISO_Set_Margin_Right 0xfe28
- #define XK_ISO_Release_Margin_Left 0xfe29
- #define XK_ISO_Release_Margin_Right 0xfe2a
- #define XK_ISO_Release_Both_Margins 0xfe2b
- #define XK_ISO_Fast_Cursor_Left 0xfe2c
- #define XK_ISO_Fast_Cursor_Right 0xfe2d
- #define XK_ISO_Fast_Cursor_Up 0xfe2e
- #define XK_ISO_Fast_Cursor_Down 0xfe2f
- #define XK_ISO_Continuous_Underline 0xfe30
- #define XK_ISO_Discontinuous_Underline 0xfe31
- #define XK_ISO_Emphasize 0xfe32
- #define XK_ISO_Center_Object 0xfe33
- #define XK_ISO_Enter 0xfe34
- #define XK_dead_grave 0xfe50
- #define XK_dead_acute 0xfe51
- #define XK_dead_circumflex 0xfe52
- #define XK_dead_tilde 0xfe53
- #define XK_dead_perispomeni 0xfe53 /* alias for dead_tilde */
- #define XK_dead_macron 0xfe54
- #define XK_dead_breve 0xfe55
- #define XK_dead_abovedot 0xfe56
- #define XK_dead_diaeresis 0xfe57
- #define XK_dead_abovering 0xfe58
- #define XK_dead_doubleacute 0xfe59
- #define XK_dead_caron 0xfe5a
- #define XK_dead_cedilla 0xfe5b
- #define XK_dead_ogonek 0xfe5c
- #define XK_dead_iota 0xfe5d
- #define XK_dead_voiced_sound 0xfe5e
- #define XK_dead_semivoiced_sound 0xfe5f
- #define XK_dead_belowdot 0xfe60
- #define XK_dead_hook 0xfe61
- #define XK_dead_horn 0xfe62
- #define XK_dead_stroke 0xfe63
- #define XK_dead_abovecomma 0xfe64
- #define XK_dead_psili 0xfe64 /* alias for dead_abovecomma */
- #define XK_dead_abovereversedcomma 0xfe65
- #define XK_dead_dasia 0xfe65 /* alias for dead_abovereversedcomma */
- #define XK_dead_belowring 0xfe67
- #define XK_dead_belowmacron 0xfe68
- #define XK_dead_belowcircumflex 0xfe69
- #define XK_dead_belowtilde 0xfe6a
- #define XK_dead_belowbreve 0xfe6b
- #define XK_dead_belowdiaeresis 0xfe6c
- #define XK_First_Virtual_Screen 0xfed0
- #define XK_Prev_Virtual_Screen 0xfed1
- #define XK_Next_Virtual_Screen 0xfed2
- #define XK_Last_Virtual_Screen 0xfed4
- #define XK_Terminate_Server 0xfed5
- #define XK_AccessX_Enable 0xfe70
- #define XK_AccessX_Feedback_Enable 0xfe71
- #define XK_RepeatKeys_Enable 0xfe72
- #define XK_SlowKeys_Enable 0xfe73
- #define XK_BounceKeys_Enable 0xfe74
- #define XK_StickyKeys_Enable 0xfe75
- #define XK_MouseKeys_Enable 0xfe76
- #define XK_MouseKeys_Accel_Enable 0xfe77
- #define XK_Overlay1_Enable 0xfe78
- #define XK_Overlay2_Enable 0xfe79
- #define XK_AudibleBell_Enable 0xfe7a
- #define XK_Pointer_Left 0xfee0
- #define XK_Pointer_Right 0xfee1
- #define XK_Pointer_Up 0xfee2
- #define XK_Pointer_Down 0xfee3
- #define XK_Pointer_UpLeft 0xfee4
- #define XK_Pointer_UpRight 0xfee5
- #define XK_Pointer_DownLeft 0xfee6
- #define XK_Pointer_DownRight 0xfee7
- #define XK_Pointer_Button_Dflt 0xfee8
- #define XK_Pointer_Button1 0xfee9
- #define XK_Pointer_Button2 0xfeea
- #define XK_Pointer_Button3 0xfeeb
- #define XK_Pointer_Button4 0xfeec
- #define XK_Pointer_Button5 0xfeed
- #define XK_Pointer_DblClick_Dflt 0xfeee
- #define XK_Pointer_DblClick1 0xfeef
- #define XK_Pointer_DblClick2 0xfef0
- #define XK_Pointer_DblClick3 0xfef1
- #define XK_Pointer_DblClick4 0xfef2
- #define XK_Pointer_DblClick5 0xfef3
- #define XK_Pointer_Drag_Dflt 0xfef4
- #define XK_Pointer_Drag1 0xfef5
- #define XK_Pointer_Drag2 0xfef6
- #define XK_Pointer_Drag3 0xfef7
- #define XK_Pointer_Drag4 0xfef8
- #define XK_Pointer_Drag5 0xfefd
- #define XK_Pointer_EnableKeys 0xfef9
- #define XK_Pointer_Accelerate 0xfefa
- #define XK_Pointer_DfltBtnNext 0xfefb
- #define XK_Pointer_DfltBtnPrev 0xfefc
- #endif /* XK_XKB_KEYS */
- /*
- * 3270 Terminal Keys
- * Byte 3 = 0xfd
- */
- #ifdef XK_3270
- #define XK_3270_Duplicate 0xfd01
- #define XK_3270_FieldMark 0xfd02
- #define XK_3270_Right2 0xfd03
- #define XK_3270_Left2 0xfd04
- #define XK_3270_BackTab 0xfd05
- #define XK_3270_EraseEOF 0xfd06
- #define XK_3270_EraseInput 0xfd07
- #define XK_3270_Reset 0xfd08
- #define XK_3270_Quit 0xfd09
- #define XK_3270_PA1 0xfd0a
- #define XK_3270_PA2 0xfd0b
- #define XK_3270_PA3 0xfd0c
- #define XK_3270_Test 0xfd0d
- #define XK_3270_Attn 0xfd0e
- #define XK_3270_CursorBlink 0xfd0f
- #define XK_3270_AltCursor 0xfd10
- #define XK_3270_KeyClick 0xfd11
- #define XK_3270_Jump 0xfd12
- #define XK_3270_Ident 0xfd13
- #define XK_3270_Rule 0xfd14
- #define XK_3270_Copy 0xfd15
- #define XK_3270_Play 0xfd16
- #define XK_3270_Setup 0xfd17
- #define XK_3270_Record 0xfd18
- #define XK_3270_ChangeScreen 0xfd19
- #define XK_3270_DeleteWord 0xfd1a
- #define XK_3270_ExSelect 0xfd1b
- #define XK_3270_CursorSelect 0xfd1c
- #define XK_3270_PrintScreen 0xfd1d
- #define XK_3270_Enter 0xfd1e
- #endif /* XK_3270 */
- /*
- * Latin 1
- * (ISO/IEC 8859-1 = Unicode U+0020..U+00FF)
- * Byte 3 = 0
- */
- #ifdef XK_LATIN1
- #define XK_space 0x0020 /* U+0020 SPACE */
- #define XK_exclam 0x0021 /* U+0021 EXCLAMATION MARK */
- #define XK_quotedbl 0x0022 /* U+0022 QUOTATION MARK */
- #define XK_numbersign 0x0023 /* U+0023 NUMBER SIGN */
- #define XK_dollar 0x0024 /* U+0024 DOLLAR SIGN */
- #define XK_percent 0x0025 /* U+0025 PERCENT SIGN */
- #define XK_ampersand 0x0026 /* U+0026 AMPERSAND */
- #define XK_apostrophe 0x0027 /* U+0027 APOSTROPHE */
- #define XK_quoteright 0x0027 /* deprecated */
- #define XK_parenleft 0x0028 /* U+0028 LEFT PARENTHESIS */
- #define XK_parenright 0x0029 /* U+0029 RIGHT PARENTHESIS */
- #define XK_asterisk 0x002a /* U+002A ASTERISK */
- #define XK_plus 0x002b /* U+002B PLUS SIGN */
- #define XK_comma 0x002c /* U+002C COMMA */
- #define XK_minus 0x002d /* U+002D HYPHEN-MINUS */
- #define XK_period 0x002e /* U+002E FULL STOP */
- #define XK_slash 0x002f /* U+002F SOLIDUS */
- #define XK_0 0x0030 /* U+0030 DIGIT ZERO */
- #define XK_1 0x0031 /* U+0031 DIGIT ONE */
- #define XK_2 0x0032 /* U+0032 DIGIT TWO */
- #define XK_3 0x0033 /* U+0033 DIGIT THREE */
- #define XK_4 0x0034 /* U+0034 DIGIT FOUR */
- #define XK_5 0x0035 /* U+0035 DIGIT FIVE */
- #define XK_6 0x0036 /* U+0036 DIGIT SIX */
- #define XK_7 0x0037 /* U+0037 DIGIT SEVEN */
- #define XK_8 0x0038 /* U+0038 DIGIT EIGHT */
- #define XK_9 0x0039 /* U+0039 DIGIT NINE */
- #define XK_colon 0x003a /* U+003A COLON */
- #define XK_semicolon 0x003b /* U+003B SEMICOLON */
- #define XK_less 0x003c /* U+003C LESS-THAN SIGN */
- #define XK_equal 0x003d /* U+003D EQUALS SIGN */
- #define XK_greater 0x003e /* U+003E GREATER-THAN SIGN */
- #define XK_question 0x003f /* U+003F QUESTION MARK */
- #define XK_at 0x0040 /* U+0040 COMMERCIAL AT */
- #define XK_A 0x0041 /* U+0041 LATIN CAPITAL LETTER A */
- #define XK_B 0x0042 /* U+0042 LATIN CAPITAL LETTER B */
- #define XK_C 0x0043 /* U+0043 LATIN CAPITAL LETTER C */
- #define XK_D 0x0044 /* U+0044 LATIN CAPITAL LETTER D */
- #define XK_E 0x0045 /* U+0045 LATIN CAPITAL LETTER E */
- #define XK_F 0x0046 /* U+0046 LATIN CAPITAL LETTER F */
- #define XK_G 0x0047 /* U+0047 LATIN CAPITAL LETTER G */
- #define XK_H 0x0048 /* U+0048 LATIN CAPITAL LETTER H */
- #define XK_I 0x0049 /* U+0049 LATIN CAPITAL LETTER I */
- #define XK_J 0x004a /* U+004A LATIN CAPITAL LETTER J */
- #define XK_K 0x004b /* U+004B LATIN CAPITAL LETTER K */
- #define XK_L 0x004c /* U+004C LATIN CAPITAL LETTER L */
- #define XK_M 0x004d /* U+004D LATIN CAPITAL LETTER M */
- #define XK_N 0x004e /* U+004E LATIN CAPITAL LETTER N */
- #define XK_O 0x004f /* U+004F LATIN CAPITAL LETTER O */
- #define XK_P 0x0050 /* U+0050 LATIN CAPITAL LETTER P */
- #define XK_Q 0x0051 /* U+0051 LATIN CAPITAL LETTER Q */
- #define XK_R 0x0052 /* U+0052 LATIN CAPITAL LETTER R */
- #define XK_S 0x0053 /* U+0053 LATIN CAPITAL LETTER S */
- #define XK_T 0x0054 /* U+0054 LATIN CAPITAL LETTER T */
- #define XK_U 0x0055 /* U+0055 LATIN CAPITAL LETTER U */
- #define XK_V 0x0056 /* U+0056 LATIN CAPITAL LETTER V */
- #define XK_W 0x0057 /* U+0057 LATIN CAPITAL LETTER W */
- #define XK_X 0x0058 /* U+0058 LATIN CAPITAL LETTER X */
- #define XK_Y 0x0059 /* U+0059 LATIN CAPITAL LETTER Y */
- #define XK_Z 0x005a /* U+005A LATIN CAPITAL LETTER Z */
- #define XK_bracketleft 0x005b /* U+005B LEFT SQUARE BRACKET */
- #define XK_backslash 0x005c /* U+005C REVERSE SOLIDUS */
- #define XK_bracketright 0x005d /* U+005D RIGHT SQUARE BRACKET */
- #define XK_asciicircum 0x005e /* U+005E CIRCUMFLEX ACCENT */
- #define XK_underscore 0x005f /* U+005F LOW LINE */
- #define XK_grave 0x0060 /* U+0060 GRAVE ACCENT */
- #define XK_quoteleft 0x0060 /* deprecated */
- #define XK_a 0x0061 /* U+0061 LATIN SMALL LETTER A */
- #define XK_b 0x0062 /* U+0062 LATIN SMALL LETTER B */
- #define XK_c 0x0063 /* U+0063 LATIN SMALL LETTER C */
- #define XK_d 0x0064 /* U+0064 LATIN SMALL LETTER D */
- #define XK_e 0x0065 /* U+0065 LATIN SMALL LETTER E */
- #define XK_f 0x0066 /* U+0066 LATIN SMALL LETTER F */
- #define XK_g 0x0067 /* U+0067 LATIN SMALL LETTER G */
- #define XK_h 0x0068 /* U+0068 LATIN SMALL LETTER H */
- #define XK_i 0x0069 /* U+0069 LATIN SMALL LETTER I */
- #define XK_j 0x006a /* U+006A LATIN SMALL LETTER J */
- #define XK_k 0x006b /* U+006B LATIN SMALL LETTER K */
- #define XK_l 0x006c /* U+006C LATIN SMALL LETTER L */
- #define XK_m 0x006d /* U+006D LATIN SMALL LETTER M */
- #define XK_n 0x006e /* U+006E LATIN SMALL LETTER N */
- #define XK_o 0x006f /* U+006F LATIN SMALL LETTER O */
- #define XK_p 0x0070 /* U+0070 LATIN SMALL LETTER P */
- #define XK_q 0x0071 /* U+0071 LATIN SMALL LETTER Q */
- #define XK_r 0x0072 /* U+0072 LATIN SMALL LETTER R */
- #define XK_s 0x0073 /* U+0073 LATIN SMALL LETTER S */
- #define XK_t 0x0074 /* U+0074 LATIN SMALL LETTER T */
- #define XK_u 0x0075 /* U+0075 LATIN SMALL LETTER U */
- #define XK_v 0x0076 /* U+0076 LATIN SMALL LETTER V */
- #define XK_w 0x0077 /* U+0077 LATIN SMALL LETTER W */
- #define XK_x 0x0078 /* U+0078 LATIN SMALL LETTER X */
- #define XK_y 0x0079 /* U+0079 LATIN SMALL LETTER Y */
- #define XK_z 0x007a /* U+007A LATIN SMALL LETTER Z */
- #define XK_braceleft 0x007b /* U+007B LEFT CURLY BRACKET */
- #define XK_bar 0x007c /* U+007C VERTICAL LINE */
- #define XK_braceright 0x007d /* U+007D RIGHT CURLY BRACKET */
- #define XK_asciitilde 0x007e /* U+007E TILDE */
- #define XK_nobreakspace 0x00a0 /* U+00A0 NO-BREAK SPACE */
- #define XK_exclamdown 0x00a1 /* U+00A1 INVERTED EXCLAMATION MARK */
- #define XK_cent 0x00a2 /* U+00A2 CENT SIGN */
- #define XK_sterling 0x00a3 /* U+00A3 POUND SIGN */
- #define XK_currency 0x00a4 /* U+00A4 CURRENCY SIGN */
- #define XK_yen 0x00a5 /* U+00A5 YEN SIGN */
- #define XK_brokenbar 0x00a6 /* U+00A6 BROKEN BAR */
- #define XK_section 0x00a7 /* U+00A7 SECTION SIGN */
- #define XK_diaeresis 0x00a8 /* U+00A8 DIAERESIS */
- #define XK_copyright 0x00a9 /* U+00A9 COPYRIGHT SIGN */
- #define XK_ordfeminine 0x00aa /* U+00AA FEMININE ORDINAL INDICATOR */
- #define XK_guillemotleft 0x00ab /* U+00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK */
- #define XK_notsign 0x00ac /* U+00AC NOT SIGN */
- #define XK_hyphen 0x00ad /* U+00AD SOFT HYPHEN */
- #define XK_registered 0x00ae /* U+00AE REGISTERED SIGN */
- #define XK_macron 0x00af /* U+00AF MACRON */
- #define XK_degree 0x00b0 /* U+00B0 DEGREE SIGN */
- #define XK_plusminus 0x00b1 /* U+00B1 PLUS-MINUS SIGN */
- #define XK_twosuperior 0x00b2 /* U+00B2 SUPERSCRIPT TWO */
- #define XK_threesuperior 0x00b3 /* U+00B3 SUPERSCRIPT THREE */
- #define XK_acute 0x00b4 /* U+00B4 ACUTE ACCENT */
- #define XK_mu 0x00b5 /* U+00B5 MICRO SIGN */
- #define XK_paragraph 0x00b6 /* U+00B6 PILCROW SIGN */
- #define XK_periodcentered 0x00b7 /* U+00B7 MIDDLE DOT */
- #define XK_cedilla 0x00b8 /* U+00B8 CEDILLA */
- #define XK_onesuperior 0x00b9 /* U+00B9 SUPERSCRIPT ONE */
- #define XK_masculine 0x00ba /* U+00BA MASCULINE ORDINAL INDICATOR */
- #define XK_guillemotright 0x00bb /* U+00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK */
- #define XK_onequarter 0x00bc /* U+00BC VULGAR FRACTION ONE QUARTER */
- #define XK_onehalf 0x00bd /* U+00BD VULGAR FRACTION ONE HALF */
- #define XK_threequarters 0x00be /* U+00BE VULGAR FRACTION THREE QUARTERS */
- #define XK_questiondown 0x00bf /* U+00BF INVERTED QUESTION MARK */
- #define XK_Agrave 0x00c0 /* U+00C0 LATIN CAPITAL LETTER A WITH GRAVE */
- #define XK_Aacute 0x00c1 /* U+00C1 LATIN CAPITAL LETTER A WITH ACUTE */
- #define XK_Acircumflex 0x00c2 /* U+00C2 LATIN CAPITAL LETTER A WITH CIRCUMFLEX */
- #define XK_Atilde 0x00c3 /* U+00C3 LATIN CAPITAL LETTER A WITH TILDE */
- #define XK_Adiaeresis 0x00c4 /* U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS */
- #define XK_Aring 0x00c5 /* U+00C5 LATIN CAPITAL LETTER A WITH RING ABOVE */
- #define XK_AE 0x00c6 /* U+00C6 LATIN CAPITAL LETTER AE */
- #define XK_Ccedilla 0x00c7 /* U+00C7 LATIN CAPITAL LETTER C WITH CEDILLA */
- #define XK_Egrave 0x00c8 /* U+00C8 LATIN CAPITAL LETTER E WITH GRAVE */
- #define XK_Eacute 0x00c9 /* U+00C9 LATIN CAPITAL LETTER E WITH ACUTE */
- #define XK_Ecircumflex 0x00ca /* U+00CA LATIN CAPITAL LETTER E WITH CIRCUMFLEX */
- #define XK_Ediaeresis 0x00cb /* U+00CB LATIN CAPITAL LETTER E WITH DIAERESIS */
- #define XK_Igrave 0x00cc /* U+00CC LATIN CAPITAL LETTER I WITH GRAVE */
- #define XK_Iacute 0x00cd /* U+00CD LATIN CAPITAL LETTER I WITH ACUTE */
- #define XK_Icircumflex 0x00ce /* U+00CE LATIN CAPITAL LETTER I WITH CIRCUMFLEX */
- #define XK_Idiaeresis 0x00cf /* U+00CF LATIN CAPITAL LETTER I WITH DIAERESIS */
- #define XK_ETH 0x00d0 /* U+00D0 LATIN CAPITAL LETTER ETH */
- #define XK_Eth 0x00d0 /* deprecated */
- #define XK_Ntilde 0x00d1 /* U+00D1 LATIN CAPITAL LETTER N WITH TILDE */
- #define XK_Ograve 0x00d2 /* U+00D2 LATIN CAPITAL LETTER O WITH GRAVE */
- #define XK_Oacute 0x00d3 /* U+00D3 LATIN CAPITAL LETTER O WITH ACUTE */
- #define XK_Ocircumflex 0x00d4 /* U+00D4 LATIN CAPITAL LETTER O WITH CIRCUMFLEX */
- #define XK_Otilde 0x00d5 /* U+00D5 LATIN CAPITAL LETTER O WITH TILDE */
- #define XK_Odiaeresis 0x00d6 /* U+00D6 LATIN CAPITAL LETTER O WITH DIAERESIS */
- #define XK_multiply 0x00d7 /* U+00D7 MULTIPLICATION SIGN */
- #define XK_Oslash 0x00d8 /* U+00D8 LATIN CAPITAL LETTER O WITH STROKE */
- #define XK_Ooblique 0x00d8 /* U+00D8 LATIN CAPITAL LETTER O WITH STROKE */
- #define XK_Ugrave 0x00d9 /* U+00D9 LATIN CAPITAL LETTER U WITH GRAVE */
- #define XK_Uacute 0x00da /* U+00DA LATIN CAPITAL LETTER U WITH ACUTE */
- #define XK_Ucircumflex 0x00db /* U+00DB LATIN CAPITAL LETTER U WITH CIRCUMFLEX */
- #define XK_Udiaeresis 0x00dc /* U+00DC LATIN CAPITAL LETTER U WITH DIAERESIS */
- #define XK_Yacute 0x00dd /* U+00DD LATIN CAPITAL LETTER Y WITH ACUTE */
- #define XK_THORN 0x00de /* U+00DE LATIN CAPITAL LETTER THORN */
- #define XK_Thorn 0x00de /* deprecated */
- #define XK_ssharp 0x00df /* U+00DF LATIN SMALL LETTER SHARP S */
- #define XK_agrave 0x00e0 /* U+00E0 LATIN SMALL LETTER A WITH GRAVE */
- #define XK_aacute 0x00e1 /* U+00E1 LATIN SMALL LETTER A WITH ACUTE */
- #define XK_acircumflex 0x00e2 /* U+00E2 LATIN SMALL LETTER A WITH CIRCUMFLEX */
- #define XK_atilde 0x00e3 /* U+00E3 LATIN SMALL LETTER A WITH TILDE */
- #define XK_adiaeresis 0x00e4 /* U+00E4 LATIN SMALL LETTER A WITH DIAERESIS */
- #define XK_aring 0x00e5 /* U+00E5 LATIN SMALL LETTER A WITH RING ABOVE */
- #define XK_ae 0x00e6 /* U+00E6 LATIN SMALL LETTER AE */
- #define XK_ccedilla 0x00e7 /* U+00E7 LATIN SMALL LETTER C WITH CEDILLA */
- #define XK_egrave 0x00e8 /* U+00E8 LATIN SMALL LETTER E WITH GRAVE */
- #define XK_eacute 0x00e9 /* U+00E9 LATIN SMALL LETTER E WITH ACUTE */
- #define XK_ecircumflex 0x00ea /* U+00EA LATIN SMALL LETTER E WITH CIRCUMFLEX */
- #define XK_ediaeresis 0x00eb /* U+00EB LATIN SMALL LETTER E WITH DIAERESIS */
- #define XK_igrave 0x00ec /* U+00EC LATIN SMALL LETTER I WITH GRAVE */
- #define XK_iacute 0x00ed /* U+00ED LATIN SMALL LETTER I WITH ACUTE */
- #define XK_icircumflex 0x00ee /* U+00EE LATIN SMALL LETTER I WITH CIRCUMFLEX */
- #define XK_idiaeresis 0x00ef /* U+00EF LATIN SMALL LETTER I WITH DIAERESIS */
- #define XK_eth 0x00f0 /* U+00F0 LATIN SMALL LETTER ETH */
- #define XK_ntilde 0x00f1 /* U+00F1 LATIN SMALL LETTER N WITH TILDE */
- #define XK_ograve 0x00f2 /* U+00F2 LATIN SMALL LETTER O WITH GRAVE */
- #define XK_oacute 0x00f3 /* U+00F3 LATIN SMALL LETTER O WITH ACUTE */
- #define XK_ocircumflex 0x00f4 /* U+00F4 LATIN SMALL LETTER O WITH CIRCUMFLEX */
- #define XK_otilde 0x00f5 /* U+00F5 LATIN SMALL LETTER O WITH TILDE */
- #define XK_odiaeresis 0x00f6 /* U+00F6 LATIN SMALL LETTER O WITH DIAERESIS */
- #define XK_division 0x00f7 /* U+00F7 DIVISION SIGN */
- #define XK_oslash 0x00f8 /* U+00F8 LATIN SMALL LETTER O WITH STROKE */
- #define XK_ooblique 0x00f8 /* U+00F8 LATIN SMALL LETTER O WITH STROKE */
- #define XK_ugrave 0x00f9 /* U+00F9 LATIN SMALL LETTER U WITH GRAVE */
- #define XK_uacute 0x00fa /* U+00FA LATIN SMALL LETTER U WITH ACUTE */
- #define XK_ucircumflex 0x00fb /* U+00FB LATIN SMALL LETTER U WITH CIRCUMFLEX */
- #define XK_udiaeresis 0x00fc /* U+00FC LATIN SMALL LETTER U WITH DIAERESIS */
- #define XK_yacute 0x00fd /* U+00FD LATIN SMALL LETTER Y WITH ACUTE */
- #define XK_thorn 0x00fe /* U+00FE LATIN SMALL LETTER THORN */
- #define XK_ydiaeresis 0x00ff /* U+00FF LATIN SMALL LETTER Y WITH DIAERESIS */
- #endif /* XK_LATIN1 */
- /*
- * Latin 2
- * Byte 3 = 1
- */
- #ifdef XK_LATIN2
- #define XK_Aogonek 0x01a1 /* U+0104 LATIN CAPITAL LETTER A WITH OGONEK */
- #define XK_breve 0x01a2 /* U+02D8 BREVE */
- #define XK_Lstroke 0x01a3 /* U+0141 LATIN CAPITAL LETTER L WITH STROKE */
- #define XK_Lcaron 0x01a5 /* U+013D LATIN CAPITAL LETTER L WITH CARON */
- #define XK_Sacute 0x01a6 /* U+015A LATIN CAPITAL LETTER S WITH ACUTE */
- #define XK_Scaron 0x01a9 /* U+0160 LATIN CAPITAL LETTER S WITH CARON */
- #define XK_Scedilla 0x01aa /* U+015E LATIN CAPITAL LETTER S WITH CEDILLA */
- #define XK_Tcaron 0x01ab /* U+0164 LATIN CAPITAL LETTER T WITH CARON */
- #define XK_Zacute 0x01ac /* U+0179 LATIN CAPITAL LETTER Z WITH ACUTE */
- #define XK_Zcaron 0x01ae /* U+017D LATIN CAPITAL LETTER Z WITH CARON */
- #define XK_Zabovedot 0x01af /* U+017B LATIN CAPITAL LETTER Z WITH DOT ABOVE */
- #define XK_aogonek 0x01b1 /* U+0105 LATIN SMALL LETTER A WITH OGONEK */
- #define XK_ogonek 0x01b2 /* U+02DB OGONEK */
- #define XK_lstroke 0x01b3 /* U+0142 LATIN SMALL LETTER L WITH STROKE */
- #define XK_lcaron 0x01b5 /* U+013E LATIN SMALL LETTER L WITH CARON */
- #define XK_sacute 0x01b6 /* U+015B LATIN SMALL LETTER S WITH ACUTE */
- #define XK_caron 0x01b7 /* U+02C7 CARON */
- #define XK_scaron 0x01b9 /* U+0161 LATIN SMALL LETTER S WITH CARON */
- #define XK_scedilla 0x01ba /* U+015F LATIN SMALL LETTER S WITH CEDILLA */
- #define XK_tcaron 0x01bb /* U+0165 LATIN SMALL LETTER T WITH CARON */
- #define XK_zacute 0x01bc /* U+017A LATIN SMALL LETTER Z WITH ACUTE */
- #define XK_doubleacute 0x01bd /* U+02DD DOUBLE ACUTE ACCENT */
- #define XK_zcaron 0x01be /* U+017E LATIN SMALL LETTER Z WITH CARON */
- #define XK_zabovedot 0x01bf /* U+017C LATIN SMALL LETTER Z WITH DOT ABOVE */
- #define XK_Racute 0x01c0 /* U+0154 LATIN CAPITAL LETTER R WITH ACUTE */
- #define XK_Abreve 0x01c3 /* U+0102 LATIN CAPITAL LETTER A WITH BREVE */
- #define XK_Lacute 0x01c5 /* U+0139 LATIN CAPITAL LETTER L WITH ACUTE */
- #define XK_Cacute 0x01c6 /* U+0106 LATIN CAPITAL LETTER C WITH ACUTE */
- #define XK_Ccaron 0x01c8 /* U+010C LATIN CAPITAL LETTER C WITH CARON */
- #define XK_Eogonek 0x01ca /* U+0118 LATIN CAPITAL LETTER E WITH OGONEK */
- #define XK_Ecaron 0x01cc /* U+011A LATIN CAPITAL LETTER E WITH CARON */
- #define XK_Dcaron 0x01cf /* U+010E LATIN CAPITAL LETTER D WITH CARON */
- #define XK_Dstroke 0x01d0 /* U+0110 LATIN CAPITAL LETTER D WITH STROKE */
- #define XK_Nacute 0x01d1 /* U+0143 LATIN CAPITAL LETTER N WITH ACUTE */
- #define XK_Ncaron 0x01d2 /* U+0147 LATIN CAPITAL LETTER N WITH CARON */
- #define XK_Odoubleacute 0x01d5 /* U+0150 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */
- #define XK_Rcaron 0x01d8 /* U+0158 LATIN CAPITAL LETTER R WITH CARON */
- #define XK_Uring 0x01d9 /* U+016E LATIN CAPITAL LETTER U WITH RING ABOVE */
- #define XK_Udoubleacute 0x01db /* U+0170 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */
- #define XK_Tcedilla 0x01de /* U+0162 LATIN CAPITAL LETTER T WITH CEDILLA */
- #define XK_racute 0x01e0 /* U+0155 LATIN SMALL LETTER R WITH ACUTE */
- #define XK_abreve 0x01e3 /* U+0103 LATIN SMALL LETTER A WITH BREVE */
- #define XK_lacute 0x01e5 /* U+013A LATIN SMALL LETTER L WITH ACUTE */
- #define XK_cacute 0x01e6 /* U+0107 LATIN SMALL LETTER C WITH ACUTE */
- #define XK_ccaron 0x01e8 /* U+010D LATIN SMALL LETTER C WITH CARON */
- #define XK_eogonek 0x01ea /* U+0119 LATIN SMALL LETTER E WITH OGONEK */
- #define XK_ecaron 0x01ec /* U+011B LATIN SMALL LETTER E WITH CARON */
- #define XK_dcaron 0x01ef /* U+010F LATIN SMALL LETTER D WITH CARON */
- #define XK_dstroke 0x01f0 /* U+0111 LATIN SMALL LETTER D WITH STROKE */
- #define XK_nacute 0x01f1 /* U+0144 LATIN SMALL LETTER N WITH ACUTE */
- #define XK_ncaron 0x01f2 /* U+0148 LATIN SMALL LETTER N WITH CARON */
- #define XK_odoubleacute 0x01f5 /* U+0151 LATIN SMALL LETTER O WITH DOUBLE ACUTE */
- #define XK_udoubleacute 0x01fb /* U+0171 LATIN SMALL LETTER U WITH DOUBLE ACUTE */
- #define XK_rcaron 0x01f8 /* U+0159 LATIN SMALL LETTER R WITH CARON */
- #define XK_uring 0x01f9 /* U+016F LATIN SMALL LETTER U WITH RING ABOVE */
- #define XK_tcedilla 0x01fe /* U+0163 LATIN SMALL LETTER T WITH CEDILLA */
- #define XK_abovedot 0x01ff /* U+02D9 DOT ABOVE */
- #endif /* XK_LATIN2 */
- /*
- * Latin 3
- * Byte 3 = 2
- */
- #ifdef XK_LATIN3
- #define XK_Hstroke 0x02a1 /* U+0126 LATIN CAPITAL LETTER H WITH STROKE */
- #define XK_Hcircumflex 0x02a6 /* U+0124 LATIN CAPITAL LETTER H WITH CIRCUMFLEX */
- #define XK_Iabovedot 0x02a9 /* U+0130 LATIN CAPITAL LETTER I WITH DOT ABOVE */
- #define XK_Gbreve 0x02ab /* U+011E LATIN CAPITAL LETTER G WITH BREVE */
- #define XK_Jcircumflex 0x02ac /* U+0134 LATIN CAPITAL LETTER J WITH CIRCUMFLEX */
- #define XK_hstroke 0x02b1 /* U+0127 LATIN SMALL LETTER H WITH STROKE */
- #define XK_hcircumflex 0x02b6 /* U+0125 LATIN SMALL LETTER H WITH CIRCUMFLEX */
- #define XK_idotless 0x02b9 /* U+0131 LATIN SMALL LETTER DOTLESS I */
- #define XK_gbreve 0x02bb /* U+011F LATIN SMALL LETTER G WITH BREVE */
- #define XK_jcircumflex 0x02bc /* U+0135 LATIN SMALL LETTER J WITH CIRCUMFLEX */
- #define XK_Cabovedot 0x02c5 /* U+010A LATIN CAPITAL LETTER C WITH DOT ABOVE */
- #define XK_Ccircumflex 0x02c6 /* U+0108 LATIN CAPITAL LETTER C WITH CIRCUMFLEX */
- #define XK_Gabovedot 0x02d5 /* U+0120 LATIN CAPITAL LETTER G WITH DOT ABOVE */
- #define XK_Gcircumflex 0x02d8 /* U+011C LATIN CAPITAL LETTER G WITH CIRCUMFLEX */
- #define XK_Ubreve 0x02dd /* U+016C LATIN CAPITAL LETTER U WITH BREVE */
- #define XK_Scircumflex 0x02de /* U+015C LATIN CAPITAL LETTER S WITH CIRCUMFLEX */
- #define XK_cabovedot 0x02e5 /* U+010B LATIN SMALL LETTER C WITH DOT ABOVE */
- #define XK_ccircumflex 0x02e6 /* U+0109 LATIN SMALL LETTER C WITH CIRCUMFLEX */
- #define XK_gabovedot 0x02f5 /* U+0121 LATIN SMALL LETTER G WITH DOT ABOVE */
- #define XK_gcircumflex 0x02f8 /* U+011D LATIN SMALL LETTER G WITH CIRCUMFLEX */
- #define XK_ubreve 0x02fd /* U+016D LATIN SMALL LETTER U WITH BREVE */
- #define XK_scircumflex 0x02fe /* U+015D LATIN SMALL LETTER S WITH CIRCUMFLEX */
- #endif /* XK_LATIN3 */
- /*
- * Latin 4
- * Byte 3 = 3
- */
- #ifdef XK_LATIN4
- #define XK_kra 0x03a2 /* U+0138 LATIN SMALL LETTER KRA */
- #define XK_kappa 0x03a2 /* deprecated */
- #define XK_Rcedilla 0x03a3 /* U+0156 LATIN CAPITAL LETTER R WITH CEDILLA */
- #define XK_Itilde 0x03a5 /* U+0128 LATIN CAPITAL LETTER I WITH TILDE */
- #define XK_Lcedilla 0x03a6 /* U+013B LATIN CAPITAL LETTER L WITH CEDILLA */
- #define XK_Emacron 0x03aa /* U+0112 LATIN CAPITAL LETTER E WITH MACRON */
- #define XK_Gcedilla 0x03ab /* U+0122 LATIN CAPITAL LETTER G WITH CEDILLA */
- #define XK_Tslash 0x03ac /* U+0166 LATIN CAPITAL LETTER T WITH STROKE */
- #define XK_rcedilla 0x03b3 /* U+0157 LATIN SMALL LETTER R WITH CEDILLA */
- #define XK_itilde 0x03b5 /* U+0129 LATIN SMALL LETTER I WITH TILDE */
- #define XK_lcedilla 0x03b6 /* U+013C LATIN SMALL LETTER L WITH CEDILLA */
- #define XK_emacron 0x03ba /* U+0113 LATIN SMALL LETTER E WITH MACRON */
- #define XK_gcedilla 0x03bb /* U+0123 LATIN SMALL LETTER G WITH CEDILLA */
- #define XK_tslash 0x03bc /* U+0167 LATIN SMALL LETTER T WITH STROKE */
- #define XK_ENG 0x03bd /* U+014A LATIN CAPITAL LETTER ENG */
- #define XK_eng 0x03bf /* U+014B LATIN SMALL LETTER ENG */
- #define XK_Amacron 0x03c0 /* U+0100 LATIN CAPITAL LETTER A WITH MACRON */
- #define XK_Iogonek 0x03c7 /* U+012E LATIN CAPITAL LETTER I WITH OGONEK */
- #define XK_Eabovedot 0x03cc /* U+0116 LATIN CAPITAL LETTER E WITH DOT ABOVE */
- #define XK_Imacron 0x03cf /* U+012A LATIN CAPITAL LETTER I WITH MACRON */
- #define XK_Ncedilla 0x03d1 /* U+0145 LATIN CAPITAL LETTER N WITH CEDILLA */
- #define XK_Omacron 0x03d2 /* U+014C LATIN CAPITAL LETTER O WITH MACRON */
- #define XK_Kcedilla 0x03d3 /* U+0136 LATIN CAPITAL LETTER K WITH CEDILLA */
- #define XK_Uogonek 0x03d9 /* U+0172 LATIN CAPITAL LETTER U WITH OGONEK */
- #define XK_Utilde 0x03dd /* U+0168 LATIN CAPITAL LETTER U WITH TILDE */
- #define XK_Umacron 0x03de /* U+016A LATIN CAPITAL LETTER U WITH MACRON */
- #define XK_amacron 0x03e0 /* U+0101 LATIN SMALL LETTER A WITH MACRON */
- #define XK_iogonek 0x03e7 /* U+012F LATIN SMALL LETTER I WITH OGONEK */
- #define XK_eabovedot 0x03ec /* U+0117 LATIN SMALL LETTER E WITH DOT ABOVE */
- #define XK_imacron 0x03ef /* U+012B LATIN SMALL LETTER I WITH MACRON */
- #define XK_ncedilla 0x03f1 /* U+0146 LATIN SMALL LETTER N WITH CEDILLA */
- #define XK_omacron 0x03f2 /* U+014D LATIN SMALL LETTER O WITH MACRON */
- #define XK_kcedilla 0x03f3 /* U+0137 LATIN SMALL LETTER K WITH CEDILLA */
- #define XK_uogonek 0x03f9 /* U+0173 LATIN SMALL LETTER U WITH OGONEK */
- #define XK_utilde 0x03fd /* U+0169 LATIN SMALL LETTER U WITH TILDE */
- #define XK_umacron 0x03fe /* U+016B LATIN SMALL LETTER U WITH MACRON */
- #endif /* XK_LATIN4 */
- /*
- * Latin 8
- */
- #ifdef XK_LATIN8
- #define XK_Babovedot 0x1001e02 /* U+1E02 LATIN CAPITAL LETTER B WITH DOT ABOVE */
- #define XK_babovedot 0x1001e03 /* U+1E03 LATIN SMALL LETTER B WITH DOT ABOVE */
- #define XK_Dabovedot 0x1001e0a /* U+1E0A LATIN CAPITAL LETTER D WITH DOT ABOVE */
- #define XK_Wgrave 0x1001e80 /* U+1E80 LATIN CAPITAL LETTER W WITH GRAVE */
- #define XK_Wacute 0x1001e82 /* U+1E82 LATIN CAPITAL LETTER W WITH ACUTE */
- #define XK_dabovedot 0x1001e0b /* U+1E0B LATIN SMALL LETTER D WITH DOT ABOVE */
- #define XK_Ygrave 0x1001ef2 /* U+1EF2 LATIN CAPITAL LETTER Y WITH GRAVE */
- #define XK_Fabovedot 0x1001e1e /* U+1E1E LATIN CAPITAL LETTER F WITH DOT ABOVE */
- #define XK_fabovedot 0x1001e1f /* U+1E1F LATIN SMALL LETTER F WITH DOT ABOVE */
- #define XK_Mabovedot 0x1001e40 /* U+1E40 LATIN CAPITAL LETTER M WITH DOT ABOVE */
- #define XK_mabovedot 0x1001e41 /* U+1E41 LATIN SMALL LETTER M WITH DOT ABOVE */
- #define XK_Pabovedot 0x1001e56 /* U+1E56 LATIN CAPITAL LETTER P WITH DOT ABOVE */
- #define XK_wgrave 0x1001e81 /* U+1E81 LATIN SMALL LETTER W WITH GRAVE */
- #define XK_pabovedot 0x1001e57 /* U+1E57 LATIN SMALL LETTER P WITH DOT ABOVE */
- #define XK_wacute 0x1001e83 /* U+1E83 LATIN SMALL LETTER W WITH ACUTE */
- #define XK_Sabovedot 0x1001e60 /* U+1E60 LATIN CAPITAL LETTER S WITH DOT ABOVE */
- #define XK_ygrave 0x1001ef3 /* U+1EF3 LATIN SMALL LETTER Y WITH GRAVE */
- #define XK_Wdiaeresis 0x1001e84 /* U+1E84 LATIN CAPITAL LETTER W WITH DIAERESIS */
- #define XK_wdiaeresis 0x1001e85 /* U+1E85 LATIN SMALL LETTER W WITH DIAERESIS */
- #define XK_sabovedot 0x1001e61 /* U+1E61 LATIN SMALL LETTER S WITH DOT ABOVE */
- #define XK_Wcircumflex 0x1000174 /* U+0174 LATIN CAPITAL LETTER W WITH CIRCUMFLEX */
- #define XK_Tabovedot 0x1001e6a /* U+1E6A LATIN CAPITAL LETTER T WITH DOT ABOVE */
- #define XK_Ycircumflex 0x1000176 /* U+0176 LATIN CAPITAL LETTER Y WITH CIRCUMFLEX */
- #define XK_wcircumflex 0x1000175 /* U+0175 LATIN SMALL LETTER W WITH CIRCUMFLEX */
- #define XK_tabovedot 0x1001e6b /* U+1E6B LATIN SMALL LETTER T WITH DOT ABOVE */
- #define XK_ycircumflex 0x1000177 /* U+0177 LATIN SMALL LETTER Y WITH CIRCUMFLEX */
- #endif /* XK_LATIN8 */
- /*
- * Latin 9
- * Byte 3 = 0x13
- */
- #ifdef XK_LATIN9
- #define XK_OE 0x13bc /* U+0152 LATIN CAPITAL LIGATURE OE */
- #define XK_oe 0x13bd /* U+0153 LATIN SMALL LIGATURE OE */
- #define XK_Ydiaeresis 0x13be /* U+0178 LATIN CAPITAL LETTER Y WITH DIAERESIS */
- #endif /* XK_LATIN9 */
- /*
- * Katakana
- * Byte 3 = 4
- */
- #ifdef XK_KATAKANA
- #define XK_overline 0x047e /* U+203E OVERLINE */
- #define XK_kana_fullstop 0x04a1 /* U+3002 IDEOGRAPHIC FULL STOP */
- #define XK_kana_openingbracket 0x04a2 /* U+300C LEFT CORNER BRACKET */
- #define XK_kana_closingbracket 0x04a3 /* U+300D RIGHT CORNER BRACKET */
- #define XK_kana_comma 0x04a4 /* U+3001 IDEOGRAPHIC COMMA */
- #define XK_kana_conjunctive 0x04a5 /* U+30FB KATAKANA MIDDLE DOT */
- #define XK_kana_middledot 0x04a5 /* deprecated */
- #define XK_kana_WO 0x04a6 /* U+30F2 KATAKANA LETTER WO */
- #define XK_kana_a 0x04a7 /* U+30A1 KATAKANA LETTER SMALL A */
- #define XK_kana_i 0x04a8 /* U+30A3 KATAKANA LETTER SMALL I */
- #define XK_kana_u 0x04a9 /* U+30A5 KATAKANA LETTER SMALL U */
- #define XK_kana_e 0x04aa /* U+30A7 KATAKANA LETTER SMALL E */
- #define XK_kana_o 0x04ab /* U+30A9 KATAKANA LETTER SMALL O */
- #define XK_kana_ya 0x04ac /* U+30E3 KATAKANA LETTER SMALL YA */
- #define XK_kana_yu 0x04ad /* U+30E5 KATAKANA LETTER SMALL YU */
- #define XK_kana_yo 0x04ae /* U+30E7 KATAKANA LETTER SMALL YO */
- #define XK_kana_tsu 0x04af /* U+30C3 KATAKANA LETTER SMALL TU */
- #define XK_kana_tu 0x04af /* deprecated */
- #define XK_prolongedsound 0x04b0 /* U+30FC KATAKANA-HIRAGANA PROLONGED SOUND MARK */
- #define XK_kana_A 0x04b1 /* U+30A2 KATAKANA LETTER A */
- #define XK_kana_I 0x04b2 /* U+30A4 KATAKANA LETTER I */
- #define XK_kana_U 0x04b3 /* U+30A6 KATAKANA LETTER U */
- #define XK_kana_E 0x04b4 /* U+30A8 KATAKANA LETTER E */
- #define XK_kana_O 0x04b5 /* U+30AA KATAKANA LETTER O */
- #define XK_kana_KA 0x04b6 /* U+30AB KATAKANA LETTER KA */
- #define XK_kana_KI 0x04b7 /* U+30AD KATAKANA LETTER KI */
- #define XK_kana_KU 0x04b8 /* U+30AF KATAKANA LETTER KU */
- #define XK_kana_KE 0x04b9 /* U+30B1 KATAKANA LETTER KE */
- #define XK_kana_KO 0x04ba /* U+30B3 KATAKANA LETTER KO */
- #define XK_kana_SA 0x04bb /* U+30B5 KATAKANA LETTER SA */
- #define XK_kana_SHI 0x04bc /* U+30B7 KATAKANA LETTER SI */
- #define XK_kana_SU 0x04bd /* U+30B9 KATAKANA LETTER SU */
- #define XK_kana_SE 0x04be /* U+30BB KATAKANA LETTER SE */
- #define XK_kana_SO 0x04bf /* U+30BD KATAKANA LETTER SO */
- #define XK_kana_TA 0x04c0 /* U+30BF KATAKANA LETTER TA */
- #define XK_kana_CHI 0x04c1 /* U+30C1 KATAKANA LETTER TI */
- #define XK_kana_TI 0x04c1 /* deprecated */
- #define XK_kana_TSU 0x04c2 /* U+30C4 KATAKANA LETTER TU */
- #define XK_kana_TU 0x04c2 /* deprecated */
- #define XK_kana_TE 0x04c3 /* U+30C6 KATAKANA LETTER TE */
- #define XK_kana_TO 0x04c4 /* U+30C8 KATAKANA LETTER TO */
- #define XK_kana_NA 0x04c5 /* U+30CA KATAKANA LETTER NA */
- #define XK_kana_NI 0x04c6 /* U+30CB KATAKANA LETTER NI */
- #define XK_kana_NU 0x04c7 /* U+30CC KATAKANA LETTER NU */
- #define XK_kana_NE 0x04c8 /* U+30CD KATAKANA LETTER NE */
- #define XK_kana_NO 0x04c9 /* U+30CE KATAKANA LETTER NO */
- #define XK_kana_HA 0x04ca /* U+30CF KATAKANA LETTER HA */
- #define XK_kana_HI 0x04cb /* U+30D2 KATAKANA LETTER HI */
- #define XK_kana_FU 0x04cc /* U+30D5 KATAKANA LETTER HU */
- #define XK_kana_HU 0x04cc /* deprecated */
- #define XK_kana_HE 0x04cd /* U+30D8 KATAKANA LETTER HE */
- #define XK_kana_HO 0x04ce /* U+30DB KATAKANA LETTER HO */
- #define XK_kana_MA 0x04cf /* U+30DE KATAKANA LETTER MA */
- #define XK_kana_MI 0x04d0 /* U+30DF KATAKANA LETTER MI */
- #define XK_kana_MU 0x04d1 /* U+30E0 KATAKANA LETTER MU */
- #define XK_kana_ME 0x04d2 /* U+30E1 KATAKANA LETTER ME */
- #define XK_kana_MO 0x04d3 /* U+30E2 KATAKANA LETTER MO */
- #define XK_kana_YA 0x04d4 /* U+30E4 KATAKANA LETTER YA */
- #define XK_kana_YU 0x04d5 /* U+30E6 KATAKANA LETTER YU */
- #define XK_kana_YO 0x04d6 /* U+30E8 KATAKANA LETTER YO */
- #define XK_kana_RA 0x04d7 /* U+30E9 KATAKANA LETTER RA */
- #define XK_kana_RI 0x04d8 /* U+30EA KATAKANA LETTER RI */
- #define XK_kana_RU 0x04d9 /* U+30EB KATAKANA LETTER RU */
- #define XK_kana_RE 0x04da /* U+30EC KATAKANA LETTER RE */
- #define XK_kana_RO 0x04db /* U+30ED KATAKANA LETTER RO */
- #define XK_kana_WA 0x04dc /* U+30EF KATAKANA LETTER WA */
- #define XK_kana_N 0x04dd /* U+30F3 KATAKANA LETTER N */
- #define XK_voicedsound 0x04de /* U+309B KATAKANA-HIRAGANA VOICED SOUND MARK */
- #define XK_semivoicedsound 0x04df /* U+309C KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */
- #define XK_kana_switch 0xff7e /* Alias for mode_switch */
- #endif /* XK_KATAKANA */
- /*
- * Arabic
- * Byte 3 = 5
- */
- #ifdef XK_ARABIC
- #define XK_Farsi_0 0x10006f0 /* U+06F0 EXTENDED ARABIC-INDIC DIGIT ZERO */
- #define XK_Farsi_1 0x10006f1 /* U+06F1 EXTENDED ARABIC-INDIC DIGIT ONE */
- #define XK_Farsi_2 0x10006f2 /* U+06F2 EXTENDED ARABIC-INDIC DIGIT TWO */
- #define XK_Farsi_3 0x10006f3 /* U+06F3 EXTENDED ARABIC-INDIC DIGIT THREE */
- #define XK_Farsi_4 0x10006f4 /* U+06F4 EXTENDED ARABIC-INDIC DIGIT FOUR */
- #define XK_Farsi_5 0x10006f5 /* U+06F5 EXTENDED ARABIC-INDIC DIGIT FIVE */
- #define XK_Farsi_6 0x10006f6 /* U+06F6 EXTENDED ARABIC-INDIC DIGIT SIX */
- #define XK_Farsi_7 0x10006f7 /* U+06F7 EXTENDED ARABIC-INDIC DIGIT SEVEN */
- #define XK_Farsi_8 0x10006f8 /* U+06F8 EXTENDED ARABIC-INDIC DIGIT EIGHT */
- #define XK_Farsi_9 0x10006f9 /* U+06F9 EXTENDED ARABIC-INDIC DIGIT NINE */
- #define XK_Arabic_percent 0x100066a /* U+066A ARABIC PERCENT SIGN */
- #define XK_Arabic_superscript_alef 0x1000670 /* U+0670 ARABIC LETTER SUPERSCRIPT ALEF */
- #define XK_Arabic_tteh 0x1000679 /* U+0679 ARABIC LETTER TTEH */
- #define XK_Arabic_peh 0x100067e /* U+067E ARABIC LETTER PEH */
- #define XK_Arabic_tcheh 0x1000686 /* U+0686 ARABIC LETTER TCHEH */
- #define XK_Arabic_ddal 0x1000688 /* U+0688 ARABIC LETTER DDAL */
- #define XK_Arabic_rreh 0x1000691 /* U+0691 ARABIC LETTER RREH */
- #define XK_Arabic_comma 0x05ac /* U+060C ARABIC COMMA */
- #define XK_Arabic_fullstop 0x10006d4 /* U+06D4 ARABIC FULL STOP */
- #define XK_Arabic_0 0x1000660 /* U+0660 ARABIC-INDIC DIGIT ZERO */
- #define XK_Arabic_1 0x1000661 /* U+0661 ARABIC-INDIC DIGIT ONE */
- #define XK_Arabic_2 0x1000662 /* U+0662 ARABIC-INDIC DIGIT TWO */
- #define XK_Arabic_3 0x1000663 /* U+0663 ARABIC-INDIC DIGIT THREE */
- #define XK_Arabic_4 0x1000664 /* U+0664 ARABIC-INDIC DIGIT FOUR */
- #define XK_Arabic_5 0x1000665 /* U+0665 ARABIC-INDIC DIGIT FIVE */
- #define XK_Arabic_6 0x1000666 /* U+0666 ARABIC-INDIC DIGIT SIX */
- #define XK_Arabic_7 0x1000667 /* U+0667 ARABIC-INDIC DIGIT SEVEN */
- #define XK_Arabic_8 0x1000668 /* U+0668 ARABIC-INDIC DIGIT EIGHT */
- #define XK_Arabic_9 0x1000669 /* U+0669 ARABIC-INDIC DIGIT NINE */
- #define XK_Arabic_semicolon 0x05bb /* U+061B ARABIC SEMICOLON */
- #define XK_Arabic_question_mark 0x05bf /* U+061F ARABIC QUESTION MARK */
- #define XK_Arabic_hamza 0x05c1 /* U+0621 ARABIC LETTER HAMZA */
- #define XK_Arabic_maddaonalef 0x05c2 /* U+0622 ARABIC LETTER ALEF WITH MADDA ABOVE */
- #define XK_Arabic_hamzaonalef 0x05c3 /* U+0623 ARABIC LETTER ALEF WITH HAMZA ABOVE */
- #define XK_Arabic_hamzaonwaw 0x05c4 /* U+0624 ARABIC LETTER WAW WITH HAMZA ABOVE */
- #define XK_Arabic_hamzaunderalef 0x05c5 /* U+0625 ARABIC LETTER ALEF WITH HAMZA BELOW */
- #define XK_Arabic_hamzaonyeh 0x05c6 /* U+0626 ARABIC LETTER YEH WITH HAMZA ABOVE */
- #define XK_Arabic_alef 0x05c7 /* U+0627 ARABIC LETTER ALEF */
- #define XK_Arabic_beh 0x05c8 /* U+0628 ARABIC LETTER BEH */
- #define XK_Arabic_tehmarbuta 0x05c9 /* U+0629 ARABIC LETTER TEH MARBUTA */
- #define XK_Arabic_teh 0x05ca /* U+062A ARABIC LETTER TEH */
- #define XK_Arabic_theh 0x05cb /* U+062B ARABIC LETTER THEH */
- #define XK_Arabic_jeem 0x05cc /* U+062C ARABIC LETTER JEEM */
- #define XK_Arabic_hah 0x05cd /* U+062D ARABIC LETTER HAH */
- #define XK_Arabic_khah 0x05ce /* U+062E ARABIC LETTER KHAH */
- #define XK_Arabic_dal 0x05cf /* U+062F ARABIC LETTER DAL */
- #define XK_Arabic_thal 0x05d0 /* U+0630 ARABIC LETTER THAL */
- #define XK_Arabic_ra 0x05d1 /* U+0631 ARABIC LETTER REH */
- #define XK_Arabic_zain 0x05d2 /* U+0632 ARABIC LETTER ZAIN */
- #define XK_Arabic_seen 0x05d3 /* U+0633 ARABIC LETTER SEEN */
- #define XK_Arabic_sheen 0x05d4 /* U+0634 ARABIC LETTER SHEEN */
- #define XK_Arabic_sad 0x05d5 /* U+0635 ARABIC LETTER SAD */
- #define XK_Arabic_dad 0x05d6 /* U+0636 ARABIC LETTER DAD */
- #define XK_Arabic_tah 0x05d7 /* U+0637 ARABIC LETTER TAH */
- #define XK_Arabic_zah 0x05d8 /* U+0638 ARABIC LETTER ZAH */
- #define XK_Arabic_ain 0x05d9 /* U+0639 ARABIC LETTER AIN */
- #define XK_Arabic_ghain 0x05da /* U+063A ARABIC LETTER GHAIN */
- #define XK_Arabic_tatweel 0x05e0 /* U+0640 ARABIC TATWEEL */
- #define XK_Arabic_feh 0x05e1 /* U+0641 ARABIC LETTER FEH */
- #define XK_Arabic_qaf 0x05e2 /* U+0642 ARABIC LETTER QAF */
- #define XK_Arabic_kaf 0x05e3 /* U+0643 ARABIC LETTER KAF */
- #define XK_Arabic_lam 0x05e4 /* U+0644 ARABIC LETTER LAM */
- #define XK_Arabic_meem 0x05e5 /* U+0645 ARABIC LETTER MEEM */
- #define XK_Arabic_noon 0x05e6 /* U+0646 ARABIC LETTER NOON */
- #define XK_Arabic_ha 0x05e7 /* U+0647 ARABIC LETTER HEH */
- #define XK_Arabic_heh 0x05e7 /* deprecated */
- #define XK_Arabic_waw 0x05e8 /* U+0648 ARABIC LETTER WAW */
- #define XK_Arabic_alefmaksura 0x05e9 /* U+0649 ARABIC LETTER ALEF MAKSURA */
- #define XK_Arabic_yeh 0x05ea /* U+064A ARABIC LETTER YEH */
- #define XK_Arabic_fathatan 0x05eb /* U+064B ARABIC FATHATAN */
- #define XK_Arabic_dammatan 0x05ec /* U+064C ARABIC DAMMATAN */
- #define XK_Arabic_kasratan 0x05ed /* U+064D ARABIC KASRATAN */
- #define XK_Arabic_fatha 0x05ee /* U+064E ARABIC FATHA */
- #define XK_Arabic_damma 0x05ef /* U+064F ARABIC DAMMA */
- #define XK_Arabic_kasra 0x05f0 /* U+0650 ARABIC KASRA */
- #define XK_Arabic_shadda 0x05f1 /* U+0651 ARABIC SHADDA */
- #define XK_Arabic_sukun 0x05f2 /* U+0652 ARABIC SUKUN */
- #define XK_Arabic_madda_above 0x1000653 /* U+0653 ARABIC MADDAH ABOVE */
- #define XK_Arabic_hamza_above 0x1000654 /* U+0654 ARABIC HAMZA ABOVE */
- #define XK_Arabic_hamza_below 0x1000655 /* U+0655 ARABIC HAMZA BELOW */
- #define XK_Arabic_jeh 0x1000698 /* U+0698 ARABIC LETTER JEH */
- #define XK_Arabic_veh 0x10006a4 /* U+06A4 ARABIC LETTER VEH */
- #define XK_Arabic_keheh 0x10006a9 /* U+06A9 ARABIC LETTER KEHEH */
- #define XK_Arabic_gaf 0x10006af /* U+06AF ARABIC LETTER GAF */
- #define XK_Arabic_noon_ghunna 0x10006ba /* U+06BA ARABIC LETTER NOON GHUNNA */
- #define XK_Arabic_heh_doachashmee 0x10006be /* U+06BE ARABIC LETTER HEH DOACHASHMEE */
- #define XK_Farsi_yeh 0x10006cc /* U+06CC ARABIC LETTER FARSI YEH */
- #define XK_Arabic_farsi_yeh 0x10006cc /* U+06CC ARABIC LETTER FARSI YEH */
- #define XK_Arabic_yeh_baree 0x10006d2 /* U+06D2 ARABIC LETTER YEH BARREE */
- #define XK_Arabic_heh_goal 0x10006c1 /* U+06C1 ARABIC LETTER HEH GOAL */
- #define XK_Arabic_switch 0xff7e /* Alias for mode_switch */
- #endif /* XK_ARABIC */
- /*
- * Cyrillic
- * Byte 3 = 6
- */
- #ifdef XK_CYRILLIC
- #define XK_Cyrillic_GHE_bar 0x1000492 /* U+0492 CYRILLIC CAPITAL LETTER GHE WITH STROKE */
- #define XK_Cyrillic_ghe_bar 0x1000493 /* U+0493 CYRILLIC SMALL LETTER GHE WITH STROKE */
- #define XK_Cyrillic_ZHE_descender 0x1000496 /* U+0496 CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER */
- #define XK_Cyrillic_zhe_descender 0x1000497 /* U+0497 CYRILLIC SMALL LETTER ZHE WITH DESCENDER */
- #define XK_Cyrillic_KA_descender 0x100049a /* U+049A CYRILLIC CAPITAL LETTER KA WITH DESCENDER */
- #define XK_Cyrillic_ka_descender 0x100049b /* U+049B CYRILLIC SMALL LETTER KA WITH DESCENDER */
- #define XK_Cyrillic_KA_vertstroke 0x100049c /* U+049C CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE */
- #define XK_Cyrillic_ka_vertstroke 0x100049d /* U+049D CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE */
- #define XK_Cyrillic_EN_descender 0x10004a2 /* U+04A2 CYRILLIC CAPITAL LETTER EN WITH DESCENDER */
- #define XK_Cyrillic_en_descender 0x10004a3 /* U+04A3 CYRILLIC SMALL LETTER EN WITH DESCENDER */
- #define XK_Cyrillic_U_straight 0x10004ae /* U+04AE CYRILLIC CAPITAL LETTER STRAIGHT U */
- #define XK_Cyrillic_u_straight 0x10004af /* U+04AF CYRILLIC SMALL LETTER STRAIGHT U */
- #define XK_Cyrillic_U_straight_bar 0x10004b0 /* U+04B0 CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE */
- #define XK_Cyrillic_u_straight_bar 0x10004b1 /* U+04B1 CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE */
- #define XK_Cyrillic_HA_descender 0x10004b2 /* U+04B2 CYRILLIC CAPITAL LETTER HA WITH DESCENDER */
- #define XK_Cyrillic_ha_descender 0x10004b3 /* U+04B3 CYRILLIC SMALL LETTER HA WITH DESCENDER */
- #define XK_Cyrillic_CHE_descender 0x10004b6 /* U+04B6 CYRILLIC CAPITAL LETTER CHE WITH DESCENDER */
- #define XK_Cyrillic_che_descender 0x10004b7 /* U+04B7 CYRILLIC SMALL LETTER CHE WITH DESCENDER */
- #define XK_Cyrillic_CHE_vertstroke 0x10004b8 /* U+04B8 CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE */
- #define XK_Cyrillic_che_vertstroke 0x10004b9 /* U+04B9 CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE */
- #define XK_Cyrillic_SHHA 0x10004ba /* U+04BA CYRILLIC CAPITAL LETTER SHHA */
- #define XK_Cyrillic_shha 0x10004bb /* U+04BB CYRILLIC SMALL LETTER SHHA */
- #define XK_Cyrillic_SCHWA 0x10004d8 /* U+04D8 CYRILLIC CAPITAL LETTER SCHWA */
- #define XK_Cyrillic_schwa 0x10004d9 /* U+04D9 CYRILLIC SMALL LETTER SCHWA */
- #define XK_Cyrillic_I_macron 0x10004e2 /* U+04E2 CYRILLIC CAPITAL LETTER I WITH MACRON */
- #define XK_Cyrillic_i_macron 0x10004e3 /* U+04E3 CYRILLIC SMALL LETTER I WITH MACRON */
- #define XK_Cyrillic_O_bar 0x10004e8 /* U+04E8 CYRILLIC CAPITAL LETTER BARRED O */
- #define XK_Cyrillic_o_bar 0x10004e9 /* U+04E9 CYRILLIC SMALL LETTER BARRED O */
- #define XK_Cyrillic_U_macron 0x10004ee /* U+04EE CYRILLIC CAPITAL LETTER U WITH MACRON */
- #define XK_Cyrillic_u_macron 0x10004ef /* U+04EF CYRILLIC SMALL LETTER U WITH MACRON */
- #define XK_Serbian_dje 0x06a1 /* U+0452 CYRILLIC SMALL LETTER DJE */
- #define XK_Macedonia_gje 0x06a2 /* U+0453 CYRILLIC SMALL LETTER GJE */
- #define XK_Cyrillic_io 0x06a3 /* U+0451 CYRILLIC SMALL LETTER IO */
- #define XK_Ukrainian_ie 0x06a4 /* U+0454 CYRILLIC SMALL LETTER UKRAINIAN IE */
- #define XK_Ukranian_je 0x06a4 /* deprecated */
- #define XK_Macedonia_dse 0x06a5 /* U+0455 CYRILLIC SMALL LETTER DZE */
- #define XK_Ukrainian_i 0x06a6 /* U+0456 CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */
- #define XK_Ukranian_i 0x06a6 /* deprecated */
- #define XK_Ukrainian_yi 0x06a7 /* U+0457 CYRILLIC SMALL LETTER YI */
- #define XK_Ukranian_yi 0x06a7 /* deprecated */
- #define XK_Cyrillic_je 0x06a8 /* U+0458 CYRILLIC SMALL LETTER JE */
- #define XK_Serbian_je 0x06a8 /* deprecated */
- #define XK_Cyrillic_lje 0x06a9 /* U+0459 CYRILLIC SMALL LETTER LJE */
- #define XK_Serbian_lje 0x06a9 /* deprecated */
- #define XK_Cyrillic_nje 0x06aa /* U+045A CYRILLIC SMALL LETTER NJE */
- #define XK_Serbian_nje 0x06aa /* deprecated */
- #define XK_Serbian_tshe 0x06ab /* U+045B CYRILLIC SMALL LETTER TSHE */
- #define XK_Macedonia_kje 0x06ac /* U+045C CYRILLIC SMALL LETTER KJE */
- #define XK_Ukrainian_ghe_with_upturn 0x06ad /* U+0491 CYRILLIC SMALL LETTER GHE WITH UPTURN */
- #define XK_Byelorussian_shortu 0x06ae /* U+045E CYRILLIC SMALL LETTER SHORT U */
- #define XK_Cyrillic_dzhe 0x06af /* U+045F CYRILLIC SMALL LETTER DZHE */
- #define XK_Serbian_dze 0x06af /* deprecated */
- #define XK_numerosign 0x06b0 /* U+2116 NUMERO SIGN */
- #define XK_Serbian_DJE 0x06b1 /* U+0402 CYRILLIC CAPITAL LETTER DJE */
- #define XK_Macedonia_GJE 0x06b2 /* U+0403 CYRILLIC CAPITAL LETTER GJE */
- #define XK_Cyrillic_IO 0x06b3 /* U+0401 CYRILLIC CAPITAL LETTER IO */
- #define XK_Ukrainian_IE 0x06b4 /* U+0404 CYRILLIC CAPITAL LETTER UKRAINIAN IE */
- #define XK_Ukranian_JE 0x06b4 /* deprecated */
- #define XK_Macedonia_DSE 0x06b5 /* U+0405 CYRILLIC CAPITAL LETTER DZE */
- #define XK_Ukrainian_I 0x06b6 /* U+0406 CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */
- #define XK_Ukranian_I 0x06b6 /* deprecated */
- #define XK_Ukrainian_YI 0x06b7 /* U+0407 CYRILLIC CAPITAL LETTER YI */
- #define XK_Ukranian_YI 0x06b7 /* deprecated */
- #define XK_Cyrillic_JE 0x06b8 /* U+0408 CYRILLIC CAPITAL LETTER JE */
- #define XK_Serbian_JE 0x06b8 /* deprecated */
- #define XK_Cyrillic_LJE 0x06b9 /* U+0409 CYRILLIC CAPITAL LETTER LJE */
- #define XK_Serbian_LJE 0x06b9 /* deprecated */
- #define XK_Cyrillic_NJE 0x06ba /* U+040A CYRILLIC CAPITAL LETTER NJE */
- #define XK_Serbian_NJE 0x06ba /* deprecated */
- #define XK_Serbian_TSHE 0x06bb /* U+040B CYRILLIC CAPITAL LETTER TSHE */
- #define XK_Macedonia_KJE 0x06bc /* U+040C CYRILLIC CAPITAL LETTER KJE */
- #define XK_Ukrainian_GHE_WITH_UPTURN 0x06bd /* U+0490 CYRILLIC CAPITAL LETTER GHE WITH UPTURN */
- #define XK_Byelorussian_SHORTU 0x06be /* U+040E CYRILLIC CAPITAL LETTER SHORT U */
- #define XK_Cyrillic_DZHE 0x06bf /* U+040F CYRILLIC CAPITAL LETTER DZHE */
- #define XK_Serbian_DZE 0x06bf /* deprecated */
- #define XK_Cyrillic_yu 0x06c0 /* U+044E CYRILLIC SMALL LETTER YU */
- #define XK_Cyrillic_a 0x06c1 /* U+0430 CYRILLIC SMALL LETTER A */
- #define XK_Cyrillic_be 0x06c2 /* U+0431 CYRILLIC SMALL LETTER BE */
- #define XK_Cyrillic_tse 0x06c3 /* U+0446 CYRILLIC SMALL LETTER TSE */
- #define XK_Cyrillic_de 0x06c4 /* U+0434 CYRILLIC SMALL LETTER DE */
- #define XK_Cyrillic_ie 0x06c5 /* U+0435 CYRILLIC SMALL LETTER IE */
- #define XK_Cyrillic_ef 0x06c6 /* U+0444 CYRILLIC SMALL LETTER EF */
- #define XK_Cyrillic_ghe 0x06c7 /* U+0433 CYRILLIC SMALL LETTER GHE */
- #define XK_Cyrillic_ha 0x06c8 /* U+0445 CYRILLIC SMALL LETTER HA */
- #define XK_Cyrillic_i 0x06c9 /* U+0438 CYRILLIC SMALL LETTER I */
- #define XK_Cyrillic_shorti 0x06ca /* U+0439 CYRILLIC SMALL LETTER SHORT I */
- #define XK_Cyrillic_ka 0x06cb /* U+043A CYRILLIC SMALL LETTER KA */
- #define XK_Cyrillic_el 0x06cc /* U+043B CYRILLIC SMALL LETTER EL */
- #define XK_Cyrillic_em 0x06cd /* U+043C CYRILLIC SMALL LETTER EM */
- #define XK_Cyrillic_en 0x06ce /* U+043D CYRILLIC SMALL LETTER EN */
- #define XK_Cyrillic_o 0x06cf /* U+043E CYRILLIC SMALL LETTER O */
- #define XK_Cyrillic_pe 0x06d0 /* U+043F CYRILLIC SMALL LETTER PE */
- #define XK_Cyrillic_ya 0x06d1 /* U+044F CYRILLIC SMALL LETTER YA */
- #define XK_Cyrillic_er 0x06d2 /* U+0440 CYRILLIC SMALL LETTER ER */
- #define XK_Cyrillic_es 0x06d3 /* U+0441 CYRILLIC SMALL LETTER ES */
- #define XK_Cyrillic_te 0x06d4 /* U+0442 CYRILLIC SMALL LETTER TE */
- #define XK_Cyrillic_u 0x06d5 /* U+0443 CYRILLIC SMALL LETTER U */
- #define XK_Cyrillic_zhe 0x06d6 /* U+0436 CYRILLIC SMALL LETTER ZHE */
- #define XK_Cyrillic_ve 0x06d7 /* U+0432 CYRILLIC SMALL LETTER VE */
- #define XK_Cyrillic_softsign 0x06d8 /* U+044C CYRILLIC SMALL LETTER SOFT SIGN */
- #define XK_Cyrillic_yeru 0x06d9 /* U+044B CYRILLIC SMALL LETTER YERU */
- #define XK_Cyrillic_ze 0x06da /* U+0437 CYRILLIC SMALL LETTER ZE */
- #define XK_Cyrillic_sha 0x06db /* U+0448 CYRILLIC SMALL LETTER SHA */
- #define XK_Cyrillic_e 0x06dc /* U+044D CYRILLIC SMALL LETTER E */
- #define XK_Cyrillic_shcha 0x06dd /* U+0449 CYRILLIC SMALL LETTER SHCHA */
- #define XK_Cyrillic_che 0x06de /* U+0447 CYRILLIC SMALL LETTER CHE */
- #define XK_Cyrillic_hardsign 0x06df /* U+044A CYRILLIC SMALL LETTER HARD SIGN */
- #define XK_Cyrillic_YU 0x06e0 /* U+042E CYRILLIC CAPITAL LETTER YU */
- #define XK_Cyrillic_A 0x06e1 /* U+0410 CYRILLIC CAPITAL LETTER A */
- #define XK_Cyrillic_BE 0x06e2 /* U+0411 CYRILLIC CAPITAL LETTER BE */