5ea830da3b5e7c64e25f725f677126309c845bd9
[platform/upstream/libxkbcommon.git] / include / xkbcommon / xkbcommon-keysyms.h
1 #ifndef _XKBCOMMON_KEYSYMS_H
2 #define _XKBCOMMON_KEYSYMS_H
3
4 /* This file is autogenerated; please do not commit directly. */
5
6 /**
7  * @file
8  * Key symbols (keysyms) definitions.
9  */
10
11 #define XKB_KEY_NoSymbol                    0x000000  /* Special KeySym */
12
13 /***********************************************************
14 Copyright 1987, 1994, 1998  The Open Group
15
16 Permission to use, copy, modify, distribute, and sell this software and its
17 documentation for any purpose is hereby granted without fee, provided that
18 the above copyright notice appear in all copies and that both that
19 copyright notice and this permission notice appear in supporting
20 documentation.
21
22 The above copyright notice and this permission notice shall be included
23 in all copies or substantial portions of the Software.
24
25 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
28 IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
29 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
31 OTHER DEALINGS IN THE SOFTWARE.
32
33 Except as contained in this notice, the name of The Open Group shall
34 not be used in advertising or otherwise to promote the sale, use or
35 other dealings in this Software without prior written authorization
36 from The Open Group.
37
38
39 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts
40
41                         All Rights Reserved
42
43 Permission to use, copy, modify, and distribute this software and its
44 documentation for any purpose and without fee is hereby granted,
45 provided that the above copyright notice appear in all copies and that
46 both that copyright notice and this permission notice appear in
47 supporting documentation, and that the name of Digital not be
48 used in advertising or publicity pertaining to distribution of the
49 software without specific, written prior permission.
50
51 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
52 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
53 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
54 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
55 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
56 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
57 SOFTWARE.
58
59 ******************************************************************/
60
61 /*
62  * The "X11 Window System Protocol" standard defines in Appendix A the
63  * keysym codes. These 29-bit integer values identify characters or
64  * functions associated with each key (e.g., via the visible
65  * engraving) of a keyboard layout. This file assigns mnemonic macro
66  * names for these keysyms.
67  *
68  * This file is also compiled (by src/util/makekeys.c in libX11) into
69  * hash tables that can be accessed with X11 library functions such as
70  * XStringToKeysym() and XKeysymToString().
71  *
72  * Where a keysym corresponds one-to-one to an ISO 10646 / Unicode
73  * character, this is noted in a comment that provides both the U+xxxx
74  * Unicode position, as well as the official Unicode name of the
75  * character.
76  *
77  * Where the correspondence is either not one-to-one or semantically
78  * unclear, the Unicode position and name are enclosed in
79  * parentheses. Such legacy keysyms should be considered deprecated
80  * and are not recommended for use in future keyboard mappings.
81  *
82  * For any future extension of the keysyms with characters already
83  * found in ISO 10646 / Unicode, the following algorithm shall be
84  * used. The new keysym code position will simply be the character's
85  * Unicode number plus 0x01000000. The keysym values in the range
86  * 0x01000100 to 0x0110ffff are reserved to represent Unicode
87  * characters in the range U+0100 to U+10FFFF.
88  *
89  * While most newer Unicode-based X11 clients do already accept
90  * Unicode-mapped keysyms in the range 0x01000100 to 0x0110ffff, it
91  * will remain necessary for clients -- in the interest of
92  * compatibility with existing servers -- to also understand the
93  * existing legacy keysym values in the range 0x0100 to 0x20ff.
94  *
95  * Where several mnemonic names are defined for the same keysym in this
96  * file, all but the first one listed should be considered deprecated.
97  *
98  * Mnemonic names for keysyms are defined in this file with lines
99  * that match one of these Perl regular expressions:
100  *
101  *    /^\#define XKB_KEY_([a-zA-Z_0-9]+)\s+0x([0-9a-f]+)\s*\/\* U\+([0-9A-F]{4,6}) (.*) \*\/\s*$/
102  *    /^\#define XKB_KEY_([a-zA-Z_0-9]+)\s+0x([0-9a-f]+)\s*\/\*\(U\+([0-9A-F]{4,6}) (.*)\)\*\/\s*$/
103  *    /^\#define XKB_KEY_([a-zA-Z_0-9]+)\s+0x([0-9a-f]+)\s*(\/\*\s*(.*)\s*\*\/)?\s*$/
104  *
105  * Before adding new keysyms, please do consider the following: In
106  * addition to the keysym names defined in this file, the
107  * XStringToKeysym() and XKeysymToString() functions will also handle
108  * any keysym string of the form "U0020" to "U007E" and "U00A0" to
109  * "U10FFFF" for all possible Unicode characters. In other words,
110  * every possible Unicode character has already a keysym string
111  * defined algorithmically, even if it is not listed here. Therefore,
112  * defining an additional keysym macro is only necessary where a
113  * non-hexadecimal mnemonic name is needed, or where the new keysym
114  * does not represent any existing Unicode character.
115  *
116  * When adding new keysyms to this file, do not forget to also update the
117  * following as needed:
118  *
119  *   - the mappings in src/KeyBind.c in the libX11 repo
120  *     https://gitlab.freedesktop.org/xorg/lib/libx11
121  *
122  *   - the protocol specification in specs/keysyms.xml in this repo
123  *     https://gitlab.freedesktop.org/xorg/proto/xorgproto
124  *
125  */
126
127 #define XKB_KEY_VoidSymbol                  0xffffff  /* Void symbol */
128
129 /*
130  * TTY function keys, cleverly chosen to map to ASCII, for convenience of
131  * programming, but could have been arbitrary (at the cost of lookup
132  * tables in client code).
133  */
134
135 #define XKB_KEY_BackSpace                     0xff08  /* Back space, back char */
136 #define XKB_KEY_Tab                           0xff09
137 #define XKB_KEY_Linefeed                      0xff0a  /* Linefeed, LF */
138 #define XKB_KEY_Clear                         0xff0b
139 #define XKB_KEY_Return                        0xff0d  /* Return, enter */
140 #define XKB_KEY_Pause                         0xff13  /* Pause, hold */
141 #define XKB_KEY_Scroll_Lock                   0xff14
142 #define XKB_KEY_Sys_Req                       0xff15
143 #define XKB_KEY_Escape                        0xff1b
144 #define XKB_KEY_Delete                        0xffff  /* Delete, rubout */
145
146
147
148 /* International & multi-key character composition */
149
150 #define XKB_KEY_Multi_key                     0xff20  /* Multi-key character compose */
151 #define XKB_KEY_Codeinput                     0xff37
152 #define XKB_KEY_SingleCandidate               0xff3c
153 #define XKB_KEY_MultipleCandidate             0xff3d
154 #define XKB_KEY_PreviousCandidate             0xff3e
155
156 /* Japanese keyboard support */
157
158 #define XKB_KEY_Kanji                         0xff21  /* Kanji, Kanji convert */
159 #define XKB_KEY_Muhenkan                      0xff22  /* Cancel Conversion */
160 #define XKB_KEY_Henkan_Mode                   0xff23  /* Start/Stop Conversion */
161 #define XKB_KEY_Henkan                        0xff23  /* Alias for Henkan_Mode */
162 #define XKB_KEY_Romaji                        0xff24  /* to Romaji */
163 #define XKB_KEY_Hiragana                      0xff25  /* to Hiragana */
164 #define XKB_KEY_Katakana                      0xff26  /* to Katakana */
165 #define XKB_KEY_Hiragana_Katakana             0xff27  /* Hiragana/Katakana toggle */
166 #define XKB_KEY_Zenkaku                       0xff28  /* to Zenkaku */
167 #define XKB_KEY_Hankaku                       0xff29  /* to Hankaku */
168 #define XKB_KEY_Zenkaku_Hankaku               0xff2a  /* Zenkaku/Hankaku toggle */
169 #define XKB_KEY_Touroku                       0xff2b  /* Add to Dictionary */
170 #define XKB_KEY_Massyo                        0xff2c  /* Delete from Dictionary */
171 #define XKB_KEY_Kana_Lock                     0xff2d  /* Kana Lock */
172 #define XKB_KEY_Kana_Shift                    0xff2e  /* Kana Shift */
173 #define XKB_KEY_Eisu_Shift                    0xff2f  /* Alphanumeric Shift */
174 #define XKB_KEY_Eisu_toggle                   0xff30  /* Alphanumeric toggle */
175 #define XKB_KEY_Kanji_Bangou                  0xff37  /* Codeinput */
176 #define XKB_KEY_Zen_Koho                      0xff3d  /* Multiple/All Candidate(s) */
177 #define XKB_KEY_Mae_Koho                      0xff3e  /* Previous Candidate */
178
179 /* 0xff31 thru 0xff3f are under XK_KOREAN */
180
181 /* Cursor control & motion */
182
183 #define XKB_KEY_Home                          0xff50
184 #define XKB_KEY_Left                          0xff51  /* Move left, left arrow */
185 #define XKB_KEY_Up                            0xff52  /* Move up, up arrow */
186 #define XKB_KEY_Right                         0xff53  /* Move right, right arrow */
187 #define XKB_KEY_Down                          0xff54  /* Move down, down arrow */
188 #define XKB_KEY_Prior                         0xff55  /* Prior, previous */
189 #define XKB_KEY_Page_Up                       0xff55
190 #define XKB_KEY_Next                          0xff56  /* Next */
191 #define XKB_KEY_Page_Down                     0xff56
192 #define XKB_KEY_End                           0xff57  /* EOL */
193 #define XKB_KEY_Begin                         0xff58  /* BOL */
194
195
196 /* Misc functions */
197
198 #define XKB_KEY_Select                        0xff60  /* Select, mark */
199 #define XKB_KEY_Print                         0xff61
200 #define XKB_KEY_Execute                       0xff62  /* Execute, run, do */
201 #define XKB_KEY_Insert                        0xff63  /* Insert, insert here */
202 #define XKB_KEY_Undo                          0xff65
203 #define XKB_KEY_Redo                          0xff66  /* Redo, again */
204 #define XKB_KEY_Menu                          0xff67
205 #define XKB_KEY_Find                          0xff68  /* Find, search */
206 #define XKB_KEY_Cancel                        0xff69  /* Cancel, stop, abort, exit */
207 #define XKB_KEY_Help                          0xff6a  /* Help */
208 #define XKB_KEY_Break                         0xff6b
209 #define XKB_KEY_Mode_switch                   0xff7e  /* Character set switch */
210 #define XKB_KEY_script_switch                 0xff7e  /* Alias for mode_switch */
211 #define XKB_KEY_Num_Lock                      0xff7f
212
213 /* Keypad functions, keypad numbers cleverly chosen to map to ASCII */
214
215 #define XKB_KEY_KP_Space                      0xff80  /* Space */
216 #define XKB_KEY_KP_Tab                        0xff89
217 #define XKB_KEY_KP_Enter                      0xff8d  /* Enter */
218 #define XKB_KEY_KP_F1                         0xff91  /* PF1, KP_A, ... */
219 #define XKB_KEY_KP_F2                         0xff92
220 #define XKB_KEY_KP_F3                         0xff93
221 #define XKB_KEY_KP_F4                         0xff94
222 #define XKB_KEY_KP_Home                       0xff95
223 #define XKB_KEY_KP_Left                       0xff96
224 #define XKB_KEY_KP_Up                         0xff97
225 #define XKB_KEY_KP_Right                      0xff98
226 #define XKB_KEY_KP_Down                       0xff99
227 #define XKB_KEY_KP_Prior                      0xff9a
228 #define XKB_KEY_KP_Page_Up                    0xff9a
229 #define XKB_KEY_KP_Next                       0xff9b
230 #define XKB_KEY_KP_Page_Down                  0xff9b
231 #define XKB_KEY_KP_End                        0xff9c
232 #define XKB_KEY_KP_Begin                      0xff9d
233 #define XKB_KEY_KP_Insert                     0xff9e
234 #define XKB_KEY_KP_Delete                     0xff9f
235 #define XKB_KEY_KP_Equal                      0xffbd  /* Equals */
236 #define XKB_KEY_KP_Multiply                   0xffaa
237 #define XKB_KEY_KP_Add                        0xffab
238 #define XKB_KEY_KP_Separator                  0xffac  /* Separator, often comma */
239 #define XKB_KEY_KP_Subtract                   0xffad
240 #define XKB_KEY_KP_Decimal                    0xffae
241 #define XKB_KEY_KP_Divide                     0xffaf
242
243 #define XKB_KEY_KP_0                          0xffb0
244 #define XKB_KEY_KP_1                          0xffb1
245 #define XKB_KEY_KP_2                          0xffb2
246 #define XKB_KEY_KP_3                          0xffb3
247 #define XKB_KEY_KP_4                          0xffb4
248 #define XKB_KEY_KP_5                          0xffb5
249 #define XKB_KEY_KP_6                          0xffb6
250 #define XKB_KEY_KP_7                          0xffb7
251 #define XKB_KEY_KP_8                          0xffb8
252 #define XKB_KEY_KP_9                          0xffb9
253
254
255
256 /*
257  * Auxiliary functions; note the duplicate definitions for left and right
258  * function keys;  Sun keyboards and a few other manufacturers have such
259  * function key groups on the left and/or right sides of the keyboard.
260  * We've not found a keyboard with more than 35 function keys total.
261  */
262
263 #define XKB_KEY_F1                            0xffbe
264 #define XKB_KEY_F2                            0xffbf
265 #define XKB_KEY_F3                            0xffc0
266 #define XKB_KEY_F4                            0xffc1
267 #define XKB_KEY_F5                            0xffc2
268 #define XKB_KEY_F6                            0xffc3
269 #define XKB_KEY_F7                            0xffc4
270 #define XKB_KEY_F8                            0xffc5
271 #define XKB_KEY_F9                            0xffc6
272 #define XKB_KEY_F10                           0xffc7
273 #define XKB_KEY_F11                           0xffc8
274 #define XKB_KEY_L1                            0xffc8
275 #define XKB_KEY_F12                           0xffc9
276 #define XKB_KEY_L2                            0xffc9
277 #define XKB_KEY_F13                           0xffca
278 #define XKB_KEY_L3                            0xffca
279 #define XKB_KEY_F14                           0xffcb
280 #define XKB_KEY_L4                            0xffcb
281 #define XKB_KEY_F15                           0xffcc
282 #define XKB_KEY_L5                            0xffcc
283 #define XKB_KEY_F16                           0xffcd
284 #define XKB_KEY_L6                            0xffcd
285 #define XKB_KEY_F17                           0xffce
286 #define XKB_KEY_L7                            0xffce
287 #define XKB_KEY_F18                           0xffcf
288 #define XKB_KEY_L8                            0xffcf
289 #define XKB_KEY_F19                           0xffd0
290 #define XKB_KEY_L9                            0xffd0
291 #define XKB_KEY_F20                           0xffd1
292 #define XKB_KEY_L10                           0xffd1
293 #define XKB_KEY_F21                           0xffd2
294 #define XKB_KEY_R1                            0xffd2
295 #define XKB_KEY_F22                           0xffd3
296 #define XKB_KEY_R2                            0xffd3
297 #define XKB_KEY_F23                           0xffd4
298 #define XKB_KEY_R3                            0xffd4
299 #define XKB_KEY_F24                           0xffd5
300 #define XKB_KEY_R4                            0xffd5
301 #define XKB_KEY_F25                           0xffd6
302 #define XKB_KEY_R5                            0xffd6
303 #define XKB_KEY_F26                           0xffd7
304 #define XKB_KEY_R6                            0xffd7
305 #define XKB_KEY_F27                           0xffd8
306 #define XKB_KEY_R7                            0xffd8
307 #define XKB_KEY_F28                           0xffd9
308 #define XKB_KEY_R8                            0xffd9
309 #define XKB_KEY_F29                           0xffda
310 #define XKB_KEY_R9                            0xffda
311 #define XKB_KEY_F30                           0xffdb
312 #define XKB_KEY_R10                           0xffdb
313 #define XKB_KEY_F31                           0xffdc
314 #define XKB_KEY_R11                           0xffdc
315 #define XKB_KEY_F32                           0xffdd
316 #define XKB_KEY_R12                           0xffdd
317 #define XKB_KEY_F33                           0xffde
318 #define XKB_KEY_R13                           0xffde
319 #define XKB_KEY_F34                           0xffdf
320 #define XKB_KEY_R14                           0xffdf
321 #define XKB_KEY_F35                           0xffe0
322 #define XKB_KEY_R15                           0xffe0
323
324 /* Modifiers */
325
326 #define XKB_KEY_Shift_L                       0xffe1  /* Left shift */
327 #define XKB_KEY_Shift_R                       0xffe2  /* Right shift */
328 #define XKB_KEY_Control_L                     0xffe3  /* Left control */
329 #define XKB_KEY_Control_R                     0xffe4  /* Right control */
330 #define XKB_KEY_Caps_Lock                     0xffe5  /* Caps lock */
331 #define XKB_KEY_Shift_Lock                    0xffe6  /* Shift lock */
332
333 #define XKB_KEY_Meta_L                        0xffe7  /* Left meta */
334 #define XKB_KEY_Meta_R                        0xffe8  /* Right meta */
335 #define XKB_KEY_Alt_L                         0xffe9  /* Left alt */
336 #define XKB_KEY_Alt_R                         0xffea  /* Right alt */
337 #define XKB_KEY_Super_L                       0xffeb  /* Left super */
338 #define XKB_KEY_Super_R                       0xffec  /* Right super */
339 #define XKB_KEY_Hyper_L                       0xffed  /* Left hyper */
340 #define XKB_KEY_Hyper_R                       0xffee  /* Right hyper */
341
342 /*
343  * Keyboard (XKB) Extension function and modifier keys
344  * (from Appendix C of "The X Keyboard Extension: Protocol Specification")
345  * Byte 3 = 0xfe
346  */
347
348 #define XKB_KEY_ISO_Lock                      0xfe01
349 #define XKB_KEY_ISO_Level2_Latch              0xfe02
350 #define XKB_KEY_ISO_Level3_Shift              0xfe03
351 #define XKB_KEY_ISO_Level3_Latch              0xfe04
352 #define XKB_KEY_ISO_Level3_Lock               0xfe05
353 #define XKB_KEY_ISO_Level5_Shift              0xfe11
354 #define XKB_KEY_ISO_Level5_Latch              0xfe12
355 #define XKB_KEY_ISO_Level5_Lock               0xfe13
356 #define XKB_KEY_ISO_Group_Shift               0xff7e  /* Alias for mode_switch */
357 #define XKB_KEY_ISO_Group_Latch               0xfe06
358 #define XKB_KEY_ISO_Group_Lock                0xfe07
359 #define XKB_KEY_ISO_Next_Group                0xfe08
360 #define XKB_KEY_ISO_Next_Group_Lock           0xfe09
361 #define XKB_KEY_ISO_Prev_Group                0xfe0a
362 #define XKB_KEY_ISO_Prev_Group_Lock           0xfe0b
363 #define XKB_KEY_ISO_First_Group               0xfe0c
364 #define XKB_KEY_ISO_First_Group_Lock          0xfe0d
365 #define XKB_KEY_ISO_Last_Group                0xfe0e
366 #define XKB_KEY_ISO_Last_Group_Lock           0xfe0f
367
368 #define XKB_KEY_ISO_Left_Tab                  0xfe20
369 #define XKB_KEY_ISO_Move_Line_Up              0xfe21
370 #define XKB_KEY_ISO_Move_Line_Down            0xfe22
371 #define XKB_KEY_ISO_Partial_Line_Up           0xfe23
372 #define XKB_KEY_ISO_Partial_Line_Down         0xfe24
373 #define XKB_KEY_ISO_Partial_Space_Left        0xfe25
374 #define XKB_KEY_ISO_Partial_Space_Right       0xfe26
375 #define XKB_KEY_ISO_Set_Margin_Left           0xfe27
376 #define XKB_KEY_ISO_Set_Margin_Right          0xfe28
377 #define XKB_KEY_ISO_Release_Margin_Left       0xfe29
378 #define XKB_KEY_ISO_Release_Margin_Right      0xfe2a
379 #define XKB_KEY_ISO_Release_Both_Margins      0xfe2b
380 #define XKB_KEY_ISO_Fast_Cursor_Left          0xfe2c
381 #define XKB_KEY_ISO_Fast_Cursor_Right         0xfe2d
382 #define XKB_KEY_ISO_Fast_Cursor_Up            0xfe2e
383 #define XKB_KEY_ISO_Fast_Cursor_Down          0xfe2f
384 #define XKB_KEY_ISO_Continuous_Underline      0xfe30
385 #define XKB_KEY_ISO_Discontinuous_Underline   0xfe31
386 #define XKB_KEY_ISO_Emphasize                 0xfe32
387 #define XKB_KEY_ISO_Center_Object             0xfe33
388 #define XKB_KEY_ISO_Enter                     0xfe34
389
390 #define XKB_KEY_dead_grave                    0xfe50
391 #define XKB_KEY_dead_acute                    0xfe51
392 #define XKB_KEY_dead_circumflex               0xfe52
393 #define XKB_KEY_dead_tilde                    0xfe53
394 #define XKB_KEY_dead_perispomeni              0xfe53  /* alias for dead_tilde */
395 #define XKB_KEY_dead_macron                   0xfe54
396 #define XKB_KEY_dead_breve                    0xfe55
397 #define XKB_KEY_dead_abovedot                 0xfe56
398 #define XKB_KEY_dead_diaeresis                0xfe57
399 #define XKB_KEY_dead_abovering                0xfe58
400 #define XKB_KEY_dead_doubleacute              0xfe59
401 #define XKB_KEY_dead_caron                    0xfe5a
402 #define XKB_KEY_dead_cedilla                  0xfe5b
403 #define XKB_KEY_dead_ogonek                   0xfe5c
404 #define XKB_KEY_dead_iota                     0xfe5d
405 #define XKB_KEY_dead_voiced_sound             0xfe5e
406 #define XKB_KEY_dead_semivoiced_sound         0xfe5f
407 #define XKB_KEY_dead_belowdot                 0xfe60
408 #define XKB_KEY_dead_hook                     0xfe61
409 #define XKB_KEY_dead_horn                     0xfe62
410 #define XKB_KEY_dead_stroke                   0xfe63
411 #define XKB_KEY_dead_abovecomma               0xfe64
412 #define XKB_KEY_dead_psili                    0xfe64  /* alias for dead_abovecomma */
413 #define XKB_KEY_dead_abovereversedcomma       0xfe65
414 #define XKB_KEY_dead_dasia                    0xfe65  /* alias for dead_abovereversedcomma */
415 #define XKB_KEY_dead_doublegrave              0xfe66
416 #define XKB_KEY_dead_belowring                0xfe67
417 #define XKB_KEY_dead_belowmacron              0xfe68
418 #define XKB_KEY_dead_belowcircumflex          0xfe69
419 #define XKB_KEY_dead_belowtilde               0xfe6a
420 #define XKB_KEY_dead_belowbreve               0xfe6b
421 #define XKB_KEY_dead_belowdiaeresis           0xfe6c
422 #define XKB_KEY_dead_invertedbreve            0xfe6d
423 #define XKB_KEY_dead_belowcomma               0xfe6e
424 #define XKB_KEY_dead_currency                 0xfe6f
425
426 /* extra dead elements for German T3 layout */
427 #define XKB_KEY_dead_lowline                  0xfe90
428 #define XKB_KEY_dead_aboveverticalline        0xfe91
429 #define XKB_KEY_dead_belowverticalline        0xfe92
430 #define XKB_KEY_dead_longsolidusoverlay       0xfe93
431
432 /* dead vowels for universal syllable entry */
433 #define XKB_KEY_dead_a                        0xfe80
434 #define XKB_KEY_dead_A                        0xfe81
435 #define XKB_KEY_dead_e                        0xfe82
436 #define XKB_KEY_dead_E                        0xfe83
437 #define XKB_KEY_dead_i                        0xfe84
438 #define XKB_KEY_dead_I                        0xfe85
439 #define XKB_KEY_dead_o                        0xfe86
440 #define XKB_KEY_dead_O                        0xfe87
441 #define XKB_KEY_dead_u                        0xfe88
442 #define XKB_KEY_dead_U                        0xfe89
443 #define XKB_KEY_dead_small_schwa              0xfe8a
444 #define XKB_KEY_dead_capital_schwa            0xfe8b
445
446 #define XKB_KEY_dead_greek                    0xfe8c
447
448 #define XKB_KEY_First_Virtual_Screen          0xfed0
449 #define XKB_KEY_Prev_Virtual_Screen           0xfed1
450 #define XKB_KEY_Next_Virtual_Screen           0xfed2
451 #define XKB_KEY_Last_Virtual_Screen           0xfed4
452 #define XKB_KEY_Terminate_Server              0xfed5
453
454 #define XKB_KEY_AccessX_Enable                0xfe70
455 #define XKB_KEY_AccessX_Feedback_Enable       0xfe71
456 #define XKB_KEY_RepeatKeys_Enable             0xfe72
457 #define XKB_KEY_SlowKeys_Enable               0xfe73
458 #define XKB_KEY_BounceKeys_Enable             0xfe74
459 #define XKB_KEY_StickyKeys_Enable             0xfe75
460 #define XKB_KEY_MouseKeys_Enable              0xfe76
461 #define XKB_KEY_MouseKeys_Accel_Enable        0xfe77
462 #define XKB_KEY_Overlay1_Enable               0xfe78
463 #define XKB_KEY_Overlay2_Enable               0xfe79
464 #define XKB_KEY_AudibleBell_Enable            0xfe7a
465
466 #define XKB_KEY_Pointer_Left                  0xfee0
467 #define XKB_KEY_Pointer_Right                 0xfee1
468 #define XKB_KEY_Pointer_Up                    0xfee2
469 #define XKB_KEY_Pointer_Down                  0xfee3
470 #define XKB_KEY_Pointer_UpLeft                0xfee4
471 #define XKB_KEY_Pointer_UpRight               0xfee5
472 #define XKB_KEY_Pointer_DownLeft              0xfee6
473 #define XKB_KEY_Pointer_DownRight             0xfee7
474 #define XKB_KEY_Pointer_Button_Dflt           0xfee8
475 #define XKB_KEY_Pointer_Button1               0xfee9
476 #define XKB_KEY_Pointer_Button2               0xfeea
477 #define XKB_KEY_Pointer_Button3               0xfeeb
478 #define XKB_KEY_Pointer_Button4               0xfeec
479 #define XKB_KEY_Pointer_Button5               0xfeed
480 #define XKB_KEY_Pointer_DblClick_Dflt         0xfeee
481 #define XKB_KEY_Pointer_DblClick1             0xfeef
482 #define XKB_KEY_Pointer_DblClick2             0xfef0
483 #define XKB_KEY_Pointer_DblClick3             0xfef1
484 #define XKB_KEY_Pointer_DblClick4             0xfef2
485 #define XKB_KEY_Pointer_DblClick5             0xfef3
486 #define XKB_KEY_Pointer_Drag_Dflt             0xfef4
487 #define XKB_KEY_Pointer_Drag1                 0xfef5
488 #define XKB_KEY_Pointer_Drag2                 0xfef6
489 #define XKB_KEY_Pointer_Drag3                 0xfef7
490 #define XKB_KEY_Pointer_Drag4                 0xfef8
491 #define XKB_KEY_Pointer_Drag5                 0xfefd
492
493 #define XKB_KEY_Pointer_EnableKeys            0xfef9
494 #define XKB_KEY_Pointer_Accelerate            0xfefa
495 #define XKB_KEY_Pointer_DfltBtnNext           0xfefb
496 #define XKB_KEY_Pointer_DfltBtnPrev           0xfefc
497
498 /* Single-Stroke Multiple-Character N-Graph Keysyms For The X Input Method */
499
500 #define XKB_KEY_ch                            0xfea0
501 #define XKB_KEY_Ch                            0xfea1
502 #define XKB_KEY_CH                            0xfea2
503 #define XKB_KEY_c_h                           0xfea3
504 #define XKB_KEY_C_h                           0xfea4
505 #define XKB_KEY_C_H                           0xfea5
506
507
508 /*
509  * 3270 Terminal Keys
510  * Byte 3 = 0xfd
511  */
512
513 #define XKB_KEY_3270_Duplicate                0xfd01
514 #define XKB_KEY_3270_FieldMark                0xfd02
515 #define XKB_KEY_3270_Right2                   0xfd03
516 #define XKB_KEY_3270_Left2                    0xfd04
517 #define XKB_KEY_3270_BackTab                  0xfd05
518 #define XKB_KEY_3270_EraseEOF                 0xfd06
519 #define XKB_KEY_3270_EraseInput               0xfd07
520 #define XKB_KEY_3270_Reset                    0xfd08
521 #define XKB_KEY_3270_Quit                     0xfd09
522 #define XKB_KEY_3270_PA1                      0xfd0a
523 #define XKB_KEY_3270_PA2                      0xfd0b
524 #define XKB_KEY_3270_PA3                      0xfd0c
525 #define XKB_KEY_3270_Test                     0xfd0d
526 #define XKB_KEY_3270_Attn                     0xfd0e
527 #define XKB_KEY_3270_CursorBlink              0xfd0f
528 #define XKB_KEY_3270_AltCursor                0xfd10
529 #define XKB_KEY_3270_KeyClick                 0xfd11
530 #define XKB_KEY_3270_Jump                     0xfd12
531 #define XKB_KEY_3270_Ident                    0xfd13
532 #define XKB_KEY_3270_Rule                     0xfd14
533 #define XKB_KEY_3270_Copy                     0xfd15
534 #define XKB_KEY_3270_Play                     0xfd16
535 #define XKB_KEY_3270_Setup                    0xfd17
536 #define XKB_KEY_3270_Record                   0xfd18
537 #define XKB_KEY_3270_ChangeScreen             0xfd19
538 #define XKB_KEY_3270_DeleteWord               0xfd1a
539 #define XKB_KEY_3270_ExSelect                 0xfd1b
540 #define XKB_KEY_3270_CursorSelect             0xfd1c
541 #define XKB_KEY_3270_PrintScreen              0xfd1d
542 #define XKB_KEY_3270_Enter                    0xfd1e
543
544 /*
545  * Latin 1
546  * (ISO/IEC 8859-1 = Unicode U+0020..U+00FF)
547  * Byte 3 = 0
548  */
549 #define XKB_KEY_space                         0x0020  /* U+0020 SPACE */
550 #define XKB_KEY_exclam                        0x0021  /* U+0021 EXCLAMATION MARK */
551 #define XKB_KEY_quotedbl                      0x0022  /* U+0022 QUOTATION MARK */
552 #define XKB_KEY_numbersign                    0x0023  /* U+0023 NUMBER SIGN */
553 #define XKB_KEY_dollar                        0x0024  /* U+0024 DOLLAR SIGN */
554 #define XKB_KEY_percent                       0x0025  /* U+0025 PERCENT SIGN */
555 #define XKB_KEY_ampersand                     0x0026  /* U+0026 AMPERSAND */
556 #define XKB_KEY_apostrophe                    0x0027  /* U+0027 APOSTROPHE */
557 #define XKB_KEY_quoteright                    0x0027  /* deprecated */
558 #define XKB_KEY_parenleft                     0x0028  /* U+0028 LEFT PARENTHESIS */
559 #define XKB_KEY_parenright                    0x0029  /* U+0029 RIGHT PARENTHESIS */
560 #define XKB_KEY_asterisk                      0x002a  /* U+002A ASTERISK */
561 #define XKB_KEY_plus                          0x002b  /* U+002B PLUS SIGN */
562 #define XKB_KEY_comma                         0x002c  /* U+002C COMMA */
563 #define XKB_KEY_minus                         0x002d  /* U+002D HYPHEN-MINUS */
564 #define XKB_KEY_period                        0x002e  /* U+002E FULL STOP */
565 #define XKB_KEY_slash                         0x002f  /* U+002F SOLIDUS */
566 #define XKB_KEY_0                             0x0030  /* U+0030 DIGIT ZERO */
567 #define XKB_KEY_1                             0x0031  /* U+0031 DIGIT ONE */
568 #define XKB_KEY_2                             0x0032  /* U+0032 DIGIT TWO */
569 #define XKB_KEY_3                             0x0033  /* U+0033 DIGIT THREE */
570 #define XKB_KEY_4                             0x0034  /* U+0034 DIGIT FOUR */
571 #define XKB_KEY_5                             0x0035  /* U+0035 DIGIT FIVE */
572 #define XKB_KEY_6                             0x0036  /* U+0036 DIGIT SIX */
573 #define XKB_KEY_7                             0x0037  /* U+0037 DIGIT SEVEN */
574 #define XKB_KEY_8                             0x0038  /* U+0038 DIGIT EIGHT */
575 #define XKB_KEY_9                             0x0039  /* U+0039 DIGIT NINE */
576 #define XKB_KEY_colon                         0x003a  /* U+003A COLON */
577 #define XKB_KEY_semicolon                     0x003b  /* U+003B SEMICOLON */
578 #define XKB_KEY_less                          0x003c  /* U+003C LESS-THAN SIGN */
579 #define XKB_KEY_equal                         0x003d  /* U+003D EQUALS SIGN */
580 #define XKB_KEY_greater                       0x003e  /* U+003E GREATER-THAN SIGN */
581 #define XKB_KEY_question                      0x003f  /* U+003F QUESTION MARK */
582 #define XKB_KEY_at                            0x0040  /* U+0040 COMMERCIAL AT */
583 #define XKB_KEY_A                             0x0041  /* U+0041 LATIN CAPITAL LETTER A */
584 #define XKB_KEY_B                             0x0042  /* U+0042 LATIN CAPITAL LETTER B */
585 #define XKB_KEY_C                             0x0043  /* U+0043 LATIN CAPITAL LETTER C */
586 #define XKB_KEY_D                             0x0044  /* U+0044 LATIN CAPITAL LETTER D */
587 #define XKB_KEY_E                             0x0045  /* U+0045 LATIN CAPITAL LETTER E */
588 #define XKB_KEY_F                             0x0046  /* U+0046 LATIN CAPITAL LETTER F */
589 #define XKB_KEY_G                             0x0047  /* U+0047 LATIN CAPITAL LETTER G */
590 #define XKB_KEY_H                             0x0048  /* U+0048 LATIN CAPITAL LETTER H */
591 #define XKB_KEY_I                             0x0049  /* U+0049 LATIN CAPITAL LETTER I */
592 #define XKB_KEY_J                             0x004a  /* U+004A LATIN CAPITAL LETTER J */
593 #define XKB_KEY_K                             0x004b  /* U+004B LATIN CAPITAL LETTER K */
594 #define XKB_KEY_L                             0x004c  /* U+004C LATIN CAPITAL LETTER L */
595 #define XKB_KEY_M                             0x004d  /* U+004D LATIN CAPITAL LETTER M */
596 #define XKB_KEY_N                             0x004e  /* U+004E LATIN CAPITAL LETTER N */
597 #define XKB_KEY_O                             0x004f  /* U+004F LATIN CAPITAL LETTER O */
598 #define XKB_KEY_P                             0x0050  /* U+0050 LATIN CAPITAL LETTER P */
599 #define XKB_KEY_Q                             0x0051  /* U+0051 LATIN CAPITAL LETTER Q */
600 #define XKB_KEY_R                             0x0052  /* U+0052 LATIN CAPITAL LETTER R */
601 #define XKB_KEY_S                             0x0053  /* U+0053 LATIN CAPITAL LETTER S */
602 #define XKB_KEY_T                             0x0054  /* U+0054 LATIN CAPITAL LETTER T */
603 #define XKB_KEY_U                             0x0055  /* U+0055 LATIN CAPITAL LETTER U */
604 #define XKB_KEY_V                             0x0056  /* U+0056 LATIN CAPITAL LETTER V */
605 #define XKB_KEY_W                             0x0057  /* U+0057 LATIN CAPITAL LETTER W */
606 #define XKB_KEY_X                             0x0058  /* U+0058 LATIN CAPITAL LETTER X */
607 #define XKB_KEY_Y                             0x0059  /* U+0059 LATIN CAPITAL LETTER Y */
608 #define XKB_KEY_Z                             0x005a  /* U+005A LATIN CAPITAL LETTER Z */
609 #define XKB_KEY_bracketleft                   0x005b  /* U+005B LEFT SQUARE BRACKET */
610 #define XKB_KEY_backslash                     0x005c  /* U+005C REVERSE SOLIDUS */
611 #define XKB_KEY_bracketright                  0x005d  /* U+005D RIGHT SQUARE BRACKET */
612 #define XKB_KEY_asciicircum                   0x005e  /* U+005E CIRCUMFLEX ACCENT */
613 #define XKB_KEY_underscore                    0x005f  /* U+005F LOW LINE */
614 #define XKB_KEY_grave                         0x0060  /* U+0060 GRAVE ACCENT */
615 #define XKB_KEY_quoteleft                     0x0060  /* deprecated */
616 #define XKB_KEY_a                             0x0061  /* U+0061 LATIN SMALL LETTER A */
617 #define XKB_KEY_b                             0x0062  /* U+0062 LATIN SMALL LETTER B */
618 #define XKB_KEY_c                             0x0063  /* U+0063 LATIN SMALL LETTER C */
619 #define XKB_KEY_d                             0x0064  /* U+0064 LATIN SMALL LETTER D */
620 #define XKB_KEY_e                             0x0065  /* U+0065 LATIN SMALL LETTER E */
621 #define XKB_KEY_f                             0x0066  /* U+0066 LATIN SMALL LETTER F */
622 #define XKB_KEY_g                             0x0067  /* U+0067 LATIN SMALL LETTER G */
623 #define XKB_KEY_h                             0x0068  /* U+0068 LATIN SMALL LETTER H */
624 #define XKB_KEY_i                             0x0069  /* U+0069 LATIN SMALL LETTER I */
625 #define XKB_KEY_j                             0x006a  /* U+006A LATIN SMALL LETTER J */
626 #define XKB_KEY_k                             0x006b  /* U+006B LATIN SMALL LETTER K */
627 #define XKB_KEY_l                             0x006c  /* U+006C LATIN SMALL LETTER L */
628 #define XKB_KEY_m                             0x006d  /* U+006D LATIN SMALL LETTER M */
629 #define XKB_KEY_n                             0x006e  /* U+006E LATIN SMALL LETTER N */
630 #define XKB_KEY_o                             0x006f  /* U+006F LATIN SMALL LETTER O */
631 #define XKB_KEY_p                             0x0070  /* U+0070 LATIN SMALL LETTER P */
632 #define XKB_KEY_q                             0x0071  /* U+0071 LATIN SMALL LETTER Q */
633 #define XKB_KEY_r                             0x0072  /* U+0072 LATIN SMALL LETTER R */
634 #define XKB_KEY_s                             0x0073  /* U+0073 LATIN SMALL LETTER S */
635 #define XKB_KEY_t                             0x0074  /* U+0074 LATIN SMALL LETTER T */
636 #define XKB_KEY_u                             0x0075  /* U+0075 LATIN SMALL LETTER U */
637 #define XKB_KEY_v                             0x0076  /* U+0076 LATIN SMALL LETTER V */
638 #define XKB_KEY_w                             0x0077  /* U+0077 LATIN SMALL LETTER W */
639 #define XKB_KEY_x                             0x0078  /* U+0078 LATIN SMALL LETTER X */
640 #define XKB_KEY_y                             0x0079  /* U+0079 LATIN SMALL LETTER Y */
641 #define XKB_KEY_z                             0x007a  /* U+007A LATIN SMALL LETTER Z */
642 #define XKB_KEY_braceleft                     0x007b  /* U+007B LEFT CURLY BRACKET */
643 #define XKB_KEY_bar                           0x007c  /* U+007C VERTICAL LINE */
644 #define XKB_KEY_braceright                    0x007d  /* U+007D RIGHT CURLY BRACKET */
645 #define XKB_KEY_asciitilde                    0x007e  /* U+007E TILDE */
646
647 #define XKB_KEY_nobreakspace                  0x00a0  /* U+00A0 NO-BREAK SPACE */
648 #define XKB_KEY_exclamdown                    0x00a1  /* U+00A1 INVERTED EXCLAMATION MARK */
649 #define XKB_KEY_cent                          0x00a2  /* U+00A2 CENT SIGN */
650 #define XKB_KEY_sterling                      0x00a3  /* U+00A3 POUND SIGN */
651 #define XKB_KEY_currency                      0x00a4  /* U+00A4 CURRENCY SIGN */
652 #define XKB_KEY_yen                           0x00a5  /* U+00A5 YEN SIGN */
653 #define XKB_KEY_brokenbar                     0x00a6  /* U+00A6 BROKEN BAR */
654 #define XKB_KEY_section                       0x00a7  /* U+00A7 SECTION SIGN */
655 #define XKB_KEY_diaeresis                     0x00a8  /* U+00A8 DIAERESIS */
656 #define XKB_KEY_copyright                     0x00a9  /* U+00A9 COPYRIGHT SIGN */
657 #define XKB_KEY_ordfeminine                   0x00aa  /* U+00AA FEMININE ORDINAL INDICATOR */
658 #define XKB_KEY_guillemotleft                 0x00ab  /* U+00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK */
659 #define XKB_KEY_notsign                       0x00ac  /* U+00AC NOT SIGN */
660 #define XKB_KEY_hyphen                        0x00ad  /* U+00AD SOFT HYPHEN */
661 #define XKB_KEY_registered                    0x00ae  /* U+00AE REGISTERED SIGN */
662 #define XKB_KEY_macron                        0x00af  /* U+00AF MACRON */
663 #define XKB_KEY_degree                        0x00b0  /* U+00B0 DEGREE SIGN */
664 #define XKB_KEY_plusminus                     0x00b1  /* U+00B1 PLUS-MINUS SIGN */
665 #define XKB_KEY_twosuperior                   0x00b2  /* U+00B2 SUPERSCRIPT TWO */
666 #define XKB_KEY_threesuperior                 0x00b3  /* U+00B3 SUPERSCRIPT THREE */
667 #define XKB_KEY_acute                         0x00b4  /* U+00B4 ACUTE ACCENT */
668 #define XKB_KEY_mu                            0x00b5  /* U+00B5 MICRO SIGN */
669 #define XKB_KEY_paragraph                     0x00b6  /* U+00B6 PILCROW SIGN */
670 #define XKB_KEY_periodcentered                0x00b7  /* U+00B7 MIDDLE DOT */
671 #define XKB_KEY_cedilla                       0x00b8  /* U+00B8 CEDILLA */
672 #define XKB_KEY_onesuperior                   0x00b9  /* U+00B9 SUPERSCRIPT ONE */
673 #define XKB_KEY_masculine                     0x00ba  /* U+00BA MASCULINE ORDINAL INDICATOR */
674 #define XKB_KEY_guillemotright                0x00bb  /* U+00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK */
675 #define XKB_KEY_onequarter                    0x00bc  /* U+00BC VULGAR FRACTION ONE QUARTER */
676 #define XKB_KEY_onehalf                       0x00bd  /* U+00BD VULGAR FRACTION ONE HALF */
677 #define XKB_KEY_threequarters                 0x00be  /* U+00BE VULGAR FRACTION THREE QUARTERS */
678 #define XKB_KEY_questiondown                  0x00bf  /* U+00BF INVERTED QUESTION MARK */
679 #define XKB_KEY_Agrave                        0x00c0  /* U+00C0 LATIN CAPITAL LETTER A WITH GRAVE */
680 #define XKB_KEY_Aacute                        0x00c1  /* U+00C1 LATIN CAPITAL LETTER A WITH ACUTE */
681 #define XKB_KEY_Acircumflex                   0x00c2  /* U+00C2 LATIN CAPITAL LETTER A WITH CIRCUMFLEX */
682 #define XKB_KEY_Atilde                        0x00c3  /* U+00C3 LATIN CAPITAL LETTER A WITH TILDE */
683 #define XKB_KEY_Adiaeresis                    0x00c4  /* U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS */
684 #define XKB_KEY_Aring                         0x00c5  /* U+00C5 LATIN CAPITAL LETTER A WITH RING ABOVE */
685 #define XKB_KEY_AE                            0x00c6  /* U+00C6 LATIN CAPITAL LETTER AE */
686 #define XKB_KEY_Ccedilla                      0x00c7  /* U+00C7 LATIN CAPITAL LETTER C WITH CEDILLA */
687 #define XKB_KEY_Egrave                        0x00c8  /* U+00C8 LATIN CAPITAL LETTER E WITH GRAVE */
688 #define XKB_KEY_Eacute                        0x00c9  /* U+00C9 LATIN CAPITAL LETTER E WITH ACUTE */
689 #define XKB_KEY_Ecircumflex                   0x00ca  /* U+00CA LATIN CAPITAL LETTER E WITH CIRCUMFLEX */
690 #define XKB_KEY_Ediaeresis                    0x00cb  /* U+00CB LATIN CAPITAL LETTER E WITH DIAERESIS */
691 #define XKB_KEY_Igrave                        0x00cc  /* U+00CC LATIN CAPITAL LETTER I WITH GRAVE */
692 #define XKB_KEY_Iacute                        0x00cd  /* U+00CD LATIN CAPITAL LETTER I WITH ACUTE */
693 #define XKB_KEY_Icircumflex                   0x00ce  /* U+00CE LATIN CAPITAL LETTER I WITH CIRCUMFLEX */
694 #define XKB_KEY_Idiaeresis                    0x00cf  /* U+00CF LATIN CAPITAL LETTER I WITH DIAERESIS */
695 #define XKB_KEY_ETH                           0x00d0  /* U+00D0 LATIN CAPITAL LETTER ETH */
696 #define XKB_KEY_Eth                           0x00d0  /* deprecated */
697 #define XKB_KEY_Ntilde                        0x00d1  /* U+00D1 LATIN CAPITAL LETTER N WITH TILDE */
698 #define XKB_KEY_Ograve                        0x00d2  /* U+00D2 LATIN CAPITAL LETTER O WITH GRAVE */
699 #define XKB_KEY_Oacute                        0x00d3  /* U+00D3 LATIN CAPITAL LETTER O WITH ACUTE */
700 #define XKB_KEY_Ocircumflex                   0x00d4  /* U+00D4 LATIN CAPITAL LETTER O WITH CIRCUMFLEX */
701 #define XKB_KEY_Otilde                        0x00d5  /* U+00D5 LATIN CAPITAL LETTER O WITH TILDE */
702 #define XKB_KEY_Odiaeresis                    0x00d6  /* U+00D6 LATIN CAPITAL LETTER O WITH DIAERESIS */
703 #define XKB_KEY_multiply                      0x00d7  /* U+00D7 MULTIPLICATION SIGN */
704 #define XKB_KEY_Oslash                        0x00d8  /* U+00D8 LATIN CAPITAL LETTER O WITH STROKE */
705 #define XKB_KEY_Ooblique                      0x00d8  /* U+00D8 LATIN CAPITAL LETTER O WITH STROKE */
706 #define XKB_KEY_Ugrave                        0x00d9  /* U+00D9 LATIN CAPITAL LETTER U WITH GRAVE */
707 #define XKB_KEY_Uacute                        0x00da  /* U+00DA LATIN CAPITAL LETTER U WITH ACUTE */
708 #define XKB_KEY_Ucircumflex                   0x00db  /* U+00DB LATIN CAPITAL LETTER U WITH CIRCUMFLEX */
709 #define XKB_KEY_Udiaeresis                    0x00dc  /* U+00DC LATIN CAPITAL LETTER U WITH DIAERESIS */
710 #define XKB_KEY_Yacute                        0x00dd  /* U+00DD LATIN CAPITAL LETTER Y WITH ACUTE */
711 #define XKB_KEY_THORN                         0x00de  /* U+00DE LATIN CAPITAL LETTER THORN */
712 #define XKB_KEY_Thorn                         0x00de  /* deprecated */
713 #define XKB_KEY_ssharp                        0x00df  /* U+00DF LATIN SMALL LETTER SHARP S */
714 #define XKB_KEY_agrave                        0x00e0  /* U+00E0 LATIN SMALL LETTER A WITH GRAVE */
715 #define XKB_KEY_aacute                        0x00e1  /* U+00E1 LATIN SMALL LETTER A WITH ACUTE */
716 #define XKB_KEY_acircumflex                   0x00e2  /* U+00E2 LATIN SMALL LETTER A WITH CIRCUMFLEX */
717 #define XKB_KEY_atilde                        0x00e3  /* U+00E3 LATIN SMALL LETTER A WITH TILDE */
718 #define XKB_KEY_adiaeresis                    0x00e4  /* U+00E4 LATIN SMALL LETTER A WITH DIAERESIS */
719 #define XKB_KEY_aring                         0x00e5  /* U+00E5 LATIN SMALL LETTER A WITH RING ABOVE */
720 #define XKB_KEY_ae                            0x00e6  /* U+00E6 LATIN SMALL LETTER AE */
721 #define XKB_KEY_ccedilla                      0x00e7  /* U+00E7 LATIN SMALL LETTER C WITH CEDILLA */
722 #define XKB_KEY_egrave                        0x00e8  /* U+00E8 LATIN SMALL LETTER E WITH GRAVE */
723 #define XKB_KEY_eacute                        0x00e9  /* U+00E9 LATIN SMALL LETTER E WITH ACUTE */
724 #define XKB_KEY_ecircumflex                   0x00ea  /* U+00EA LATIN SMALL LETTER E WITH CIRCUMFLEX */
725 #define XKB_KEY_ediaeresis                    0x00eb  /* U+00EB LATIN SMALL LETTER E WITH DIAERESIS */
726 #define XKB_KEY_igrave                        0x00ec  /* U+00EC LATIN SMALL LETTER I WITH GRAVE */
727 #define XKB_KEY_iacute                        0x00ed  /* U+00ED LATIN SMALL LETTER I WITH ACUTE */
728 #define XKB_KEY_icircumflex                   0x00ee  /* U+00EE LATIN SMALL LETTER I WITH CIRCUMFLEX */
729 #define XKB_KEY_idiaeresis                    0x00ef  /* U+00EF LATIN SMALL LETTER I WITH DIAERESIS */
730 #define XKB_KEY_eth                           0x00f0  /* U+00F0 LATIN SMALL LETTER ETH */
731 #define XKB_KEY_ntilde                        0x00f1  /* U+00F1 LATIN SMALL LETTER N WITH TILDE */
732 #define XKB_KEY_ograve                        0x00f2  /* U+00F2 LATIN SMALL LETTER O WITH GRAVE */
733 #define XKB_KEY_oacute                        0x00f3  /* U+00F3 LATIN SMALL LETTER O WITH ACUTE */
734 #define XKB_KEY_ocircumflex                   0x00f4  /* U+00F4 LATIN SMALL LETTER O WITH CIRCUMFLEX */
735 #define XKB_KEY_otilde                        0x00f5  /* U+00F5 LATIN SMALL LETTER O WITH TILDE */
736 #define XKB_KEY_odiaeresis                    0x00f6  /* U+00F6 LATIN SMALL LETTER O WITH DIAERESIS */
737 #define XKB_KEY_division                      0x00f7  /* U+00F7 DIVISION SIGN */
738 #define XKB_KEY_oslash                        0x00f8  /* U+00F8 LATIN SMALL LETTER O WITH STROKE */
739 #define XKB_KEY_ooblique                      0x00f8  /* U+00F8 LATIN SMALL LETTER O WITH STROKE */
740 #define XKB_KEY_ugrave                        0x00f9  /* U+00F9 LATIN SMALL LETTER U WITH GRAVE */
741 #define XKB_KEY_uacute                        0x00fa  /* U+00FA LATIN SMALL LETTER U WITH ACUTE */
742 #define XKB_KEY_ucircumflex                   0x00fb  /* U+00FB LATIN SMALL LETTER U WITH CIRCUMFLEX */
743 #define XKB_KEY_udiaeresis                    0x00fc  /* U+00FC LATIN SMALL LETTER U WITH DIAERESIS */
744 #define XKB_KEY_yacute                        0x00fd  /* U+00FD LATIN SMALL LETTER Y WITH ACUTE */
745 #define XKB_KEY_thorn                         0x00fe  /* U+00FE LATIN SMALL LETTER THORN */
746 #define XKB_KEY_ydiaeresis                    0x00ff  /* U+00FF LATIN SMALL LETTER Y WITH DIAERESIS */
747
748 /*
749  * Latin 2
750  * Byte 3 = 1
751  */
752
753 #define XKB_KEY_Aogonek                       0x01a1  /* U+0104 LATIN CAPITAL LETTER A WITH OGONEK */
754 #define XKB_KEY_breve                         0x01a2  /* U+02D8 BREVE */
755 #define XKB_KEY_Lstroke                       0x01a3  /* U+0141 LATIN CAPITAL LETTER L WITH STROKE */
756 #define XKB_KEY_Lcaron                        0x01a5  /* U+013D LATIN CAPITAL LETTER L WITH CARON */
757 #define XKB_KEY_Sacute                        0x01a6  /* U+015A LATIN CAPITAL LETTER S WITH ACUTE */
758 #define XKB_KEY_Scaron                        0x01a9  /* U+0160 LATIN CAPITAL LETTER S WITH CARON */
759 #define XKB_KEY_Scedilla                      0x01aa  /* U+015E LATIN CAPITAL LETTER S WITH CEDILLA */
760 #define XKB_KEY_Tcaron                        0x01ab  /* U+0164 LATIN CAPITAL LETTER T WITH CARON */
761 #define XKB_KEY_Zacute                        0x01ac  /* U+0179 LATIN CAPITAL LETTER Z WITH ACUTE */
762 #define XKB_KEY_Zcaron                        0x01ae  /* U+017D LATIN CAPITAL LETTER Z WITH CARON */
763 #define XKB_KEY_Zabovedot                     0x01af  /* U+017B LATIN CAPITAL LETTER Z WITH DOT ABOVE */
764 #define XKB_KEY_aogonek                       0x01b1  /* U+0105 LATIN SMALL LETTER A WITH OGONEK */
765 #define XKB_KEY_ogonek                        0x01b2  /* U+02DB OGONEK */
766 #define XKB_KEY_lstroke                       0x01b3  /* U+0142 LATIN SMALL LETTER L WITH STROKE */
767 #define XKB_KEY_lcaron                        0x01b5  /* U+013E LATIN SMALL LETTER L WITH CARON */
768 #define XKB_KEY_sacute                        0x01b6  /* U+015B LATIN SMALL LETTER S WITH ACUTE */
769 #define XKB_KEY_caron                         0x01b7  /* U+02C7 CARON */
770 #define XKB_KEY_scaron                        0x01b9  /* U+0161 LATIN SMALL LETTER S WITH CARON */
771 #define XKB_KEY_scedilla                      0x01ba  /* U+015F LATIN SMALL LETTER S WITH CEDILLA */
772 #define XKB_KEY_tcaron                        0x01bb  /* U+0165 LATIN SMALL LETTER T WITH CARON */
773 #define XKB_KEY_zacute                        0x01bc  /* U+017A LATIN SMALL LETTER Z WITH ACUTE */
774 #define XKB_KEY_doubleacute                   0x01bd  /* U+02DD DOUBLE ACUTE ACCENT */
775 #define XKB_KEY_zcaron                        0x01be  /* U+017E LATIN SMALL LETTER Z WITH CARON */
776 #define XKB_KEY_zabovedot                     0x01bf  /* U+017C LATIN SMALL LETTER Z WITH DOT ABOVE */
777 #define XKB_KEY_Racute                        0x01c0  /* U+0154 LATIN CAPITAL LETTER R WITH ACUTE */
778 #define XKB_KEY_Abreve                        0x01c3  /* U+0102 LATIN CAPITAL LETTER A WITH BREVE */
779 #define XKB_KEY_Lacute                        0x01c5  /* U+0139 LATIN CAPITAL LETTER L WITH ACUTE */
780 #define XKB_KEY_Cacute                        0x01c6  /* U+0106 LATIN CAPITAL LETTER C WITH ACUTE */
781 #define XKB_KEY_Ccaron                        0x01c8  /* U+010C LATIN CAPITAL LETTER C WITH CARON */
782 #define XKB_KEY_Eogonek                       0x01ca  /* U+0118 LATIN CAPITAL LETTER E WITH OGONEK */
783 #define XKB_KEY_Ecaron                        0x01cc  /* U+011A LATIN CAPITAL LETTER E WITH CARON */
784 #define XKB_KEY_Dcaron                        0x01cf  /* U+010E LATIN CAPITAL LETTER D WITH CARON */
785 #define XKB_KEY_Dstroke                       0x01d0  /* U+0110 LATIN CAPITAL LETTER D WITH STROKE */
786 #define XKB_KEY_Nacute                        0x01d1  /* U+0143 LATIN CAPITAL LETTER N WITH ACUTE */
787 #define XKB_KEY_Ncaron                        0x01d2  /* U+0147 LATIN CAPITAL LETTER N WITH CARON */
788 #define XKB_KEY_Odoubleacute                  0x01d5  /* U+0150 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE */
789 #define XKB_KEY_Rcaron                        0x01d8  /* U+0158 LATIN CAPITAL LETTER R WITH CARON */
790 #define XKB_KEY_Uring                         0x01d9  /* U+016E LATIN CAPITAL LETTER U WITH RING ABOVE */
791 #define XKB_KEY_Udoubleacute                  0x01db  /* U+0170 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE */
792 #define XKB_KEY_Tcedilla                      0x01de  /* U+0162 LATIN CAPITAL LETTER T WITH CEDILLA */
793 #define XKB_KEY_racute                        0x01e0  /* U+0155 LATIN SMALL LETTER R WITH ACUTE */
794 #define XKB_KEY_abreve                        0x01e3  /* U+0103 LATIN SMALL LETTER A WITH BREVE */
795 #define XKB_KEY_lacute                        0x01e5  /* U+013A LATIN SMALL LETTER L WITH ACUTE */
796 #define XKB_KEY_cacute                        0x01e6  /* U+0107 LATIN SMALL LETTER C WITH ACUTE */
797 #define XKB_KEY_ccaron                        0x01e8  /* U+010D LATIN SMALL LETTER C WITH CARON */
798 #define XKB_KEY_eogonek                       0x01ea  /* U+0119 LATIN SMALL LETTER E WITH OGONEK */
799 #define XKB_KEY_ecaron                        0x01ec  /* U+011B LATIN SMALL LETTER E WITH CARON */
800 #define XKB_KEY_dcaron                        0x01ef  /* U+010F LATIN SMALL LETTER D WITH CARON */
801 #define XKB_KEY_dstroke                       0x01f0  /* U+0111 LATIN SMALL LETTER D WITH STROKE */
802 #define XKB_KEY_nacute                        0x01f1  /* U+0144 LATIN SMALL LETTER N WITH ACUTE */
803 #define XKB_KEY_ncaron                        0x01f2  /* U+0148 LATIN SMALL LETTER N WITH CARON */
804 #define XKB_KEY_odoubleacute                  0x01f5  /* U+0151 LATIN SMALL LETTER O WITH DOUBLE ACUTE */
805 #define XKB_KEY_rcaron                        0x01f8  /* U+0159 LATIN SMALL LETTER R WITH CARON */
806 #define XKB_KEY_uring                         0x01f9  /* U+016F LATIN SMALL LETTER U WITH RING ABOVE */
807 #define XKB_KEY_udoubleacute                  0x01fb  /* U+0171 LATIN SMALL LETTER U WITH DOUBLE ACUTE */
808 #define XKB_KEY_tcedilla                      0x01fe  /* U+0163 LATIN SMALL LETTER T WITH CEDILLA */
809 #define XKB_KEY_abovedot                      0x01ff  /* U+02D9 DOT ABOVE */
810
811 /*
812  * Latin 3
813  * Byte 3 = 2
814  */
815
816 #define XKB_KEY_Hstroke                       0x02a1  /* U+0126 LATIN CAPITAL LETTER H WITH STROKE */
817 #define XKB_KEY_Hcircumflex                   0x02a6  /* U+0124 LATIN CAPITAL LETTER H WITH CIRCUMFLEX */
818 #define XKB_KEY_Iabovedot                     0x02a9  /* U+0130 LATIN CAPITAL LETTER I WITH DOT ABOVE */
819 #define XKB_KEY_Gbreve                        0x02ab  /* U+011E LATIN CAPITAL LETTER G WITH BREVE */
820 #define XKB_KEY_Jcircumflex                   0x02ac  /* U+0134 LATIN CAPITAL LETTER J WITH CIRCUMFLEX */
821 #define XKB_KEY_hstroke                       0x02b1  /* U+0127 LATIN SMALL LETTER H WITH STROKE */
822 #define XKB_KEY_hcircumflex                   0x02b6  /* U+0125 LATIN SMALL LETTER H WITH CIRCUMFLEX */
823 #define XKB_KEY_idotless                      0x02b9  /* U+0131 LATIN SMALL LETTER DOTLESS I */
824 #define XKB_KEY_gbreve                        0x02bb  /* U+011F LATIN SMALL LETTER G WITH BREVE */
825 #define XKB_KEY_jcircumflex                   0x02bc  /* U+0135 LATIN SMALL LETTER J WITH CIRCUMFLEX */
826 #define XKB_KEY_Cabovedot                     0x02c5  /* U+010A LATIN CAPITAL LETTER C WITH DOT ABOVE */
827 #define XKB_KEY_Ccircumflex                   0x02c6  /* U+0108 LATIN CAPITAL LETTER C WITH CIRCUMFLEX */
828 #define XKB_KEY_Gabovedot                     0x02d5  /* U+0120 LATIN CAPITAL LETTER G WITH DOT ABOVE */
829 #define XKB_KEY_Gcircumflex                   0x02d8  /* U+011C LATIN CAPITAL LETTER G WITH CIRCUMFLEX */
830 #define XKB_KEY_Ubreve                        0x02dd  /* U+016C LATIN CAPITAL LETTER U WITH BREVE */
831 #define XKB_KEY_Scircumflex                   0x02de  /* U+015C LATIN CAPITAL LETTER S WITH CIRCUMFLEX */
832 #define XKB_KEY_cabovedot                     0x02e5  /* U+010B LATIN SMALL LETTER C WITH DOT ABOVE */
833 #define XKB_KEY_ccircumflex                   0x02e6  /* U+0109 LATIN SMALL LETTER C WITH CIRCUMFLEX */
834 #define XKB_KEY_gabovedot                     0x02f5  /* U+0121 LATIN SMALL LETTER G WITH DOT ABOVE */
835 #define XKB_KEY_gcircumflex                   0x02f8  /* U+011D LATIN SMALL LETTER G WITH CIRCUMFLEX */
836 #define XKB_KEY_ubreve                        0x02fd  /* U+016D LATIN SMALL LETTER U WITH BREVE */
837 #define XKB_KEY_scircumflex                   0x02fe  /* U+015D LATIN SMALL LETTER S WITH CIRCUMFLEX */
838
839
840 /*
841  * Latin 4
842  * Byte 3 = 3
843  */
844
845 #define XKB_KEY_kra                           0x03a2  /* U+0138 LATIN SMALL LETTER KRA */
846 #define XKB_KEY_kappa                         0x03a2  /* deprecated */
847 #define XKB_KEY_Rcedilla                      0x03a3  /* U+0156 LATIN CAPITAL LETTER R WITH CEDILLA */
848 #define XKB_KEY_Itilde                        0x03a5  /* U+0128 LATIN CAPITAL LETTER I WITH TILDE */
849 #define XKB_KEY_Lcedilla                      0x03a6  /* U+013B LATIN CAPITAL LETTER L WITH CEDILLA */
850 #define XKB_KEY_Emacron                       0x03aa  /* U+0112 LATIN CAPITAL LETTER E WITH MACRON */
851 #define XKB_KEY_Gcedilla                      0x03ab  /* U+0122 LATIN CAPITAL LETTER G WITH CEDILLA */
852 #define XKB_KEY_Tslash                        0x03ac  /* U+0166 LATIN CAPITAL LETTER T WITH STROKE */
853 #define XKB_KEY_rcedilla                      0x03b3  /* U+0157 LATIN SMALL LETTER R WITH CEDILLA */
854 #define XKB_KEY_itilde                        0x03b5  /* U+0129 LATIN SMALL LETTER I WITH TILDE */
855 #define XKB_KEY_lcedilla                      0x03b6  /* U+013C LATIN SMALL LETTER L WITH CEDILLA */
856 #define XKB_KEY_emacron                       0x03ba  /* U+0113 LATIN SMALL LETTER E WITH MACRON */
857 #define XKB_KEY_gcedilla                      0x03bb  /* U+0123 LATIN SMALL LETTER G WITH CEDILLA */
858 #define XKB_KEY_tslash                        0x03bc  /* U+0167 LATIN SMALL LETTER T WITH STROKE */
859 #define XKB_KEY_ENG                           0x03bd  /* U+014A LATIN CAPITAL LETTER ENG */
860 #define XKB_KEY_eng                           0x03bf  /* U+014B LATIN SMALL LETTER ENG */
861 #define XKB_KEY_Amacron                       0x03c0  /* U+0100 LATIN CAPITAL LETTER A WITH MACRON */
862 #define XKB_KEY_Iogonek                       0x03c7  /* U+012E LATIN CAPITAL LETTER I WITH OGONEK */
863 #define XKB_KEY_Eabovedot                     0x03cc  /* U+0116 LATIN CAPITAL LETTER E WITH DOT ABOVE */
864 #define XKB_KEY_Imacron                       0x03cf  /* U+012A LATIN CAPITAL LETTER I WITH MACRON */
865 #define XKB_KEY_Ncedilla                      0x03d1  /* U+0145 LATIN CAPITAL LETTER N WITH CEDILLA */
866 #define XKB_KEY_Omacron                       0x03d2  /* U+014C LATIN CAPITAL LETTER O WITH MACRON */
867 #define XKB_KEY_Kcedilla                      0x03d3  /* U+0136 LATIN CAPITAL LETTER K WITH CEDILLA */
868 #define XKB_KEY_Uogonek                       0x03d9  /* U+0172 LATIN CAPITAL LETTER U WITH OGONEK */
869 #define XKB_KEY_Utilde                        0x03dd  /* U+0168 LATIN CAPITAL LETTER U WITH TILDE */
870 #define XKB_KEY_Umacron                       0x03de  /* U+016A LATIN CAPITAL LETTER U WITH MACRON */
871 #define XKB_KEY_amacron                       0x03e0  /* U+0101 LATIN SMALL LETTER A WITH MACRON */
872 #define XKB_KEY_iogonek                       0x03e7  /* U+012F LATIN SMALL LETTER I WITH OGONEK */
873 #define XKB_KEY_eabovedot                     0x03ec  /* U+0117 LATIN SMALL LETTER E WITH DOT ABOVE */
874 #define XKB_KEY_imacron                       0x03ef  /* U+012B LATIN SMALL LETTER I WITH MACRON */
875 #define XKB_KEY_ncedilla                      0x03f1  /* U+0146 LATIN SMALL LETTER N WITH CEDILLA */
876 #define XKB_KEY_omacron                       0x03f2  /* U+014D LATIN SMALL LETTER O WITH MACRON */
877 #define XKB_KEY_kcedilla                      0x03f3  /* U+0137 LATIN SMALL LETTER K WITH CEDILLA */
878 #define XKB_KEY_uogonek                       0x03f9  /* U+0173 LATIN SMALL LETTER U WITH OGONEK */
879 #define XKB_KEY_utilde                        0x03fd  /* U+0169 LATIN SMALL LETTER U WITH TILDE */
880 #define XKB_KEY_umacron                       0x03fe  /* U+016B LATIN SMALL LETTER U WITH MACRON */
881
882 /*
883  * Latin 8
884  */
885 #define XKB_KEY_Wcircumflex                0x1000174  /* U+0174 LATIN CAPITAL LETTER W WITH CIRCUMFLEX */
886 #define XKB_KEY_wcircumflex                0x1000175  /* U+0175 LATIN SMALL LETTER W WITH CIRCUMFLEX */
887 #define XKB_KEY_Ycircumflex                0x1000176  /* U+0176 LATIN CAPITAL LETTER Y WITH CIRCUMFLEX */
888 #define XKB_KEY_ycircumflex                0x1000177  /* U+0177 LATIN SMALL LETTER Y WITH CIRCUMFLEX */
889 #define XKB_KEY_Babovedot                  0x1001e02  /* U+1E02 LATIN CAPITAL LETTER B WITH DOT ABOVE */
890 #define XKB_KEY_babovedot                  0x1001e03  /* U+1E03 LATIN SMALL LETTER B WITH DOT ABOVE */
891 #define XKB_KEY_Dabovedot                  0x1001e0a  /* U+1E0A LATIN CAPITAL LETTER D WITH DOT ABOVE */
892 #define XKB_KEY_dabovedot                  0x1001e0b  /* U+1E0B LATIN SMALL LETTER D WITH DOT ABOVE */
893 #define XKB_KEY_Fabovedot                  0x1001e1e  /* U+1E1E LATIN CAPITAL LETTER F WITH DOT ABOVE */
894 #define XKB_KEY_fabovedot                  0x1001e1f  /* U+1E1F LATIN SMALL LETTER F WITH DOT ABOVE */
895 #define XKB_KEY_Mabovedot                  0x1001e40  /* U+1E40 LATIN CAPITAL LETTER M WITH DOT ABOVE */
896 #define XKB_KEY_mabovedot                  0x1001e41  /* U+1E41 LATIN SMALL LETTER M WITH DOT ABOVE */
897 #define XKB_KEY_Pabovedot                  0x1001e56  /* U+1E56 LATIN CAPITAL LETTER P WITH DOT ABOVE */
898 #define XKB_KEY_pabovedot                  0x1001e57  /* U+1E57 LATIN SMALL LETTER P WITH DOT ABOVE */
899 #define XKB_KEY_Sabovedot                  0x1001e60  /* U+1E60 LATIN CAPITAL LETTER S WITH DOT ABOVE */
900 #define XKB_KEY_sabovedot                  0x1001e61  /* U+1E61 LATIN SMALL LETTER S WITH DOT ABOVE */
901 #define XKB_KEY_Tabovedot                  0x1001e6a  /* U+1E6A LATIN CAPITAL LETTER T WITH DOT ABOVE */
902 #define XKB_KEY_tabovedot                  0x1001e6b  /* U+1E6B LATIN SMALL LETTER T WITH DOT ABOVE */
903 #define XKB_KEY_Wgrave                     0x1001e80  /* U+1E80 LATIN CAPITAL LETTER W WITH GRAVE */
904 #define XKB_KEY_wgrave                     0x1001e81  /* U+1E81 LATIN SMALL LETTER W WITH GRAVE */
905 #define XKB_KEY_Wacute                     0x1001e82  /* U+1E82 LATIN CAPITAL LETTER W WITH ACUTE */
906 #define XKB_KEY_wacute                     0x1001e83  /* U+1E83 LATIN SMALL LETTER W WITH ACUTE */
907 #define XKB_KEY_Wdiaeresis                 0x1001e84  /* U+1E84 LATIN CAPITAL LETTER W WITH DIAERESIS */
908 #define XKB_KEY_wdiaeresis                 0x1001e85  /* U+1E85 LATIN SMALL LETTER W WITH DIAERESIS */
909 #define XKB_KEY_Ygrave                     0x1001ef2  /* U+1EF2 LATIN CAPITAL LETTER Y WITH GRAVE */
910 #define XKB_KEY_ygrave                     0x1001ef3  /* U+1EF3 LATIN SMALL LETTER Y WITH GRAVE */
911
912 /*
913  * Latin 9
914  * Byte 3 = 0x13
915  */
916
917 #define XKB_KEY_OE                            0x13bc  /* U+0152 LATIN CAPITAL LIGATURE OE */
918 #define XKB_KEY_oe                            0x13bd  /* U+0153 LATIN SMALL LIGATURE OE */
919 #define XKB_KEY_Ydiaeresis                    0x13be  /* U+0178 LATIN CAPITAL LETTER Y WITH DIAERESIS */
920
921 /*
922  * Katakana
923  * Byte 3 = 4
924  */
925
926 #define XKB_KEY_overline                      0x047e  /* U+203E OVERLINE */
927 #define XKB_KEY_kana_fullstop                 0x04a1  /* U+3002 IDEOGRAPHIC FULL STOP */
928 #define XKB_KEY_kana_openingbracket           0x04a2  /* U+300C LEFT CORNER BRACKET */
929 #define XKB_KEY_kana_closingbracket           0x04a3  /* U+300D RIGHT CORNER BRACKET */
930 #define XKB_KEY_kana_comma                    0x04a4  /* U+3001 IDEOGRAPHIC COMMA */
931 #define XKB_KEY_kana_conjunctive              0x04a5  /* U+30FB KATAKANA MIDDLE DOT */
932 #define XKB_KEY_kana_middledot                0x04a5  /* deprecated */
933 #define XKB_KEY_kana_WO                       0x04a6  /* U+30F2 KATAKANA LETTER WO */
934 #define XKB_KEY_kana_a                        0x04a7  /* U+30A1 KATAKANA LETTER SMALL A */
935 #define XKB_KEY_kana_i                        0x04a8  /* U+30A3 KATAKANA LETTER SMALL I */
936 #define XKB_KEY_kana_u                        0x04a9  /* U+30A5 KATAKANA LETTER SMALL U */
937 #define XKB_KEY_kana_e                        0x04aa  /* U+30A7 KATAKANA LETTER SMALL E */
938 #define XKB_KEY_kana_o                        0x04ab  /* U+30A9 KATAKANA LETTER SMALL O */
939 #define XKB_KEY_kana_ya                       0x04ac  /* U+30E3 KATAKANA LETTER SMALL YA */
940 #define XKB_KEY_kana_yu                       0x04ad  /* U+30E5 KATAKANA LETTER SMALL YU */
941 #define XKB_KEY_kana_yo                       0x04ae  /* U+30E7 KATAKANA LETTER SMALL YO */
942 #define XKB_KEY_kana_tsu                      0x04af  /* U+30C3 KATAKANA LETTER SMALL TU */
943 #define XKB_KEY_kana_tu                       0x04af  /* deprecated */
944 #define XKB_KEY_prolongedsound                0x04b0  /* U+30FC KATAKANA-HIRAGANA PROLONGED SOUND MARK */
945 #define XKB_KEY_kana_A                        0x04b1  /* U+30A2 KATAKANA LETTER A */
946 #define XKB_KEY_kana_I                        0x04b2  /* U+30A4 KATAKANA LETTER I */
947 #define XKB_KEY_kana_U                        0x04b3  /* U+30A6 KATAKANA LETTER U */
948 #define XKB_KEY_kana_E                        0x04b4  /* U+30A8 KATAKANA LETTER E */
949 #define XKB_KEY_kana_O                        0x04b5  /* U+30AA KATAKANA LETTER O */
950 #define XKB_KEY_kana_KA                       0x04b6  /* U+30AB KATAKANA LETTER KA */
951 #define XKB_KEY_kana_KI                       0x04b7  /* U+30AD KATAKANA LETTER KI */
952 #define XKB_KEY_kana_KU                       0x04b8  /* U+30AF KATAKANA LETTER KU */
953 #define XKB_KEY_kana_KE                       0x04b9  /* U+30B1 KATAKANA LETTER KE */
954 #define XKB_KEY_kana_KO                       0x04ba  /* U+30B3 KATAKANA LETTER KO */
955 #define XKB_KEY_kana_SA                       0x04bb  /* U+30B5 KATAKANA LETTER SA */
956 #define XKB_KEY_kana_SHI                      0x04bc  /* U+30B7 KATAKANA LETTER SI */
957 #define XKB_KEY_kana_SU                       0x04bd  /* U+30B9 KATAKANA LETTER SU */
958 #define XKB_KEY_kana_SE                       0x04be  /* U+30BB KATAKANA LETTER SE */
959 #define XKB_KEY_kana_SO                       0x04bf  /* U+30BD KATAKANA LETTER SO */
960 #define XKB_KEY_kana_TA                       0x04c0  /* U+30BF KATAKANA LETTER TA */
961 #define XKB_KEY_kana_CHI                      0x04c1  /* U+30C1 KATAKANA LETTER TI */
962 #define XKB_KEY_kana_TI                       0x04c1  /* deprecated */
963 #define XKB_KEY_kana_TSU                      0x04c2  /* U+30C4 KATAKANA LETTER TU */
964 #define XKB_KEY_kana_TU                       0x04c2  /* deprecated */
965 #define XKB_KEY_kana_TE                       0x04c3  /* U+30C6 KATAKANA LETTER TE */
966 #define XKB_KEY_kana_TO                       0x04c4  /* U+30C8 KATAKANA LETTER TO */
967 #define XKB_KEY_kana_NA                       0x04c5  /* U+30CA KATAKANA LETTER NA */
968 #define XKB_KEY_kana_NI                       0x04c6  /* U+30CB KATAKANA LETTER NI */
969 #define XKB_KEY_kana_NU                       0x04c7  /* U+30CC KATAKANA LETTER NU */
970 #define XKB_KEY_kana_NE                       0x04c8  /* U+30CD KATAKANA LETTER NE */
971 #define XKB_KEY_kana_NO                       0x04c9  /* U+30CE KATAKANA LETTER NO */
972 #define XKB_KEY_kana_HA                       0x04ca  /* U+30CF KATAKANA LETTER HA */
973 #define XKB_KEY_kana_HI                       0x04cb  /* U+30D2 KATAKANA LETTER HI */
974 #define XKB_KEY_kana_FU                       0x04cc  /* U+30D5 KATAKANA LETTER HU */
975 #define XKB_KEY_kana_HU                       0x04cc  /* deprecated */
976 #define XKB_KEY_kana_HE                       0x04cd  /* U+30D8 KATAKANA LETTER HE */
977 #define XKB_KEY_kana_HO                       0x04ce  /* U+30DB KATAKANA LETTER HO */
978 #define XKB_KEY_kana_MA                       0x04cf  /* U+30DE KATAKANA LETTER MA */
979 #define XKB_KEY_kana_MI                       0x04d0  /* U+30DF KATAKANA LETTER MI */
980 #define XKB_KEY_kana_MU                       0x04d1  /* U+30E0 KATAKANA LETTER MU */
981 #define XKB_KEY_kana_ME                       0x04d2  /* U+30E1 KATAKANA LETTER ME */
982 #define XKB_KEY_kana_MO                       0x04d3  /* U+30E2 KATAKANA LETTER MO */
983 #define XKB_KEY_kana_YA                       0x04d4  /* U+30E4 KATAKANA LETTER YA */
984 #define XKB_KEY_kana_YU                       0x04d5  /* U+30E6 KATAKANA LETTER YU */
985 #define XKB_KEY_kana_YO                       0x04d6  /* U+30E8 KATAKANA LETTER YO */
986 #define XKB_KEY_kana_RA                       0x04d7  /* U+30E9 KATAKANA LETTER RA */
987 #define XKB_KEY_kana_RI                       0x04d8  /* U+30EA KATAKANA LETTER RI */
988 #define XKB_KEY_kana_RU                       0x04d9  /* U+30EB KATAKANA LETTER RU */
989 #define XKB_KEY_kana_RE                       0x04da  /* U+30EC KATAKANA LETTER RE */
990 #define XKB_KEY_kana_RO                       0x04db  /* U+30ED KATAKANA LETTER RO */
991 #define XKB_KEY_kana_WA                       0x04dc  /* U+30EF KATAKANA LETTER WA */
992 #define XKB_KEY_kana_N                        0x04dd  /* U+30F3 KATAKANA LETTER N */
993 #define XKB_KEY_voicedsound                   0x04de  /* U+309B KATAKANA-HIRAGANA VOICED SOUND MARK */
994 #define XKB_KEY_semivoicedsound               0x04df  /* U+309C KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK */
995 #define XKB_KEY_kana_switch                   0xff7e  /* Alias for mode_switch */
996
997 /*
998  * Arabic
999  * Byte 3 = 5
1000  */
1001
1002 #define XKB_KEY_Farsi_0                    0x10006f0  /* U+06F0 EXTENDED ARABIC-INDIC DIGIT ZERO */
1003 #define XKB_KEY_Farsi_1                    0x10006f1  /* U+06F1 EXTENDED ARABIC-INDIC DIGIT ONE */
1004 #define XKB_KEY_Farsi_2                    0x10006f2  /* U+06F2 EXTENDED ARABIC-INDIC DIGIT TWO */
1005 #define XKB_KEY_Farsi_3                    0x10006f3  /* U+06F3 EXTENDED ARABIC-INDIC DIGIT THREE */
1006 #define XKB_KEY_Farsi_4                    0x10006f4  /* U+06F4 EXTENDED ARABIC-INDIC DIGIT FOUR */
1007 #define XKB_KEY_Farsi_5                    0x10006f5  /* U+06F5 EXTENDED ARABIC-INDIC DIGIT FIVE */
1008 #define XKB_KEY_Farsi_6                    0x10006f6  /* U+06F6 EXTENDED ARABIC-INDIC DIGIT SIX */
1009 #define XKB_KEY_Farsi_7                    0x10006f7  /* U+06F7 EXTENDED ARABIC-INDIC DIGIT SEVEN */
1010 #define XKB_KEY_Farsi_8                    0x10006f8  /* U+06F8 EXTENDED ARABIC-INDIC DIGIT EIGHT */
1011 #define XKB_KEY_Farsi_9                    0x10006f9  /* U+06F9 EXTENDED ARABIC-INDIC DIGIT NINE */
1012 #define XKB_KEY_Arabic_percent             0x100066a  /* U+066A ARABIC PERCENT SIGN */
1013 #define XKB_KEY_Arabic_superscript_alef    0x1000670  /* U+0670 ARABIC LETTER SUPERSCRIPT ALEF */
1014 #define XKB_KEY_Arabic_tteh                0x1000679  /* U+0679 ARABIC LETTER TTEH */
1015 #define XKB_KEY_Arabic_peh                 0x100067e  /* U+067E ARABIC LETTER PEH */
1016 #define XKB_KEY_Arabic_tcheh               0x1000686  /* U+0686 ARABIC LETTER TCHEH */
1017 #define XKB_KEY_Arabic_ddal                0x1000688  /* U+0688 ARABIC LETTER DDAL */
1018 #define XKB_KEY_Arabic_rreh                0x1000691  /* U+0691 ARABIC LETTER RREH */
1019 #define XKB_KEY_Arabic_comma                  0x05ac  /* U+060C ARABIC COMMA */
1020 #define XKB_KEY_Arabic_fullstop            0x10006d4  /* U+06D4 ARABIC FULL STOP */
1021 #define XKB_KEY_Arabic_0                   0x1000660  /* U+0660 ARABIC-INDIC DIGIT ZERO */
1022 #define XKB_KEY_Arabic_1                   0x1000661  /* U+0661 ARABIC-INDIC DIGIT ONE */
1023 #define XKB_KEY_Arabic_2                   0x1000662  /* U+0662 ARABIC-INDIC DIGIT TWO */
1024 #define XKB_KEY_Arabic_3                   0x1000663  /* U+0663 ARABIC-INDIC DIGIT THREE */
1025 #define XKB_KEY_Arabic_4                   0x1000664  /* U+0664 ARABIC-INDIC DIGIT FOUR */
1026 #define XKB_KEY_Arabic_5                   0x1000665  /* U+0665 ARABIC-INDIC DIGIT FIVE */
1027 #define XKB_KEY_Arabic_6                   0x1000666  /* U+0666 ARABIC-INDIC DIGIT SIX */
1028 #define XKB_KEY_Arabic_7                   0x1000667  /* U+0667 ARABIC-INDIC DIGIT SEVEN */
1029 #define XKB_KEY_Arabic_8                   0x1000668  /* U+0668 ARABIC-INDIC DIGIT EIGHT */
1030 #define XKB_KEY_Arabic_9                   0x1000669  /* U+0669 ARABIC-INDIC DIGIT NINE */
1031 #define XKB_KEY_Arabic_semicolon              0x05bb  /* U+061B ARABIC SEMICOLON */
1032 #define XKB_KEY_Arabic_question_mark          0x05bf  /* U+061F ARABIC QUESTION MARK */
1033 #define XKB_KEY_Arabic_hamza                  0x05c1  /* U+0621 ARABIC LETTER HAMZA */
1034 #define XKB_KEY_Arabic_maddaonalef            0x05c2  /* U+0622 ARABIC LETTER ALEF WITH MADDA ABOVE */
1035 #define XKB_KEY_Arabic_hamzaonalef            0x05c3  /* U+0623 ARABIC LETTER ALEF WITH HAMZA ABOVE */
1036 #define XKB_KEY_Arabic_hamzaonwaw             0x05c4  /* U+0624 ARABIC LETTER WAW WITH HAMZA ABOVE */
1037 #define XKB_KEY_Arabic_hamzaunderalef         0x05c5  /* U+0625 ARABIC LETTER ALEF WITH HAMZA BELOW */
1038 #define XKB_KEY_Arabic_hamzaonyeh             0x05c6  /* U+0626 ARABIC LETTER YEH WITH HAMZA ABOVE */
1039 #define XKB_KEY_Arabic_alef                   0x05c7  /* U+0627 ARABIC LETTER ALEF */
1040 #define XKB_KEY_Arabic_beh                    0x05c8  /* U+0628 ARABIC LETTER BEH */
1041 #define XKB_KEY_Arabic_tehmarbuta             0x05c9  /* U+0629 ARABIC LETTER TEH MARBUTA */
1042 #define XKB_KEY_Arabic_teh                    0x05ca  /* U+062A ARABIC LETTER TEH */
1043 #define XKB_KEY_Arabic_theh                   0x05cb  /* U+062B ARABIC LETTER THEH */
1044 #define XKB_KEY_Arabic_jeem                   0x05cc  /* U+062C ARABIC LETTER JEEM */
1045 #define XKB_KEY_Arabic_hah                    0x05cd  /* U+062D ARABIC LETTER HAH */
1046 #define XKB_KEY_Arabic_khah                   0x05ce  /* U+062E ARABIC LETTER KHAH */
1047 #define XKB_KEY_Arabic_dal                    0x05cf  /* U+062F ARABIC LETTER DAL */
1048 #define XKB_KEY_Arabic_thal                   0x05d0  /* U+0630 ARABIC LETTER THAL */
1049 #define XKB_KEY_Arabic_ra                     0x05d1  /* U+0631 ARABIC LETTER REH */
1050 #define XKB_KEY_Arabic_zain                   0x05d2  /* U+0632 ARABIC LETTER ZAIN */
1051 #define XKB_KEY_Arabic_seen                   0x05d3  /* U+0633 ARABIC LETTER SEEN */
1052 #define XKB_KEY_Arabic_sheen                  0x05d4  /* U+0634 ARABIC LETTER SHEEN */
1053 #define XKB_KEY_Arabic_sad                    0x05d5  /* U+0635 ARABIC LETTER SAD */
1054 #define XKB_KEY_Arabic_dad                    0x05d6  /* U+0636 ARABIC LETTER DAD */
1055 #define XKB_KEY_Arabic_tah                    0x05d7  /* U+0637 ARABIC LETTER TAH */
1056 #define XKB_KEY_Arabic_zah                    0x05d8  /* U+0638 ARABIC LETTER ZAH */
1057 #define XKB_KEY_Arabic_ain                    0x05d9  /* U+0639 ARABIC LETTER AIN */
1058 #define XKB_KEY_Arabic_ghain                  0x05da  /* U+063A ARABIC LETTER GHAIN */
1059 #define XKB_KEY_Arabic_tatweel                0x05e0  /* U+0640 ARABIC TATWEEL */
1060 #define XKB_KEY_Arabic_feh                    0x05e1  /* U+0641 ARABIC LETTER FEH */
1061 #define XKB_KEY_Arabic_qaf                    0x05e2  /* U+0642 ARABIC LETTER QAF */
1062 #define XKB_KEY_Arabic_kaf                    0x05e3  /* U+0643 ARABIC LETTER KAF */
1063 #define XKB_KEY_Arabic_lam                    0x05e4  /* U+0644 ARABIC LETTER LAM */
1064 #define XKB_KEY_Arabic_meem                   0x05e5  /* U+0645 ARABIC LETTER MEEM */
1065 #define XKB_KEY_Arabic_noon                   0x05e6  /* U+0646 ARABIC LETTER NOON */
1066 #define XKB_KEY_Arabic_ha                     0x05e7  /* U+0647 ARABIC LETTER HEH */
1067 #define XKB_KEY_Arabic_heh                    0x05e7  /* deprecated */
1068 #define XKB_KEY_Arabic_waw                    0x05e8  /* U+0648 ARABIC LETTER WAW */
1069 #define XKB_KEY_Arabic_alefmaksura            0x05e9  /* U+0649 ARABIC LETTER ALEF MAKSURA */
1070 #define XKB_KEY_Arabic_yeh                    0x05ea  /* U+064A ARABIC LETTER YEH */
1071 #define XKB_KEY_Arabic_fathatan               0x05eb  /* U+064B ARABIC FATHATAN */
1072 #define XKB_KEY_Arabic_dammatan               0x05ec  /* U+064C ARABIC DAMMATAN */
1073 #define XKB_KEY_Arabic_kasratan               0x05ed  /* U+064D ARABIC KASRATAN */
1074 #define XKB_KEY_Arabic_fatha                  0x05ee  /* U+064E ARABIC FATHA */
1075 #define XKB_KEY_Arabic_damma                  0x05ef  /* U+064F ARABIC DAMMA */
1076 #define XKB_KEY_Arabic_kasra                  0x05f0  /* U+0650 ARABIC KASRA */
1077 #define XKB_KEY_Arabic_shadda                 0x05f1  /* U+0651 ARABIC SHADDA */
1078 #define XKB_KEY_Arabic_sukun                  0x05f2  /* U+0652 ARABIC SUKUN */
1079 #define XKB_KEY_Arabic_madda_above         0x1000653  /* U+0653 ARABIC MADDAH ABOVE */
1080 #define XKB_KEY_Arabic_hamza_above         0x1000654  /* U+0654 ARABIC HAMZA ABOVE */
1081 #define XKB_KEY_Arabic_hamza_below         0x1000655  /* U+0655 ARABIC HAMZA BELOW */
1082 #define XKB_KEY_Arabic_jeh                 0x1000698  /* U+0698 ARABIC LETTER JEH */
1083 #define XKB_KEY_Arabic_veh                 0x10006a4  /* U+06A4 ARABIC LETTER VEH */
1084 #define XKB_KEY_Arabic_keheh               0x10006a9  /* U+06A9 ARABIC LETTER KEHEH */
1085 #define XKB_KEY_Arabic_gaf                 0x10006af  /* U+06AF ARABIC LETTER GAF */
1086 #define XKB_KEY_Arabic_noon_ghunna         0x10006ba  /* U+06BA ARABIC LETTER NOON GHUNNA */
1087 #define XKB_KEY_Arabic_heh_doachashmee     0x10006be  /* U+06BE ARABIC LETTER HEH DOACHASHMEE */
1088 #define XKB_KEY_Farsi_yeh                  0x10006cc  /* U+06CC ARABIC LETTER FARSI YEH */
1089 #define XKB_KEY_Arabic_farsi_yeh           0x10006cc  /* U+06CC ARABIC LETTER FARSI YEH */
1090 #define XKB_KEY_Arabic_yeh_baree           0x10006d2  /* U+06D2 ARABIC LETTER YEH BARREE */
1091 #define XKB_KEY_Arabic_heh_goal            0x10006c1  /* U+06C1 ARABIC LETTER HEH GOAL */
1092 #define XKB_KEY_Arabic_switch                 0xff7e  /* Alias for mode_switch */
1093
1094 /*
1095  * Cyrillic
1096  * Byte 3 = 6
1097  */
1098 #define XKB_KEY_Cyrillic_GHE_bar           0x1000492  /* U+0492 CYRILLIC CAPITAL LETTER GHE WITH STROKE */
1099 #define XKB_KEY_Cyrillic_ghe_bar           0x1000493  /* U+0493 CYRILLIC SMALL LETTER GHE WITH STROKE */
1100 #define XKB_KEY_Cyrillic_ZHE_descender     0x1000496  /* U+0496 CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER */
1101 #define XKB_KEY_Cyrillic_zhe_descender     0x1000497  /* U+0497 CYRILLIC SMALL LETTER ZHE WITH DESCENDER */
1102 #define XKB_KEY_Cyrillic_KA_descender      0x100049a  /* U+049A CYRILLIC CAPITAL LETTER KA WITH DESCENDER */
1103 #define XKB_KEY_Cyrillic_ka_descender      0x100049b  /* U+049B CYRILLIC SMALL LETTER KA WITH DESCENDER */
1104 #define XKB_KEY_Cyrillic_KA_vertstroke     0x100049c  /* U+049C CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE */
1105 #define XKB_KEY_Cyrillic_ka_vertstroke     0x100049d  /* U+049D CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE */
1106 #define XKB_KEY_Cyrillic_EN_descender      0x10004a2  /* U+04A2 CYRILLIC CAPITAL LETTER EN WITH DESCENDER */
1107 #define XKB_KEY_Cyrillic_en_descender      0x10004a3  /* U+04A3 CYRILLIC SMALL LETTER EN WITH DESCENDER */
1108 #define XKB_KEY_Cyrillic_U_straight        0x10004ae  /* U+04AE CYRILLIC CAPITAL LETTER STRAIGHT U */
1109 #define XKB_KEY_Cyrillic_u_straight        0x10004af  /* U+04AF CYRILLIC SMALL LETTER STRAIGHT U */
1110 #define XKB_KEY_Cyrillic_U_straight_bar    0x10004b0  /* U+04B0 CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE */
1111 #define XKB_KEY_Cyrillic_u_straight_bar    0x10004b1  /* U+04B1 CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE */
1112 #define XKB_KEY_Cyrillic_HA_descender      0x10004b2  /* U+04B2 CYRILLIC CAPITAL LETTER HA WITH DESCENDER */
1113 #define XKB_KEY_Cyrillic_ha_descender      0x10004b3  /* U+04B3 CYRILLIC SMALL LETTER HA WITH DESCENDER */
1114 #define XKB_KEY_Cyrillic_CHE_descender     0x10004b6  /* U+04B6 CYRILLIC CAPITAL LETTER CHE WITH DESCENDER */
1115 #define XKB_KEY_Cyrillic_che_descender     0x10004b7  /* U+04B7 CYRILLIC SMALL LETTER CHE WITH DESCENDER */
1116 #define XKB_KEY_Cyrillic_CHE_vertstroke    0x10004b8  /* U+04B8 CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE */
1117 #define XKB_KEY_Cyrillic_che_vertstroke    0x10004b9  /* U+04B9 CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE */
1118 #define XKB_KEY_Cyrillic_SHHA              0x10004ba  /* U+04BA CYRILLIC CAPITAL LETTER SHHA */
1119 #define XKB_KEY_Cyrillic_shha              0x10004bb  /* U+04BB CYRILLIC SMALL LETTER SHHA */
1120
1121 #define XKB_KEY_Cyrillic_SCHWA             0x10004d8  /* U+04D8 CYRILLIC CAPITAL LETTER SCHWA */
1122 #define XKB_KEY_Cyrillic_schwa             0x10004d9  /* U+04D9 CYRILLIC SMALL LETTER SCHWA */
1123 #define XKB_KEY_Cyrillic_I_macron          0x10004e2  /* U+04E2 CYRILLIC CAPITAL LETTER I WITH MACRON */
1124 #define XKB_KEY_Cyrillic_i_macron          0x10004e3  /* U+04E3 CYRILLIC SMALL LETTER I WITH MACRON */
1125 #define XKB_KEY_Cyrillic_O_bar             0x10004e8  /* U+04E8 CYRILLIC CAPITAL LETTER BARRED O */
1126 #define XKB_KEY_Cyrillic_o_bar             0x10004e9  /* U+04E9 CYRILLIC SMALL LETTER BARRED O */
1127 #define XKB_KEY_Cyrillic_U_macron          0x10004ee  /* U+04EE CYRILLIC CAPITAL LETTER U WITH MACRON */
1128 #define XKB_KEY_Cyrillic_u_macron          0x10004ef  /* U+04EF CYRILLIC SMALL LETTER U WITH MACRON */
1129
1130 #define XKB_KEY_Serbian_dje                   0x06a1  /* U+0452 CYRILLIC SMALL LETTER DJE */
1131 #define XKB_KEY_Macedonia_gje                 0x06a2  /* U+0453 CYRILLIC SMALL LETTER GJE */
1132 #define XKB_KEY_Cyrillic_io                   0x06a3  /* U+0451 CYRILLIC SMALL LETTER IO */
1133 #define XKB_KEY_Ukrainian_ie                  0x06a4  /* U+0454 CYRILLIC SMALL LETTER UKRAINIAN IE */
1134 #define XKB_KEY_Ukranian_je                   0x06a4  /* deprecated */
1135 #define XKB_KEY_Macedonia_dse                 0x06a5  /* U+0455 CYRILLIC SMALL LETTER DZE */
1136 #define XKB_KEY_Ukrainian_i                   0x06a6  /* U+0456 CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I */
1137 #define XKB_KEY_Ukranian_i                    0x06a6  /* deprecated */
1138 #define XKB_KEY_Ukrainian_yi                  0x06a7  /* U+0457 CYRILLIC SMALL LETTER YI */
1139 #define XKB_KEY_Ukranian_yi                   0x06a7  /* deprecated */
1140 #define XKB_KEY_Cyrillic_je                   0x06a8  /* U+0458 CYRILLIC SMALL LETTER JE */
1141 #define XKB_KEY_Serbian_je                    0x06a8  /* deprecated */
1142 #define XKB_KEY_Cyrillic_lje                  0x06a9  /* U+0459 CYRILLIC SMALL LETTER LJE */
1143 #define XKB_KEY_Serbian_lje                   0x06a9  /* deprecated */
1144 #define XKB_KEY_Cyrillic_nje                  0x06aa  /* U+045A CYRILLIC SMALL LETTER NJE */
1145 #define XKB_KEY_Serbian_nje                   0x06aa  /* deprecated */
1146 #define XKB_KEY_Serbian_tshe                  0x06ab  /* U+045B CYRILLIC SMALL LETTER TSHE */
1147 #define XKB_KEY_Macedonia_kje                 0x06ac  /* U+045C CYRILLIC SMALL LETTER KJE */
1148 #define XKB_KEY_Ukrainian_ghe_with_upturn     0x06ad  /* U+0491 CYRILLIC SMALL LETTER GHE WITH UPTURN */
1149 #define XKB_KEY_Byelorussian_shortu           0x06ae  /* U+045E CYRILLIC SMALL LETTER SHORT U */
1150 #define XKB_KEY_Cyrillic_dzhe                 0x06af  /* U+045F CYRILLIC SMALL LETTER DZHE */
1151 #define XKB_KEY_Serbian_dze                   0x06af  /* deprecated */
1152 #define XKB_KEY_numerosign                    0x06b0  /* U+2116 NUMERO SIGN */
1153 #define XKB_KEY_Serbian_DJE                   0x06b1  /* U+0402 CYRILLIC CAPITAL LETTER DJE */
1154 #define XKB_KEY_Macedonia_GJE                 0x06b2  /* U+0403 CYRILLIC CAPITAL LETTER GJE */
1155 #define XKB_KEY_Cyrillic_IO                   0x06b3  /* U+0401 CYRILLIC CAPITAL LETTER IO */
1156 #define XKB_KEY_Ukrainian_IE                  0x06b4  /* U+0404 CYRILLIC CAPITAL LETTER UKRAINIAN IE */
1157 #define XKB_KEY_Ukranian_JE                   0x06b4  /* deprecated */
1158 #define XKB_KEY_Macedonia_DSE                 0x06b5  /* U+0405 CYRILLIC CAPITAL LETTER DZE */
1159 #define XKB_KEY_Ukrainian_I                   0x06b6  /* U+0406 CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I */
1160 #define XKB_KEY_Ukranian_I                    0x06b6  /* deprecated */
1161 #define XKB_KEY_Ukrainian_YI                  0x06b7  /* U+0407 CYRILLIC CAPITAL LETTER YI */
1162 #define XKB_KEY_Ukranian_YI                   0x06b7  /* deprecated */
1163 #define XKB_KEY_Cyrillic_JE                   0x06b8  /* U+0408 CYRILLIC CAPITAL LETTER JE */
1164 #define XKB_KEY_Serbian_JE                    0x06b8  /* deprecated */
1165 #define XKB_KEY_Cyrillic_LJE                  0x06b9  /* U+0409 CYRILLIC CAPITAL LETTER LJE */
1166 #define XKB_KEY_Serbian_LJE                   0x06b9  /* deprecated */
1167 #define XKB_KEY_Cyrillic_NJE                  0x06ba  /* U+040A CYRILLIC CAPITAL LETTER NJE */
1168 #define XKB_KEY_Serbian_NJE                   0x06ba  /* deprecated */
1169 #define XKB_KEY_Serbian_TSHE                  0x06bb  /* U+040B CYRILLIC CAPITAL LETTER TSHE */
1170 #define XKB_KEY_Macedonia_KJE                 0x06bc  /* U+040C CYRILLIC CAPITAL LETTER KJE */
1171 #define XKB_KEY_Ukrainian_GHE_WITH_UPTURN     0x06bd  /* U+0490 CYRILLIC CAPITAL LETTER GHE WITH UPTURN */
1172 #define XKB_KEY_Byelorussian_SHORTU           0x06be  /* U+040E CYRILLIC CAPITAL LETTER SHORT U */
1173 #define XKB_KEY_Cyrillic_DZHE                 0x06bf  /* U+040F CYRILLIC CAPITAL LETTER DZHE */
1174 #define XKB_KEY_Serbian_DZE                   0x06bf  /* deprecated */
1175 #define XKB_KEY_Cyrillic_yu                   0x06c0  /* U+044E CYRILLIC SMALL LETTER YU */
1176 #define XKB_KEY_Cyrillic_a                    0x06c1  /* U+0430 CYRILLIC SMALL LETTER A */
1177 #define XKB_KEY_Cyrillic_be                   0x06c2  /* U+0431 CYRILLIC SMALL LETTER BE */
1178 #define XKB_KEY_Cyrillic_tse                  0x06c3  /* U+0446 CYRILLIC SMALL LETTER TSE */
1179 #define XKB_KEY_Cyrillic_de                   0x06c4  /* U+0434 CYRILLIC SMALL LETTER DE */
1180 #define XKB_KEY_Cyrillic_ie                   0x06c5  /* U+0435 CYRILLIC SMALL LETTER IE */
1181 #define XKB_KEY_Cyrillic_ef                   0x06c6  /* U+0444 CYRILLIC SMALL LETTER EF */
1182 #define XKB_KEY_Cyrillic_ghe                  0x06c7  /* U+0433 CYRILLIC SMALL LETTER GHE */
1183 #define XKB_KEY_Cyrillic_ha                   0x06c8  /* U+0445 CYRILLIC SMALL LETTER HA */
1184 #define XKB_KEY_Cyrillic_i                    0x06c9  /* U+0438 CYRILLIC SMALL LETTER I */
1185 #define XKB_KEY_Cyrillic_shorti               0x06ca  /* U+0439 CYRILLIC SMALL LETTER SHORT I */
1186 #define XKB_KEY_Cyrillic_ka                   0x06cb  /* U+043A CYRILLIC SMALL LETTER KA */
1187 #define XKB_KEY_Cyrillic_el                   0x06cc  /* U+043B CYRILLIC SMALL LETTER EL */
1188 #define XKB_KEY_Cyrillic_em                   0x06cd  /* U+043C CYRILLIC SMALL LETTER EM */
1189 #define XKB_KEY_Cyrillic_en                   0x06ce  /* U+043D CYRILLIC SMALL LETTER EN */
1190 #define XKB_KEY_Cyrillic_o                    0x06cf  /* U+043E CYRILLIC SMALL LETTER O */
1191 #define XKB_KEY_Cyrillic_pe                   0x06d0  /* U+043F CYRILLIC SMALL LETTER PE */
1192 #define XKB_KEY_Cyrillic_ya                   0x06d1  /* U+044F CYRILLIC SMALL LETTER YA */
1193 #define XKB_KEY_Cyrillic_er                   0x06d2  /* U+0440 CYRILLIC SMALL LETTER ER */
1194 #define XKB_KEY_Cyrillic_es                   0x06d3  /* U+0441 CYRILLIC SMALL LETTER ES */
1195 #define XKB_KEY_Cyrillic_te                   0x06d4  /* U+0442 CYRILLIC SMALL LETTER TE */
1196 #define XKB_KEY_Cyrillic_u                    0x06d5  /* U+0443 CYRILLIC SMALL LETTER U */
1197 #define XKB_KEY_Cyrillic_zhe                  0x06d6  /* U+0436 CYRILLIC SMALL LETTER ZHE */
1198 #define XKB_KEY_Cyrillic_ve                   0x06d7  /* U+0432 CYRILLIC SMALL LETTER VE */
1199 #define XKB_KEY_Cyrillic_softsign             0x06d8  /* U+044C CYRILLIC SMALL LETTER SOFT SIGN */
1200 #define XKB_KEY_Cyrillic_yeru                 0x06d9  /* U+044B CYRILLIC SMALL LETTER YERU */
1201 #define XKB_KEY_Cyrillic_ze                   0x06da  /* U+0437 CYRILLIC SMALL LETTER ZE */
1202 #define XKB_KEY_Cyrillic_sha                  0x06db  /* U+0448 CYRILLIC SMALL LETTER SHA */
1203 #define XKB_KEY_Cyrillic_e                    0x06dc  /* U+044D CYRILLIC SMALL LETTER E */
1204 #define XKB_KEY_Cyrillic_shcha                0x06dd  /* U+0449 CYRILLIC SMALL LETTER SHCHA */
1205 #define XKB_KEY_Cyrillic_che                  0x06de  /* U+0447 CYRILLIC SMALL LETTER CHE */
1206 #define XKB_KEY_Cyrillic_hardsign             0x06df  /* U+044A CYRILLIC SMALL LETTER HARD SIGN */
1207 #define XKB_KEY_Cyrillic_YU                   0x06e0  /* U+042E CYRILLIC CAPITAL LETTER YU */
1208 #define XKB_KEY_Cyrillic_A                    0x06e1  /* U+0410 CYRILLIC CAPITAL LETTER A */
1209 #define XKB_KEY_Cyrillic_BE                   0x06e2  /* U+0411 CYRILLIC CAPITAL LETTER BE */
1210 #define XKB_KEY_Cyrillic_TSE                  0x06e3  /* U+0426 CYRILLIC CAPITAL LETTER TSE */
1211 #define XKB_KEY_Cyrillic_DE                   0x06e4  /* U+0414 CYRILLIC CAPITAL LETTER DE */
1212 #define XKB_KEY_Cyrillic_IE                   0x06e5  /* U+0415 CYRILLIC CAPITAL LETTER IE */
1213 #define XKB_KEY_Cyrillic_EF                   0x06e6  /* U+0424 CYRILLIC CAPITAL LETTER EF */
1214 #define XKB_KEY_Cyrillic_GHE                  0x06e7  /* U+0413 CYRILLIC CAPITAL LETTER GHE */
1215 #define XKB_KEY_Cyrillic_HA                   0x06e8  /* U+0425 CYRILLIC CAPITAL LETTER HA */
1216 #define XKB_KEY_Cyrillic_I                    0x06e9  /* U+0418 CYRILLIC CAPITAL LETTER I */
1217 #define XKB_KEY_Cyrillic_SHORTI               0x06ea  /* U+0419 CYRILLIC CAPITAL LETTER SHORT I */
1218 #define XKB_KEY_Cyrillic_KA                   0x06eb  /* U+041A CYRILLIC CAPITAL LETTER KA */
1219 #define XKB_KEY_Cyrillic_EL                   0x06ec  /* U+041B CYRILLIC CAPITAL LETTER EL */
1220 #define XKB_KEY_Cyrillic_EM                   0x06ed  /* U+041C CYRILLIC CAPITAL LETTER EM */
1221 #define XKB_KEY_Cyrillic_EN                   0x06ee  /* U+041D CYRILLIC CAPITAL LETTER EN */
1222 #define XKB_KEY_Cyrillic_O                    0x06ef  /* U+041E CYRILLIC CAPITAL LETTER O */
1223 #define XKB_KEY_Cyrillic_PE                   0x06f0  /* U+041F CYRILLIC CAPITAL LETTER PE */
1224 #define XKB_KEY_Cyrillic_YA                   0x06f1  /* U+042F CYRILLIC CAPITAL LETTER YA */
1225 #define XKB_KEY_Cyrillic_ER                   0x06f2  /* U+0420 CYRILLIC CAPITAL LETTER ER */
1226 #define XKB_KEY_Cyrillic_ES                   0x06f3  /* U+0421 CYRILLIC CAPITAL LETTER ES */
1227 #define XKB_KEY_Cyrillic_TE                   0x06f4  /* U+0422 CYRILLIC CAPITAL LETTER TE */
1228 #define XKB_KEY_Cyrillic_U                    0x06f5  /* U+0423 CYRILLIC CAPITAL LETTER U */
1229 #define XKB_KEY_Cyrillic_ZHE                  0x06f6  /* U+0416 CYRILLIC CAPITAL LETTER ZHE */
1230 #define XKB_KEY_Cyrillic_VE                   0x06f7  /* U+0412 CYRILLIC CAPITAL LETTER VE */
1231 #define XKB_KEY_Cyrillic_SOFTSIGN             0x06f8  /* U+042C CYRILLIC CAPITAL LETTER SOFT SIGN */
1232 #define XKB_KEY_Cyrillic_YERU                 0x06f9  /* U+042B CYRILLIC CAPITAL LETTER YERU */
1233 #define XKB_KEY_Cyrillic_ZE                   0x06fa  /* U+0417 CYRILLIC CAPITAL LETTER ZE */
1234 #define XKB_KEY_Cyrillic_SHA                  0x06fb  /* U+0428 CYRILLIC CAPITAL LETTER SHA */
1235 #define XKB_KEY_Cyrillic_E                    0x06fc  /* U+042D CYRILLIC CAPITAL LETTER E */
1236 #define XKB_KEY_Cyrillic_SHCHA                0x06fd  /* U+0429 CYRILLIC CAPITAL LETTER SHCHA */
1237 #define XKB_KEY_Cyrillic_CHE                  0x06fe  /* U+0427 CYRILLIC CAPITAL LETTER CHE */
1238 #define XKB_KEY_Cyrillic_HARDSIGN             0x06ff  /* U+042A CYRILLIC CAPITAL LETTER HARD SIGN */
1239
1240 /*
1241  * Greek
1242  * (based on an early draft of, and not quite identical to, ISO/IEC 8859-7)
1243  * Byte 3 = 7
1244  */
1245
1246 #define XKB_KEY_Greek_ALPHAaccent             0x07a1  /* U+0386 GREEK CAPITAL LETTER ALPHA WITH TONOS */
1247 #define XKB_KEY_Greek_EPSILONaccent           0x07a2  /* U+0388 GREEK CAPITAL LETTER EPSILON WITH TONOS */
1248 #define XKB_KEY_Greek_ETAaccent               0x07a3  /* U+0389 GREEK CAPITAL LETTER ETA WITH TONOS */
1249 #define XKB_KEY_Greek_IOTAaccent              0x07a4  /* U+038A GREEK CAPITAL LETTER IOTA WITH TONOS */
1250 #define XKB_KEY_Greek_IOTAdieresis            0x07a5  /* U+03AA GREEK CAPITAL LETTER IOTA WITH DIALYTIKA */
1251 #define XKB_KEY_Greek_IOTAdiaeresis           0x07a5  /* old typo */
1252 #define XKB_KEY_Greek_OMICRONaccent           0x07a7  /* U+038C GREEK CAPITAL LETTER OMICRON WITH TONOS */
1253 #define XKB_KEY_Greek_UPSILONaccent           0x07a8  /* U+038E GREEK CAPITAL LETTER UPSILON WITH TONOS */
1254 #define XKB_KEY_Greek_UPSILONdieresis         0x07a9  /* U+03AB GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA */
1255 #define XKB_KEY_Greek_OMEGAaccent             0x07ab  /* U+038F GREEK CAPITAL LETTER OMEGA WITH TONOS */
1256 #define XKB_KEY_Greek_accentdieresis          0x07ae  /* U+0385 GREEK DIALYTIKA TONOS */
1257 #define XKB_KEY_Greek_horizbar                0x07af  /* U+2015 HORIZONTAL BAR */
1258 #define XKB_KEY_Greek_alphaaccent             0x07b1  /* U+03AC GREEK SMALL LETTER ALPHA WITH TONOS */
1259 #define XKB_KEY_Greek_epsilonaccent           0x07b2  /* U+03AD GREEK SMALL LETTER EPSILON WITH TONOS */
1260 #define XKB_KEY_Greek_etaaccent               0x07b3  /* U+03AE GREEK SMALL LETTER ETA WITH TONOS */
1261 #define XKB_KEY_Greek_iotaaccent              0x07b4  /* U+03AF GREEK SMALL LETTER IOTA WITH TONOS */
1262 #define XKB_KEY_Greek_iotadieresis            0x07b5  /* U+03CA GREEK SMALL LETTER IOTA WITH DIALYTIKA */
1263 #define XKB_KEY_Greek_iotaaccentdieresis      0x07b6  /* U+0390 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS */
1264 #define XKB_KEY_Greek_omicronaccent           0x07b7  /* U+03CC GREEK SMALL LETTER OMICRON WITH TONOS */
1265 #define XKB_KEY_Greek_upsilonaccent           0x07b8  /* U+03CD GREEK SMALL LETTER UPSILON WITH TONOS */
1266 #define XKB_KEY_Greek_upsilondieresis         0x07b9  /* U+03CB GREEK SMALL LETTER UPSILON WITH DIALYTIKA */
1267 #define XKB_KEY_Greek_upsilonaccentdieresis   0x07ba  /* U+03B0 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS */
1268 #define XKB_KEY_Greek_omegaaccent             0x07bb  /* U+03CE GREEK SMALL LETTER OMEGA WITH TONOS */
1269 #define XKB_KEY_Greek_ALPHA                   0x07c1  /* U+0391 GREEK CAPITAL LETTER ALPHA */
1270 #define XKB_KEY_Greek_BETA                    0x07c2  /* U+0392 GREEK CAPITAL LETTER BETA */
1271 #define XKB_KEY_Greek_GAMMA                   0x07c3  /* U+0393 GREEK CAPITAL LETTER GAMMA */
1272 #define XKB_KEY_Greek_DELTA                   0x07c4  /* U+0394 GREEK CAPITAL LETTER DELTA */
1273 #define XKB_KEY_Greek_EPSILON                 0x07c5  /* U+0395 GREEK CAPITAL LETTER EPSILON */
1274 #define XKB_KEY_Greek_ZETA                    0x07c6  /* U+0396 GREEK CAPITAL LETTER ZETA */
1275 #define XKB_KEY_Greek_ETA                     0x07c7  /* U+0397 GREEK CAPITAL LETTER ETA */
1276 #define XKB_KEY_Greek_THETA                   0x07c8  /* U+0398 GREEK CAPITAL LETTER THETA */
1277 #define XKB_KEY_Greek_IOTA                    0x07c9  /* U+0399 GREEK CAPITAL LETTER IOTA */
1278 #define XKB_KEY_Greek_KAPPA                   0x07ca  /* U+039A GREEK CAPITAL LETTER KAPPA */
1279 #define XKB_KEY_Greek_LAMDA                   0x07cb  /* U+039B GREEK CAPITAL LETTER LAMDA */
1280 #define XKB_KEY_Greek_LAMBDA                  0x07cb  /* U+039B GREEK CAPITAL LETTER LAMDA */
1281 #define XKB_KEY_Greek_MU                      0x07cc  /* U+039C GREEK CAPITAL LETTER MU */
1282 #define XKB_KEY_Greek_NU                      0x07cd  /* U+039D GREEK CAPITAL LETTER NU */
1283 #define XKB_KEY_Greek_XI                      0x07ce  /* U+039E GREEK CAPITAL LETTER XI */
1284 #define XKB_KEY_Greek_OMICRON                 0x07cf  /* U+039F GREEK CAPITAL LETTER OMICRON */
1285 #define XKB_KEY_Greek_PI                      0x07d0  /* U+03A0 GREEK CAPITAL LETTER PI */
1286 #define XKB_KEY_Greek_RHO                     0x07d1  /* U+03A1 GREEK CAPITAL LETTER RHO */
1287 #define XKB_KEY_Greek_SIGMA                   0x07d2  /* U+03A3 GREEK CAPITAL LETTER SIGMA */
1288 #define XKB_KEY_Greek_TAU                     0x07d4  /* U+03A4 GREEK CAPITAL LETTER TAU */
1289 #define XKB_KEY_Greek_UPSILON                 0x07d5  /* U+03A5 GREEK CAPITAL LETTER UPSILON */
1290 #define XKB_KEY_Greek_PHI                     0x07d6  /* U+03A6 GREEK CAPITAL LETTER PHI */
1291 #define XKB_KEY_Greek_CHI                     0x07d7  /* U+03A7 GREEK CAPITAL LETTER CHI */
1292 #define XKB_KEY_Greek_PSI                     0x07d8  /* U+03A8 GREEK CAPITAL LETTER PSI */
1293 #define XKB_KEY_Greek_OMEGA                   0x07d9  /* U+03A9 GREEK CAPITAL LETTER OMEGA */
1294 #define XKB_KEY_Greek_alpha                   0x07e1  /* U+03B1 GREEK SMALL LETTER ALPHA */
1295 #define XKB_KEY_Greek_beta                    0x07e2  /* U+03B2 GREEK SMALL LETTER BETA */
1296 #define XKB_KEY_Greek_gamma                   0x07e3  /* U+03B3 GREEK SMALL LETTER GAMMA */
1297 #define XKB_KEY_Greek_delta                   0x07e4  /* U+03B4 GREEK SMALL LETTER DELTA */
1298 #define XKB_KEY_Greek_epsilon                 0x07e5  /* U+03B5 GREEK SMALL LETTER EPSILON */
1299 #define XKB_KEY_Greek_zeta                    0x07e6  /* U+03B6 GREEK SMALL LETTER ZETA */
1300 #define XKB_KEY_Greek_eta                     0x07e7  /* U+03B7 GREEK SMALL LETTER ETA */
1301 #define XKB_KEY_Greek_theta                   0x07e8  /* U+03B8 GREEK SMALL LETTER THETA */
1302 #define XKB_KEY_Greek_iota                    0x07e9  /* U+03B9 GREEK SMALL LETTER IOTA */
1303 #define XKB_KEY_Greek_kappa                   0x07ea  /* U+03BA GREEK SMALL LETTER KAPPA */
1304 #define XKB_KEY_Greek_lamda                   0x07eb  /* U+03BB GREEK SMALL LETTER LAMDA */
1305 #define XKB_KEY_Greek_lambda                  0x07eb  /* U+03BB GREEK SMALL LETTER LAMDA */
1306 #define XKB_KEY_Greek_mu                      0x07ec  /* U+03BC GREEK SMALL LETTER MU */
1307 #define XKB_KEY_Greek_nu                      0x07ed  /* U+03BD GREEK SMALL LETTER NU */
1308 #define XKB_KEY_Greek_xi                      0x07ee  /* U+03BE GREEK SMALL LETTER XI */
1309 #define XKB_KEY_Greek_omicron                 0x07ef  /* U+03BF GREEK SMALL LETTER OMICRON */
1310 #define XKB_KEY_Greek_pi                      0x07f0  /* U+03C0 GREEK SMALL LETTER PI */
1311 #define XKB_KEY_Greek_rho                     0x07f1  /* U+03C1 GREEK SMALL LETTER RHO */
1312 #define XKB_KEY_Greek_sigma                   0x07f2  /* U+03C3 GREEK SMALL LETTER SIGMA */
1313 #define XKB_KEY_Greek_finalsmallsigma         0x07f3  /* U+03C2 GREEK SMALL LETTER FINAL SIGMA */
1314 #define XKB_KEY_Greek_tau                     0x07f4  /* U+03C4 GREEK SMALL LETTER TAU */
1315 #define XKB_KEY_Greek_upsilon                 0x07f5  /* U+03C5 GREEK SMALL LETTER UPSILON */
1316 #define XKB_KEY_Greek_phi                     0x07f6  /* U+03C6 GREEK SMALL LETTER PHI */
1317 #define XKB_KEY_Greek_chi                     0x07f7  /* U+03C7 GREEK SMALL LETTER CHI */
1318 #define XKB_KEY_Greek_psi                     0x07f8  /* U+03C8 GREEK SMALL LETTER PSI */
1319 #define XKB_KEY_Greek_omega                   0x07f9  /* U+03C9 GREEK SMALL LETTER OMEGA */
1320 #define XKB_KEY_Greek_switch                  0xff7e  /* Alias for mode_switch */
1321
1322 /*
1323  * Technical
1324  * (from the DEC VT330/VT420 Technical Character Set, http://vt100.net/charsets/technical.html)
1325  * Byte 3 = 8
1326  */
1327
1328 #define XKB_KEY_leftradical                   0x08a1  /* U+23B7 RADICAL SYMBOL BOTTOM */
1329 #define XKB_KEY_topleftradical                0x08a2  /*(U+250C BOX DRAWINGS LIGHT DOWN AND RIGHT)*/
1330 #define XKB_KEY_horizconnector                0x08a3  /*(U+2500 BOX DRAWINGS LIGHT HORIZONTAL)*/
1331 #define XKB_KEY_topintegral                   0x08a4  /* U+2320 TOP HALF INTEGRAL */
1332 #define XKB_KEY_botintegral                   0x08a5  /* U+2321 BOTTOM HALF INTEGRAL */
1333 #define XKB_KEY_vertconnector                 0x08a6  /*(U+2502 BOX DRAWINGS LIGHT VERTICAL)*/
1334 #define XKB_KEY_topleftsqbracket              0x08a7  /* U+23A1 LEFT SQUARE BRACKET UPPER CORNER */
1335 #define XKB_KEY_botleftsqbracket              0x08a8  /* U+23A3 LEFT SQUARE BRACKET LOWER CORNER */
1336 #define XKB_KEY_toprightsqbracket             0x08a9  /* U+23A4 RIGHT SQUARE BRACKET UPPER CORNER */
1337 #define XKB_KEY_botrightsqbracket             0x08aa  /* U+23A6 RIGHT SQUARE BRACKET LOWER CORNER */
1338 #define XKB_KEY_topleftparens                 0x08ab  /* U+239B LEFT PARENTHESIS UPPER HOOK */
1339 #define XKB_KEY_botleftparens                 0x08ac  /* U+239D LEFT PARENTHESIS LOWER HOOK */
1340 #define XKB_KEY_toprightparens                0x08ad  /* U+239E RIGHT PARENTHESIS UPPER HOOK */
1341 #define XKB_KEY_botrightparens                0x08ae  /* U+23A0 RIGHT PARENTHESIS LOWER HOOK */
1342 #define XKB_KEY_leftmiddlecurlybrace          0x08af  /* U+23A8 LEFT CURLY BRACKET MIDDLE PIECE */
1343 #define XKB_KEY_rightmiddlecurlybrace         0x08b0  /* U+23AC RIGHT CURLY BRACKET MIDDLE PIECE */
1344 #define XKB_KEY_topleftsummation              0x08b1
1345 #define XKB_KEY_botleftsummation              0x08b2
1346 #define XKB_KEY_topvertsummationconnector     0x08b3
1347 #define XKB_KEY_botvertsummationconnector     0x08b4
1348 #define XKB_KEY_toprightsummation             0x08b5
1349 #define XKB_KEY_botrightsummation             0x08b6
1350 #define XKB_KEY_rightmiddlesummation          0x08b7
1351 #define XKB_KEY_lessthanequal                 0x08bc  /* U+2264 LESS-THAN OR EQUAL TO */
1352 #define XKB_KEY_notequal                      0x08bd  /* U+2260 NOT EQUAL TO */
1353 #define XKB_KEY_greaterthanequal              0x08be  /* U+2265 GREATER-THAN OR EQUAL TO */
1354 #define XKB_KEY_integral                      0x08bf  /* U+222B INTEGRAL */
1355 #define XKB_KEY_therefore                     0x08c0  /* U+2234 THEREFORE */
1356 #define XKB_KEY_variation                     0x08c1  /* U+221D PROPORTIONAL TO */
1357 #define XKB_KEY_infinity                      0x08c2  /* U+221E INFINITY */
1358 #define XKB_KEY_nabla                         0x08c5  /* U+2207 NABLA */
1359 #define XKB_KEY_approximate                   0x08c8  /* U+223C TILDE OPERATOR */
1360 #define XKB_KEY_similarequal                  0x08c9  /* U+2243 ASYMPTOTICALLY EQUAL TO */
1361 #define XKB_KEY_ifonlyif                      0x08cd  /* U+21D4 LEFT RIGHT DOUBLE ARROW */
1362 #define XKB_KEY_implies                       0x08ce  /* U+21D2 RIGHTWARDS DOUBLE ARROW */
1363 #define XKB_KEY_identical                     0x08cf  /* U+2261 IDENTICAL TO */
1364 #define XKB_KEY_radical                       0x08d6  /* U+221A SQUARE ROOT */
1365 #define XKB_KEY_includedin                    0x08da  /* U+2282 SUBSET OF */
1366 #define XKB_KEY_includes                      0x08db  /* U+2283 SUPERSET OF */
1367 #define XKB_KEY_intersection                  0x08dc  /* U+2229 INTERSECTION */
1368 #define XKB_KEY_union                         0x08dd  /* U+222A UNION */
1369 #define XKB_KEY_logicaland                    0x08de  /* U+2227 LOGICAL AND */
1370 #define XKB_KEY_logicalor                     0x08df  /* U+2228 LOGICAL OR */
1371 #define XKB_KEY_partialderivative             0x08ef  /* U+2202 PARTIAL DIFFERENTIAL */
1372 #define XKB_KEY_function                      0x08f6  /* U+0192 LATIN SMALL LETTER F WITH HOOK */
1373 #define XKB_KEY_leftarrow                     0x08fb  /* U+2190 LEFTWARDS ARROW */
1374 #define XKB_KEY_uparrow                       0x08fc  /* U+2191 UPWARDS ARROW */
1375 #define XKB_KEY_rightarrow                    0x08fd  /* U+2192 RIGHTWARDS ARROW */
1376 #define XKB_KEY_downarrow                     0x08fe  /* U+2193 DOWNWARDS ARROW */
1377
1378 /*
1379  * Special
1380  * (from the DEC VT100 Special Graphics Character Set)
1381  * Byte 3 = 9
1382  */
1383
1384 #define XKB_KEY_blank                         0x09df
1385 #define XKB_KEY_soliddiamond                  0x09e0  /* U+25C6 BLACK DIAMOND */
1386 #define XKB_KEY_checkerboard                  0x09e1  /* U+2592 MEDIUM SHADE */
1387 #define XKB_KEY_ht                            0x09e2  /* U+2409 SYMBOL FOR HORIZONTAL TABULATION */
1388 #define XKB_KEY_ff                            0x09e3  /* U+240C SYMBOL FOR FORM FEED */
1389 #define XKB_KEY_cr                            0x09e4  /* U+240D SYMBOL FOR CARRIAGE RETURN */
1390 #define XKB_KEY_lf                            0x09e5  /* U+240A SYMBOL FOR LINE FEED */
1391 #define XKB_KEY_nl                            0x09e8  /* U+2424 SYMBOL FOR NEWLINE */
1392 #define XKB_KEY_vt                            0x09e9  /* U+240B SYMBOL FOR VERTICAL TABULATION */
1393 #define XKB_KEY_lowrightcorner                0x09ea  /* U+2518 BOX DRAWINGS LIGHT UP AND LEFT */
1394 #define XKB_KEY_uprightcorner                 0x09eb  /* U+2510 BOX DRAWINGS LIGHT DOWN AND LEFT */
1395 #define XKB_KEY_upleftcorner                  0x09ec  /* U+250C BOX DRAWINGS LIGHT DOWN AND RIGHT */
1396 #define XKB_KEY_lowleftcorner                 0x09ed  /* U+2514 BOX DRAWINGS LIGHT UP AND RIGHT */
1397 #define XKB_KEY_crossinglines                 0x09ee  /* U+253C BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL */
1398 #define XKB_KEY_horizlinescan1                0x09ef  /* U+23BA HORIZONTAL SCAN LINE-1 */
1399 #define XKB_KEY_horizlinescan3                0x09f0  /* U+23BB HORIZONTAL SCAN LINE-3 */
1400 #define XKB_KEY_horizlinescan5                0x09f1  /* U+2500 BOX DRAWINGS LIGHT HORIZONTAL */
1401 #define XKB_KEY_horizlinescan7                0x09f2  /* U+23BC HORIZONTAL SCAN LINE-7 */
1402 #define XKB_KEY_horizlinescan9                0x09f3  /* U+23BD HORIZONTAL SCAN LINE-9 */
1403 #define XKB_KEY_leftt                         0x09f4  /* U+251C BOX DRAWINGS LIGHT VERTICAL AND RIGHT */
1404 #define XKB_KEY_rightt                        0x09f5  /* U+2524 BOX DRAWINGS LIGHT VERTICAL AND LEFT */
1405 #define XKB_KEY_bott                          0x09f6  /* U+2534 BOX DRAWINGS LIGHT UP AND HORIZONTAL */
1406 #define XKB_KEY_topt                          0x09f7  /* U+252C BOX DRAWINGS LIGHT DOWN AND HORIZONTAL */
1407 #define XKB_KEY_vertbar                       0x09f8  /* U+2502 BOX DRAWINGS LIGHT VERTICAL */
1408
1409 /*
1410  * Publishing
1411  * (these are probably from a long forgotten DEC Publishing
1412  * font that once shipped with DECwrite)
1413  * Byte 3 = 0x0a
1414  */
1415
1416 #define XKB_KEY_emspace                       0x0aa1  /* U+2003 EM SPACE */
1417 #define XKB_KEY_enspace                       0x0aa2  /* U+2002 EN SPACE */
1418 #define XKB_KEY_em3space                      0x0aa3  /* U+2004 THREE-PER-EM SPACE */
1419 #define XKB_KEY_em4space                      0x0aa4  /* U+2005 FOUR-PER-EM SPACE */
1420 #define XKB_KEY_digitspace                    0x0aa5  /* U+2007 FIGURE SPACE */
1421 #define XKB_KEY_punctspace                    0x0aa6  /* U+2008 PUNCTUATION SPACE */
1422 #define XKB_KEY_thinspace                     0x0aa7  /* U+2009 THIN SPACE */
1423 #define XKB_KEY_hairspace                     0x0aa8  /* U+200A HAIR SPACE */
1424 #define XKB_KEY_emdash                        0x0aa9  /* U+2014 EM DASH */
1425 #define XKB_KEY_endash                        0x0aaa  /* U+2013 EN DASH */
1426 #define XKB_KEY_signifblank                   0x0aac  /*(U+2423 OPEN BOX)*/
1427 #define XKB_KEY_ellipsis                      0x0aae  /* U+2026 HORIZONTAL ELLIPSIS */
1428 #define XKB_KEY_doubbaselinedot               0x0aaf  /* U+2025 TWO DOT LEADER */
1429 #define XKB_KEY_onethird                      0x0ab0  /* U+2153 VULGAR FRACTION ONE THIRD */
1430 #define XKB_KEY_twothirds                     0x0ab1  /* U+2154 VULGAR FRACTION TWO THIRDS */
1431 #define XKB_KEY_onefifth                      0x0ab2  /* U+2155 VULGAR FRACTION ONE FIFTH */
1432 #define XKB_KEY_twofifths                     0x0ab3  /* U+2156 VULGAR FRACTION TWO FIFTHS */
1433 #define XKB_KEY_threefifths                   0x0ab4  /* U+2157 VULGAR FRACTION THREE FIFTHS */
1434 #define XKB_KEY_fourfifths                    0x0ab5  /* U+2158 VULGAR FRACTION FOUR FIFTHS */
1435 #define XKB_KEY_onesixth                      0x0ab6  /* U+2159 VULGAR FRACTION ONE SIXTH */
1436 #define XKB_KEY_fivesixths                    0x0ab7  /* U+215A VULGAR FRACTION FIVE SIXTHS */
1437 #define XKB_KEY_careof                        0x0ab8  /* U+2105 CARE OF */
1438 #define XKB_KEY_figdash                       0x0abb  /* U+2012 FIGURE DASH */
1439 #define XKB_KEY_leftanglebracket              0x0abc  /*(U+2329 LEFT-POINTING ANGLE BRACKET)*/
1440 #define XKB_KEY_decimalpoint                  0x0abd  /*(U+002E FULL STOP)*/
1441 #define XKB_KEY_rightanglebracket             0x0abe  /*(U+232A RIGHT-POINTING ANGLE BRACKET)*/
1442 #define XKB_KEY_marker                        0x0abf
1443 #define XKB_KEY_oneeighth                     0x0ac3  /* U+215B VULGAR FRACTION ONE EIGHTH */
1444 #define XKB_KEY_threeeighths                  0x0ac4  /* U+215C VULGAR FRACTION THREE EIGHTHS */
1445 #define XKB_KEY_fiveeighths                   0x0ac5  /* U+215D VULGAR FRACTION FIVE EIGHTHS */
1446 #define XKB_KEY_seveneighths                  0x0ac6  /* U+215E VULGAR FRACTION SEVEN EIGHTHS */
1447 #define XKB_KEY_trademark                     0x0ac9  /* U+2122 TRADE MARK SIGN */
1448 #define XKB_KEY_signaturemark                 0x0aca  /*(U+2613 SALTIRE)*/
1449 #define XKB_KEY_trademarkincircle             0x0acb
1450 #define XKB_KEY_leftopentriangle              0x0acc  /*(U+25C1 WHITE LEFT-POINTING TRIANGLE)*/
1451 #define XKB_KEY_rightopentriangle             0x0acd  /*(U+25B7 WHITE RIGHT-POINTING TRIANGLE)*/
1452 #define XKB_KEY_emopencircle                  0x0ace  /*(U+25CB WHITE CIRCLE)*/
1453 #define XKB_KEY_emopenrectangle               0x0acf  /*(U+25AF WHITE VERTICAL RECTANGLE)*/
1454 #define XKB_KEY_leftsinglequotemark           0x0ad0  /* U+2018 LEFT SINGLE QUOTATION MARK */
1455 #define XKB_KEY_rightsinglequotemark          0x0ad1  /* U+2019 RIGHT SINGLE QUOTATION MARK */
1456 #define XKB_KEY_leftdoublequotemark           0x0ad2  /* U+201C LEFT DOUBLE QUOTATION MARK */
1457 #define XKB_KEY_rightdoublequotemark          0x0ad3  /* U+201D RIGHT DOUBLE QUOTATION MARK */
1458 #define XKB_KEY_prescription                  0x0ad4  /* U+211E PRESCRIPTION TAKE */
1459 #define XKB_KEY_permille                      0x0ad5  /* U+2030 PER MILLE SIGN */
1460 #define XKB_KEY_minutes                       0x0ad6  /* U+2032 PRIME */
1461 #define XKB_KEY_seconds                       0x0ad7  /* U+2033 DOUBLE PRIME */
1462 #define XKB_KEY_latincross                    0x0ad9  /* U+271D LATIN CROSS */
1463 #define XKB_KEY_hexagram                      0x0ada
1464 #define XKB_KEY_filledrectbullet              0x0adb  /*(U+25AC BLACK RECTANGLE)*/
1465 #define XKB_KEY_filledlefttribullet           0x0adc  /*(U+25C0 BLACK LEFT-POINTING TRIANGLE)*/
1466 #define XKB_KEY_filledrighttribullet          0x0add  /*(U+25B6 BLACK RIGHT-POINTING TRIANGLE)*/
1467 #define XKB_KEY_emfilledcircle                0x0ade  /*(U+25CF BLACK CIRCLE)*/
1468 #define XKB_KEY_emfilledrect                  0x0adf  /*(U+25AE BLACK VERTICAL RECTANGLE)*/
1469 #define XKB_KEY_enopencircbullet              0x0ae0  /*(U+25E6 WHITE BULLET)*/
1470 #define XKB_KEY_enopensquarebullet            0x0ae1  /*(U+25AB WHITE SMALL SQUARE)*/
1471 #define XKB_KEY_openrectbullet                0x0ae2  /*(U+25AD WHITE RECTANGLE)*/
1472 #define XKB_KEY_opentribulletup               0x0ae3  /*(U+25B3 WHITE UP-POINTING TRIANGLE)*/
1473 #define XKB_KEY_opentribulletdown             0x0ae4  /*(U+25BD WHITE DOWN-POINTING TRIANGLE)*/
1474 #define XKB_KEY_openstar                      0x0ae5  /*(U+2606 WHITE STAR)*/
1475 #define XKB_KEY_enfilledcircbullet            0x0ae6  /*(U+2022 BULLET)*/
1476 #define XKB_KEY_enfilledsqbullet              0x0ae7  /*(U+25AA BLACK SMALL SQUARE)*/
1477 #define XKB_KEY_filledtribulletup             0x0ae8  /*(U+25B2 BLACK UP-POINTING TRIANGLE)*/
1478 #define XKB_KEY_filledtribulletdown           0x0ae9  /*(U+25BC BLACK DOWN-POINTING TRIANGLE)*/
1479 #define XKB_KEY_leftpointer                   0x0aea  /*(U+261C WHITE LEFT POINTING INDEX)*/
1480 #define XKB_KEY_rightpointer                  0x0aeb  /*(U+261E WHITE RIGHT POINTING INDEX)*/
1481 #define XKB_KEY_club                          0x0aec  /* U+2663 BLACK CLUB SUIT */
1482 #define XKB_KEY_diamond                       0x0aed  /* U+2666 BLACK DIAMOND SUIT */
1483 #define XKB_KEY_heart                         0x0aee  /* U+2665 BLACK HEART SUIT */
1484 #define XKB_KEY_maltesecross                  0x0af0  /* U+2720 MALTESE CROSS */
1485 #define XKB_KEY_dagger                        0x0af1  /* U+2020 DAGGER */
1486 #define XKB_KEY_doubledagger                  0x0af2  /* U+2021 DOUBLE DAGGER */
1487 #define XKB_KEY_checkmark                     0x0af3  /* U+2713 CHECK MARK */
1488 #define XKB_KEY_ballotcross                   0x0af4  /* U+2717 BALLOT X */
1489 #define XKB_KEY_musicalsharp                  0x0af5  /* U+266F MUSIC SHARP SIGN */
1490 #define XKB_KEY_musicalflat                   0x0af6  /* U+266D MUSIC FLAT SIGN */
1491 #define XKB_KEY_malesymbol                    0x0af7  /* U+2642 MALE SIGN */
1492 #define XKB_KEY_femalesymbol                  0x0af8  /* U+2640 FEMALE SIGN */
1493 #define XKB_KEY_telephone                     0x0af9  /* U+260E BLACK TELEPHONE */
1494 #define XKB_KEY_telephonerecorder             0x0afa  /* U+2315 TELEPHONE RECORDER */
1495 #define XKB_KEY_phonographcopyright           0x0afb  /* U+2117 SOUND RECORDING COPYRIGHT */
1496 #define XKB_KEY_caret                         0x0afc  /* U+2038 CARET */
1497 #define XKB_KEY_singlelowquotemark            0x0afd  /* U+201A SINGLE LOW-9 QUOTATION MARK */
1498 #define XKB_KEY_doublelowquotemark            0x0afe  /* U+201E DOUBLE LOW-9 QUOTATION MARK */
1499 #define XKB_KEY_cursor                        0x0aff
1500
1501 /*
1502  * APL
1503  * Byte 3 = 0x0b
1504  */
1505
1506 #define XKB_KEY_leftcaret                     0x0ba3  /*(U+003C LESS-THAN SIGN)*/
1507 #define XKB_KEY_rightcaret                    0x0ba6  /*(U+003E GREATER-THAN SIGN)*/
1508 #define XKB_KEY_downcaret                     0x0ba8  /*(U+2228 LOGICAL OR)*/
1509 #define XKB_KEY_upcaret                       0x0ba9  /*(U+2227 LOGICAL AND)*/
1510 #define XKB_KEY_overbar                       0x0bc0  /*(U+00AF MACRON)*/
1511 #define XKB_KEY_downtack                      0x0bc2  /* U+22A4 DOWN TACK */
1512 #define XKB_KEY_upshoe                        0x0bc3  /*(U+2229 INTERSECTION)*/
1513 #define XKB_KEY_downstile                     0x0bc4  /* U+230A LEFT FLOOR */
1514 #define XKB_KEY_underbar                      0x0bc6  /*(U+005F LOW LINE)*/
1515 #define XKB_KEY_jot                           0x0bca  /* U+2218 RING OPERATOR */
1516 #define XKB_KEY_quad                          0x0bcc  /* U+2395 APL FUNCTIONAL SYMBOL QUAD */
1517 #define XKB_KEY_uptack                        0x0bce  /* U+22A5 UP TACK */
1518 #define XKB_KEY_circle                        0x0bcf  /* U+25CB WHITE CIRCLE */
1519 #define XKB_KEY_upstile                       0x0bd3  /* U+2308 LEFT CEILING */
1520 #define XKB_KEY_downshoe                      0x0bd6  /*(U+222A UNION)*/
1521 #define XKB_KEY_rightshoe                     0x0bd8  /*(U+2283 SUPERSET OF)*/
1522 #define XKB_KEY_leftshoe                      0x0bda  /*(U+2282 SUBSET OF)*/
1523 #define XKB_KEY_lefttack                      0x0bdc  /* U+22A3 LEFT TACK */
1524 #define XKB_KEY_righttack                     0x0bfc  /* U+22A2 RIGHT TACK */
1525
1526 /*
1527  * Hebrew
1528  * Byte 3 = 0x0c
1529  */
1530
1531 #define XKB_KEY_hebrew_doublelowline          0x0cdf  /* U+2017 DOUBLE LOW LINE */
1532 #define XKB_KEY_hebrew_aleph                  0x0ce0  /* U+05D0 HEBREW LETTER ALEF */
1533 #define XKB_KEY_hebrew_bet                    0x0ce1  /* U+05D1 HEBREW LETTER BET */
1534 #define XKB_KEY_hebrew_beth                   0x0ce1  /* deprecated */
1535 #define XKB_KEY_hebrew_gimel                  0x0ce2  /* U+05D2 HEBREW LETTER GIMEL */
1536 #define XKB_KEY_hebrew_gimmel                 0x0ce2  /* deprecated */
1537 #define XKB_KEY_hebrew_dalet                  0x0ce3  /* U+05D3 HEBREW LETTER DALET */
1538 #define XKB_KEY_hebrew_daleth                 0x0ce3  /* deprecated */
1539 #define XKB_KEY_hebrew_he                     0x0ce4  /* U+05D4 HEBREW LETTER HE */
1540 #define XKB_KEY_hebrew_waw                    0x0ce5  /* U+05D5 HEBREW LETTER VAV */
1541 #define XKB_KEY_hebrew_zain                   0x0ce6  /* U+05D6 HEBREW LETTER ZAYIN */
1542 #define XKB_KEY_hebrew_zayin                  0x0ce6  /* deprecated */
1543 #define XKB_KEY_hebrew_chet                   0x0ce7  /* U+05D7 HEBREW LETTER HET */
1544 #define XKB_KEY_hebrew_het                    0x0ce7  /* deprecated */
1545 #define XKB_KEY_hebrew_tet                    0x0ce8  /* U+05D8 HEBREW LETTER TET */
1546 #define XKB_KEY_hebrew_teth                   0x0ce8  /* deprecated */
1547 #define XKB_KEY_hebrew_yod                    0x0ce9  /* U+05D9 HEBREW LETTER YOD */
1548 #define XKB_KEY_hebrew_finalkaph              0x0cea  /* U+05DA HEBREW LETTER FINAL KAF */
1549 #define XKB_KEY_hebrew_kaph                   0x0ceb  /* U+05DB HEBREW LETTER KAF */
1550 #define XKB_KEY_hebrew_lamed                  0x0cec  /* U+05DC HEBREW LETTER LAMED */
1551 #define XKB_KEY_hebrew_finalmem               0x0ced  /* U+05DD HEBREW LETTER FINAL MEM */
1552 #define XKB_KEY_hebrew_mem                    0x0cee  /* U+05DE HEBREW LETTER MEM */
1553 #define XKB_KEY_hebrew_finalnun               0x0cef  /* U+05DF HEBREW LETTER FINAL NUN */
1554 #define XKB_KEY_hebrew_nun                    0x0cf0  /* U+05E0 HEBREW LETTER NUN */
1555 #define XKB_KEY_hebrew_samech                 0x0cf1  /* U+05E1 HEBREW LETTER SAMEKH */
1556 #define XKB_KEY_hebrew_samekh                 0x0cf1  /* deprecated */
1557 #define XKB_KEY_hebrew_ayin                   0x0cf2  /* U+05E2 HEBREW LETTER AYIN */
1558 #define XKB_KEY_hebrew_finalpe                0x0cf3  /* U+05E3 HEBREW LETTER FINAL PE */
1559 #define XKB_KEY_hebrew_pe                     0x0cf4  /* U+05E4 HEBREW LETTER PE */
1560 #define XKB_KEY_hebrew_finalzade              0x0cf5  /* U+05E5 HEBREW LETTER FINAL TSADI */
1561 #define XKB_KEY_hebrew_finalzadi              0x0cf5  /* deprecated */
1562 #define XKB_KEY_hebrew_zade                   0x0cf6  /* U+05E6 HEBREW LETTER TSADI */
1563 #define XKB_KEY_hebrew_zadi                   0x0cf6  /* deprecated */
1564 #define XKB_KEY_hebrew_qoph                   0x0cf7  /* U+05E7 HEBREW LETTER QOF */
1565 #define XKB_KEY_hebrew_kuf                    0x0cf7  /* deprecated */
1566 #define XKB_KEY_hebrew_resh                   0x0cf8  /* U+05E8 HEBREW LETTER RESH */
1567 #define XKB_KEY_hebrew_shin                   0x0cf9  /* U+05E9 HEBREW LETTER SHIN */
1568 #define XKB_KEY_hebrew_taw                    0x0cfa  /* U+05EA HEBREW LETTER TAV */
1569 #define XKB_KEY_hebrew_taf                    0x0cfa  /* deprecated */
1570 #define XKB_KEY_Hebrew_switch                 0xff7e  /* Alias for mode_switch */
1571
1572 /*
1573  * Thai
1574  * Byte 3 = 0x0d
1575  */
1576
1577 #define XKB_KEY_Thai_kokai                    0x0da1  /* U+0E01 THAI CHARACTER KO KAI */
1578 #define XKB_KEY_Thai_khokhai                  0x0da2  /* U+0E02 THAI CHARACTER KHO KHAI */
1579 #define XKB_KEY_Thai_khokhuat                 0x0da3  /* U+0E03 THAI CHARACTER KHO KHUAT */
1580 #define XKB_KEY_Thai_khokhwai                 0x0da4  /* U+0E04 THAI CHARACTER KHO KHWAI */
1581 #define XKB_KEY_Thai_khokhon                  0x0da5  /* U+0E05 THAI CHARACTER KHO KHON */
1582 #define XKB_KEY_Thai_khorakhang               0x0da6  /* U+0E06 THAI CHARACTER KHO RAKHANG */
1583 #define XKB_KEY_Thai_ngongu                   0x0da7  /* U+0E07 THAI CHARACTER NGO NGU */
1584 #define XKB_KEY_Thai_chochan                  0x0da8  /* U+0E08 THAI CHARACTER CHO CHAN */
1585 #define XKB_KEY_Thai_choching                 0x0da9  /* U+0E09 THAI CHARACTER CHO CHING */
1586 #define XKB_KEY_Thai_chochang                 0x0daa  /* U+0E0A THAI CHARACTER CHO CHANG */
1587 #define XKB_KEY_Thai_soso                     0x0dab  /* U+0E0B THAI CHARACTER SO SO */
1588 #define XKB_KEY_Thai_chochoe                  0x0dac  /* U+0E0C THAI CHARACTER CHO CHOE */
1589 #define XKB_KEY_Thai_yoying                   0x0dad  /* U+0E0D THAI CHARACTER YO YING */
1590 #define XKB_KEY_Thai_dochada                  0x0dae  /* U+0E0E THAI CHARACTER DO CHADA */
1591 #define XKB_KEY_Thai_topatak                  0x0daf  /* U+0E0F THAI CHARACTER TO PATAK */
1592 #define XKB_KEY_Thai_thothan                  0x0db0  /* U+0E10 THAI CHARACTER THO THAN */
1593 #define XKB_KEY_Thai_thonangmontho            0x0db1  /* U+0E11 THAI CHARACTER THO NANGMONTHO */
1594 #define XKB_KEY_Thai_thophuthao               0x0db2  /* U+0E12 THAI CHARACTER THO PHUTHAO */
1595 #define XKB_KEY_Thai_nonen                    0x0db3  /* U+0E13 THAI CHARACTER NO NEN */
1596 #define XKB_KEY_Thai_dodek                    0x0db4  /* U+0E14 THAI CHARACTER DO DEK */
1597 #define XKB_KEY_Thai_totao                    0x0db5  /* U+0E15 THAI CHARACTER TO TAO */
1598 #define XKB_KEY_Thai_thothung                 0x0db6  /* U+0E16 THAI CHARACTER THO THUNG */
1599 #define XKB_KEY_Thai_thothahan                0x0db7  /* U+0E17 THAI CHARACTER THO THAHAN */
1600 #define XKB_KEY_Thai_thothong                 0x0db8  /* U+0E18 THAI CHARACTER THO THONG */
1601 #define XKB_KEY_Thai_nonu                     0x0db9  /* U+0E19 THAI CHARACTER NO NU */
1602 #define XKB_KEY_Thai_bobaimai                 0x0dba  /* U+0E1A THAI CHARACTER BO BAIMAI */
1603 #define XKB_KEY_Thai_popla                    0x0dbb  /* U+0E1B THAI CHARACTER PO PLA */
1604 #define XKB_KEY_Thai_phophung                 0x0dbc  /* U+0E1C THAI CHARACTER PHO PHUNG */
1605 #define XKB_KEY_Thai_fofa                     0x0dbd  /* U+0E1D THAI CHARACTER FO FA */
1606 #define XKB_KEY_Thai_phophan                  0x0dbe  /* U+0E1E THAI CHARACTER PHO PHAN */
1607 #define XKB_KEY_Thai_fofan                    0x0dbf  /* U+0E1F THAI CHARACTER FO FAN */
1608 #define XKB_KEY_Thai_phosamphao               0x0dc0  /* U+0E20 THAI CHARACTER PHO SAMPHAO */
1609 #define XKB_KEY_Thai_moma                     0x0dc1  /* U+0E21 THAI CHARACTER MO MA */
1610 #define XKB_KEY_Thai_yoyak                    0x0dc2  /* U+0E22 THAI CHARACTER YO YAK */
1611 #define XKB_KEY_Thai_rorua                    0x0dc3  /* U+0E23 THAI CHARACTER RO RUA */
1612 #define XKB_KEY_Thai_ru                       0x0dc4  /* U+0E24 THAI CHARACTER RU */
1613 #define XKB_KEY_Thai_loling                   0x0dc5  /* U+0E25 THAI CHARACTER LO LING */
1614 #define XKB_KEY_Thai_lu                       0x0dc6  /* U+0E26 THAI CHARACTER LU */
1615 #define XKB_KEY_Thai_wowaen                   0x0dc7  /* U+0E27 THAI CHARACTER WO WAEN */
1616 #define XKB_KEY_Thai_sosala                   0x0dc8  /* U+0E28 THAI CHARACTER SO SALA */
1617 #define XKB_KEY_Thai_sorusi                   0x0dc9  /* U+0E29 THAI CHARACTER SO RUSI */
1618 #define XKB_KEY_Thai_sosua                    0x0dca  /* U+0E2A THAI CHARACTER SO SUA */
1619 #define XKB_KEY_Thai_hohip                    0x0dcb  /* U+0E2B THAI CHARACTER HO HIP */
1620 #define XKB_KEY_Thai_lochula                  0x0dcc  /* U+0E2C THAI CHARACTER LO CHULA */
1621 #define XKB_KEY_Thai_oang                     0x0dcd  /* U+0E2D THAI CHARACTER O ANG */
1622 #define XKB_KEY_Thai_honokhuk                 0x0dce  /* U+0E2E THAI CHARACTER HO NOKHUK */
1623 #define XKB_KEY_Thai_paiyannoi                0x0dcf  /* U+0E2F THAI CHARACTER PAIYANNOI */
1624 #define XKB_KEY_Thai_saraa                    0x0dd0  /* U+0E30 THAI CHARACTER SARA A */
1625 #define XKB_KEY_Thai_maihanakat               0x0dd1  /* U+0E31 THAI CHARACTER MAI HAN-AKAT */
1626 #define XKB_KEY_Thai_saraaa                   0x0dd2  /* U+0E32 THAI CHARACTER SARA AA */
1627 #define XKB_KEY_Thai_saraam                   0x0dd3  /* U+0E33 THAI CHARACTER SARA AM */
1628 #define XKB_KEY_Thai_sarai                    0x0dd4  /* U+0E34 THAI CHARACTER SARA I */
1629 #define XKB_KEY_Thai_saraii                   0x0dd5  /* U+0E35 THAI CHARACTER SARA II */
1630 #define XKB_KEY_Thai_saraue                   0x0dd6  /* U+0E36 THAI CHARACTER SARA UE */
1631 #define XKB_KEY_Thai_sarauee                  0x0dd7  /* U+0E37 THAI CHARACTER SARA UEE */
1632 #define XKB_KEY_Thai_sarau                    0x0dd8  /* U+0E38 THAI CHARACTER SARA U */
1633 #define XKB_KEY_Thai_sarauu                   0x0dd9  /* U+0E39 THAI CHARACTER SARA UU */
1634 #define XKB_KEY_Thai_phinthu                  0x0dda  /* U+0E3A THAI CHARACTER PHINTHU */
1635 #define XKB_KEY_Thai_maihanakat_maitho        0x0dde
1636 #define XKB_KEY_Thai_baht                     0x0ddf  /* U+0E3F THAI CURRENCY SYMBOL BAHT */
1637 #define XKB_KEY_Thai_sarae                    0x0de0  /* U+0E40 THAI CHARACTER SARA E */
1638 #define XKB_KEY_Thai_saraae                   0x0de1  /* U+0E41 THAI CHARACTER SARA AE */
1639 #define XKB_KEY_Thai_sarao                    0x0de2  /* U+0E42 THAI CHARACTER SARA O */
1640 #define XKB_KEY_Thai_saraaimaimuan            0x0de3  /* U+0E43 THAI CHARACTER SARA AI MAIMUAN */
1641 #define XKB_KEY_Thai_saraaimaimalai           0x0de4  /* U+0E44 THAI CHARACTER SARA AI MAIMALAI */
1642 #define XKB_KEY_Thai_lakkhangyao              0x0de5  /* U+0E45 THAI CHARACTER LAKKHANGYAO */
1643 #define XKB_KEY_Thai_maiyamok                 0x0de6  /* U+0E46 THAI CHARACTER MAIYAMOK */
1644 #define XKB_KEY_Thai_maitaikhu                0x0de7  /* U+0E47 THAI CHARACTER MAITAIKHU */
1645 #define XKB_KEY_Thai_maiek                    0x0de8  /* U+0E48 THAI CHARACTER MAI EK */
1646 #define XKB_KEY_Thai_maitho                   0x0de9  /* U+0E49 THAI CHARACTER MAI THO */
1647 #define XKB_KEY_Thai_maitri                   0x0dea  /* U+0E4A THAI CHARACTER MAI TRI */
1648 #define XKB_KEY_Thai_maichattawa              0x0deb  /* U+0E4B THAI CHARACTER MAI CHATTAWA */
1649 #define XKB_KEY_Thai_thanthakhat              0x0dec  /* U+0E4C THAI CHARACTER THANTHAKHAT */
1650 #define XKB_KEY_Thai_nikhahit                 0x0ded  /* U+0E4D THAI CHARACTER NIKHAHIT */
1651 #define XKB_KEY_Thai_leksun                   0x0df0  /* U+0E50 THAI DIGIT ZERO */
1652 #define XKB_KEY_Thai_leknung                  0x0df1  /* U+0E51 THAI DIGIT ONE */
1653 #define XKB_KEY_Thai_leksong                  0x0df2  /* U+0E52 THAI DIGIT TWO */
1654 #define XKB_KEY_Thai_leksam                   0x0df3  /* U+0E53 THAI DIGIT THREE */
1655 #define XKB_KEY_Thai_leksi                    0x0df4  /* U+0E54 THAI DIGIT FOUR */
1656 #define XKB_KEY_Thai_lekha                    0x0df5  /* U+0E55 THAI DIGIT FIVE */
1657 #define XKB_KEY_Thai_lekhok                   0x0df6  /* U+0E56 THAI DIGIT SIX */
1658 #define XKB_KEY_Thai_lekchet                  0x0df7  /* U+0E57 THAI DIGIT SEVEN */
1659 #define XKB_KEY_Thai_lekpaet                  0x0df8  /* U+0E58 THAI DIGIT EIGHT */
1660 #define XKB_KEY_Thai_lekkao                   0x0df9  /* U+0E59 THAI DIGIT NINE */
1661
1662 /*
1663  * Korean
1664  * Byte 3 = 0x0e
1665  */
1666
1667
1668 #define XKB_KEY_Hangul                        0xff31  /* Hangul start/stop(toggle) */
1669 #define XKB_KEY_Hangul_Start                  0xff32  /* Hangul start */
1670 #define XKB_KEY_Hangul_End                    0xff33  /* Hangul end, English start */
1671 #define XKB_KEY_Hangul_Hanja                  0xff34  /* Start Hangul->Hanja Conversion */
1672 #define XKB_KEY_Hangul_Jamo                   0xff35  /* Hangul Jamo mode */
1673 #define XKB_KEY_Hangul_Romaja                 0xff36  /* Hangul Romaja mode */
1674 #define XKB_KEY_Hangul_Codeinput              0xff37  /* Hangul code input mode */
1675 #define XKB_KEY_Hangul_Jeonja                 0xff38  /* Jeonja mode */
1676 #define XKB_KEY_Hangul_Banja                  0xff39  /* Banja mode */
1677 #define XKB_KEY_Hangul_PreHanja               0xff3a  /* Pre Hanja conversion */
1678 #define XKB_KEY_Hangul_PostHanja              0xff3b  /* Post Hanja conversion */
1679 #define XKB_KEY_Hangul_SingleCandidate        0xff3c  /* Single candidate */
1680 #define XKB_KEY_Hangul_MultipleCandidate      0xff3d  /* Multiple candidate */
1681 #define XKB_KEY_Hangul_PreviousCandidate      0xff3e  /* Previous candidate */
1682 #define XKB_KEY_Hangul_Special                0xff3f  /* Special symbols */
1683 #define XKB_KEY_Hangul_switch                 0xff7e  /* Alias for mode_switch */
1684
1685 /* Hangul Consonant Characters */
1686 #define XKB_KEY_Hangul_Kiyeog                 0x0ea1  /* U+3131 HANGUL LETTER KIYEOK */
1687 #define XKB_KEY_Hangul_SsangKiyeog            0x0ea2  /* U+3132 HANGUL LETTER SSANGKIYEOK */
1688 #define XKB_KEY_Hangul_KiyeogSios             0x0ea3  /* U+3133 HANGUL LETTER KIYEOK-SIOS */
1689 #define XKB_KEY_Hangul_Nieun                  0x0ea4  /* U+3134 HANGUL LETTER NIEUN */
1690 #define XKB_KEY_Hangul_NieunJieuj             0x0ea5  /* U+3135 HANGUL LETTER NIEUN-CIEUC */
1691 #define XKB_KEY_Hangul_NieunHieuh             0x0ea6  /* U+3136 HANGUL LETTER NIEUN-HIEUH */
1692 #define XKB_KEY_Hangul_Dikeud                 0x0ea7  /* U+3137 HANGUL LETTER TIKEUT */
1693 #define XKB_KEY_Hangul_SsangDikeud            0x0ea8  /* U+3138 HANGUL LETTER SSANGTIKEUT */
1694 #define XKB_KEY_Hangul_Rieul                  0x0ea9  /* U+3139 HANGUL LETTER RIEUL */
1695 #define XKB_KEY_Hangul_RieulKiyeog            0x0eaa  /* U+313A HANGUL LETTER RIEUL-KIYEOK */
1696 #define XKB_KEY_Hangul_RieulMieum             0x0eab  /* U+313B HANGUL LETTER RIEUL-MIEUM */
1697 #define XKB_KEY_Hangul_RieulPieub             0x0eac  /* U+313C HANGUL LETTER RIEUL-PIEUP */
1698 #define XKB_KEY_Hangul_RieulSios              0x0ead  /* U+313D HANGUL LETTER RIEUL-SIOS */
1699 #define XKB_KEY_Hangul_RieulTieut             0x0eae  /* U+313E HANGUL LETTER RIEUL-THIEUTH */
1700 #define XKB_KEY_Hangul_RieulPhieuf            0x0eaf  /* U+313F HANGUL LETTER RIEUL-PHIEUPH */
1701 #define XKB_KEY_Hangul_RieulHieuh             0x0eb0  /* U+3140 HANGUL LETTER RIEUL-HIEUH */
1702 #define XKB_KEY_Hangul_Mieum                  0x0eb1  /* U+3141 HANGUL LETTER MIEUM */
1703 #define XKB_KEY_Hangul_Pieub                  0x0eb2  /* U+3142 HANGUL LETTER PIEUP */
1704 #define XKB_KEY_Hangul_SsangPieub             0x0eb3  /* U+3143 HANGUL LETTER SSANGPIEUP */
1705 #define XKB_KEY_Hangul_PieubSios              0x0eb4  /* U+3144 HANGUL LETTER PIEUP-SIOS */
1706 #define XKB_KEY_Hangul_Sios                   0x0eb5  /* U+3145 HANGUL LETTER SIOS */
1707 #define XKB_KEY_Hangul_SsangSios              0x0eb6  /* U+3146 HANGUL LETTER SSANGSIOS */
1708 #define XKB_KEY_Hangul_Ieung                  0x0eb7  /* U+3147 HANGUL LETTER IEUNG */
1709 #define XKB_KEY_Hangul_Jieuj                  0x0eb8  /* U+3148 HANGUL LETTER CIEUC */
1710 #define XKB_KEY_Hangul_SsangJieuj             0x0eb9  /* U+3149 HANGUL LETTER SSANGCIEUC */
1711 #define XKB_KEY_Hangul_Cieuc                  0x0eba  /* U+314A HANGUL LETTER CHIEUCH */
1712 #define XKB_KEY_Hangul_Khieuq                 0x0ebb  /* U+314B HANGUL LETTER KHIEUKH */
1713 #define XKB_KEY_Hangul_Tieut                  0x0ebc  /* U+314C HANGUL LETTER THIEUTH */
1714 #define XKB_KEY_Hangul_Phieuf                 0x0ebd  /* U+314D HANGUL LETTER PHIEUPH */
1715 #define XKB_KEY_Hangul_Hieuh                  0x0ebe  /* U+314E HANGUL LETTER HIEUH */
1716
1717 /* Hangul Vowel Characters */
1718 #define XKB_KEY_Hangul_A                      0x0ebf  /* U+314F HANGUL LETTER A */
1719 #define XKB_KEY_Hangul_AE                     0x0ec0  /* U+3150 HANGUL LETTER AE */
1720 #define XKB_KEY_Hangul_YA                     0x0ec1  /* U+3151 HANGUL LETTER YA */
1721 #define XKB_KEY_Hangul_YAE                    0x0ec2  /* U+3152 HANGUL LETTER YAE */
1722 #define XKB_KEY_Hangul_EO                     0x0ec3  /* U+3153 HANGUL LETTER EO */
1723 #define XKB_KEY_Hangul_E                      0x0ec4  /* U+3154 HANGUL LETTER E */
1724 #define XKB_KEY_Hangul_YEO                    0x0ec5  /* U+3155 HANGUL LETTER YEO */
1725 #define XKB_KEY_Hangul_YE                     0x0ec6  /* U+3156 HANGUL LETTER YE */
1726 #define XKB_KEY_Hangul_O                      0x0ec7  /* U+3157 HANGUL LETTER O */
1727 #define XKB_KEY_Hangul_WA                     0x0ec8  /* U+3158 HANGUL LETTER WA */
1728 #define XKB_KEY_Hangul_WAE                    0x0ec9  /* U+3159 HANGUL LETTER WAE */
1729 #define XKB_KEY_Hangul_OE                     0x0eca  /* U+315A HANGUL LETTER OE */
1730 #define XKB_KEY_Hangul_YO                     0x0ecb  /* U+315B HANGUL LETTER YO */
1731 #define XKB_KEY_Hangul_U                      0x0ecc  /* U+315C HANGUL LETTER U */
1732 #define XKB_KEY_Hangul_WEO                    0x0ecd  /* U+315D HANGUL LETTER WEO */
1733 #define XKB_KEY_Hangul_WE                     0x0ece  /* U+315E HANGUL LETTER WE */
1734 #define XKB_KEY_Hangul_WI                     0x0ecf  /* U+315F HANGUL LETTER WI */
1735 #define XKB_KEY_Hangul_YU                     0x0ed0  /* U+3160 HANGUL LETTER YU */
1736 #define XKB_KEY_Hangul_EU                     0x0ed1  /* U+3161 HANGUL LETTER EU */
1737 #define XKB_KEY_Hangul_YI                     0x0ed2  /* U+3162 HANGUL LETTER YI */
1738 #define XKB_KEY_Hangul_I                      0x0ed3  /* U+3163 HANGUL LETTER I */
1739
1740 /* Hangul syllable-final (JongSeong) Characters */
1741 #define XKB_KEY_Hangul_J_Kiyeog               0x0ed4  /* U+11A8 HANGUL JONGSEONG KIYEOK */
1742 #define XKB_KEY_Hangul_J_SsangKiyeog          0x0ed5  /* U+11A9 HANGUL JONGSEONG SSANGKIYEOK */
1743 #define XKB_KEY_Hangul_J_KiyeogSios           0x0ed6  /* U+11AA HANGUL JONGSEONG KIYEOK-SIOS */
1744 #define XKB_KEY_Hangul_J_Nieun                0x0ed7  /* U+11AB HANGUL JONGSEONG NIEUN */
1745 #define XKB_KEY_Hangul_J_NieunJieuj           0x0ed8  /* U+11AC HANGUL JONGSEONG NIEUN-CIEUC */
1746 #define XKB_KEY_Hangul_J_NieunHieuh           0x0ed9  /* U+11AD HANGUL JONGSEONG NIEUN-HIEUH */
1747 #define XKB_KEY_Hangul_J_Dikeud               0x0eda  /* U+11AE HANGUL JONGSEONG TIKEUT */
1748 #define XKB_KEY_Hangul_J_Rieul                0x0edb  /* U+11AF HANGUL JONGSEONG RIEUL */
1749 #define XKB_KEY_Hangul_J_RieulKiyeog          0x0edc  /* U+11B0 HANGUL JONGSEONG RIEUL-KIYEOK */
1750 #define XKB_KEY_Hangul_J_RieulMieum           0x0edd  /* U+11B1 HANGUL JONGSEONG RIEUL-MIEUM */
1751 #define XKB_KEY_Hangul_J_RieulPieub           0x0ede  /* U+11B2 HANGUL JONGSEONG RIEUL-PIEUP */
1752 #define XKB_KEY_Hangul_J_RieulSios            0x0edf  /* U+11B3 HANGUL JONGSEONG RIEUL-SIOS */
1753 #define XKB_KEY_Hangul_J_RieulTieut           0x0ee0  /* U+11B4 HANGUL JONGSEONG RIEUL-THIEUTH */
1754 #define XKB_KEY_Hangul_J_RieulPhieuf          0x0ee1  /* U+11B5 HANGUL JONGSEONG RIEUL-PHIEUPH */
1755 #define XKB_KEY_Hangul_J_RieulHieuh           0x0ee2  /* U+11B6 HANGUL JONGSEONG RIEUL-HIEUH */
1756 #define XKB_KEY_Hangul_J_Mieum                0x0ee3  /* U+11B7 HANGUL JONGSEONG MIEUM */
1757 #define XKB_KEY_Hangul_J_Pieub                0x0ee4  /* U+11B8 HANGUL JONGSEONG PIEUP */
1758 #define XKB_KEY_Hangul_J_PieubSios            0x0ee5  /* U+11B9 HANGUL JONGSEONG PIEUP-SIOS */
1759 #define XKB_KEY_Hangul_J_Sios                 0x0ee6  /* U+11BA HANGUL JONGSEONG SIOS */
1760 #define XKB_KEY_Hangul_J_SsangSios            0x0ee7  /* U+11BB HANGUL JONGSEONG SSANGSIOS */
1761 #define XKB_KEY_Hangul_J_Ieung                0x0ee8  /* U+11BC HANGUL JONGSEONG IEUNG */
1762 #define XKB_KEY_Hangul_J_Jieuj                0x0ee9  /* U+11BD HANGUL JONGSEONG CIEUC */
1763 #define XKB_KEY_Hangul_J_Cieuc                0x0eea  /* U+11BE HANGUL JONGSEONG CHIEUCH */
1764 #define XKB_KEY_Hangul_J_Khieuq               0x0eeb  /* U+11BF HANGUL JONGSEONG KHIEUKH */
1765 #define XKB_KEY_Hangul_J_Tieut                0x0eec  /* U+11C0 HANGUL JONGSEONG THIEUTH */
1766 #define XKB_KEY_Hangul_J_Phieuf               0x0eed  /* U+11C1 HANGUL JONGSEONG PHIEUPH */
1767 #define XKB_KEY_Hangul_J_Hieuh                0x0eee  /* U+11C2 HANGUL JONGSEONG HIEUH */
1768
1769 /* Ancient Hangul Consonant Characters */
1770 #define XKB_KEY_Hangul_RieulYeorinHieuh       0x0eef  /* U+316D HANGUL LETTER RIEUL-YEORINHIEUH */
1771 #define XKB_KEY_Hangul_SunkyeongeumMieum      0x0ef0  /* U+3171 HANGUL LETTER KAPYEOUNMIEUM */
1772 #define XKB_KEY_Hangul_SunkyeongeumPieub      0x0ef1  /* U+3178 HANGUL LETTER KAPYEOUNPIEUP */
1773 #define XKB_KEY_Hangul_PanSios                0x0ef2  /* U+317F HANGUL LETTER PANSIOS */
1774 #define XKB_KEY_Hangul_KkogjiDalrinIeung      0x0ef3  /* U+3181 HANGUL LETTER YESIEUNG */
1775 #define XKB_KEY_Hangul_SunkyeongeumPhieuf     0x0ef4  /* U+3184 HANGUL LETTER KAPYEOUNPHIEUPH */
1776 #define XKB_KEY_Hangul_YeorinHieuh            0x0ef5  /* U+3186 HANGUL LETTER YEORINHIEUH */
1777
1778 /* Ancient Hangul Vowel Characters */
1779 #define XKB_KEY_Hangul_AraeA                  0x0ef6  /* U+318D HANGUL LETTER ARAEA */
1780 #define XKB_KEY_Hangul_AraeAE                 0x0ef7  /* U+318E HANGUL LETTER ARAEAE */
1781
1782 /* Ancient Hangul syllable-final (JongSeong) Characters */
1783 #define XKB_KEY_Hangul_J_PanSios              0x0ef8  /* U+11EB HANGUL JONGSEONG PANSIOS */
1784 #define XKB_KEY_Hangul_J_KkogjiDalrinIeung    0x0ef9  /* U+11F0 HANGUL JONGSEONG YESIEUNG */
1785 #define XKB_KEY_Hangul_J_YeorinHieuh          0x0efa  /* U+11F9 HANGUL JONGSEONG YEORINHIEUH */
1786
1787 /* Korean currency symbol */
1788 #define XKB_KEY_Korean_Won                    0x0eff  /*(U+20A9 WON SIGN)*/
1789
1790
1791 /*
1792  * Armenian
1793  */
1794
1795 #define XKB_KEY_Armenian_ligature_ew       0x1000587  /* U+0587 ARMENIAN SMALL LIGATURE ECH YIWN */
1796 #define XKB_KEY_Armenian_full_stop         0x1000589  /* U+0589 ARMENIAN FULL STOP */
1797 #define XKB_KEY_Armenian_verjaket          0x1000589  /* U+0589 ARMENIAN FULL STOP */
1798 #define XKB_KEY_Armenian_separation_mark   0x100055d  /* U+055D ARMENIAN COMMA */
1799 #define XKB_KEY_Armenian_but               0x100055d  /* U+055D ARMENIAN COMMA */
1800 #define XKB_KEY_Armenian_hyphen            0x100058a  /* U+058A ARMENIAN HYPHEN */
1801 #define XKB_KEY_Armenian_yentamna          0x100058a  /* U+058A ARMENIAN HYPHEN */
1802 #define XKB_KEY_Armenian_exclam            0x100055c  /* U+055C ARMENIAN EXCLAMATION MARK */
1803 #define XKB_KEY_Armenian_amanak            0x100055c  /* U+055C ARMENIAN EXCLAMATION MARK */
1804 #define XKB_KEY_Armenian_accent            0x100055b  /* U+055B ARMENIAN EMPHASIS MARK */
1805 #define XKB_KEY_Armenian_shesht            0x100055b  /* U+055B ARMENIAN EMPHASIS MARK */
1806 #define XKB_KEY_Armenian_question          0x100055e  /* U+055E ARMENIAN QUESTION MARK */
1807 #define XKB_KEY_Armenian_paruyk            0x100055e  /* U+055E ARMENIAN QUESTION MARK */
1808 #define XKB_KEY_Armenian_AYB               0x1000531  /* U+0531 ARMENIAN CAPITAL LETTER AYB */
1809 #define XKB_KEY_Armenian_ayb               0x1000561  /* U+0561 ARMENIAN SMALL LETTER AYB */
1810 #define XKB_KEY_Armenian_BEN               0x1000532  /* U+0532 ARMENIAN CAPITAL LETTER BEN */
1811 #define XKB_KEY_Armenian_ben               0x1000562  /* U+0562 ARMENIAN SMALL LETTER BEN */
1812 #define XKB_KEY_Armenian_GIM               0x1000533  /* U+0533 ARMENIAN CAPITAL LETTER GIM */
1813 #define XKB_KEY_Armenian_gim               0x1000563  /* U+0563 ARMENIAN SMALL LETTER GIM */
1814 #define XKB_KEY_Armenian_DA                0x1000534  /* U+0534 ARMENIAN CAPITAL LETTER DA */
1815 #define XKB_KEY_Armenian_da                0x1000564  /* U+0564 ARMENIAN SMALL LETTER DA */
1816 #define XKB_KEY_Armenian_YECH              0x1000535  /* U+0535 ARMENIAN CAPITAL LETTER ECH */
1817 #define XKB_KEY_Armenian_yech              0x1000565  /* U+0565 ARMENIAN SMALL LETTER ECH */
1818 #define XKB_KEY_Armenian_ZA                0x1000536  /* U+0536 ARMENIAN CAPITAL LETTER ZA */
1819 #define XKB_KEY_Armenian_za                0x1000566  /* U+0566 ARMENIAN SMALL LETTER ZA */
1820 #define XKB_KEY_Armenian_E                 0x1000537  /* U+0537 ARMENIAN CAPITAL LETTER EH */
1821 #define XKB_KEY_Armenian_e                 0x1000567  /* U+0567 ARMENIAN SMALL LETTER EH */
1822 #define XKB_KEY_Armenian_AT                0x1000538  /* U+0538 ARMENIAN CAPITAL LETTER ET */
1823 #define XKB_KEY_Armenian_at                0x1000568  /* U+0568 ARMENIAN SMALL LETTER ET */
1824 #define XKB_KEY_Armenian_TO                0x1000539  /* U+0539 ARMENIAN CAPITAL LETTER TO */
1825 #define XKB_KEY_Armenian_to                0x1000569  /* U+0569 ARMENIAN SMALL LETTER TO */
1826 #define XKB_KEY_Armenian_ZHE               0x100053a  /* U+053A ARMENIAN CAPITAL LETTER ZHE */
1827 #define XKB_KEY_Armenian_zhe               0x100056a  /* U+056A ARMENIAN SMALL LETTER ZHE */
1828 #define XKB_KEY_Armenian_INI               0x100053b  /* U+053B ARMENIAN CAPITAL LETTER INI */
1829 #define XKB_KEY_Armenian_ini               0x100056b  /* U+056B ARMENIAN SMALL LETTER INI */
1830 #define XKB_KEY_Armenian_LYUN              0x100053c  /* U+053C ARMENIAN CAPITAL LETTER LIWN */
1831 #define XKB_KEY_Armenian_lyun              0x100056c  /* U+056C ARMENIAN SMALL LETTER LIWN */
1832 #define XKB_KEY_Armenian_KHE               0x100053d  /* U+053D ARMENIAN CAPITAL LETTER XEH */
1833 #define XKB_KEY_Armenian_khe               0x100056d  /* U+056D ARMENIAN SMALL LETTER XEH */
1834 #define XKB_KEY_Armenian_TSA               0x100053e  /* U+053E ARMENIAN CAPITAL LETTER CA */
1835 #define XKB_KEY_Armenian_tsa               0x100056e  /* U+056E ARMENIAN SMALL LETTER CA */
1836 #define XKB_KEY_Armenian_KEN               0x100053f  /* U+053F ARMENIAN CAPITAL LETTER KEN */
1837 #define XKB_KEY_Armenian_ken               0x100056f  /* U+056F ARMENIAN SMALL LETTER KEN */
1838 #define XKB_KEY_Armenian_HO                0x1000540  /* U+0540 ARMENIAN CAPITAL LETTER HO */
1839 #define XKB_KEY_Armenian_ho                0x1000570  /* U+0570 ARMENIAN SMALL LETTER HO */
1840 #define XKB_KEY_Armenian_DZA               0x1000541  /* U+0541 ARMENIAN CAPITAL LETTER JA */
1841 #define XKB_KEY_Armenian_dza               0x1000571  /* U+0571 ARMENIAN SMALL LETTER JA */
1842 #define XKB_KEY_Armenian_GHAT              0x1000542  /* U+0542 ARMENIAN CAPITAL LETTER GHAD */
1843 #define XKB_KEY_Armenian_ghat              0x1000572  /* U+0572 ARMENIAN SMALL LETTER GHAD */
1844 #define XKB_KEY_Armenian_TCHE              0x1000543  /* U+0543 ARMENIAN CAPITAL LETTER CHEH */
1845 #define XKB_KEY_Armenian_tche              0x1000573  /* U+0573 ARMENIAN SMALL LETTER CHEH */
1846 #define XKB_KEY_Armenian_MEN               0x1000544  /* U+0544 ARMENIAN CAPITAL LETTER MEN */
1847 #define XKB_KEY_Armenian_men               0x1000574  /* U+0574 ARMENIAN SMALL LETTER MEN */
1848 #define XKB_KEY_Armenian_HI                0x1000545  /* U+0545 ARMENIAN CAPITAL LETTER YI */
1849 #define XKB_KEY_Armenian_hi                0x1000575  /* U+0575 ARMENIAN SMALL LETTER YI */
1850 #define XKB_KEY_Armenian_NU                0x1000546  /* U+0546 ARMENIAN CAPITAL LETTER NOW */
1851 #define XKB_KEY_Armenian_nu                0x1000576  /* U+0576 ARMENIAN SMALL LETTER NOW */
1852 #define XKB_KEY_Armenian_SHA               0x1000547  /* U+0547 ARMENIAN CAPITAL LETTER SHA */
1853 #define XKB_KEY_Armenian_sha               0x1000577  /* U+0577 ARMENIAN SMALL LETTER SHA */
1854 #define XKB_KEY_Armenian_VO                0x1000548  /* U+0548 ARMENIAN CAPITAL LETTER VO */
1855 #define XKB_KEY_Armenian_vo                0x1000578  /* U+0578 ARMENIAN SMALL LETTER VO */
1856 #define XKB_KEY_Armenian_CHA               0x1000549  /* U+0549 ARMENIAN CAPITAL LETTER CHA */
1857 #define XKB_KEY_Armenian_cha               0x1000579  /* U+0579 ARMENIAN SMALL LETTER CHA */
1858 #define XKB_KEY_Armenian_PE                0x100054a  /* U+054A ARMENIAN CAPITAL LETTER PEH */
1859 #define XKB_KEY_Armenian_pe                0x100057a  /* U+057A ARMENIAN SMALL LETTER PEH */
1860 #define XKB_KEY_Armenian_JE                0x100054b  /* U+054B ARMENIAN CAPITAL LETTER JHEH */
1861 #define XKB_KEY_Armenian_je                0x100057b  /* U+057B ARMENIAN SMALL LETTER JHEH */
1862 #define XKB_KEY_Armenian_RA                0x100054c  /* U+054C ARMENIAN CAPITAL LETTER RA */
1863 #define XKB_KEY_Armenian_ra                0x100057c  /* U+057C ARMENIAN SMALL LETTER RA */
1864 #define XKB_KEY_Armenian_SE                0x100054d  /* U+054D ARMENIAN CAPITAL LETTER SEH */
1865 #define XKB_KEY_Armenian_se                0x100057d  /* U+057D ARMENIAN SMALL LETTER SEH */
1866 #define XKB_KEY_Armenian_VEV               0x100054e  /* U+054E ARMENIAN CAPITAL LETTER VEW */
1867 #define XKB_KEY_Armenian_vev               0x100057e  /* U+057E ARMENIAN SMALL LETTER VEW */
1868 #define XKB_KEY_Armenian_TYUN              0x100054f  /* U+054F ARMENIAN CAPITAL LETTER TIWN */
1869 #define XKB_KEY_Armenian_tyun              0x100057f  /* U+057F ARMENIAN SMALL LETTER TIWN */
1870 #define XKB_KEY_Armenian_RE                0x1000550  /* U+0550 ARMENIAN CAPITAL LETTER REH */
1871 #define XKB_KEY_Armenian_re                0x1000580  /* U+0580 ARMENIAN SMALL LETTER REH */
1872 #define XKB_KEY_Armenian_TSO               0x1000551  /* U+0551 ARMENIAN CAPITAL LETTER CO */
1873 #define XKB_KEY_Armenian_tso               0x1000581  /* U+0581 ARMENIAN SMALL LETTER CO */
1874 #define XKB_KEY_Armenian_VYUN              0x1000552  /* U+0552 ARMENIAN CAPITAL LETTER YIWN */
1875 #define XKB_KEY_Armenian_vyun              0x1000582  /* U+0582 ARMENIAN SMALL LETTER YIWN */
1876 #define XKB_KEY_Armenian_PYUR              0x1000553  /* U+0553 ARMENIAN CAPITAL LETTER PIWR */
1877 #define XKB_KEY_Armenian_pyur              0x1000583  /* U+0583 ARMENIAN SMALL LETTER PIWR */
1878 #define XKB_KEY_Armenian_KE                0x1000554  /* U+0554 ARMENIAN CAPITAL LETTER KEH */
1879 #define XKB_KEY_Armenian_ke                0x1000584  /* U+0584 ARMENIAN SMALL LETTER KEH */
1880 #define XKB_KEY_Armenian_O                 0x1000555  /* U+0555 ARMENIAN CAPITAL LETTER OH */
1881 #define XKB_KEY_Armenian_o                 0x1000585  /* U+0585 ARMENIAN SMALL LETTER OH */
1882 #define XKB_KEY_Armenian_FE                0x1000556  /* U+0556 ARMENIAN CAPITAL LETTER FEH */
1883 #define XKB_KEY_Armenian_fe                0x1000586  /* U+0586 ARMENIAN SMALL LETTER FEH */
1884 #define XKB_KEY_Armenian_apostrophe        0x100055a  /* U+055A ARMENIAN APOSTROPHE */
1885
1886 /*
1887  * Georgian
1888  */
1889
1890 #define XKB_KEY_Georgian_an                0x10010d0  /* U+10D0 GEORGIAN LETTER AN */
1891 #define XKB_KEY_Georgian_ban               0x10010d1  /* U+10D1 GEORGIAN LETTER BAN */
1892 #define XKB_KEY_Georgian_gan               0x10010d2  /* U+10D2 GEORGIAN LETTER GAN */
1893 #define XKB_KEY_Georgian_don               0x10010d3  /* U+10D3 GEORGIAN LETTER DON */
1894 #define XKB_KEY_Georgian_en                0x10010d4  /* U+10D4 GEORGIAN LETTER EN */
1895 #define XKB_KEY_Georgian_vin               0x10010d5  /* U+10D5 GEORGIAN LETTER VIN */
1896 #define XKB_KEY_Georgian_zen               0x10010d6  /* U+10D6 GEORGIAN LETTER ZEN */
1897 #define XKB_KEY_Georgian_tan               0x10010d7  /* U+10D7 GEORGIAN LETTER TAN */
1898 #define XKB_KEY_Georgian_in                0x10010d8  /* U+10D8 GEORGIAN LETTER IN */
1899 #define XKB_KEY_Georgian_kan               0x10010d9  /* U+10D9 GEORGIAN LETTER KAN */
1900 #define XKB_KEY_Georgian_las               0x10010da  /* U+10DA GEORGIAN LETTER LAS */
1901 #define XKB_KEY_Georgian_man               0x10010db  /* U+10DB GEORGIAN LETTER MAN */
1902 #define XKB_KEY_Georgian_nar               0x10010dc  /* U+10DC GEORGIAN LETTER NAR */
1903 #define XKB_KEY_Georgian_on                0x10010dd  /* U+10DD GEORGIAN LETTER ON */
1904 #define XKB_KEY_Georgian_par               0x10010de  /* U+10DE GEORGIAN LETTER PAR */
1905 #define XKB_KEY_Georgian_zhar              0x10010df  /* U+10DF GEORGIAN LETTER ZHAR */
1906 #define XKB_KEY_Georgian_rae               0x10010e0  /* U+10E0 GEORGIAN LETTER RAE */
1907 #define XKB_KEY_Georgian_san               0x10010e1  /* U+10E1 GEORGIAN LETTER SAN */
1908 #define XKB_KEY_Georgian_tar               0x10010e2  /* U+10E2 GEORGIAN LETTER TAR */
1909 #define XKB_KEY_Georgian_un                0x10010e3  /* U+10E3 GEORGIAN LETTER UN */
1910 #define XKB_KEY_Georgian_phar              0x10010e4  /* U+10E4 GEORGIAN LETTER PHAR */
1911 #define XKB_KEY_Georgian_khar              0x10010e5  /* U+10E5 GEORGIAN LETTER KHAR */
1912 #define XKB_KEY_Georgian_ghan              0x10010e6  /* U+10E6 GEORGIAN LETTER GHAN */
1913 #define XKB_KEY_Georgian_qar               0x10010e7  /* U+10E7 GEORGIAN LETTER QAR */
1914 #define XKB_KEY_Georgian_shin              0x10010e8  /* U+10E8 GEORGIAN LETTER SHIN */
1915 #define XKB_KEY_Georgian_chin              0x10010e9  /* U+10E9 GEORGIAN LETTER CHIN */
1916 #define XKB_KEY_Georgian_can               0x10010ea  /* U+10EA GEORGIAN LETTER CAN */
1917 #define XKB_KEY_Georgian_jil               0x10010eb  /* U+10EB GEORGIAN LETTER JIL */
1918 #define XKB_KEY_Georgian_cil               0x10010ec  /* U+10EC GEORGIAN LETTER CIL */
1919 #define XKB_KEY_Georgian_char              0x10010ed  /* U+10ED GEORGIAN LETTER CHAR */
1920 #define XKB_KEY_Georgian_xan               0x10010ee  /* U+10EE GEORGIAN LETTER XAN */
1921 #define XKB_KEY_Georgian_jhan              0x10010ef  /* U+10EF GEORGIAN LETTER JHAN */
1922 #define XKB_KEY_Georgian_hae               0x10010f0  /* U+10F0 GEORGIAN LETTER HAE */
1923 #define XKB_KEY_Georgian_he                0x10010f1  /* U+10F1 GEORGIAN LETTER HE */
1924 #define XKB_KEY_Georgian_hie               0x10010f2  /* U+10F2 GEORGIAN LETTER HIE */
1925 #define XKB_KEY_Georgian_we                0x10010f3  /* U+10F3 GEORGIAN LETTER WE */
1926 #define XKB_KEY_Georgian_har               0x10010f4  /* U+10F4 GEORGIAN LETTER HAR */
1927 #define XKB_KEY_Georgian_hoe               0x10010f5  /* U+10F5 GEORGIAN LETTER HOE */
1928 #define XKB_KEY_Georgian_fi                0x10010f6  /* U+10F6 GEORGIAN LETTER FI */
1929
1930 /*
1931  * Azeri (and other Turkic or Caucasian languages)
1932  */
1933
1934 /* latin */
1935 #define XKB_KEY_Xabovedot                  0x1001e8a  /* U+1E8A LATIN CAPITAL LETTER X WITH DOT ABOVE */
1936 #define XKB_KEY_Ibreve                     0x100012c  /* U+012C LATIN CAPITAL LETTER I WITH BREVE */
1937 #define XKB_KEY_Zstroke                    0x10001b5  /* U+01B5 LATIN CAPITAL LETTER Z WITH STROKE */
1938 #define XKB_KEY_Gcaron                     0x10001e6  /* U+01E6 LATIN CAPITAL LETTER G WITH CARON */
1939 #define XKB_KEY_Ocaron                     0x10001d1  /* U+01D1 LATIN CAPITAL LETTER O WITH CARON */
1940 #define XKB_KEY_Obarred                    0x100019f  /* U+019F LATIN CAPITAL LETTER O WITH MIDDLE TILDE */
1941 #define XKB_KEY_xabovedot                  0x1001e8b  /* U+1E8B LATIN SMALL LETTER X WITH DOT ABOVE */
1942 #define XKB_KEY_ibreve                     0x100012d  /* U+012D LATIN SMALL LETTER I WITH BREVE */
1943 #define XKB_KEY_zstroke                    0x10001b6  /* U+01B6 LATIN SMALL LETTER Z WITH STROKE */
1944 #define XKB_KEY_gcaron                     0x10001e7  /* U+01E7 LATIN SMALL LETTER G WITH CARON */
1945 #define XKB_KEY_ocaron                     0x10001d2  /* U+01D2 LATIN SMALL LETTER O WITH CARON */
1946 #define XKB_KEY_obarred                    0x1000275  /* U+0275 LATIN SMALL LETTER BARRED O */
1947 #define XKB_KEY_SCHWA                      0x100018f  /* U+018F LATIN CAPITAL LETTER SCHWA */
1948 #define XKB_KEY_schwa                      0x1000259  /* U+0259 LATIN SMALL LETTER SCHWA */
1949 #define XKB_KEY_EZH                        0x10001b7  /* U+01B7 LATIN CAPITAL LETTER EZH */
1950 #define XKB_KEY_ezh                        0x1000292  /* U+0292 LATIN SMALL LETTER EZH */
1951 /* those are not really Caucasus */
1952 /* For Inupiak */
1953 #define XKB_KEY_Lbelowdot                  0x1001e36  /* U+1E36 LATIN CAPITAL LETTER L WITH DOT BELOW */
1954 #define XKB_KEY_lbelowdot                  0x1001e37  /* U+1E37 LATIN SMALL LETTER L WITH DOT BELOW */
1955
1956 /*
1957  * Vietnamese
1958  */
1959
1960 #define XKB_KEY_Abelowdot                  0x1001ea0  /* U+1EA0 LATIN CAPITAL LETTER A WITH DOT BELOW */
1961 #define XKB_KEY_abelowdot                  0x1001ea1  /* U+1EA1 LATIN SMALL LETTER A WITH DOT BELOW */
1962 #define XKB_KEY_Ahook                      0x1001ea2  /* U+1EA2 LATIN CAPITAL LETTER A WITH HOOK ABOVE */
1963 #define XKB_KEY_ahook                      0x1001ea3  /* U+1EA3 LATIN SMALL LETTER A WITH HOOK ABOVE */
1964 #define XKB_KEY_Acircumflexacute           0x1001ea4  /* U+1EA4 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE */
1965 #define XKB_KEY_acircumflexacute           0x1001ea5  /* U+1EA5 LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE */
1966 #define XKB_KEY_Acircumflexgrave           0x1001ea6  /* U+1EA6 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE */
1967 #define XKB_KEY_acircumflexgrave           0x1001ea7  /* U+1EA7 LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE */
1968 #define XKB_KEY_Acircumflexhook            0x1001ea8  /* U+1EA8 LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE */
1969 #define XKB_KEY_acircumflexhook            0x1001ea9  /* U+1EA9 LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE */
1970 #define XKB_KEY_Acircumflextilde           0x1001eaa  /* U+1EAA LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE */
1971 #define XKB_KEY_acircumflextilde           0x1001eab  /* U+1EAB LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE */
1972 #define XKB_KEY_Acircumflexbelowdot        0x1001eac  /* U+1EAC LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW */
1973 #define XKB_KEY_acircumflexbelowdot        0x1001ead  /* U+1EAD LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW */
1974 #define XKB_KEY_Abreveacute                0x1001eae  /* U+1EAE LATIN CAPITAL LETTER A WITH BREVE AND ACUTE */
1975 #define XKB_KEY_abreveacute                0x1001eaf  /* U+1EAF LATIN SMALL LETTER A WITH BREVE AND ACUTE */
1976 #define XKB_KEY_Abrevegrave                0x1001eb0  /* U+1EB0 LATIN CAPITAL LETTER A WITH BREVE AND GRAVE */
1977 #define XKB_KEY_abrevegrave                0x1001eb1  /* U+1EB1 LATIN SMALL LETTER A WITH BREVE AND GRAVE */
1978 #define XKB_KEY_Abrevehook                 0x1001eb2  /* U+1EB2 LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE */
1979 #define XKB_KEY_abrevehook                 0x1001eb3  /* U+1EB3 LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE */
1980 #define XKB_KEY_Abrevetilde                0x1001eb4  /* U+1EB4 LATIN CAPITAL LETTER A WITH BREVE AND TILDE */
1981 #define XKB_KEY_abrevetilde                0x1001eb5  /* U+1EB5 LATIN SMALL LETTER A WITH BREVE AND TILDE */
1982 #define XKB_KEY_Abrevebelowdot             0x1001eb6  /* U+1EB6 LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW */
1983 #define XKB_KEY_abrevebelowdot             0x1001eb7  /* U+1EB7 LATIN SMALL LETTER A WITH BREVE AND DOT BELOW */
1984 #define XKB_KEY_Ebelowdot                  0x1001eb8  /* U+1EB8 LATIN CAPITAL LETTER E WITH DOT BELOW */
1985 #define XKB_KEY_ebelowdot                  0x1001eb9  /* U+1EB9 LATIN SMALL LETTER E WITH DOT BELOW */
1986 #define XKB_KEY_Ehook                      0x1001eba  /* U+1EBA LATIN CAPITAL LETTER E WITH HOOK ABOVE */
1987 #define XKB_KEY_ehook                      0x1001ebb  /* U+1EBB LATIN SMALL LETTER E WITH HOOK ABOVE */
1988 #define XKB_KEY_Etilde                     0x1001ebc  /* U+1EBC LATIN CAPITAL LETTER E WITH TILDE */
1989 #define XKB_KEY_etilde                     0x1001ebd  /* U+1EBD LATIN SMALL LETTER E WITH TILDE */
1990 #define XKB_KEY_Ecircumflexacute           0x1001ebe  /* U+1EBE LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE */
1991 #define XKB_KEY_ecircumflexacute           0x1001ebf  /* U+1EBF LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE */
1992 #define XKB_KEY_Ecircumflexgrave           0x1001ec0  /* U+1EC0 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE */
1993 #define XKB_KEY_ecircumflexgrave           0x1001ec1  /* U+1EC1 LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE */
1994 #define XKB_KEY_Ecircumflexhook            0x1001ec2  /* U+1EC2 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE */
1995 #define XKB_KEY_ecircumflexhook            0x1001ec3  /* U+1EC3 LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE */
1996 #define XKB_KEY_Ecircumflextilde           0x1001ec4  /* U+1EC4 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE */
1997 #define XKB_KEY_ecircumflextilde           0x1001ec5  /* U+1EC5 LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE */
1998 #define XKB_KEY_Ecircumflexbelowdot        0x1001ec6  /* U+1EC6 LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW */
1999 #define XKB_KEY_ecircumflexbelowdot        0x1001ec7  /* U+1EC7 LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW */
2000 #define XKB_KEY_Ihook                      0x1001ec8  /* U+1EC8 LATIN CAPITAL LETTER I WITH HOOK ABOVE */
2001 #define XKB_KEY_ihook                      0x1001ec9  /* U+1EC9 LATIN SMALL LETTER I WITH HOOK ABOVE */
2002 #define XKB_KEY_Ibelowdot                  0x1001eca  /* U+1ECA LATIN CAPITAL LETTER I WITH DOT BELOW */
2003 #define XKB_KEY_ibelowdot                  0x1001ecb  /* U+1ECB LATIN SMALL LETTER I WITH DOT BELOW */
2004 #define XKB_KEY_Obelowdot                  0x1001ecc  /* U+1ECC LATIN CAPITAL LETTER O WITH DOT BELOW */
2005 #define XKB_KEY_obelowdot                  0x1001ecd  /* U+1ECD LATIN SMALL LETTER O WITH DOT BELOW */
2006 #define XKB_KEY_Ohook                      0x1001ece  /* U+1ECE LATIN CAPITAL LETTER O WITH HOOK ABOVE */
2007 #define XKB_KEY_ohook                      0x1001ecf  /* U+1ECF LATIN SMALL LETTER O WITH HOOK ABOVE */
2008 #define XKB_KEY_Ocircumflexacute           0x1001ed0  /* U+1ED0 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE */
2009 #define XKB_KEY_ocircumflexacute           0x1001ed1  /* U+1ED1 LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE */
2010 #define XKB_KEY_Ocircumflexgrave           0x1001ed2  /* U+1ED2 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE */
2011 #define XKB_KEY_ocircumflexgrave           0x1001ed3  /* U+1ED3 LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE */
2012 #define XKB_KEY_Ocircumflexhook            0x1001ed4  /* U+1ED4 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE */
2013 #define XKB_KEY_ocircumflexhook            0x1001ed5  /* U+1ED5 LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE */
2014 #define XKB_KEY_Ocircumflextilde           0x1001ed6  /* U+1ED6 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE */
2015 #define XKB_KEY_ocircumflextilde           0x1001ed7  /* U+1ED7 LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE */
2016 #define XKB_KEY_Ocircumflexbelowdot        0x1001ed8  /* U+1ED8 LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW */
2017 #define XKB_KEY_ocircumflexbelowdot        0x1001ed9  /* U+1ED9 LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW */
2018 #define XKB_KEY_Ohornacute                 0x1001eda  /* U+1EDA LATIN CAPITAL LETTER O WITH HORN AND ACUTE */
2019 #define XKB_KEY_ohornacute                 0x1001edb  /* U+1EDB LATIN SMALL LETTER O WITH HORN AND ACUTE */
2020 #define XKB_KEY_Ohorngrave                 0x1001edc  /* U+1EDC LATIN CAPITAL LETTER O WITH HORN AND GRAVE */
2021 #define XKB_KEY_ohorngrave                 0x1001edd  /* U+1EDD LATIN SMALL LETTER O WITH HORN AND GRAVE */
2022 #define XKB_KEY_Ohornhook                  0x1001ede  /* U+1EDE LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE */
2023 #define XKB_KEY_ohornhook                  0x1001edf  /* U+1EDF LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE */
2024 #define XKB_KEY_Ohorntilde                 0x1001ee0  /* U+1EE0 LATIN CAPITAL LETTER O WITH HORN AND TILDE */
2025 #define XKB_KEY_ohorntilde                 0x1001ee1  /* U+1EE1 LATIN SMALL LETTER O WITH HORN AND TILDE */
2026 #define XKB_KEY_Ohornbelowdot              0x1001ee2  /* U+1EE2 LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW */
2027 #define XKB_KEY_ohornbelowdot              0x1001ee3  /* U+1EE3 LATIN SMALL LETTER O WITH HORN AND DOT BELOW */
2028 #define XKB_KEY_Ubelowdot                  0x1001ee4  /* U+1EE4 LATIN CAPITAL LETTER U WITH DOT BELOW */
2029 #define XKB_KEY_ubelowdot                  0x1001ee5  /* U+1EE5 LATIN SMALL LETTER U WITH DOT BELOW */
2030 #define XKB_KEY_Uhook                      0x1001ee6  /* U+1EE6 LATIN CAPITAL LETTER U WITH HOOK ABOVE */
2031 #define XKB_KEY_uhook                      0x1001ee7  /* U+1EE7 LATIN SMALL LETTER U WITH HOOK ABOVE */
2032 #define XKB_KEY_Uhornacute                 0x1001ee8  /* U+1EE8 LATIN CAPITAL LETTER U WITH HORN AND ACUTE */
2033 #define XKB_KEY_uhornacute                 0x1001ee9  /* U+1EE9 LATIN SMALL LETTER U WITH HORN AND ACUTE */
2034 #define XKB_KEY_Uhorngrave                 0x1001eea  /* U+1EEA LATIN CAPITAL LETTER U WITH HORN AND GRAVE */
2035 #define XKB_KEY_uhorngrave                 0x1001eeb  /* U+1EEB LATIN SMALL LETTER U WITH HORN AND GRAVE */
2036 #define XKB_KEY_Uhornhook                  0x1001eec  /* U+1EEC LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE */
2037 #define XKB_KEY_uhornhook                  0x1001eed  /* U+1EED LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE */
2038 #define XKB_KEY_Uhorntilde                 0x1001eee  /* U+1EEE LATIN CAPITAL LETTER U WITH HORN AND TILDE */
2039 #define XKB_KEY_uhorntilde                 0x1001eef  /* U+1EEF LATIN SMALL LETTER U WITH HORN AND TILDE */
2040 #define XKB_KEY_Uhornbelowdot              0x1001ef0  /* U+1EF0 LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW */
2041 #define XKB_KEY_uhornbelowdot              0x1001ef1  /* U+1EF1 LATIN SMALL LETTER U WITH HORN AND DOT BELOW */
2042 #define XKB_KEY_Ybelowdot                  0x1001ef4  /* U+1EF4 LATIN CAPITAL LETTER Y WITH DOT BELOW */
2043 #define XKB_KEY_ybelowdot                  0x1001ef5  /* U+1EF5 LATIN SMALL LETTER Y WITH DOT BELOW */
2044 #define XKB_KEY_Yhook                      0x1001ef6  /* U+1EF6 LATIN CAPITAL LETTER Y WITH HOOK ABOVE */
2045 #define XKB_KEY_yhook                      0x1001ef7  /* U+1EF7 LATIN SMALL LETTER Y WITH HOOK ABOVE */
2046 #define XKB_KEY_Ytilde                     0x1001ef8  /* U+1EF8 LATIN CAPITAL LETTER Y WITH TILDE */
2047 #define XKB_KEY_ytilde                     0x1001ef9  /* U+1EF9 LATIN SMALL LETTER Y WITH TILDE */
2048 #define XKB_KEY_Ohorn                      0x10001a0  /* U+01A0 LATIN CAPITAL LETTER O WITH HORN */
2049 #define XKB_KEY_ohorn                      0x10001a1  /* U+01A1 LATIN SMALL LETTER O WITH HORN */
2050 #define XKB_KEY_Uhorn                      0x10001af  /* U+01AF LATIN CAPITAL LETTER U WITH HORN */
2051 #define XKB_KEY_uhorn                      0x10001b0  /* U+01B0 LATIN SMALL LETTER U WITH HORN */
2052 #define XKB_KEY_combining_tilde            0x1000303  /* U+0303 COMBINING TILDE */
2053 #define XKB_KEY_combining_grave            0x1000300  /* U+0300 COMBINING GRAVE ACCENT */
2054 #define XKB_KEY_combining_acute            0x1000301  /* U+0301 COMBINING ACUTE ACCENT */
2055 #define XKB_KEY_combining_hook             0x1000309  /* U+0309 COMBINING HOOK ABOVE */
2056 #define XKB_KEY_combining_belowdot         0x1000323  /* U+0323 COMBINING DOT BELOW */
2057
2058
2059 #define XKB_KEY_EcuSign                    0x10020a0  /* U+20A0 EURO-CURRENCY SIGN */
2060 #define XKB_KEY_ColonSign                  0x10020a1  /* U+20A1 COLON SIGN */
2061 #define XKB_KEY_CruzeiroSign               0x10020a2  /* U+20A2 CRUZEIRO SIGN */
2062 #define XKB_KEY_FFrancSign                 0x10020a3  /* U+20A3 FRENCH FRANC SIGN */
2063 #define XKB_KEY_LiraSign                   0x10020a4  /* U+20A4 LIRA SIGN */
2064 #define XKB_KEY_MillSign                   0x10020a5  /* U+20A5 MILL SIGN */
2065 #define XKB_KEY_NairaSign                  0x10020a6  /* U+20A6 NAIRA SIGN */
2066 #define XKB_KEY_PesetaSign                 0x10020a7  /* U+20A7 PESETA SIGN */
2067 #define XKB_KEY_RupeeSign                  0x10020a8  /* U+20A8 RUPEE SIGN */
2068 #define XKB_KEY_WonSign                    0x10020a9  /* U+20A9 WON SIGN */
2069 #define XKB_KEY_NewSheqelSign              0x10020aa  /* U+20AA NEW SHEQEL SIGN */
2070 #define XKB_KEY_DongSign                   0x10020ab  /* U+20AB DONG SIGN */
2071 #define XKB_KEY_EuroSign                      0x20ac  /* U+20AC EURO SIGN */
2072
2073 /* one, two and three are defined above. */
2074 #define XKB_KEY_zerosuperior               0x1002070  /* U+2070 SUPERSCRIPT ZERO */
2075 #define XKB_KEY_foursuperior               0x1002074  /* U+2074 SUPERSCRIPT FOUR */
2076 #define XKB_KEY_fivesuperior               0x1002075  /* U+2075 SUPERSCRIPT FIVE */
2077 #define XKB_KEY_sixsuperior                0x1002076  /* U+2076 SUPERSCRIPT SIX */
2078 #define XKB_KEY_sevensuperior              0x1002077  /* U+2077 SUPERSCRIPT SEVEN */
2079 #define XKB_KEY_eightsuperior              0x1002078  /* U+2078 SUPERSCRIPT EIGHT */
2080 #define XKB_KEY_ninesuperior               0x1002079  /* U+2079 SUPERSCRIPT NINE */
2081 #define XKB_KEY_zerosubscript              0x1002080  /* U+2080 SUBSCRIPT ZERO */
2082 #define XKB_KEY_onesubscript               0x1002081  /* U+2081 SUBSCRIPT ONE */
2083 #define XKB_KEY_twosubscript               0x1002082  /* U+2082 SUBSCRIPT TWO */
2084 #define XKB_KEY_threesubscript             0x1002083  /* U+2083 SUBSCRIPT THREE */
2085 #define XKB_KEY_foursubscript              0x1002084  /* U+2084 SUBSCRIPT FOUR */
2086 #define XKB_KEY_fivesubscript              0x1002085  /* U+2085 SUBSCRIPT FIVE */
2087 #define XKB_KEY_sixsubscript               0x1002086  /* U+2086 SUBSCRIPT SIX */
2088 #define XKB_KEY_sevensubscript             0x1002087  /* U+2087 SUBSCRIPT SEVEN */
2089 #define XKB_KEY_eightsubscript             0x1002088  /* U+2088 SUBSCRIPT EIGHT */
2090 #define XKB_KEY_ninesubscript              0x1002089  /* U+2089 SUBSCRIPT NINE */
2091 #define XKB_KEY_partdifferential           0x1002202  /* U+2202 PARTIAL DIFFERENTIAL */
2092 #define XKB_KEY_emptyset                   0x1002205  /* U+2205 NULL SET */
2093 #define XKB_KEY_elementof                  0x1002208  /* U+2208 ELEMENT OF */
2094 #define XKB_KEY_notelementof               0x1002209  /* U+2209 NOT AN ELEMENT OF */
2095 #define XKB_KEY_containsas                 0x100220B  /* U+220B CONTAINS AS MEMBER */
2096 #define XKB_KEY_squareroot                 0x100221A  /* U+221A SQUARE ROOT */
2097 #define XKB_KEY_cuberoot                   0x100221B  /* U+221B CUBE ROOT */
2098 #define XKB_KEY_fourthroot                 0x100221C  /* U+221C FOURTH ROOT */
2099 #define XKB_KEY_dintegral                  0x100222C  /* U+222C DOUBLE INTEGRAL */
2100 #define XKB_KEY_tintegral                  0x100222D  /* U+222D TRIPLE INTEGRAL */
2101 #define XKB_KEY_because                    0x1002235  /* U+2235 BECAUSE */
2102 #define XKB_KEY_approxeq                   0x1002248  /*(U+2248 ALMOST EQUAL TO)*/
2103 #define XKB_KEY_notapproxeq                0x1002247  /*(U+2247 NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO)*/
2104 #define XKB_KEY_notidentical               0x1002262  /* U+2262 NOT IDENTICAL TO */
2105 #define XKB_KEY_stricteq                   0x1002263  /* U+2263 STRICTLY EQUIVALENT TO */
2106
2107 #define XKB_KEY_braille_dot_1                 0xfff1
2108 #define XKB_KEY_braille_dot_2                 0xfff2
2109 #define XKB_KEY_braille_dot_3                 0xfff3
2110 #define XKB_KEY_braille_dot_4                 0xfff4
2111 #define XKB_KEY_braille_dot_5                 0xfff5
2112 #define XKB_KEY_braille_dot_6                 0xfff6
2113 #define XKB_KEY_braille_dot_7                 0xfff7
2114 #define XKB_KEY_braille_dot_8                 0xfff8
2115 #define XKB_KEY_braille_dot_9                 0xfff9
2116 #define XKB_KEY_braille_dot_10                0xfffa
2117 #define XKB_KEY_braille_blank              0x1002800  /* U+2800 BRAILLE PATTERN BLANK */
2118 #define XKB_KEY_braille_dots_1             0x1002801  /* U+2801 BRAILLE PATTERN DOTS-1 */
2119 #define XKB_KEY_braille_dots_2             0x1002802  /* U+2802 BRAILLE PATTERN DOTS-2 */
2120 #define XKB_KEY_braille_dots_12            0x1002803  /* U+2803 BRAILLE PATTERN DOTS-12 */
2121 #define XKB_KEY_braille_dots_3             0x1002804  /* U+2804 BRAILLE PATTERN DOTS-3 */
2122 #define XKB_KEY_braille_dots_13            0x1002805  /* U+2805 BRAILLE PATTERN DOTS-13 */
2123 #define XKB_KEY_braille_dots_23            0x1002806  /* U+2806 BRAILLE PATTERN DOTS-23 */
2124 #define XKB_KEY_braille_dots_123           0x1002807  /* U+2807 BRAILLE PATTERN DOTS-123 */
2125 #define XKB_KEY_braille_dots_4             0x1002808  /* U+2808 BRAILLE PATTERN DOTS-4 */
2126 #define XKB_KEY_braille_dots_14            0x1002809  /* U+2809 BRAILLE PATTERN DOTS-14 */
2127 #define XKB_KEY_braille_dots_24            0x100280a  /* U+280a BRAILLE PATTERN DOTS-24 */
2128 #define XKB_KEY_braille_dots_124           0x100280b  /* U+280b BRAILLE PATTERN DOTS-124 */
2129 #define XKB_KEY_braille_dots_34            0x100280c  /* U+280c BRAILLE PATTERN DOTS-34 */
2130 #define XKB_KEY_braille_dots_134           0x100280d  /* U+280d BRAILLE PATTERN DOTS-134 */
2131 #define XKB_KEY_braille_dots_234           0x100280e  /* U+280e BRAILLE PATTERN DOTS-234 */
2132 #define XKB_KEY_braille_dots_1234          0x100280f  /* U+280f BRAILLE PATTERN DOTS-1234 */
2133 #define XKB_KEY_braille_dots_5             0x1002810  /* U+2810 BRAILLE PATTERN DOTS-5 */
2134 #define XKB_KEY_braille_dots_15            0x1002811  /* U+2811 BRAILLE PATTERN DOTS-15 */
2135 #define XKB_KEY_braille_dots_25            0x1002812  /* U+2812 BRAILLE PATTERN DOTS-25 */
2136 #define XKB_KEY_braille_dots_125           0x1002813  /* U+2813 BRAILLE PATTERN DOTS-125 */
2137 #define XKB_KEY_braille_dots_35            0x1002814  /* U+2814 BRAILLE PATTERN DOTS-35 */
2138 #define XKB_KEY_braille_dots_135           0x1002815  /* U+2815 BRAILLE PATTERN DOTS-135 */
2139 #define XKB_KEY_braille_dots_235           0x1002816  /* U+2816 BRAILLE PATTERN DOTS-235 */
2140 #define XKB_KEY_braille_dots_1235          0x1002817  /* U+2817 BRAILLE PATTERN DOTS-1235 */
2141 #define XKB_KEY_braille_dots_45            0x1002818  /* U+2818 BRAILLE PATTERN DOTS-45 */
2142 #define XKB_KEY_braille_dots_145           0x1002819  /* U+2819 BRAILLE PATTERN DOTS-145 */
2143 #define XKB_KEY_braille_dots_245           0x100281a  /* U+281a BRAILLE PATTERN DOTS-245 */
2144 #define XKB_KEY_braille_dots_1245          0x100281b  /* U+281b BRAILLE PATTERN DOTS-1245 */
2145 #define XKB_KEY_braille_dots_345           0x100281c  /* U+281c BRAILLE PATTERN DOTS-345 */
2146 #define XKB_KEY_braille_dots_1345          0x100281d  /* U+281d BRAILLE PATTERN DOTS-1345 */
2147 #define XKB_KEY_braille_dots_2345          0x100281e  /* U+281e BRAILLE PATTERN DOTS-2345 */
2148 #define XKB_KEY_braille_dots_12345         0x100281f  /* U+281f BRAILLE PATTERN DOTS-12345 */
2149 #define XKB_KEY_braille_dots_6             0x1002820  /* U+2820 BRAILLE PATTERN DOTS-6 */
2150 #define XKB_KEY_braille_dots_16            0x1002821  /* U+2821 BRAILLE PATTERN DOTS-16 */
2151 #define XKB_KEY_braille_dots_26            0x1002822  /* U+2822 BRAILLE PATTERN DOTS-26 */
2152 #define XKB_KEY_braille_dots_126           0x1002823  /* U+2823 BRAILLE PATTERN DOTS-126 */
2153 #define XKB_KEY_braille_dots_36            0x1002824  /* U+2824 BRAILLE PATTERN DOTS-36 */
2154 #define XKB_KEY_braille_dots_136           0x1002825  /* U+2825 BRAILLE PATTERN DOTS-136 */
2155 #define XKB_KEY_braille_dots_236           0x1002826  /* U+2826 BRAILLE PATTERN DOTS-236 */
2156 #define XKB_KEY_braille_dots_1236          0x1002827  /* U+2827 BRAILLE PATTERN DOTS-1236 */
2157 #define XKB_KEY_braille_dots_46            0x1002828  /* U+2828 BRAILLE PATTERN DOTS-46 */
2158 #define XKB_KEY_braille_dots_146           0x1002829  /* U+2829 BRAILLE PATTERN DOTS-146 */
2159 #define XKB_KEY_braille_dots_246           0x100282a  /* U+282a BRAILLE PATTERN DOTS-246 */
2160 #define XKB_KEY_braille_dots_1246          0x100282b  /* U+282b BRAILLE PATTERN DOTS-1246 */
2161 #define XKB_KEY_braille_dots_346           0x100282c  /* U+282c BRAILLE PATTERN DOTS-346 */
2162 #define XKB_KEY_braille_dots_1346          0x100282d  /* U+282d BRAILLE PATTERN DOTS-1346 */
2163 #define XKB_KEY_braille_dots_2346          0x100282e  /* U+282e BRAILLE PATTERN DOTS-2346 */
2164 #define XKB_KEY_braille_dots_12346         0x100282f  /* U+282f BRAILLE PATTERN DOTS-12346 */
2165 #define XKB_KEY_braille_dots_56            0x1002830  /* U+2830 BRAILLE PATTERN DOTS-56 */
2166 #define XKB_KEY_braille_dots_156           0x1002831  /* U+2831 BRAILLE PATTERN DOTS-156 */
2167 #define XKB_KEY_braille_dots_256           0x1002832  /* U+2832 BRAILLE PATTERN DOTS-256 */
2168 #define XKB_KEY_braille_dots_1256          0x1002833  /* U+2833 BRAILLE PATTERN DOTS-1256 */
2169 #define XKB_KEY_braille_dots_356           0x1002834  /* U+2834 BRAILLE PATTERN DOTS-356 */
2170 #define XKB_KEY_braille_dots_1356          0x1002835  /* U+2835 BRAILLE PATTERN DOTS-1356 */
2171 #define XKB_KEY_braille_dots_2356          0x1002836  /* U+2836 BRAILLE PATTERN DOTS-2356 */
2172 #define XKB_KEY_braille_dots_12356         0x1002837  /* U+2837 BRAILLE PATTERN DOTS-12356 */
2173 #define XKB_KEY_braille_dots_456           0x1002838  /* U+2838 BRAILLE PATTERN DOTS-456 */
2174 #define XKB_KEY_braille_dots_1456          0x1002839  /* U+2839 BRAILLE PATTERN DOTS-1456 */
2175 #define XKB_KEY_braille_dots_2456          0x100283a  /* U+283a BRAILLE PATTERN DOTS-2456 */
2176 #define XKB_KEY_braille_dots_12456         0x100283b  /* U+283b BRAILLE PATTERN DOTS-12456 */
2177 #define XKB_KEY_braille_dots_3456          0x100283c  /* U+283c BRAILLE PATTERN DOTS-3456 */
2178 #define XKB_KEY_braille_dots_13456         0x100283d  /* U+283d BRAILLE PATTERN DOTS-13456 */
2179 #define XKB_KEY_braille_dots_23456         0x100283e  /* U+283e BRAILLE PATTERN DOTS-23456 */
2180 #define XKB_KEY_braille_dots_123456        0x100283f  /* U+283f BRAILLE PATTERN DOTS-123456 */
2181 #define XKB_KEY_braille_dots_7             0x1002840  /* U+2840 BRAILLE PATTERN DOTS-7 */
2182 #define XKB_KEY_braille_dots_17            0x1002841  /* U+2841 BRAILLE PATTERN DOTS-17 */
2183 #define XKB_KEY_braille_dots_27            0x1002842  /* U+2842 BRAILLE PATTERN DOTS-27 */
2184 #define XKB_KEY_braille_dots_127           0x1002843  /* U+2843 BRAILLE PATTERN DOTS-127 */
2185 #define XKB_KEY_braille_dots_37            0x1002844  /* U+2844 BRAILLE PATTERN DOTS-37 */
2186 #define XKB_KEY_braille_dots_137           0x1002845  /* U+2845 BRAILLE PATTERN DOTS-137 */
2187 #define XKB_KEY_braille_dots_237           0x1002846  /* U+2846 BRAILLE PATTERN DOTS-237 */
2188 #define XKB_KEY_braille_dots_1237          0x1002847  /* U+2847 BRAILLE PATTERN DOTS-1237 */
2189 #define XKB_KEY_braille_dots_47            0x1002848  /* U+2848 BRAILLE PATTERN DOTS-47 */
2190 #define XKB_KEY_braille_dots_147           0x1002849  /* U+2849 BRAILLE PATTERN DOTS-147 */
2191 #define XKB_KEY_braille_dots_247           0x100284a  /* U+284a BRAILLE PATTERN DOTS-247 */
2192 #define XKB_KEY_braille_dots_1247          0x100284b  /* U+284b BRAILLE PATTERN DOTS-1247 */
2193 #define XKB_KEY_braille_dots_347           0x100284c  /* U+284c BRAILLE PATTERN DOTS-347 */
2194 #define XKB_KEY_braille_dots_1347          0x100284d  /* U+284d BRAILLE PATTERN DOTS-1347 */
2195 #define XKB_KEY_braille_dots_2347          0x100284e  /* U+284e BRAILLE PATTERN DOTS-2347 */
2196 #define XKB_KEY_braille_dots_12347         0x100284f  /* U+284f BRAILLE PATTERN DOTS-12347 */
2197 #define XKB_KEY_braille_dots_57            0x1002850  /* U+2850 BRAILLE PATTERN DOTS-57 */
2198 #define XKB_KEY_braille_dots_157           0x1002851  /* U+2851 BRAILLE PATTERN DOTS-157 */
2199 #define XKB_KEY_braille_dots_257           0x1002852  /* U+2852 BRAILLE PATTERN DOTS-257 */
2200 #define XKB_KEY_braille_dots_1257          0x1002853  /* U+2853 BRAILLE PATTERN DOTS-1257 */
2201 #define XKB_KEY_braille_dots_357           0x1002854  /* U+2854 BRAILLE PATTERN DOTS-357 */
2202 #define XKB_KEY_braille_dots_1357          0x1002855  /* U+2855 BRAILLE PATTERN DOTS-1357 */
2203 #define XKB_KEY_braille_dots_2357          0x1002856  /* U+2856 BRAILLE PATTERN DOTS-2357 */
2204 #define XKB_KEY_braille_dots_12357         0x1002857  /* U+2857 BRAILLE PATTERN DOTS-12357 */
2205 #define XKB_KEY_braille_dots_457           0x1002858  /* U+2858 BRAILLE PATTERN DOTS-457 */
2206 #define XKB_KEY_braille_dots_1457          0x1002859  /* U+2859 BRAILLE PATTERN DOTS-1457 */
2207 #define XKB_KEY_braille_dots_2457          0x100285a  /* U+285a BRAILLE PATTERN DOTS-2457 */
2208 #define XKB_KEY_braille_dots_12457         0x100285b  /* U+285b BRAILLE PATTERN DOTS-12457 */
2209 #define XKB_KEY_braille_dots_3457          0x100285c  /* U+285c BRAILLE PATTERN DOTS-3457 */
2210 #define XKB_KEY_braille_dots_13457         0x100285d  /* U+285d BRAILLE PATTERN DOTS-13457 */
2211 #define XKB_KEY_braille_dots_23457         0x100285e  /* U+285e BRAILLE PATTERN DOTS-23457 */
2212 #define XKB_KEY_braille_dots_123457        0x100285f  /* U+285f BRAILLE PATTERN DOTS-123457 */
2213 #define XKB_KEY_braille_dots_67            0x1002860  /* U+2860 BRAILLE PATTERN DOTS-67 */
2214 #define XKB_KEY_braille_dots_167           0x1002861  /* U+2861 BRAILLE PATTERN DOTS-167 */
2215 #define XKB_KEY_braille_dots_267           0x1002862  /* U+2862 BRAILLE PATTERN DOTS-267 */
2216 #define XKB_KEY_braille_dots_1267          0x1002863  /* U+2863 BRAILLE PATTERN DOTS-1267 */
2217 #define XKB_KEY_braille_dots_367           0x1002864  /* U+2864 BRAILLE PATTERN DOTS-367 */
2218 #define XKB_KEY_braille_dots_1367          0x1002865  /* U+2865 BRAILLE PATTERN DOTS-1367 */
2219 #define XKB_KEY_braille_dots_2367          0x1002866  /* U+2866 BRAILLE PATTERN DOTS-2367 */
2220 #define XKB_KEY_braille_dots_12367         0x1002867  /* U+2867 BRAILLE PATTERN DOTS-12367 */
2221 #define XKB_KEY_braille_dots_467           0x1002868  /* U+2868 BRAILLE PATTERN DOTS-467 */
2222 #define XKB_KEY_braille_dots_1467          0x1002869  /* U+2869 BRAILLE PATTERN DOTS-1467 */
2223 #define XKB_KEY_braille_dots_2467          0x100286a  /* U+286a BRAILLE PATTERN DOTS-2467 */
2224 #define XKB_KEY_braille_dots_12467         0x100286b  /* U+286b BRAILLE PATTERN DOTS-12467 */
2225 #define XKB_KEY_braille_dots_3467          0x100286c  /* U+286c BRAILLE PATTERN DOTS-3467 */
2226 #define XKB_KEY_braille_dots_13467         0x100286d  /* U+286d BRAILLE PATTERN DOTS-13467 */
2227 #define XKB_KEY_braille_dots_23467         0x100286e  /* U+286e BRAILLE PATTERN DOTS-23467 */
2228 #define XKB_KEY_braille_dots_123467        0x100286f  /* U+286f BRAILLE PATTERN DOTS-123467 */
2229 #define XKB_KEY_braille_dots_567           0x1002870  /* U+2870 BRAILLE PATTERN DOTS-567 */
2230 #define XKB_KEY_braille_dots_1567          0x1002871  /* U+2871 BRAILLE PATTERN DOTS-1567 */
2231 #define XKB_KEY_braille_dots_2567          0x1002872  /* U+2872 BRAILLE PATTERN DOTS-2567 */
2232 #define XKB_KEY_braille_dots_12567         0x1002873  /* U+2873 BRAILLE PATTERN DOTS-12567 */
2233 #define XKB_KEY_braille_dots_3567          0x1002874  /* U+2874 BRAILLE PATTERN DOTS-3567 */
2234 #define XKB_KEY_braille_dots_13567         0x1002875  /* U+2875 BRAILLE PATTERN DOTS-13567 */
2235 #define XKB_KEY_braille_dots_23567         0x1002876  /* U+2876 BRAILLE PATTERN DOTS-23567 */
2236 #define XKB_KEY_braille_dots_123567        0x1002877  /* U+2877 BRAILLE PATTERN DOTS-123567 */
2237 #define XKB_KEY_braille_dots_4567          0x1002878  /* U+2878 BRAILLE PATTERN DOTS-4567 */
2238 #define XKB_KEY_braille_dots_14567         0x1002879  /* U+2879 BRAILLE PATTERN DOTS-14567 */
2239 #define XKB_KEY_braille_dots_24567         0x100287a  /* U+287a BRAILLE PATTERN DOTS-24567 */
2240 #define XKB_KEY_braille_dots_124567        0x100287b  /* U+287b BRAILLE PATTERN DOTS-124567 */
2241 #define XKB_KEY_braille_dots_34567         0x100287c  /* U+287c BRAILLE PATTERN DOTS-34567 */
2242 #define XKB_KEY_braille_dots_134567        0x100287d  /* U+287d BRAILLE PATTERN DOTS-134567 */
2243 #define XKB_KEY_braille_dots_234567        0x100287e  /* U+287e BRAILLE PATTERN DOTS-234567 */
2244 #define XKB_KEY_braille_dots_1234567       0x100287f  /* U+287f BRAILLE PATTERN DOTS-1234567 */
2245 #define XKB_KEY_braille_dots_8             0x1002880  /* U+2880 BRAILLE PATTERN DOTS-8 */
2246 #define XKB_KEY_braille_dots_18            0x1002881  /* U+2881 BRAILLE PATTERN DOTS-18 */
2247 #define XKB_KEY_braille_dots_28            0x1002882  /* U+2882 BRAILLE PATTERN DOTS-28 */
2248 #define XKB_KEY_braille_dots_128           0x1002883  /* U+2883 BRAILLE PATTERN DOTS-128 */
2249 #define XKB_KEY_braille_dots_38            0x1002884  /* U+2884 BRAILLE PATTERN DOTS-38 */
2250 #define XKB_KEY_braille_dots_138           0x1002885  /* U+2885 BRAILLE PATTERN DOTS-138 */
2251 #define XKB_KEY_braille_dots_238           0x1002886  /* U+2886 BRAILLE PATTERN DOTS-238 */
2252 #define XKB_KEY_braille_dots_1238          0x1002887  /* U+2887 BRAILLE PATTERN DOTS-1238 */
2253 #define XKB_KEY_braille_dots_48            0x1002888  /* U+2888 BRAILLE PATTERN DOTS-48 */
2254 #define XKB_KEY_braille_dots_148           0x1002889  /* U+2889 BRAILLE PATTERN DOTS-148 */
2255 #define XKB_KEY_braille_dots_248           0x100288a  /* U+288a BRAILLE PATTERN DOTS-248 */
2256 #define XKB_KEY_braille_dots_1248          0x100288b  /* U+288b BRAILLE PATTERN DOTS-1248 */
2257 #define XKB_KEY_braille_dots_348           0x100288c  /* U+288c BRAILLE PATTERN DOTS-348 */
2258 #define XKB_KEY_braille_dots_1348          0x100288d  /* U+288d BRAILLE PATTERN DOTS-1348 */
2259 #define XKB_KEY_braille_dots_2348          0x100288e  /* U+288e BRAILLE PATTERN DOTS-2348 */
2260 #define XKB_KEY_braille_dots_12348         0x100288f  /* U+288f BRAILLE PATTERN DOTS-12348 */
2261 #define XKB_KEY_braille_dots_58            0x1002890  /* U+2890 BRAILLE PATTERN DOTS-58 */
2262 #define XKB_KEY_braille_dots_158           0x1002891  /* U+2891 BRAILLE PATTERN DOTS-158 */
2263 #define XKB_KEY_braille_dots_258           0x1002892  /* U+2892 BRAILLE PATTERN DOTS-258 */
2264 #define XKB_KEY_braille_dots_1258          0x1002893  /* U+2893 BRAILLE PATTERN DOTS-1258 */
2265 #define XKB_KEY_braille_dots_358           0x1002894  /* U+2894 BRAILLE PATTERN DOTS-358 */
2266 #define XKB_KEY_braille_dots_1358          0x1002895  /* U+2895 BRAILLE PATTERN DOTS-1358 */
2267 #define XKB_KEY_braille_dots_2358          0x1002896  /* U+2896 BRAILLE PATTERN DOTS-2358 */
2268 #define XKB_KEY_braille_dots_12358         0x1002897  /* U+2897 BRAILLE PATTERN DOTS-12358 */
2269 #define XKB_KEY_braille_dots_458           0x1002898  /* U+2898 BRAILLE PATTERN DOTS-458 */
2270 #define XKB_KEY_braille_dots_1458          0x1002899  /* U+2899 BRAILLE PATTERN DOTS-1458 */
2271 #define XKB_KEY_braille_dots_2458          0x100289a  /* U+289a BRAILLE PATTERN DOTS-2458 */
2272 #define XKB_KEY_braille_dots_12458         0x100289b  /* U+289b BRAILLE PATTERN DOTS-12458 */
2273 #define XKB_KEY_braille_dots_3458          0x100289c  /* U+289c BRAILLE PATTERN DOTS-3458 */
2274 #define XKB_KEY_braille_dots_13458         0x100289d  /* U+289d BRAILLE PATTERN DOTS-13458 */
2275 #define XKB_KEY_braille_dots_23458         0x100289e  /* U+289e BRAILLE PATTERN DOTS-23458 */
2276 #define XKB_KEY_braille_dots_123458        0x100289f  /* U+289f BRAILLE PATTERN DOTS-123458 */
2277 #define XKB_KEY_braille_dots_68            0x10028a0  /* U+28a0 BRAILLE PATTERN DOTS-68 */
2278 #define XKB_KEY_braille_dots_168           0x10028a1  /* U+28a1 BRAILLE PATTERN DOTS-168 */
2279 #define XKB_KEY_braille_dots_268           0x10028a2  /* U+28a2 BRAILLE PATTERN DOTS-268 */
2280 #define XKB_KEY_braille_dots_1268          0x10028a3  /* U+28a3 BRAILLE PATTERN DOTS-1268 */
2281 #define XKB_KEY_braille_dots_368           0x10028a4  /* U+28a4 BRAILLE PATTERN DOTS-368 */
2282 #define XKB_KEY_braille_dots_1368          0x10028a5  /* U+28a5 BRAILLE PATTERN DOTS-1368 */
2283 #define XKB_KEY_braille_dots_2368          0x10028a6  /* U+28a6 BRAILLE PATTERN DOTS-2368 */
2284 #define XKB_KEY_braille_dots_12368         0x10028a7  /* U+28a7 BRAILLE PATTERN DOTS-12368 */
2285 #define XKB_KEY_braille_dots_468           0x10028a8  /* U+28a8 BRAILLE PATTERN DOTS-468 */
2286 #define XKB_KEY_braille_dots_1468          0x10028a9  /* U+28a9 BRAILLE PATTERN DOTS-1468 */
2287 #define XKB_KEY_braille_dots_2468          0x10028aa  /* U+28aa BRAILLE PATTERN DOTS-2468 */
2288 #define XKB_KEY_braille_dots_12468         0x10028ab  /* U+28ab BRAILLE PATTERN DOTS-12468 */
2289 #define XKB_KEY_braille_dots_3468          0x10028ac  /* U+28ac BRAILLE PATTERN DOTS-3468 */
2290 #define XKB_KEY_braille_dots_13468         0x10028ad  /* U+28ad BRAILLE PATTERN DOTS-13468 */
2291 #define XKB_KEY_braille_dots_23468         0x10028ae  /* U+28ae BRAILLE PATTERN DOTS-23468 */
2292 #define XKB_KEY_braille_dots_123468        0x10028af  /* U+28af BRAILLE PATTERN DOTS-123468 */
2293 #define XKB_KEY_braille_dots_568           0x10028b0  /* U+28b0 BRAILLE PATTERN DOTS-568 */
2294 #define XKB_KEY_braille_dots_1568          0x10028b1  /* U+28b1 BRAILLE PATTERN DOTS-1568 */
2295 #define XKB_KEY_braille_dots_2568          0x10028b2  /* U+28b2 BRAILLE PATTERN DOTS-2568 */
2296 #define XKB_KEY_braille_dots_12568         0x10028b3  /* U+28b3 BRAILLE PATTERN DOTS-12568 */
2297 #define XKB_KEY_braille_dots_3568          0x10028b4  /* U+28b4 BRAILLE PATTERN DOTS-3568 */
2298 #define XKB_KEY_braille_dots_13568         0x10028b5  /* U+28b5 BRAILLE PATTERN DOTS-13568 */
2299 #define XKB_KEY_braille_dots_23568         0x10028b6  /* U+28b6 BRAILLE PATTERN DOTS-23568 */
2300 #define XKB_KEY_braille_dots_123568        0x10028b7  /* U+28b7 BRAILLE PATTERN DOTS-123568 */
2301 #define XKB_KEY_braille_dots_4568          0x10028b8  /* U+28b8 BRAILLE PATTERN DOTS-4568 */
2302 #define XKB_KEY_braille_dots_14568         0x10028b9  /* U+28b9 BRAILLE PATTERN DOTS-14568 */
2303 #define XKB_KEY_braille_dots_24568         0x10028ba  /* U+28ba BRAILLE PATTERN DOTS-24568 */
2304 #define XKB_KEY_braille_dots_124568        0x10028bb  /* U+28bb BRAILLE PATTERN DOTS-124568 */
2305 #define XKB_KEY_braille_dots_34568         0x10028bc  /* U+28bc BRAILLE PATTERN DOTS-34568 */
2306 #define XKB_KEY_braille_dots_134568        0x10028bd  /* U+28bd BRAILLE PATTERN DOTS-134568 */
2307 #define XKB_KEY_braille_dots_234568        0x10028be  /* U+28be BRAILLE PATTERN DOTS-234568 */
2308 #define XKB_KEY_braille_dots_1234568       0x10028bf  /* U+28bf BRAILLE PATTERN DOTS-1234568 */
2309 #define XKB_KEY_braille_dots_78            0x10028c0  /* U+28c0 BRAILLE PATTERN DOTS-78 */
2310 #define XKB_KEY_braille_dots_178           0x10028c1  /* U+28c1 BRAILLE PATTERN DOTS-178 */
2311 #define XKB_KEY_braille_dots_278           0x10028c2  /* U+28c2 BRAILLE PATTERN DOTS-278 */
2312 #define XKB_KEY_braille_dots_1278          0x10028c3  /* U+28c3 BRAILLE PATTERN DOTS-1278 */
2313 #define XKB_KEY_braille_dots_378           0x10028c4  /* U+28c4 BRAILLE PATTERN DOTS-378 */
2314 #define XKB_KEY_braille_dots_1378          0x10028c5  /* U+28c5 BRAILLE PATTERN DOTS-1378 */
2315 #define XKB_KEY_braille_dots_2378          0x10028c6  /* U+28c6 BRAILLE PATTERN DOTS-2378 */
2316 #define XKB_KEY_braille_dots_12378         0x10028c7  /* U+28c7 BRAILLE PATTERN DOTS-12378 */
2317 #define XKB_KEY_braille_dots_478           0x10028c8  /* U+28c8 BRAILLE PATTERN DOTS-478 */
2318 #define XKB_KEY_braille_dots_1478          0x10028c9  /* U+28c9 BRAILLE PATTERN DOTS-1478 */
2319 #define XKB_KEY_braille_dots_2478          0x10028ca  /* U+28ca BRAILLE PATTERN DOTS-2478 */
2320 #define XKB_KEY_braille_dots_12478         0x10028cb  /* U+28cb BRAILLE PATTERN DOTS-12478 */
2321 #define XKB_KEY_braille_dots_3478          0x10028cc  /* U+28cc BRAILLE PATTERN DOTS-3478 */
2322 #define XKB_KEY_braille_dots_13478         0x10028cd  /* U+28cd BRAILLE PATTERN DOTS-13478 */
2323 #define XKB_KEY_braille_dots_23478         0x10028ce  /* U+28ce BRAILLE PATTERN DOTS-23478 */
2324 #define XKB_KEY_braille_dots_123478        0x10028cf  /* U+28cf BRAILLE PATTERN DOTS-123478 */
2325 #define XKB_KEY_braille_dots_578           0x10028d0  /* U+28d0 BRAILLE PATTERN DOTS-578 */
2326 #define XKB_KEY_braille_dots_1578          0x10028d1  /* U+28d1 BRAILLE PATTERN DOTS-1578 */
2327 #define XKB_KEY_braille_dots_2578          0x10028d2  /* U+28d2 BRAILLE PATTERN DOTS-2578 */
2328 #define XKB_KEY_braille_dots_12578         0x10028d3  /* U+28d3 BRAILLE PATTERN DOTS-12578 */
2329 #define XKB_KEY_braille_dots_3578          0x10028d4  /* U+28d4 BRAILLE PATTERN DOTS-3578 */
2330 #define XKB_KEY_braille_dots_13578         0x10028d5  /* U+28d5 BRAILLE PATTERN DOTS-13578 */
2331 #define XKB_KEY_braille_dots_23578         0x10028d6  /* U+28d6 BRAILLE PATTERN DOTS-23578 */
2332 #define XKB_KEY_braille_dots_123578        0x10028d7  /* U+28d7 BRAILLE PATTERN DOTS-123578 */
2333 #define XKB_KEY_braille_dots_4578          0x10028d8  /* U+28d8 BRAILLE PATTERN DOTS-4578 */
2334 #define XKB_KEY_braille_dots_14578         0x10028d9  /* U+28d9 BRAILLE PATTERN DOTS-14578 */
2335 #define XKB_KEY_braille_dots_24578         0x10028da  /* U+28da BRAILLE PATTERN DOTS-24578 */
2336 #define XKB_KEY_braille_dots_124578        0x10028db  /* U+28db BRAILLE PATTERN DOTS-124578 */
2337 #define XKB_KEY_braille_dots_34578         0x10028dc  /* U+28dc BRAILLE PATTERN DOTS-34578 */
2338 #define XKB_KEY_braille_dots_134578        0x10028dd  /* U+28dd BRAILLE PATTERN DOTS-134578 */
2339 #define XKB_KEY_braille_dots_234578        0x10028de  /* U+28de BRAILLE PATTERN DOTS-234578 */
2340 #define XKB_KEY_braille_dots_1234578       0x10028df  /* U+28df BRAILLE PATTERN DOTS-1234578 */
2341 #define XKB_KEY_braille_dots_678           0x10028e0  /* U+28e0 BRAILLE PATTERN DOTS-678 */
2342 #define XKB_KEY_braille_dots_1678          0x10028e1  /* U+28e1 BRAILLE PATTERN DOTS-1678 */
2343 #define XKB_KEY_braille_dots_2678          0x10028e2  /* U+28e2 BRAILLE PATTERN DOTS-2678 */
2344 #define XKB_KEY_braille_dots_12678         0x10028e3  /* U+28e3 BRAILLE PATTERN DOTS-12678 */
2345 #define XKB_KEY_braille_dots_3678          0x10028e4  /* U+28e4 BRAILLE PATTERN DOTS-3678 */
2346 #define XKB_KEY_braille_dots_13678         0x10028e5  /* U+28e5 BRAILLE PATTERN DOTS-13678 */
2347 #define XKB_KEY_braille_dots_23678         0x10028e6  /* U+28e6 BRAILLE PATTERN DOTS-23678 */
2348 #define XKB_KEY_braille_dots_123678        0x10028e7  /* U+28e7 BRAILLE PATTERN DOTS-123678 */
2349 #define XKB_KEY_braille_dots_4678          0x10028e8  /* U+28e8 BRAILLE PATTERN DOTS-4678 */
2350 #define XKB_KEY_braille_dots_14678         0x10028e9  /* U+28e9 BRAILLE PATTERN DOTS-14678 */
2351 #define XKB_KEY_braille_dots_24678         0x10028ea  /* U+28ea BRAILLE PATTERN DOTS-24678 */
2352 #define XKB_KEY_braille_dots_124678        0x10028eb  /* U+28eb BRAILLE PATTERN DOTS-124678 */
2353 #define XKB_KEY_braille_dots_34678         0x10028ec  /* U+28ec BRAILLE PATTERN DOTS-34678 */
2354 #define XKB_KEY_braille_dots_134678        0x10028ed  /* U+28ed BRAILLE PATTERN DOTS-134678 */
2355 #define XKB_KEY_braille_dots_234678        0x10028ee  /* U+28ee BRAILLE PATTERN DOTS-234678 */
2356 #define XKB_KEY_braille_dots_1234678       0x10028ef  /* U+28ef BRAILLE PATTERN DOTS-1234678 */
2357 #define XKB_KEY_braille_dots_5678          0x10028f0  /* U+28f0 BRAILLE PATTERN DOTS-5678 */
2358 #define XKB_KEY_braille_dots_15678         0x10028f1  /* U+28f1 BRAILLE PATTERN DOTS-15678 */
2359 #define XKB_KEY_braille_dots_25678         0x10028f2  /* U+28f2 BRAILLE PATTERN DOTS-25678 */
2360 #define XKB_KEY_braille_dots_125678        0x10028f3  /* U+28f3 BRAILLE PATTERN DOTS-125678 */
2361 #define XKB_KEY_braille_dots_35678         0x10028f4  /* U+28f4 BRAILLE PATTERN DOTS-35678 */
2362 #define XKB_KEY_braille_dots_135678        0x10028f5  /* U+28f5 BRAILLE PATTERN DOTS-135678 */
2363 #define XKB_KEY_braille_dots_235678        0x10028f6  /* U+28f6 BRAILLE PATTERN DOTS-235678 */
2364 #define XKB_KEY_braille_dots_1235678       0x10028f7  /* U+28f7 BRAILLE PATTERN DOTS-1235678 */
2365 #define XKB_KEY_braille_dots_45678         0x10028f8  /* U+28f8 BRAILLE PATTERN DOTS-45678 */
2366 #define XKB_KEY_braille_dots_145678        0x10028f9  /* U+28f9 BRAILLE PATTERN DOTS-145678 */
2367 #define XKB_KEY_braille_dots_245678        0x10028fa  /* U+28fa BRAILLE PATTERN DOTS-245678 */
2368 #define XKB_KEY_braille_dots_1245678       0x10028fb  /* U+28fb BRAILLE PATTERN DOTS-1245678 */
2369 #define XKB_KEY_braille_dots_345678        0x10028fc  /* U+28fc BRAILLE PATTERN DOTS-345678 */
2370 #define XKB_KEY_braille_dots_1345678       0x10028fd  /* U+28fd BRAILLE PATTERN DOTS-1345678 */
2371 #define XKB_KEY_braille_dots_2345678       0x10028fe  /* U+28fe BRAILLE PATTERN DOTS-2345678 */
2372 #define XKB_KEY_braille_dots_12345678      0x10028ff  /* U+28ff BRAILLE PATTERN DOTS-12345678 */
2373
2374 /*
2375  * Sinhala (http://unicode.org/charts/PDF/U0D80.pdf)
2376  * http://www.nongnu.org/sinhala/doc/transliteration/sinhala-transliteration_6.html
2377  */
2378
2379 #define XKB_KEY_Sinh_ng            0x1000d82  /* U+0D82 SINHALA ANUSVARAYA */
2380 #define XKB_KEY_Sinh_h2            0x1000d83  /* U+0D83 SINHALA VISARGAYA */
2381 #define XKB_KEY_Sinh_a             0x1000d85  /* U+0D85 SINHALA AYANNA */
2382 #define XKB_KEY_Sinh_aa            0x1000d86  /* U+0D86 SINHALA AAYANNA */
2383 #define XKB_KEY_Sinh_ae            0x1000d87  /* U+0D87 SINHALA AEYANNA */
2384 #define XKB_KEY_Sinh_aee           0x1000d88  /* U+0D88 SINHALA AEEYANNA */
2385 #define XKB_KEY_Sinh_i             0x1000d89  /* U+0D89 SINHALA IYANNA */
2386 #define XKB_KEY_Sinh_ii            0x1000d8a  /* U+0D8A SINHALA IIYANNA */
2387 #define XKB_KEY_Sinh_u             0x1000d8b  /* U+0D8B SINHALA UYANNA */
2388 #define XKB_KEY_Sinh_uu            0x1000d8c  /* U+0D8C SINHALA UUYANNA */
2389 #define XKB_KEY_Sinh_ri            0x1000d8d  /* U+0D8D SINHALA IRUYANNA */
2390 #define XKB_KEY_Sinh_rii           0x1000d8e  /* U+0D8E SINHALA IRUUYANNA */
2391 #define XKB_KEY_Sinh_lu            0x1000d8f  /* U+0D8F SINHALA ILUYANNA */
2392 #define XKB_KEY_Sinh_luu           0x1000d90  /* U+0D90 SINHALA ILUUYANNA */
2393 #define XKB_KEY_Sinh_e             0x1000d91  /* U+0D91 SINHALA EYANNA */
2394 #define XKB_KEY_Sinh_ee            0x1000d92  /* U+0D92 SINHALA EEYANNA */
2395 #define XKB_KEY_Sinh_ai            0x1000d93  /* U+0D93 SINHALA AIYANNA */
2396 #define XKB_KEY_Sinh_o             0x1000d94  /* U+0D94 SINHALA OYANNA */
2397 #define XKB_KEY_Sinh_oo            0x1000d95  /* U+0D95 SINHALA OOYANNA */
2398 #define XKB_KEY_Sinh_au            0x1000d96  /* U+0D96 SINHALA AUYANNA */
2399 #define XKB_KEY_Sinh_ka            0x1000d9a  /* U+0D9A SINHALA KAYANNA */
2400 #define XKB_KEY_Sinh_kha           0x1000d9b  /* U+0D9B SINHALA MAHA. KAYANNA */
2401 #define XKB_KEY_Sinh_ga            0x1000d9c  /* U+0D9C SINHALA GAYANNA */
2402 #define XKB_KEY_Sinh_gha           0x1000d9d  /* U+0D9D SINHALA MAHA. GAYANNA */
2403 #define XKB_KEY_Sinh_ng2           0x1000d9e  /* U+0D9E SINHALA KANTAJA NAASIKYAYA */
2404 #define XKB_KEY_Sinh_nga           0x1000d9f  /* U+0D9F SINHALA SANYAKA GAYANNA */
2405 #define XKB_KEY_Sinh_ca            0x1000da0  /* U+0DA0 SINHALA CAYANNA */
2406 #define XKB_KEY_Sinh_cha           0x1000da1  /* U+0DA1 SINHALA MAHA. CAYANNA */
2407 #define XKB_KEY_Sinh_ja            0x1000da2  /* U+0DA2 SINHALA JAYANNA */
2408 #define XKB_KEY_Sinh_jha           0x1000da3  /* U+0DA3 SINHALA MAHA. JAYANNA */
2409 #define XKB_KEY_Sinh_nya           0x1000da4  /* U+0DA4 SINHALA TAALUJA NAASIKYAYA */
2410 #define XKB_KEY_Sinh_jnya          0x1000da5  /* U+0DA5 SINHALA TAALUJA SANYOOGA NAASIKYAYA */
2411 #define XKB_KEY_Sinh_nja           0x1000da6  /* U+0DA6 SINHALA SANYAKA JAYANNA */
2412 #define XKB_KEY_Sinh_tta           0x1000da7  /* U+0DA7 SINHALA TTAYANNA */
2413 #define XKB_KEY_Sinh_ttha          0x1000da8  /* U+0DA8 SINHALA MAHA. TTAYANNA */
2414 #define XKB_KEY_Sinh_dda           0x1000da9  /* U+0DA9 SINHALA DDAYANNA */
2415 #define XKB_KEY_Sinh_ddha          0x1000daa  /* U+0DAA SINHALA MAHA. DDAYANNA */
2416 #define XKB_KEY_Sinh_nna           0x1000dab  /* U+0DAB SINHALA MUURDHAJA NAYANNA */
2417 #define XKB_KEY_Sinh_ndda          0x1000dac  /* U+0DAC SINHALA SANYAKA DDAYANNA */
2418 #define XKB_KEY_Sinh_tha           0x1000dad  /* U+0DAD SINHALA TAYANNA */
2419 #define XKB_KEY_Sinh_thha          0x1000dae  /* U+0DAE SINHALA MAHA. TAYANNA */
2420 #define XKB_KEY_Sinh_dha           0x1000daf  /* U+0DAF SINHALA DAYANNA */
2421 #define XKB_KEY_Sinh_dhha          0x1000db0  /* U+0DB0 SINHALA MAHA. DAYANNA */
2422 #define XKB_KEY_Sinh_na            0x1000db1  /* U+0DB1 SINHALA DANTAJA NAYANNA */
2423 #define XKB_KEY_Sinh_ndha          0x1000db3  /* U+0DB3 SINHALA SANYAKA DAYANNA */
2424 #define XKB_KEY_Sinh_pa            0x1000db4  /* U+0DB4 SINHALA PAYANNA */
2425 #define XKB_KEY_Sinh_pha           0x1000db5  /* U+0DB5 SINHALA MAHA. PAYANNA */
2426 #define XKB_KEY_Sinh_ba            0x1000db6  /* U+0DB6 SINHALA BAYANNA */
2427 #define XKB_KEY_Sinh_bha           0x1000db7  /* U+0DB7 SINHALA MAHA. BAYANNA */
2428 #define XKB_KEY_Sinh_ma            0x1000db8  /* U+0DB8 SINHALA MAYANNA */
2429 #define XKB_KEY_Sinh_mba           0x1000db9  /* U+0DB9 SINHALA AMBA BAYANNA */
2430 #define XKB_KEY_Sinh_ya            0x1000dba  /* U+0DBA SINHALA YAYANNA */
2431 #define XKB_KEY_Sinh_ra            0x1000dbb  /* U+0DBB SINHALA RAYANNA */
2432 #define XKB_KEY_Sinh_la            0x1000dbd  /* U+0DBD SINHALA DANTAJA LAYANNA */
2433 #define XKB_KEY_Sinh_va            0x1000dc0  /* U+0DC0 SINHALA VAYANNA */
2434 #define XKB_KEY_Sinh_sha           0x1000dc1  /* U+0DC1 SINHALA TAALUJA SAYANNA */
2435 #define XKB_KEY_Sinh_ssha          0x1000dc2  /* U+0DC2 SINHALA MUURDHAJA SAYANNA */
2436 #define XKB_KEY_Sinh_sa            0x1000dc3  /* U+0DC3 SINHALA DANTAJA SAYANNA */
2437 #define XKB_KEY_Sinh_ha            0x1000dc4  /* U+0DC4 SINHALA HAYANNA */
2438 #define XKB_KEY_Sinh_lla           0x1000dc5  /* U+0DC5 SINHALA MUURDHAJA LAYANNA */
2439 #define XKB_KEY_Sinh_fa            0x1000dc6  /* U+0DC6 SINHALA FAYANNA */
2440 #define XKB_KEY_Sinh_al            0x1000dca  /* U+0DCA SINHALA AL-LAKUNA */
2441 #define XKB_KEY_Sinh_aa2           0x1000dcf  /* U+0DCF SINHALA AELA-PILLA */
2442 #define XKB_KEY_Sinh_ae2           0x1000dd0  /* U+0DD0 SINHALA AEDA-PILLA */
2443 #define XKB_KEY_Sinh_aee2          0x1000dd1  /* U+0DD1 SINHALA DIGA AEDA-PILLA */
2444 #define XKB_KEY_Sinh_i2            0x1000dd2  /* U+0DD2 SINHALA IS-PILLA */
2445 #define XKB_KEY_Sinh_ii2           0x1000dd3  /* U+0DD3 SINHALA DIGA IS-PILLA */
2446 #define XKB_KEY_Sinh_u2            0x1000dd4  /* U+0DD4 SINHALA PAA-PILLA */
2447 #define XKB_KEY_Sinh_uu2           0x1000dd6  /* U+0DD6 SINHALA DIGA PAA-PILLA */
2448 #define XKB_KEY_Sinh_ru2           0x1000dd8  /* U+0DD8 SINHALA GAETTA-PILLA */
2449 #define XKB_KEY_Sinh_e2            0x1000dd9  /* U+0DD9 SINHALA KOMBUVA */
2450 #define XKB_KEY_Sinh_ee2           0x1000dda  /* U+0DDA SINHALA DIGA KOMBUVA */
2451 #define XKB_KEY_Sinh_ai2           0x1000ddb  /* U+0DDB SINHALA KOMBU DEKA */
2452 #define XKB_KEY_Sinh_o2            0x1000ddc  /* U+0DDC SINHALA KOMBUVA HAA AELA-PILLA*/
2453 #define XKB_KEY_Sinh_oo2           0x1000ddd  /* U+0DDD SINHALA KOMBUVA HAA DIGA AELA-PILLA*/
2454 #define XKB_KEY_Sinh_au2           0x1000dde  /* U+0DDE SINHALA KOMBUVA HAA GAYANUKITTA */
2455 #define XKB_KEY_Sinh_lu2           0x1000ddf  /* U+0DDF SINHALA GAYANUKITTA */
2456 #define XKB_KEY_Sinh_ruu2          0x1000df2  /* U+0DF2 SINHALA DIGA GAETTA-PILLA */
2457 #define XKB_KEY_Sinh_luu2          0x1000df3  /* U+0DF3 SINHALA DIGA GAYANUKITTA */
2458 #define XKB_KEY_Sinh_kunddaliya    0x1000df4  /* U+0DF4 SINHALA KUNDDALIYA */
2459 /*
2460  * XFree86 vendor specific keysyms.
2461  *
2462  * The XFree86 keysym range is 0x10080001 - 0x1008FFFF.
2463  *
2464  * The XF86 set of keysyms is a catch-all set of defines for keysyms found
2465  * on various multimedia keyboards. Originally specific to XFree86 they have
2466  * been been adopted over time and are considered a "standard" part of X
2467  * keysym definitions.
2468  * XFree86 never properly commented these keysyms, so we have done our
2469  * best to explain the semantic meaning of these keys.
2470  *
2471  * XFree86 has removed their mail archives of the period, that might have
2472  * shed more light on some of these definitions. Until/unless we resurrect
2473  * these archives, these are from memory and usage.
2474  */
2475
2476 /*
2477  * ModeLock
2478  *
2479  * This one is old, and not really used any more since XKB offers this
2480  * functionality.
2481  */
2482
2483 #define XKB_KEY_XF86ModeLock            0x1008FF01      /* Mode Switch Lock */
2484
2485 /* Backlight controls. */
2486 #define XKB_KEY_XF86MonBrightnessUp    0x1008FF02  /* Monitor/panel brightness */
2487 #define XKB_KEY_XF86MonBrightnessDown  0x1008FF03  /* Monitor/panel brightness */
2488 #define XKB_KEY_XF86KbdLightOnOff      0x1008FF04  /* Keyboards may be lit     */
2489 #define XKB_KEY_XF86KbdBrightnessUp    0x1008FF05  /* Keyboards may be lit     */
2490 #define XKB_KEY_XF86KbdBrightnessDown  0x1008FF06  /* Keyboards may be lit     */
2491 #define XKB_KEY_XF86MonBrightnessCycle 0x1008FF07  /* Monitor/panel brightness */
2492
2493 /*
2494  * Keys found on some "Internet" keyboards.
2495  */
2496 #define XKB_KEY_XF86Standby             0x1008FF10   /* System into standby mode   */
2497 #define XKB_KEY_XF86AudioLowerVolume    0x1008FF11   /* Volume control down        */
2498 #define XKB_KEY_XF86AudioMute   0x1008FF12   /* Mute sound from the system */
2499 #define XKB_KEY_XF86AudioRaiseVolume    0x1008FF13   /* Volume control up          */
2500 #define XKB_KEY_XF86AudioPlay   0x1008FF14   /* Start playing of audio >   */
2501 #define XKB_KEY_XF86AudioStop   0x1008FF15   /* Stop playing audio         */
2502 #define XKB_KEY_XF86AudioPrev   0x1008FF16   /* Previous track             */
2503 #define XKB_KEY_XF86AudioNext   0x1008FF17   /* Next track                 */
2504 #define XKB_KEY_XF86HomePage            0x1008FF18   /* Display user's home page   */
2505 #define XKB_KEY_XF86Mail                0x1008FF19   /* Invoke user's mail program */
2506 #define XKB_KEY_XF86Start               0x1008FF1A   /* Start application          */
2507 #define XKB_KEY_XF86Search              0x1008FF1B   /* Search                     */
2508 #define XKB_KEY_XF86AudioRecord 0x1008FF1C   /* Record audio application   */
2509
2510 /* These are sometimes found on PDA's (e.g. Palm, PocketPC or elsewhere)   */
2511 #define XKB_KEY_XF86Calculator  0x1008FF1D   /* Invoke calculator program  */
2512 #define XKB_KEY_XF86Memo                0x1008FF1E   /* Invoke Memo taking program */
2513 #define XKB_KEY_XF86ToDoList            0x1008FF1F   /* Invoke To Do List program  */
2514 #define XKB_KEY_XF86Calendar            0x1008FF20   /* Invoke Calendar program    */
2515 #define XKB_KEY_XF86PowerDown   0x1008FF21   /* Deep sleep the system      */
2516 #define XKB_KEY_XF86ContrastAdjust      0x1008FF22   /* Adjust screen contrast     */
2517 #define XKB_KEY_XF86RockerUp            0x1008FF23   /* Rocker switches exist up   */
2518 #define XKB_KEY_XF86RockerDown  0x1008FF24   /* and down                   */
2519 #define XKB_KEY_XF86RockerEnter 0x1008FF25   /* and let you press them     */
2520
2521 /* Some more "Internet" keyboard symbols */
2522 #define XKB_KEY_XF86Back                0x1008FF26   /* Like back on a browser     */
2523 #define XKB_KEY_XF86Forward             0x1008FF27   /* Like forward on a browser  */
2524 #define XKB_KEY_XF86Stop                0x1008FF28   /* Stop current operation     */
2525 #define XKB_KEY_XF86Refresh             0x1008FF29   /* Refresh the page           */
2526 #define XKB_KEY_XF86PowerOff            0x1008FF2A   /* Power off system entirely  */
2527 #define XKB_KEY_XF86WakeUp              0x1008FF2B   /* Wake up system from sleep  */
2528 #define XKB_KEY_XF86Eject            0x1008FF2C   /* Eject device (e.g. DVD)    */
2529 #define XKB_KEY_XF86ScreenSaver      0x1008FF2D   /* Invoke screensaver         */
2530 #define XKB_KEY_XF86WWW              0x1008FF2E   /* Invoke web browser         */
2531 #define XKB_KEY_XF86Sleep            0x1008FF2F   /* Put system to sleep        */
2532 #define XKB_KEY_XF86Favorites   0x1008FF30   /* Show favorite locations    */
2533 #define XKB_KEY_XF86AudioPause  0x1008FF31   /* Pause audio playing        */
2534 #define XKB_KEY_XF86AudioMedia  0x1008FF32   /* Launch media collection app */
2535 #define XKB_KEY_XF86MyComputer  0x1008FF33   /* Display "My Computer" window */
2536 #define XKB_KEY_XF86VendorHome  0x1008FF34   /* Display vendor home web site */
2537 #define XKB_KEY_XF86LightBulb   0x1008FF35   /* Light bulb keys exist       */
2538 #define XKB_KEY_XF86Shop                0x1008FF36   /* Display shopping web site   */
2539 #define XKB_KEY_XF86History             0x1008FF37   /* Show history of web surfing */
2540 #define XKB_KEY_XF86OpenURL             0x1008FF38   /* Open selected URL           */
2541 #define XKB_KEY_XF86AddFavorite 0x1008FF39   /* Add URL to favorites list   */
2542 #define XKB_KEY_XF86HotLinks            0x1008FF3A   /* Show "hot" links            */
2543 #define XKB_KEY_XF86BrightnessAdjust    0x1008FF3B   /* Invoke brightness adj. UI   */
2544 #define XKB_KEY_XF86Finance             0x1008FF3C   /* Display financial site      */
2545 #define XKB_KEY_XF86Community   0x1008FF3D   /* Display user's community    */
2546 #define XKB_KEY_XF86AudioRewind 0x1008FF3E   /* "rewind" audio track        */
2547 #define XKB_KEY_XF86BackForward 0x1008FF3F   /* ??? */
2548 #define XKB_KEY_XF86Launch0             0x1008FF40   /* Launch Application          */
2549 #define XKB_KEY_XF86Launch1             0x1008FF41   /* Launch Application          */
2550 #define XKB_KEY_XF86Launch2             0x1008FF42   /* Launch Application          */
2551 #define XKB_KEY_XF86Launch3             0x1008FF43   /* Launch Application          */
2552 #define XKB_KEY_XF86Launch4             0x1008FF44   /* Launch Application          */
2553 #define XKB_KEY_XF86Launch5             0x1008FF45   /* Launch Application          */
2554 #define XKB_KEY_XF86Launch6             0x1008FF46   /* Launch Application          */
2555 #define XKB_KEY_XF86Launch7             0x1008FF47   /* Launch Application          */
2556 #define XKB_KEY_XF86Launch8             0x1008FF48   /* Launch Application          */
2557 #define XKB_KEY_XF86Launch9             0x1008FF49   /* Launch Application          */
2558 #define XKB_KEY_XF86LaunchA             0x1008FF4A   /* Launch Application          */
2559 #define XKB_KEY_XF86LaunchB             0x1008FF4B   /* Launch Application          */
2560 #define XKB_KEY_XF86LaunchC             0x1008FF4C   /* Launch Application          */
2561 #define XKB_KEY_XF86LaunchD             0x1008FF4D   /* Launch Application          */
2562 #define XKB_KEY_XF86LaunchE             0x1008FF4E   /* Launch Application          */
2563 #define XKB_KEY_XF86LaunchF             0x1008FF4F   /* Launch Application          */
2564
2565 #define XKB_KEY_XF86ApplicationLeft     0x1008FF50   /* switch to application, left */
2566 #define XKB_KEY_XF86ApplicationRight    0x1008FF51   /* switch to application, right*/
2567 #define XKB_KEY_XF86Book                0x1008FF52   /* Launch bookreader           */
2568 #define XKB_KEY_XF86CD          0x1008FF53   /* Launch CD/DVD player        */
2569 #define XKB_KEY_XF86Calculater  0x1008FF54   /* Launch Calculater           */
2570 #define XKB_KEY_XF86Clear               0x1008FF55   /* Clear window, screen        */
2571 #define XKB_KEY_XF86Close               0x1008FF56   /* Close window                */
2572 #define XKB_KEY_XF86Copy                0x1008FF57   /* Copy selection              */
2573 #define XKB_KEY_XF86Cut         0x1008FF58   /* Cut selection               */
2574 #define XKB_KEY_XF86Display             0x1008FF59   /* Output switch key           */
2575 #define XKB_KEY_XF86DOS         0x1008FF5A   /* Launch DOS (emulation)      */
2576 #define XKB_KEY_XF86Documents   0x1008FF5B   /* Open documents window       */
2577 #define XKB_KEY_XF86Excel               0x1008FF5C   /* Launch spread sheet         */
2578 #define XKB_KEY_XF86Explorer            0x1008FF5D   /* Launch file explorer        */
2579 #define XKB_KEY_XF86Game                0x1008FF5E   /* Launch game                 */
2580 #define XKB_KEY_XF86Go          0x1008FF5F   /* Go to URL                   */
2581 #define XKB_KEY_XF86iTouch              0x1008FF60   /* Logitech iTouch- don't use  */
2582 #define XKB_KEY_XF86LogOff              0x1008FF61   /* Log off system              */
2583 #define XKB_KEY_XF86Market              0x1008FF62   /* ??                          */
2584 #define XKB_KEY_XF86Meeting             0x1008FF63   /* enter meeting in calendar   */
2585 #define XKB_KEY_XF86MenuKB              0x1008FF65   /* distinguish keyboard from PB */
2586 #define XKB_KEY_XF86MenuPB              0x1008FF66   /* distinguish PB from keyboard */
2587 #define XKB_KEY_XF86MySites             0x1008FF67   /* Favourites                  */
2588 #define XKB_KEY_XF86New         0x1008FF68   /* New (folder, document...    */
2589 #define XKB_KEY_XF86News                0x1008FF69   /* News                        */
2590 #define XKB_KEY_XF86OfficeHome  0x1008FF6A   /* Office home (old Staroffice)*/
2591 #define XKB_KEY_XF86Open                0x1008FF6B   /* Open                        */
2592 #define XKB_KEY_XF86Option              0x1008FF6C   /* ?? */
2593 #define XKB_KEY_XF86Paste               0x1008FF6D   /* Paste                       */
2594 #define XKB_KEY_XF86Phone               0x1008FF6E   /* Launch phone; dial number   */
2595 #define XKB_KEY_XF86Q           0x1008FF70   /* Compaq's Q - don't use      */
2596 #define XKB_KEY_XF86Reply               0x1008FF72   /* Reply e.g., mail            */
2597 #define XKB_KEY_XF86Reload              0x1008FF73   /* Reload web page, file, etc. */
2598 #define XKB_KEY_XF86RotateWindows       0x1008FF74   /* Rotate windows e.g. xrandr  */
2599 #define XKB_KEY_XF86RotationPB  0x1008FF75   /* don't use                   */
2600 #define XKB_KEY_XF86RotationKB  0x1008FF76   /* don't use                   */
2601 #define XKB_KEY_XF86Save                0x1008FF77   /* Save (file, document, state */
2602 #define XKB_KEY_XF86ScrollUp            0x1008FF78   /* Scroll window/contents up   */
2603 #define XKB_KEY_XF86ScrollDown  0x1008FF79   /* Scrool window/contentd down */
2604 #define XKB_KEY_XF86ScrollClick 0x1008FF7A   /* Use XKB mousekeys instead   */
2605 #define XKB_KEY_XF86Send                0x1008FF7B   /* Send mail, file, object     */
2606 #define XKB_KEY_XF86Spell               0x1008FF7C   /* Spell checker               */
2607 #define XKB_KEY_XF86SplitScreen 0x1008FF7D   /* Split window or screen      */
2608 #define XKB_KEY_XF86Support             0x1008FF7E   /* Get support (??)            */
2609 #define XKB_KEY_XF86TaskPane            0x1008FF7F   /* Show tasks */
2610 #define XKB_KEY_XF86Terminal            0x1008FF80   /* Launch terminal emulator    */
2611 #define XKB_KEY_XF86Tools               0x1008FF81   /* toolbox of desktop/app.     */
2612 #define XKB_KEY_XF86Travel              0x1008FF82   /* ?? */
2613 #define XKB_KEY_XF86UserPB              0x1008FF84   /* ?? */
2614 #define XKB_KEY_XF86User1KB             0x1008FF85   /* ?? */
2615 #define XKB_KEY_XF86User2KB             0x1008FF86   /* ?? */
2616 #define XKB_KEY_XF86Video               0x1008FF87   /* Launch video player       */
2617 #define XKB_KEY_XF86WheelButton 0x1008FF88   /* button from a mouse wheel */
2618 #define XKB_KEY_XF86Word                0x1008FF89   /* Launch word processor     */
2619 #define XKB_KEY_XF86Xfer                0x1008FF8A
2620 #define XKB_KEY_XF86ZoomIn              0x1008FF8B   /* zoom in view, map, etc.   */
2621 #define XKB_KEY_XF86ZoomOut             0x1008FF8C   /* zoom out view, map, etc.  */
2622
2623 #define XKB_KEY_XF86Away                0x1008FF8D   /* mark yourself as away     */
2624 #define XKB_KEY_XF86Messenger   0x1008FF8E   /* as in instant messaging   */
2625 #define XKB_KEY_XF86WebCam              0x1008FF8F   /* Launch web camera app.    */
2626 #define XKB_KEY_XF86MailForward 0x1008FF90   /* Forward in mail           */
2627 #define XKB_KEY_XF86Pictures            0x1008FF91   /* Show pictures             */
2628 #define XKB_KEY_XF86Music               0x1008FF92   /* Launch music application  */
2629
2630 #define XKB_KEY_XF86Battery             0x1008FF93   /* Display battery information */
2631 #define XKB_KEY_XF86Bluetooth   0x1008FF94   /* Enable/disable Bluetooth    */
2632 #define XKB_KEY_XF86WLAN                0x1008FF95   /* Enable/disable WLAN         */
2633 #define XKB_KEY_XF86UWB         0x1008FF96   /* Enable/disable UWB          */
2634
2635 #define XKB_KEY_XF86AudioForward        0x1008FF97   /* fast-forward audio track    */
2636 #define XKB_KEY_XF86AudioRepeat 0x1008FF98   /* toggle repeat mode          */
2637 #define XKB_KEY_XF86AudioRandomPlay     0x1008FF99   /* toggle shuffle mode         */
2638 #define XKB_KEY_XF86Subtitle            0x1008FF9A   /* cycle through subtitle      */
2639 #define XKB_KEY_XF86AudioCycleTrack     0x1008FF9B   /* cycle through audio tracks  */
2640 #define XKB_KEY_XF86CycleAngle  0x1008FF9C   /* cycle through angles        */
2641 #define XKB_KEY_XF86FrameBack   0x1008FF9D   /* video: go one frame back    */
2642 #define XKB_KEY_XF86FrameForward        0x1008FF9E   /* video: go one frame forward */
2643 #define XKB_KEY_XF86Time                0x1008FF9F   /* display, or shows an entry for time seeking */
2644 #define XKB_KEY_XF86Select              0x1008FFA0   /* Select button on joypads and remotes */
2645 #define XKB_KEY_XF86View                0x1008FFA1   /* Show a view options/properties */
2646 #define XKB_KEY_XF86TopMenu             0x1008FFA2   /* Go to a top-level menu in a video */
2647
2648 #define XKB_KEY_XF86Red         0x1008FFA3   /* Red button                  */
2649 #define XKB_KEY_XF86Green               0x1008FFA4   /* Green button                */
2650 #define XKB_KEY_XF86Yellow              0x1008FFA5   /* Yellow button               */
2651 #define XKB_KEY_XF86Blue             0x1008FFA6   /* Blue button                 */
2652
2653 #define XKB_KEY_XF86Suspend             0x1008FFA7   /* Sleep to RAM                */
2654 #define XKB_KEY_XF86Hibernate   0x1008FFA8   /* Sleep to disk               */
2655 #define XKB_KEY_XF86TouchpadToggle      0x1008FFA9   /* Toggle between touchpad/trackstick */
2656 #define XKB_KEY_XF86TouchpadOn  0x1008FFB0   /* The touchpad got switched on */
2657 #define XKB_KEY_XF86TouchpadOff 0x1008FFB1   /* The touchpad got switched off */
2658
2659 #define XKB_KEY_XF86AudioMicMute        0x1008FFB2   /* Mute the Mic from the system */
2660
2661 #define XKB_KEY_XF86Keyboard            0x1008FFB3   /* User defined keyboard related action */
2662
2663 #define XKB_KEY_XF86WWAN                0x1008FFB4   /* Toggle WWAN (LTE, UMTS, etc.) radio */
2664 #define XKB_KEY_XF86RFKill              0x1008FFB5   /* Toggle radios on/off */
2665
2666 #define XKB_KEY_XF86AudioPreset 0x1008FFB6   /* Select equalizer preset, e.g. theatre-mode */
2667
2668 #define XKB_KEY_XF86RotationLockToggle 0x1008FFB7 /* Toggle screen rotation lock on/off */
2669
2670 #define XKB_KEY_XF86FullScreen  0x1008FFB8   /* Toggle fullscreen */
2671
2672 /* Keys for special action keys (hot keys) */
2673 /* Virtual terminals on some operating systems */
2674 #define XKB_KEY_XF86Switch_VT_1 0x1008FE01
2675 #define XKB_KEY_XF86Switch_VT_2 0x1008FE02
2676 #define XKB_KEY_XF86Switch_VT_3 0x1008FE03
2677 #define XKB_KEY_XF86Switch_VT_4 0x1008FE04
2678 #define XKB_KEY_XF86Switch_VT_5 0x1008FE05
2679 #define XKB_KEY_XF86Switch_VT_6 0x1008FE06
2680 #define XKB_KEY_XF86Switch_VT_7 0x1008FE07
2681 #define XKB_KEY_XF86Switch_VT_8 0x1008FE08
2682 #define XKB_KEY_XF86Switch_VT_9 0x1008FE09
2683 #define XKB_KEY_XF86Switch_VT_10        0x1008FE0A
2684 #define XKB_KEY_XF86Switch_VT_11        0x1008FE0B
2685 #define XKB_KEY_XF86Switch_VT_12        0x1008FE0C
2686
2687 #define XKB_KEY_XF86Ungrab              0x1008FE20   /* force ungrab               */
2688 #define XKB_KEY_XF86ClearGrab   0x1008FE21   /* kill application with grab */
2689 #define XKB_KEY_XF86Next_VMode  0x1008FE22   /* next video mode available  */
2690 #define XKB_KEY_XF86Prev_VMode  0x1008FE23   /* prev. video mode available */
2691 #define XKB_KEY_XF86LogWindowTree       0x1008FE24   /* print window tree to log   */
2692 #define XKB_KEY_XF86LogGrabInfo 0x1008FE25   /* print all active grabs to log */
2693
2694
2695 /*
2696  * Reserved range for evdev symbols: 0x10081000-0x10081FFF
2697  *
2698  * Key syms within this range must match the Linux kernel
2699  * input-event-codes.h file in the format:
2700  *     XF86XK_CamelCaseKernelName       _EVDEVK(kernel value)
2701  * For example, the kernel
2702  *   #define KEY_MACRO_RECORD_START     0x2b0
2703  * effectively ends up as:
2704  *   #define XKB_KEY_XF86MacroRecordStart       0x100812b0
2705  *
2706  * For historical reasons, some keysyms within the reserved range will be
2707  * missing, most notably all "normal" keys that are mapped through default
2708  * XKB layouts (e.g. KEY_Q).
2709  *
2710  * CamelCasing is done with a human control as last authority, e.g. see VOD
2711  * instead of Vod for the Video on Demand key.
2712  *
2713  * The format for #defines is strict:
2714  *
2715  * #define XKB_KEY_XF86FOO<tab...>_EVDEVK(0xABC)<tab><tab> |* kver KEY_FOO *|
2716  *
2717  * Where
2718  * - alignment by tabs
2719  * - the _EVDEVK macro must be used
2720  * - the hex code must be in uppercase hex
2721  * - the kernel version (kver) is in the form v5.10
2722  * - kver and key name are within a slash-star comment (a pipe is used in
2723  *   this example for technical reasons)
2724  * These #defines are parsed by scripts. Do not stray from the given format.
2725  *
2726  * Where the evdev keycode is mapped to a different symbol, please add a
2727  * comment line starting with Use: but otherwise the same format, e.g.
2728  *  Use: XF86XK_RotationLockToggle      _EVDEVK(0x231)             v4.16 KEY_ROTATE_LOCK_TOGGLE
2729  *
2730  */
2731 /* Use: XF86XK_Eject                    _EVDEVK(0x0A2)                   KEY_EJECTCLOSECD */
2732 /* Use: XF86XK_New                      _EVDEVK(0x0B5)             v2.6.14 KEY_NEW */
2733 /* Use: XK_Redo                         _EVDEVK(0x0B6)             v2.6.14 KEY_REDO */
2734 /* KEY_DASHBOARD has been mapped to LaunchB in xkeyboard-config since 2011 */
2735 /* Use: XF86XK_LaunchB                  _EVDEVK(0x0CC)             v2.6.28 KEY_DASHBOARD */
2736 /* Use: XF86XK_Display                  _EVDEVK(0x0E3)             v2.6.12 KEY_SWITCHVIDEOMODE */
2737 /* Use: XF86XK_KbdLightOnOff            _EVDEVK(0x0E4)             v2.6.12 KEY_KBDILLUMTOGGLE */
2738 /* Use: XF86XK_KbdBrightnessDown        _EVDEVK(0x0E5)             v2.6.12 KEY_KBDILLUMDOWN */
2739 /* Use: XF86XK_KbdBrightnessUp          _EVDEVK(0x0E6)             v2.6.12 KEY_KBDILLUMUP */
2740 /* Use: XF86XK_Send                     _EVDEVK(0x0E7)             v2.6.14 KEY_SEND */
2741 /* Use: XF86XK_Reply                    _EVDEVK(0x0E8)             v2.6.14 KEY_REPLY */
2742 /* Use: XF86XK_MailForward              _EVDEVK(0x0E9)             v2.6.14 KEY_FORWARDMAIL */
2743 /* Use: XF86XK_Save                     _EVDEVK(0x0EA)             v2.6.14 KEY_SAVE */
2744 /* Use: XF86XK_Documents                _EVDEVK(0x0EB)             v2.6.14 KEY_DOCUMENTS */
2745 /* Use: XF86XK_Battery                  _EVDEVK(0x0EC)             v2.6.17 KEY_BATTERY */
2746 /* Use: XF86XK_Bluetooth                _EVDEVK(0x0ED)             v2.6.19 KEY_BLUETOOTH */
2747 /* Use: XF86XK_WLAN                     _EVDEVK(0x0EE)             v2.6.19 KEY_WLAN */
2748 /* Use: XF86XK_UWB                      _EVDEVK(0x0EF)             v2.6.24 KEY_UWB */
2749 /* Use: XF86XK_Next_VMode               _EVDEVK(0x0F1)             v2.6.23 KEY_VIDEO_NEXT */
2750 /* Use: XF86XK_Prev_VMode               _EVDEVK(0x0F2)             v2.6.23 KEY_VIDEO_PREV */
2751 /* Use: XF86XK_MonBrightnessCycle       _EVDEVK(0x0F3)             v2.6.23 KEY_BRIGHTNESS_CYCLE */
2752 #define XKB_KEY_XF86BrightnessAuto              0x100810f4              /* v3.16 KEY_BRIGHTNESS_AUTO */
2753 #define XKB_KEY_XF86DisplayOff          0x100810f5              /* v2.6.23 KEY_DISPLAY_OFF */
2754 /* Use: XF86XK_WWAN                     _EVDEVK(0x0F6)             v3.13 KEY_WWAN */
2755 /* Use: XF86XK_RFKill                   _EVDEVK(0x0F7)             v2.6.33 KEY_RFKILL */
2756 /* Use: XF86XK_AudioMicMute             _EVDEVK(0x0F8)             v3.1  KEY_MICMUTE */
2757 #define XKB_KEY_XF86Info                        0x10081166              /*       KEY_INFO */
2758 /* Use: XF86XK_CycleAngle               _EVDEVK(0x173)                   KEY_ANGLE */
2759 /* Use: XF86XK_FullScreen               _EVDEVK(0x174)             v5.1  KEY_FULL_SCREEN */
2760 #define XKB_KEY_XF86AspectRatio         0x10081177              /* v5.1  KEY_ASPECT_RATIO */
2761 #define XKB_KEY_XF86DVD                 0x10081185              /*       KEY_DVD */
2762 #define XKB_KEY_XF86Audio                       0x10081188              /*       KEY_AUDIO */
2763 /* Use: XF86XK_Video                    _EVDEVK(0x189)                   KEY_VIDEO */
2764 /* Use: XF86XK_Calendar                 _EVDEVK(0x18D)                   KEY_CALENDAR */
2765 #define XKB_KEY_XF86ChannelUp           0x10081192              /*       KEY_CHANNELUP */
2766 #define XKB_KEY_XF86ChannelDown         0x10081193              /*       KEY_CHANNELDOWN */
2767 /* Use: XF86XK_AudioRandomPlay          _EVDEVK(0x19A)                   KEY_SHUFFLE */
2768 #define XKB_KEY_XF86Break                       0x1008119b              /*       KEY_BREAK */
2769 #define XKB_KEY_XF86VideoPhone          0x100811a0              /* v2.6.20 KEY_VIDEOPHONE */
2770 /* Use: XF86XK_Game                     _EVDEVK(0x1A1)             v2.6.20 KEY_GAMES */
2771 /* Use: XF86XK_ZoomIn                   _EVDEVK(0x1A2)             v2.6.20 KEY_ZOOMIN */
2772 /* Use: XF86XK_ZoomOut                  _EVDEVK(0x1A3)             v2.6.20 KEY_ZOOMOUT */
2773 #define XKB_KEY_XF86ZoomReset           0x100811a4              /* v2.6.20 KEY_ZOOMRESET */
2774 /* Use: XF86XK_Word                     _EVDEVK(0x1A5)             v2.6.20 KEY_WORDPROCESSOR */
2775 #define XKB_KEY_XF86Editor                      0x100811a6              /* v2.6.20 KEY_EDITOR */
2776 /* Use: XF86XK_Excel                    _EVDEVK(0x1A7)             v2.6.20 KEY_SPREADSHEET */
2777 #define XKB_KEY_XF86GraphicsEditor              0x100811a8              /* v2.6.20 KEY_GRAPHICSEDITOR */
2778 #define XKB_KEY_XF86Presentation                0x100811a9              /* v2.6.20 KEY_PRESENTATION */
2779 #define XKB_KEY_XF86Database                    0x100811aa              /* v2.6.20 KEY_DATABASE */
2780 /* Use: XF86XK_News                     _EVDEVK(0x1AB)             v2.6.20 KEY_NEWS */
2781 #define XKB_KEY_XF86Voicemail           0x100811ac              /* v2.6.20 KEY_VOICEMAIL */
2782 #define XKB_KEY_XF86Addressbook         0x100811ad              /* v2.6.20 KEY_ADDRESSBOOK */
2783 /* Use: XF86XK_Messenger                _EVDEVK(0x1AE)             v2.6.20 KEY_MESSENGER */
2784 #define XKB_KEY_XF86DisplayToggle               0x100811af              /* v2.6.20 KEY_DISPLAYTOGGLE */
2785 #define XKB_KEY_XF86SpellCheck          0x100811b0              /* v2.6.24 KEY_SPELLCHECK */
2786 /* Use: XF86XK_LogOff                   _EVDEVK(0x1B1)             v2.6.24 KEY_LOGOFF */
2787 /* Use: XK_dollar                       _EVDEVK(0x1B2)             v2.6.24 KEY_DOLLAR */
2788 /* Use: XK_EuroSign                     _EVDEVK(0x1B3)             v2.6.24 KEY_EURO */
2789 /* Use: XF86XK_FrameBack                _EVDEVK(0x1B4)             v2.6.24 KEY_FRAMEBACK */
2790 /* Use: XF86XK_FrameForward             _EVDEVK(0x1B5)             v2.6.24 KEY_FRAMEFORWARD */
2791 #define XKB_KEY_XF86ContextMenu         0x100811b6              /* v2.6.24 KEY_CONTEXT_MENU */
2792 #define XKB_KEY_XF86MediaRepeat         0x100811b7              /* v2.6.26 KEY_MEDIA_REPEAT */
2793 #define XKB_KEY_XF8610ChannelsUp                0x100811b8              /* v2.6.38 KEY_10CHANNELSUP */
2794 #define XKB_KEY_XF8610ChannelsDown              0x100811b9              /* v2.6.38 KEY_10CHANNELSDOWN */
2795 #define XKB_KEY_XF86Images                      0x100811ba              /* v2.6.39 KEY_IMAGES */
2796 #define XKB_KEY_XF86NotificationCenter  0x100811bc              /* v5.10 KEY_NOTIFICATION_CENTER */
2797 #define XKB_KEY_XF86PickupPhone         0x100811bd              /* v5.10 KEY_PICKUP_PHONE */
2798 #define XKB_KEY_XF86HangupPhone         0x100811be              /* v5.10 KEY_HANGUP_PHONE */
2799 #define XKB_KEY_XF86Fn                  0x100811d0              /*       KEY_FN */
2800 #define XKB_KEY_XF86Fn_Esc                      0x100811d1              /*       KEY_FN_ESC */
2801 #define XKB_KEY_XF86FnRightShift                0x100811e5              /* v5.10 KEY_FN_RIGHT_SHIFT */
2802 /* Use: XK_braille_dot_1                _EVDEVK(0x1F1)             v2.6.17 KEY_BRL_DOT1 */
2803 /* Use: XK_braille_dot_2                _EVDEVK(0x1F2)             v2.6.17 KEY_BRL_DOT2 */
2804 /* Use: XK_braille_dot_3                _EVDEVK(0x1F3)             v2.6.17 KEY_BRL_DOT3 */
2805 /* Use: XK_braille_dot_4                _EVDEVK(0x1F4)             v2.6.17 KEY_BRL_DOT4 */
2806 /* Use: XK_braille_dot_5                _EVDEVK(0x1F5)             v2.6.17 KEY_BRL_DOT5 */
2807 /* Use: XK_braille_dot_6                _EVDEVK(0x1F6)             v2.6.17 KEY_BRL_DOT6 */
2808 /* Use: XK_braille_dot_7                _EVDEVK(0x1F7)             v2.6.17 KEY_BRL_DOT7 */
2809 /* Use: XK_braille_dot_8                _EVDEVK(0x1F8)             v2.6.17 KEY_BRL_DOT8 */
2810 /* Use: XK_braille_dot_9                _EVDEVK(0x1F9)             v2.6.23 KEY_BRL_DOT9 */
2811 /* Use: XK_braille_dot_1                _EVDEVK(0x1FA)             v2.6.23 KEY_BRL_DOT10 */
2812 #define XKB_KEY_XF86Numeric0                    0x10081200              /* v2.6.28 KEY_NUMERIC_0 */
2813 #define XKB_KEY_XF86Numeric1                    0x10081201              /* v2.6.28 KEY_NUMERIC_1 */
2814 #define XKB_KEY_XF86Numeric2                    0x10081202              /* v2.6.28 KEY_NUMERIC_2 */
2815 #define XKB_KEY_XF86Numeric3                    0x10081203              /* v2.6.28 KEY_NUMERIC_3 */
2816 #define XKB_KEY_XF86Numeric4                    0x10081204              /* v2.6.28 KEY_NUMERIC_4 */
2817 #define XKB_KEY_XF86Numeric5                    0x10081205              /* v2.6.28 KEY_NUMERIC_5 */
2818 #define XKB_KEY_XF86Numeric6                    0x10081206              /* v2.6.28 KEY_NUMERIC_6 */
2819 #define XKB_KEY_XF86Numeric7                    0x10081207              /* v2.6.28 KEY_NUMERIC_7 */
2820 #define XKB_KEY_XF86Numeric8                    0x10081208              /* v2.6.28 KEY_NUMERIC_8 */
2821 #define XKB_KEY_XF86Numeric9                    0x10081209              /* v2.6.28 KEY_NUMERIC_9 */
2822 #define XKB_KEY_XF86NumericStar         0x1008120a              /* v2.6.28 KEY_NUMERIC_STAR */
2823 #define XKB_KEY_XF86NumericPound                0x1008120b              /* v2.6.28 KEY_NUMERIC_POUND */
2824 #define XKB_KEY_XF86NumericA                    0x1008120c              /* v4.1  KEY_NUMERIC_A */
2825 #define XKB_KEY_XF86NumericB                    0x1008120d              /* v4.1  KEY_NUMERIC_B */
2826 #define XKB_KEY_XF86NumericC                    0x1008120e              /* v4.1  KEY_NUMERIC_C */
2827 #define XKB_KEY_XF86NumericD                    0x1008120f              /* v4.1  KEY_NUMERIC_D */
2828 #define XKB_KEY_XF86CameraFocus         0x10081210              /* v2.6.33 KEY_CAMERA_FOCUS */
2829 #define XKB_KEY_XF86WPSButton           0x10081211              /* v2.6.34 KEY_WPS_BUTTON */
2830 /* Use: XF86XK_TouchpadToggle           _EVDEVK(0x212)             v2.6.37 KEY_TOUCHPAD_TOGGLE */
2831 /* Use: XF86XK_TouchpadOn               _EVDEVK(0x213)             v2.6.37 KEY_TOUCHPAD_ON */
2832 /* Use: XF86XK_TouchpadOff              _EVDEVK(0x214)             v2.6.37 KEY_TOUCHPAD_OFF */
2833 #define XKB_KEY_XF86CameraZoomIn                0x10081215              /* v2.6.39 KEY_CAMERA_ZOOMIN */
2834 #define XKB_KEY_XF86CameraZoomOut               0x10081216              /* v2.6.39 KEY_CAMERA_ZOOMOUT */
2835 #define XKB_KEY_XF86CameraUp                    0x10081217              /* v2.6.39 KEY_CAMERA_UP */
2836 #define XKB_KEY_XF86CameraDown          0x10081218              /* v2.6.39 KEY_CAMERA_DOWN */
2837 #define XKB_KEY_XF86CameraLeft          0x10081219              /* v2.6.39 KEY_CAMERA_LEFT */
2838 #define XKB_KEY_XF86CameraRight         0x1008121a              /* v2.6.39 KEY_CAMERA_RIGHT */
2839 #define XKB_KEY_XF86AttendantOn         0x1008121b              /* v3.10 KEY_ATTENDANT_ON */
2840 #define XKB_KEY_XF86AttendantOff                0x1008121c              /* v3.10 KEY_ATTENDANT_OFF */
2841 #define XKB_KEY_XF86AttendantToggle             0x1008121d              /* v3.10 KEY_ATTENDANT_TOGGLE */
2842 #define XKB_KEY_XF86LightsToggle                0x1008121e              /* v3.10 KEY_LIGHTS_TOGGLE */
2843 #define XKB_KEY_XF86ALSToggle           0x10081230              /* v3.13 KEY_ALS_TOGGLE */
2844 /* Use: XF86XK_RotationLockToggle       _EVDEVK(0x231)             v4.16 KEY_ROTATE_LOCK_TOGGLE */
2845 #define XKB_KEY_XF86Buttonconfig                0x10081240              /* v3.16 KEY_BUTTONCONFIG */
2846 #define XKB_KEY_XF86Taskmanager         0x10081241              /* v3.16 KEY_TASKMANAGER */
2847 #define XKB_KEY_XF86Journal                     0x10081242              /* v3.16 KEY_JOURNAL */
2848 #define XKB_KEY_XF86ControlPanel                0x10081243              /* v3.16 KEY_CONTROLPANEL */
2849 #define XKB_KEY_XF86AppSelect           0x10081244              /* v3.16 KEY_APPSELECT */
2850 #define XKB_KEY_XF86Screensaver         0x10081245              /* v3.16 KEY_SCREENSAVER */
2851 #define XKB_KEY_XF86VoiceCommand                0x10081246              /* v3.16 KEY_VOICECOMMAND */
2852 #define XKB_KEY_XF86Assistant           0x10081247              /* v4.13 KEY_ASSISTANT */
2853 /* Use: XK_ISO_Next_Group               _EVDEVK(0x248)             v5.2  KEY_KBD_LAYOUT_NEXT */
2854 #define XKB_KEY_XF86EmojiPicker         0x10081249              /* v5.13 KEY_EMOJI_PICKER */
2855 #define XKB_KEY_XF86Dictate                     0x1008124a              /* v5.17 KEY_DICTATE */
2856 #define XKB_KEY_XF86BrightnessMin               0x10081250              /* v3.16 KEY_BRIGHTNESS_MIN */
2857 #define XKB_KEY_XF86BrightnessMax               0x10081251              /* v3.16 KEY_BRIGHTNESS_MAX */
2858 #define XKB_KEY_XF86KbdInputAssistPrev  0x10081260              /* v3.18 KEY_KBDINPUTASSIST_PREV */
2859 #define XKB_KEY_XF86KbdInputAssistNext  0x10081261              /* v3.18 KEY_KBDINPUTASSIST_NEXT */
2860 #define XKB_KEY_XF86KbdInputAssistPrevgroup     0x10081262              /* v3.18 KEY_KBDINPUTASSIST_PREVGROUP */
2861 #define XKB_KEY_XF86KbdInputAssistNextgroup     0x10081263              /* v3.18 KEY_KBDINPUTASSIST_NEXTGROUP */
2862 #define XKB_KEY_XF86KbdInputAssistAccept        0x10081264              /* v3.18 KEY_KBDINPUTASSIST_ACCEPT */
2863 #define XKB_KEY_XF86KbdInputAssistCancel        0x10081265              /* v3.18 KEY_KBDINPUTASSIST_CANCEL */
2864 #define XKB_KEY_XF86RightUp                     0x10081266              /* v4.7  KEY_RIGHT_UP */
2865 #define XKB_KEY_XF86RightDown           0x10081267              /* v4.7  KEY_RIGHT_DOWN */
2866 #define XKB_KEY_XF86LeftUp                      0x10081268              /* v4.7  KEY_LEFT_UP */
2867 #define XKB_KEY_XF86LeftDown                    0x10081269              /* v4.7  KEY_LEFT_DOWN */
2868 #define XKB_KEY_XF86RootMenu                    0x1008126a              /* v4.7  KEY_ROOT_MENU */
2869 #define XKB_KEY_XF86MediaTopMenu                0x1008126b              /* v4.7  KEY_MEDIA_TOP_MENU */
2870 #define XKB_KEY_XF86Numeric11           0x1008126c              /* v4.7  KEY_NUMERIC_11 */
2871 #define XKB_KEY_XF86Numeric12           0x1008126d              /* v4.7  KEY_NUMERIC_12 */
2872 #define XKB_KEY_XF86AudioDesc           0x1008126e              /* v4.7  KEY_AUDIO_DESC */
2873 #define XKB_KEY_XF863DMode                      0x1008126f              /* v4.7  KEY_3D_MODE */
2874 #define XKB_KEY_XF86NextFavorite                0x10081270              /* v4.7  KEY_NEXT_FAVORITE */
2875 #define XKB_KEY_XF86StopRecord          0x10081271              /* v4.7  KEY_STOP_RECORD */
2876 #define XKB_KEY_XF86PauseRecord         0x10081272              /* v4.7  KEY_PAUSE_RECORD */
2877 #define XKB_KEY_XF86VOD                 0x10081273              /* v4.7  KEY_VOD */
2878 #define XKB_KEY_XF86Unmute                      0x10081274              /* v4.7  KEY_UNMUTE */
2879 #define XKB_KEY_XF86FastReverse         0x10081275              /* v4.7  KEY_FASTREVERSE */
2880 #define XKB_KEY_XF86SlowReverse         0x10081276              /* v4.7  KEY_SLOWREVERSE */
2881 #define XKB_KEY_XF86Data                        0x10081277              /* v4.7  KEY_DATA */
2882 #define XKB_KEY_XF86OnScreenKeyboard            0x10081278              /* v4.12 KEY_ONSCREEN_KEYBOARD */
2883 #define XKB_KEY_XF86PrivacyScreenToggle 0x10081279              /* v5.5  KEY_PRIVACY_SCREEN_TOGGLE */
2884 #define XKB_KEY_XF86SelectiveScreenshot 0x1008127a              /* v5.6  KEY_SELECTIVE_SCREENSHOT */
2885 #define XKB_KEY_XF86Macro1                      0x10081290              /* v5.5  KEY_MACRO1 */
2886 #define XKB_KEY_XF86Macro2                      0x10081291              /* v5.5  KEY_MACRO2 */
2887 #define XKB_KEY_XF86Macro3                      0x10081292              /* v5.5  KEY_MACRO3 */
2888 #define XKB_KEY_XF86Macro4                      0x10081293              /* v5.5  KEY_MACRO4 */
2889 #define XKB_KEY_XF86Macro5                      0x10081294              /* v5.5  KEY_MACRO5 */
2890 #define XKB_KEY_XF86Macro6                      0x10081295              /* v5.5  KEY_MACRO6 */
2891 #define XKB_KEY_XF86Macro7                      0x10081296              /* v5.5  KEY_MACRO7 */
2892 #define XKB_KEY_XF86Macro8                      0x10081297              /* v5.5  KEY_MACRO8 */
2893 #define XKB_KEY_XF86Macro9                      0x10081298              /* v5.5  KEY_MACRO9 */
2894 #define XKB_KEY_XF86Macro10                     0x10081299              /* v5.5  KEY_MACRO10 */
2895 #define XKB_KEY_XF86Macro11                     0x1008129a              /* v5.5  KEY_MACRO11 */
2896 #define XKB_KEY_XF86Macro12                     0x1008129b              /* v5.5  KEY_MACRO12 */
2897 #define XKB_KEY_XF86Macro13                     0x1008129c              /* v5.5  KEY_MACRO13 */
2898 #define XKB_KEY_XF86Macro14                     0x1008129d              /* v5.5  KEY_MACRO14 */
2899 #define XKB_KEY_XF86Macro15                     0x1008129e              /* v5.5  KEY_MACRO15 */
2900 #define XKB_KEY_XF86Macro16                     0x1008129f              /* v5.5  KEY_MACRO16 */
2901 #define XKB_KEY_XF86Macro17                     0x100812a0              /* v5.5  KEY_MACRO17 */
2902 #define XKB_KEY_XF86Macro18                     0x100812a1              /* v5.5  KEY_MACRO18 */
2903 #define XKB_KEY_XF86Macro19                     0x100812a2              /* v5.5  KEY_MACRO19 */
2904 #define XKB_KEY_XF86Macro20                     0x100812a3              /* v5.5  KEY_MACRO20 */
2905 #define XKB_KEY_XF86Macro21                     0x100812a4              /* v5.5  KEY_MACRO21 */
2906 #define XKB_KEY_XF86Macro22                     0x100812a5              /* v5.5  KEY_MACRO22 */
2907 #define XKB_KEY_XF86Macro23                     0x100812a6              /* v5.5  KEY_MACRO23 */
2908 #define XKB_KEY_XF86Macro24                     0x100812a7              /* v5.5  KEY_MACRO24 */
2909 #define XKB_KEY_XF86Macro25                     0x100812a8              /* v5.5  KEY_MACRO25 */
2910 #define XKB_KEY_XF86Macro26                     0x100812a9              /* v5.5  KEY_MACRO26 */
2911 #define XKB_KEY_XF86Macro27                     0x100812aa              /* v5.5  KEY_MACRO27 */
2912 #define XKB_KEY_XF86Macro28                     0x100812ab              /* v5.5  KEY_MACRO28 */
2913 #define XKB_KEY_XF86Macro29                     0x100812ac              /* v5.5  KEY_MACRO29 */
2914 #define XKB_KEY_XF86Macro30                     0x100812ad              /* v5.5  KEY_MACRO30 */
2915 #define XKB_KEY_XF86MacroRecordStart            0x100812b0              /* v5.5  KEY_MACRO_RECORD_START */
2916 #define XKB_KEY_XF86MacroRecordStop             0x100812b1              /* v5.5  KEY_MACRO_RECORD_STOP */
2917 #define XKB_KEY_XF86MacroPresetCycle            0x100812b2              /* v5.5  KEY_MACRO_PRESET_CYCLE */
2918 #define XKB_KEY_XF86MacroPreset1                0x100812b3              /* v5.5  KEY_MACRO_PRESET1 */
2919 #define XKB_KEY_XF86MacroPreset2                0x100812b4              /* v5.5  KEY_MACRO_PRESET2 */
2920 #define XKB_KEY_XF86MacroPreset3                0x100812b5              /* v5.5  KEY_MACRO_PRESET3 */
2921 #define XKB_KEY_XF86KbdLcdMenu1         0x100812b8              /* v5.5  KEY_KBD_LCD_MENU1 */
2922 #define XKB_KEY_XF86KbdLcdMenu2         0x100812b9              /* v5.5  KEY_KBD_LCD_MENU2 */
2923 #define XKB_KEY_XF86KbdLcdMenu3         0x100812ba              /* v5.5  KEY_KBD_LCD_MENU3 */
2924 #define XKB_KEY_XF86KbdLcdMenu4         0x100812bb              /* v5.5  KEY_KBD_LCD_MENU4 */
2925 #define XKB_KEY_XF86KbdLcdMenu5         0x100812bc              /* v5.5  KEY_KBD_LCD_MENU5 */
2926 #undef _EVDEVK
2927 /*
2928  * Copyright (c) 1991, Oracle and/or its affiliates. All rights reserved.
2929  *
2930  * Permission is hereby granted, free of charge, to any person obtaining a
2931  * copy of this software and associated documentation files (the "Software"),
2932  * to deal in the Software without restriction, including without limitation
2933  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
2934  * and/or sell copies of the Software, and to permit persons to whom the
2935  * Software is furnished to do so, subject to the following conditions:
2936  *
2937  * The above copyright notice and this permission notice (including the next
2938  * paragraph) shall be included in all copies or substantial portions of the
2939  * Software.
2940  *
2941  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2942  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2943  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
2944  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2945  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2946  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2947  * DEALINGS IN THE SOFTWARE.
2948  */
2949 /************************************************************
2950
2951 Copyright 1991, 1998  The Open Group
2952
2953 Permission to use, copy, modify, distribute, and sell this software and its
2954 documentation for any purpose is hereby granted without fee, provided that
2955 the above copyright notice appear in all copies and that both that
2956 copyright notice and this permission notice appear in supporting
2957 documentation.
2958
2959 The above copyright notice and this permission notice shall be included in
2960 all copies or substantial portions of the Software.
2961
2962 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2963 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2964 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
2965 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
2966 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2967 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2968
2969 Except as contained in this notice, the name of The Open Group shall not be
2970 used in advertising or otherwise to promote the sale, use or other dealings
2971 in this Software without prior written authorization from The Open Group.
2972
2973 ***********************************************************/
2974
2975 /*
2976  * Floating Accent
2977  */
2978
2979 #define XKB_KEY_SunFA_Grave             0x1005FF00
2980 #define XKB_KEY_SunFA_Circum            0x1005FF01
2981 #define XKB_KEY_SunFA_Tilde             0x1005FF02
2982 #define XKB_KEY_SunFA_Acute             0x1005FF03
2983 #define XKB_KEY_SunFA_Diaeresis 0x1005FF04
2984 #define XKB_KEY_SunFA_Cedilla   0x1005FF05
2985
2986 /*
2987  * Miscellaneous Functions
2988  */
2989
2990 #define XKB_KEY_SunF36          0x1005FF10      /* Labeled F11 */
2991 #define XKB_KEY_SunF37          0x1005FF11      /* Labeled F12 */
2992
2993 #define XKB_KEY_SunSys_Req      0x1005FF60
2994 #define XKB_KEY_SunPrint_Screen 0x0000FF61      /* Same as XK_Print */
2995
2996 /*
2997  * International & Multi-Key Character Composition
2998  */
2999
3000 #define XKB_KEY_SunCompose              0x0000FF20      /* Same as XK_Multi_key */
3001 #define XKB_KEY_SunAltGraph             0x0000FF7E      /* Same as XK_Mode_switch */
3002
3003 /*
3004  * Cursor Control
3005  */
3006
3007 #define XKB_KEY_SunPageUp               0x0000FF55      /* Same as XK_Prior */
3008 #define XKB_KEY_SunPageDown             0x0000FF56      /* Same as XK_Next */
3009
3010 /*
3011  * Open Look Functions
3012  */
3013
3014 #define XKB_KEY_SunUndo         0x0000FF65      /* Same as XK_Undo */
3015 #define XKB_KEY_SunAgain                0x0000FF66      /* Same as XK_Redo */
3016 #define XKB_KEY_SunFind         0x0000FF68      /* Same as XK_Find */
3017 #define XKB_KEY_SunStop         0x0000FF69      /* Same as XK_Cancel */
3018 #define XKB_KEY_SunProps                0x1005FF70
3019 #define XKB_KEY_SunFront                0x1005FF71
3020 #define XKB_KEY_SunCopy         0x1005FF72
3021 #define XKB_KEY_SunOpen         0x1005FF73
3022 #define XKB_KEY_SunPaste                0x1005FF74
3023 #define XKB_KEY_SunCut          0x1005FF75
3024
3025 #define XKB_KEY_SunPowerSwitch          0x1005FF76
3026 #define XKB_KEY_SunAudioLowerVolume             0x1005FF77
3027 #define XKB_KEY_SunAudioMute                    0x1005FF78
3028 #define XKB_KEY_SunAudioRaiseVolume             0x1005FF79
3029 #define XKB_KEY_SunVideoDegauss         0x1005FF7A
3030 #define XKB_KEY_SunVideoLowerBrightness 0x1005FF7B
3031 #define XKB_KEY_SunVideoRaiseBrightness 0x1005FF7C
3032 #define XKB_KEY_SunPowerSwitchShift             0x1005FF7D
3033 /***********************************************************
3034
3035 Copyright 1988, 1998  The Open Group
3036
3037 Permission to use, copy, modify, distribute, and sell this software and its
3038 documentation for any purpose is hereby granted without fee, provided that
3039 the above copyright notice appear in all copies and that both that
3040 copyright notice and this permission notice appear in supporting
3041 documentation.
3042
3043 The above copyright notice and this permission notice shall be included in
3044 all copies or substantial portions of the Software.
3045
3046 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3047 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3048 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
3049 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
3050 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3051 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3052
3053 Except as contained in this notice, the name of The Open Group shall not be
3054 used in advertising or otherwise to promote the sale, use or other dealings
3055 in this Software without prior written authorization from The Open Group.
3056
3057
3058 Copyright 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
3059
3060                         All Rights Reserved
3061
3062 Permission to use, copy, modify, and distribute this software and its
3063 documentation for any purpose and without fee is hereby granted,
3064 provided that the above copyright notice appear in all copies and that
3065 both that copyright notice and this permission notice appear in
3066 supporting documentation, and that the name of Digital not be
3067 used in advertising or publicity pertaining to distribution of the
3068 software without specific, written prior permission.
3069
3070 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
3071 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
3072 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
3073 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
3074 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
3075 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
3076 SOFTWARE.
3077
3078 ******************************************************************/
3079
3080 /*
3081  * DEC private keysyms
3082  * (29th bit set)
3083  */
3084
3085 /* two-key compose sequence initiators, chosen to map to Latin1 characters */
3086
3087 #define XKB_KEY_Dring_accent         0x1000FEB0
3088 #define XKB_KEY_Dcircumflex_accent   0x1000FE5E
3089 #define XKB_KEY_Dcedilla_accent      0x1000FE2C
3090 #define XKB_KEY_Dacute_accent        0x1000FE27
3091 #define XKB_KEY_Dgrave_accent        0x1000FE60
3092 #define XKB_KEY_Dtilde               0x1000FE7E
3093 #define XKB_KEY_Ddiaeresis           0x1000FE22
3094
3095 /* special keysym for LK2** "Remove" key on editing keypad */
3096
3097 #define XKB_KEY_DRemove 0x1000FF00   /* Remove */
3098 /*
3099
3100 Copyright 1987, 1998  The Open Group
3101
3102 Permission to use, copy, modify, distribute, and sell this software and its
3103 documentation for any purpose is hereby granted without fee, provided that
3104 the above copyright notice appear in all copies and that both that
3105 copyright notice and this permission notice appear in supporting
3106 documentation.
3107
3108 The above copyright notice and this permission notice shall be included
3109 in all copies or substantial portions of the Software.
3110
3111 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
3112 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3113 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3114 IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
3115 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
3116 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
3117 OTHER DEALINGS IN THE SOFTWARE.
3118
3119 Except as contained in this notice, the name of The Open Group shall
3120 not be used in advertising or otherwise to promote the sale, use or
3121 other dealings in this Software without prior written authorization
3122 from The Open Group.
3123
3124 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
3125
3126                         All Rights Reserved
3127
3128 Permission to use, copy, modify, and distribute this software and its
3129 documentation for any purpose and without fee is hereby granted,
3130 provided that the above copyright notice appear in all copies and that
3131 both that copyright notice and this permission notice appear in
3132 supporting documentation, and that the names of Hewlett Packard
3133 or Digital not be
3134 used in advertising or publicity pertaining to distribution of the
3135 software without specific, written prior permission.
3136
3137 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
3138 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
3139 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
3140 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
3141 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
3142 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
3143 SOFTWARE.
3144
3145 HEWLETT-PACKARD MAKES NO WARRANTY OF ANY KIND WITH REGARD
3146 TO THIS SOFTWARE, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3147 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3148 PURPOSE.  Hewlett-Packard shall not be liable for errors
3149 contained herein or direct, indirect, special, incidental or
3150 consequential damages in connection with the furnishing,
3151 performance, or use of this material.
3152
3153 */
3154
3155
3156
3157 #define XKB_KEY_hpClearLine             0x1000FF6F
3158 #define XKB_KEY_hpInsertLine            0x1000FF70
3159 #define XKB_KEY_hpDeleteLine            0x1000FF71
3160 #define XKB_KEY_hpInsertChar            0x1000FF72
3161 #define XKB_KEY_hpDeleteChar            0x1000FF73
3162 #define XKB_KEY_hpBackTab               0x1000FF74
3163 #define XKB_KEY_hpKP_BackTab            0x1000FF75
3164 #define XKB_KEY_hpModelock1             0x1000FF48
3165 #define XKB_KEY_hpModelock2             0x1000FF49
3166 #define XKB_KEY_hpReset         0x1000FF6C
3167 #define XKB_KEY_hpSystem                0x1000FF6D
3168 #define XKB_KEY_hpUser          0x1000FF6E
3169 #define XKB_KEY_hpmute_acute            0x100000A8
3170 #define XKB_KEY_hpmute_grave            0x100000A9
3171 #define XKB_KEY_hpmute_asciicircum      0x100000AA
3172 #define XKB_KEY_hpmute_diaeresis        0x100000AB
3173 #define XKB_KEY_hpmute_asciitilde       0x100000AC
3174 #define XKB_KEY_hplira          0x100000AF
3175 #define XKB_KEY_hpguilder               0x100000BE
3176 #define XKB_KEY_hpYdiaeresis            0x100000EE
3177 #define XKB_KEY_hpIO                    0x100000EE
3178 #define XKB_KEY_hplongminus             0x100000F6
3179 #define XKB_KEY_hpblock         0x100000FC
3180
3181
3182
3183 #define XKB_KEY_osfCopy         0x1004FF02
3184 #define XKB_KEY_osfCut          0x1004FF03
3185 #define XKB_KEY_osfPaste                0x1004FF04
3186 #define XKB_KEY_osfBackTab              0x1004FF07
3187 #define XKB_KEY_osfBackSpace            0x1004FF08
3188 #define XKB_KEY_osfClear                0x1004FF0B
3189 #define XKB_KEY_osfEscape               0x1004FF1B
3190 #define XKB_KEY_osfAddMode              0x1004FF31
3191 #define XKB_KEY_osfPrimaryPaste 0x1004FF32
3192 #define XKB_KEY_osfQuickPaste   0x1004FF33
3193 #define XKB_KEY_osfPageLeft             0x1004FF40
3194 #define XKB_KEY_osfPageUp               0x1004FF41
3195 #define XKB_KEY_osfPageDown             0x1004FF42
3196 #define XKB_KEY_osfPageRight            0x1004FF43
3197 #define XKB_KEY_osfActivate             0x1004FF44
3198 #define XKB_KEY_osfMenuBar              0x1004FF45
3199 #define XKB_KEY_osfLeft         0x1004FF51
3200 #define XKB_KEY_osfUp           0x1004FF52
3201 #define XKB_KEY_osfRight                0x1004FF53
3202 #define XKB_KEY_osfDown         0x1004FF54
3203 #define XKB_KEY_osfEndLine              0x1004FF57
3204 #define XKB_KEY_osfBeginLine            0x1004FF58
3205 #define XKB_KEY_osfEndData              0x1004FF59
3206 #define XKB_KEY_osfBeginData            0x1004FF5A
3207 #define XKB_KEY_osfPrevMenu             0x1004FF5B
3208 #define XKB_KEY_osfNextMenu             0x1004FF5C
3209 #define XKB_KEY_osfPrevField            0x1004FF5D
3210 #define XKB_KEY_osfNextField            0x1004FF5E
3211 #define XKB_KEY_osfSelect               0x1004FF60
3212 #define XKB_KEY_osfInsert               0x1004FF63
3213 #define XKB_KEY_osfUndo         0x1004FF65
3214 #define XKB_KEY_osfMenu         0x1004FF67
3215 #define XKB_KEY_osfCancel               0x1004FF69
3216 #define XKB_KEY_osfHelp         0x1004FF6A
3217 #define XKB_KEY_osfSelectAll            0x1004FF71
3218 #define XKB_KEY_osfDeselectAll  0x1004FF72
3219 #define XKB_KEY_osfReselect             0x1004FF73
3220 #define XKB_KEY_osfExtend               0x1004FF74
3221 #define XKB_KEY_osfRestore              0x1004FF78
3222 #define XKB_KEY_osfDelete               0x1004FFFF
3223
3224
3225
3226 /**************************************************************
3227  * The use of the following macros is deprecated.
3228  * They are listed below only for backwards compatibility.
3229  */
3230 #define XKB_KEY_Reset                0x1000FF6C
3231 #define XKB_KEY_System               0x1000FF6D
3232 #define XKB_KEY_User                 0x1000FF6E
3233 #define XKB_KEY_ClearLine            0x1000FF6F
3234 #define XKB_KEY_InsertLine           0x1000FF70
3235 #define XKB_KEY_DeleteLine           0x1000FF71
3236 #define XKB_KEY_InsertChar           0x1000FF72
3237 #define XKB_KEY_DeleteChar           0x1000FF73
3238 #define XKB_KEY_BackTab              0x1000FF74
3239 #define XKB_KEY_KP_BackTab           0x1000FF75
3240 #define XKB_KEY_Ext16bit_L           0x1000FF76
3241 #define XKB_KEY_Ext16bit_R           0x1000FF77
3242 #define XKB_KEY_mute_acute           0x100000a8
3243 #define XKB_KEY_mute_grave           0x100000a9
3244 #define XKB_KEY_mute_asciicircum     0x100000aa
3245 #define XKB_KEY_mute_diaeresis       0x100000ab
3246 #define XKB_KEY_mute_asciitilde      0x100000ac
3247 #define XKB_KEY_lira                 0x100000af
3248 #define XKB_KEY_guilder              0x100000be
3249 #define XKB_KEY_IO                   0x100000ee
3250 #define XKB_KEY_longminus            0x100000f6
3251 #define XKB_KEY_block                0x100000fc
3252
3253
3254
3255 #endif