summaryrefslogtreecommitdiff
path: root/hw/xfree86/common/atKeynames.h
blob: 24ae59a306872fecac3f1f6748114bff19e54acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/* $XFree86: xc/programs/Xserver/hw/xfree86/common/atKeynames.h,v 3.9 1996/12/23 06:43:13 dawes Exp $ */
/*
 * Copyright 1990,91 by Thomas Roell, Dinkelscherben, Germany.
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of Thomas Roell not be used in
 * advertising or publicity pertaining to distribution of the software without
 * specific, written prior permission.  Thomas Roell makes no representations
 * about the suitability of this software for any purpose.  It is provided
 * "as is" without express or implied warranty.
 *
 * THOMAS ROELL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 * EVENT SHALL THOMAS ROELL BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 *
 */
/* $Xorg: atKeynames.h,v 1.3 2000/08/17 19:50:28 cpqbld Exp $ */

#ifndef _ATKEYNAMES_H
#define _ATKEYNAMES_H

#define XK_TECHNICAL
#define	XK_KATAKANA
#include "keysym.h"

#define GLYPHS_PER_KEY	4
#define NUM_KEYCODES	150
#define NUM_STD_KEYCODES 127
#define MIN_KEYCODE     8
#define MAX_KEYCODE     (NUM_KEYCODES + MIN_KEYCODE - 1)
#define MAX_STD_KEYCODE (NUM_STD_KEYCODES + MIN_KEYCODE - 1)

#define AltMask		Mod1Mask
#define NumLockMask	Mod2Mask
#define AltLangMask	Mod3Mask
#define KanaMask	Mod4Mask
#define ScrollLockMask	Mod5Mask

#define KeyPressed(k) (keyc->down[k >> 3] & (1 << (k & 7)))
#define ModifierDown(k) ((keyc->state & (k)) == (k))

#define XF86XK_ModeLock	0x1008FF01                 /* Mode Switch Lock */

/*
 * NOTE: The AT/MF keyboards can generate (via the 8042) two (MF: three)
 *       sets of scancodes. Set3 can only be generated by a MF keyboard.
 *       Set2 sends a makecode for keypress, and the same code prefixed by a
 *       F0 for keyrelease. This is a little bit ugly to handle. Thus we use
 *       here for X386 the PC/XT compatible Set1. This set uses 8bit scancodes.
 *       Bit 7 ist set if the key is released. The code E0 switches to a
 *       different meaning to add the new MF cursorkeys, while not breaking old
 *       applications. E1 is another special prefix. Since I assume that there
 *       will be further versions of PC/XT scancode compatible keyboards, we
 *       may be in trouble one day.
 *
 * IDEA: 1) Use Set2 on AT84 keyboards and translate it to MF Set3.
 *       2) Use the keyboards native set and translate it to common keysyms.
 */

/*
 * definition of the AT84/MF101/MF102 Keyboard:
 * ============================================================
 *       Defined             Key Cap Glyphs       Pressed value
 *      Key Name            Main       Also       (hex)    (dec)
 *      ----------------   ---------- -------    ------    ------
 */

#ifndef PC98

#define KEY_Escape       /* Escape                0x01  */    1  
#define KEY_1            /* 1           !         0x02  */    2 
#define KEY_2            /* 2           @         0x03  */    3 
#define KEY_3            /* 3           #         0x04  */    4 
#define KEY_4            /* 4           $         0x05  */    5 
#define KEY_5            /* 5           %         0x06  */    6 
#define KEY_6            /* 6           ^         0x07  */    7 
#define KEY_7            /* 7           &         0x08  */    8 
#define KEY_8            /* 8           *         0x09  */    9 
#define KEY_9            /* 9           (         0x0a  */   10 
#define KEY_0            /* 0           )         0x0b  */   11 
#define KEY_Minus        /* - (Minus)   _ (Under) 0x0c  */   12
#define KEY_Equal        /* = (Equal)   +         0x0d  */   13 
#define KEY_BackSpace    /* Back Space            0x0e  */   14 
#define KEY_Tab          /* Tab                   0x0f  */   15
#define KEY_Q            /* Q                     0x10  */   16
#define KEY_W            /* W                     0x11  */   17
#define KEY_E            /* E                     0x12  */   18
#define KEY_R            /* R                     0x13  */   19
#define KEY_T            /* T                     0x14  */   20
#define KEY_Y            /* Y                     0x15  */   21
#define KEY_U            /* U                     0x16  */   22
#define KEY_I            /* I                     0x17  */   23
#define KEY_O            /* O                     0x18  */   24
#define KEY_P            /* P                     0x19  */   25
#define KEY_LBrace       /* [           {         0x1a  */   26
#define KEY_RBrace       /* ]           }         0x1b  */   27 
#define KEY_Enter        /* Enter                 0x1c  */   28
#define KEY_LCtrl        /* Ctrl(left)            0x1d  */   29
#define KEY_A            /* A                     0x1e  */   30
#define KEY_S            /* S                     0x1f  */   31
#define KEY_D            /* D                     0x20  */   32 
#define KEY_F            /* F                     0x21  */   33
#define KEY_G            /* G                     0x22  */   34
#define KEY_H            /* H                     0x23  */   35
#define KEY_J            /* J                     0x24  */   36
#define KEY_K            /* K                     0x25  */   37
#define KEY_L            /* L                     0x26  */   38
#define KEY_SemiColon    /* ;(SemiColon) :(Colon) 0x27  */   39
#define KEY_Quote        /* ' (Apostr)  " (Quote) 0x28  */   40
#define KEY_Tilde        /* ` (Accent)  ~ (Tilde) 0x29  */   41
#define KEY_ShiftL       /* Shift(left)           0x2a  */   42
#define KEY_BSlash       /* \(BckSlash) |(VertBar)0x2b  */   43
#define KEY_Z            /* Z                     0x2c  */   44
#define KEY_X            /* X                     0x2d  */   45
#define KEY_C            /* C                     0x2e  */   46
#define KEY_V            /* V                     0x2f  */   47
#define KEY_B            /* B                     0x30  */   48
#define KEY_N            /* N                     0x31  */   49
#define KEY_M            /* M                     0x32  */   50
#define KEY_Comma        /* , (Comma)   < (Less)  0x33  */   51
#define KEY_Period       /* . (Period)  >(Greater)0x34  */   52
#define KEY_Slash        /* / (Slash)   ?         0x35  */   53
#define KEY_ShiftR       /* Shift(right)          0x36  */   54
#define KEY_KP_Multiply  /* *                     0x37  */   55
#define KEY_Alt          /* Alt(left)             0x38  */   56
#define KEY_Space        /*   (SpaceBar)          0x39  */   57
#define KEY_CapsLock     /* CapsLock              0x3a  */   58
#define KEY_F1           /* F1                    0x3b  */   59
#define KEY_F2           /* F2                    0x3c  */   60
#define KEY_F3           /* F3                    0x3d  */   61
#define KEY_F4           /* F4                    0x3e  */   62
#define KEY_F5           /* F5                    0x3f  */   63
#define KEY_F6           /* F6                    0x40  */   64
#define KEY_F7           /* F7                    0x41  */   65
#define KEY_F8           /* F8                    0x42  */   66
#define KEY_F9           /* F9                    0x43  */   67
#define KEY_F10          /* F10                   0x44  */   68
#define KEY_NumLock      /* NumLock               0x45  */   69
#define KEY_ScrollLock   /* ScrollLock            0x46  */   70
#define KEY_KP_7         /* 7           Home      0x47  */   71 
#define KEY_KP_8         /* 8           Up        0x48  */   72 
#define KEY_KP_9         /* 9           PgUp      0x49  */   73 
#define KEY_KP_Minus     /* - (Minus)             0x4a  */   74
#define KEY_KP_4         /* 4           Left      0x4b  */   75
#define KEY_KP_5         /* 5                     0x4c  */   76
#define KEY_KP_6         /* 6           Right     0x4d  */   77
#define KEY_KP_Plus      /* + (Plus)              0x4e  */   78
#define KEY_KP_1         /* 1           End       0x4f  */   79
#define KEY_KP_2         /* 2           Down      0x50  */   80
#define KEY_KP_3         /* 3           PgDown    0x51  */   81
#define KEY_KP_0         /* 0           Insert    0x52  */   82
#define KEY_KP_Decimal   /* . (Decimal) Delete    0x53  */   83 
#define KEY_SysReqest    /* SysReqest             0x54  */   84
                         /* NOTUSED               0x55  */
#define KEY_Less         /* < (Less)   >(Greater) 0x56  */   86
#define KEY_F11          /* F11                   0x57  */   87
#define KEY_F12          /* F12                   0x58  */   88

#define KEY_Prefix0      /* special               0x60  */   96
#define KEY_Prefix1      /* specail               0x61  */   97

/*
 * The 'scancodes' below are generated by the server, because the MF101/102
 * keyboard sends them as sequence of other scancodes
 */
#define KEY_Home         /* Home                  0x59  */   89
#define KEY_Up           /* Up                    0x5a  */   90
#define KEY_PgUp         /* PgUp                  0x5b  */   91
#define KEY_Left         /* Left                  0x5c  */   92
#define KEY_Begin        /* Begin                 0x5d  */   93
#define KEY_Right        /* Right                 0x5e  */   94
#define KEY_End          /* End                   0x5f  */   95
#define KEY_Down         /* Down                  0x60  */   96
#define KEY_PgDown       /* PgDown                0x61  */   97
#define KEY_Insert       /* Insert                0x62  */   98
#define KEY_Delete       /* Delete                0x63  */   99
#define KEY_KP_Enter     /* Enter                 0x64  */  100
#define KEY_RCtrl        /* Ctrl(right)           0x65  */  101
#define KEY_Pause        /* Pause                 0x66  */  102
#define KEY_Print        /* Print                 0x67  */  103
#define KEY_KP_Divide    /* Didive                0x68  */  104
#define KEY_AltLang      /* AtlLang(right)        0x69  */  105
#define KEY_Break        /* Break                 0x6a  */  106
#define KEY_LMeta        /* Left Meta             0x6b  */  107
#define KEY_RMeta        /* Right Meta            0x6c  */  108
#define KEY_Menu         /* Menu                  0x6d  */  109
#define KEY_F13          /* F13                   0x6e  */  110
#define KEY_F14          /* F14                   0x6f  */  111
#define KEY_F15          /* F15                   0x70  */  112
#define KEY_F16          /* F16                   0x71  */  113
#define KEY_F17          /* F17                   0x72  */  114
#define KEY_KP_DEC       /* KP_DEC                0x73  */  115
#define KEY_SN_KP_7      /* ServerNumLock 7       0x80  */  128
#define KEY_SN_KP_8      /* ServerNumLock 8       0x81  */  129
#define KEY_SN_KP_9      /* ServerNumLock 9       0x82  */  130
#define KEY_SN_KP_4      /* ServerNumLock 4       0x83  */  131
#define KEY_SN_KP_5      /* ServerNumLock 5       0x84  */  132
#define KEY_SN_KP_6      /* ServerNumLock 6       0x85  */  133
#define KEY_SN_KP_1      /* ServerNumLock 1       0x86  */  134
#define KEY_SN_KP_2      /* ServerNumLock 2       0x87  */  135
#define KEY_SN_KP_3      /* ServerNumLock 4       0x88  */  136
#define KEY_SN_KP_0      /* ServerNumLock 0       0x89  */  137
#define KEY_SN_KP_Dec    /* ServerNumLock Decimal 0x8a  */  138
#define KEY_SN_KP_Home   /* ServerNumLock Home    0x8b  */  139
#define KEY_SN_KP_Up     /* ServerNumLock Up      0x8c  */  140
#define KEY_SN_KP_Prior  /* ServerNumLock Prior   0x8d  */  141
#define KEY_SN_KP_Left   /* ServerNumLock Left    0x8e  */  142
#define KEY_SN_KP_Begin  /* ServerNumLock Begin   0x8f  */  143
#define KEY_SN_KP_Right  /* ServerNumLock Right   0x90  */  144
#define KEY_SN_KP_End    /* ServerNumLock End     0x91  */  145
#define KEY_SN_KP_Down   /* ServerNumLock Down    0x92  */  146
#define KEY_SN_KP_Next   /* ServerNumLock Next    0x93  */  147
#define KEY_SN_KP_Ins    /* ServerNumLock Ins     0x94  */  148
#define KEY_SN_KP_Del    /* ServerNumLock Del     0x95  */  149

#else

#define KEY_Escape       /* Escape                0x01  */    0
#define KEY_1            /* 1           !         0x02  */    1 
#define KEY_2            /* 2           "         0x03  */    2 
#define KEY_3            /* 3           #         0x04  */    3 
#define KEY_4            /* 4           $         0x05  */    4 
#define KEY_5            /* 5           %         0x06  */    5 
#define KEY_6            /* 6           &         0x07  */    6 
#define KEY_7            /* 7           '         0x08  */    7 
#define KEY_8            /* 8           (         0x09  */    8 
#define KEY_9            /* 9           )         0x0a  */    9 
#define KEY_0            /* 0                     0x0b  */   10 
#define KEY_Minus        /* - (Minus)   = (Equal) 0x0c  */   11
#define KEY_Hat          /* ^ (Hat)     `         0x0d  */   12 
#define KEY_BSlash       /* \(BckSlash) |(VertBar)0x2b  */   13
#define KEY_BackSpace    /* Back Space            0x0e  */   14 
#define KEY_Tab          /* Tab                   0x0f  */   15
#define KEY_Q            /* Q                     0x10  */   16
#define KEY_W            /* W                     0x11  */   17
#define KEY_E            /* E                     0x12  */   18
#define KEY_R            /* R                     0x13  */   19
#define KEY_T            /* T                     0x14  */   20
#define KEY_Y            /* Y                     0x15  */   21
#define KEY_U            /* U                     0x16  */   22
#define KEY_I            /* I                     0x17  */   23
#define KEY_O            /* O                     0x18  */   24
#define KEY_P            /* P                     0x19  */   25
#define KEY_At           /* @           ~         0x1a  */   26
#define KEY_LBrace       /* [           {         0x1b  */   27 
#define KEY_Enter        /* Enter                 0x1c  */   28
#define KEY_A            /* A                     0x1d  */   29
#define KEY_S            /* S                     0x1e  */   30
#define KEY_D            /* D                     0x1f  */   31 
#define KEY_F            /* F                     0x20  */   32
#define KEY_G            /* G                     0x21  */   33
#define KEY_H            /* H                     0x22  */   34
#define KEY_J            /* J                     0x23  */   35
#define KEY_K            /* K                     0x24  */   36
#define KEY_L            /* L                     0x25  */   37
#define KEY_SemiColon    /* ;(SemiColon) +(Plus)  0x26  */   38
#define KEY_Colon        /* :(Colon)     *(Quote) 0x27  */   39
#define KEY_RBrace       /* ]           }         0x28  */   40 
#define KEY_Z            /* Z                     0x29  */   41
#define KEY_X            /* X                     0x2a  */   42
#define KEY_C            /* C                     0x2b  */   43
#define KEY_V            /* V                     0x2c  */   44
#define KEY_B            /* B                     0x2d  */   45
#define KEY_N            /* N                     0x2e  */   46
#define KEY_M            /* M                     0x2f  */   47
#define KEY_Comma        /* , (Comma)   < (Less)  0x30  */   48
#define KEY_Period       /* . (Period)  >(Greater)0x31  */   49
#define KEY_Slash        /* / (Slash)   ?         0x32  */   50
#define KEY_Under        /*             _         0x33  */   51
#define KEY_Space        /*   (SpaceBar)          0x34  */   52
#define KEY_Xfer         /*   (XFER)              0x35  */   53
#define KEY_PgUp         /* PgUp                  0x36  */   54
#define KEY_Pgdown       /*   (Roll Down)         0x37  */   55
#define KEY_Insert       /* Insert                0x38  */   56
#define KEY_Delete       /* Delete                0x39  */   57
#define KEY_Up           /* Up                    0x3a  */   58
#define KEY_Left         /* Left                  0x3b  */   59
#define KEY_Right        /* Right                 0x3c  */   60
#define KEY_Down         /* Down                  0x3d  */   61
#define KEY_Home         /* Home                  0x3e  */   62
#define KEY_Help         /* Help                  0x3f  */   63
#define KEY_KP_Subtract  /* - (Minus)             0x40  */   64
#define KEY_KP_Minus     /* -                           */   64
#define KEY_KP_Divide    /* / (Slash)             0x41  */   65
#define KEY_KP_7         /* 7                     0x42  */   66
#define KEY_KP_8         /* 8                     0x43  */   67 
#define KEY_KP_9         /* 9                     0x44  */   68 
#define KEY_KP_Multiply  /* *                     0x45  */   69
#define KEY_KP_4         /* 4                     0x46  */   70
#define KEY_KP_5         /* 5                     0x47  */   71
#define KEY_KP_6         /* 6                     0x48  */   72
#define KEY_KP_Add       /* + (Plus)              0x49  */   73
#define KEY_KP_Plus      /* +                           */   73
#define KEY_KP_1         /* 1                     0x4a  */   74
#define KEY_KP_2         /* 2                     0x4b  */   75
#define KEY_KP_3         /* 3                     0x4c  */   76
#define KEY_KP_Equal     /* =                     0x4d  */   77
#define KEY_KP_0         /* 0                     0x4e  */   78
#define KEY_KP_Separator /* ,                     0x4f  */   79
#define KEY_KP_Decimal   /* . (Decimal)           0x50  */   80
#define KEY_Nfer         /*   (NFER)              0x51  */   81
#define KEY_F11          /* F11                   0x52  */   82
#define KEY_F12          /* F12                   0x53  */   83
#define KEY_F13          /* F13                   0x54  */   84
#define KEY_F14          /* F14                   0x55  */   85
#define KEY_F15          /* F15                   0x56  */   86
#define KEY_Break        /* (Stop)                0x60  */   96
#define KEY_Copy         /* (Copy)                0x61  */   97
#define KEY_Begin        /* Begin ??                    */   97
#define KEY_F1           /* F1                    0x62  */   98
#define KEY_F2           /* F2                    0x63  */   99
#define KEY_F3           /* F3                    0x64  */  100
#define KEY_F4           /* F4                    0x65  */  101
#define KEY_F5           /* F5                    0x66  */  102
#define KEY_F6           /* F6                    0x67  */  103
#define KEY_F7           /* F7                    0x68  */  104
#define KEY_F8           /* F8                    0x69  */  105
#define KEY_F9           /* F9                    0x6a  */  106
#define KEY_F10          /* F10                   0x6b  */  107
#define KEY_ShiftL       /* Shift(left)           0x70  */  112
#define KEY_CapsLock     /* CapsLock              0x71  */  113
#define KEY_KanaLock	 /* Kana                  0x72  */  114
#define KEY_Alt          /* Alt(left)             0x73  */  115
#define KEY_LCtrl        /* Ctrl(left)            0x74  */  116

#endif /* PC98 */

#endif /* _ATKEYNAMES_H */