akbdmap.h revision 1.6 1 1.6 mbw /* $NetBSD: akbdmap.h,v 1.6 2004/10/30 20:13:15 mbw Exp $ */
2 1.2 scottr
3 1.2 scottr /*-
4 1.2 scottr * Copyright (c) 1997 The NetBSD Foundation, Inc.
5 1.2 scottr * All rights reserved.
6 1.2 scottr *
7 1.2 scottr * This code is derived from software contributed to The NetBSD Foundation
8 1.2 scottr * by Juergen Hannken-Illjes.
9 1.2 scottr *
10 1.2 scottr * Redistribution and use in source and binary forms, with or without
11 1.2 scottr * modification, are permitted provided that the following conditions
12 1.2 scottr * are met:
13 1.2 scottr * 1. Redistributions of source code must retain the above copyright
14 1.2 scottr * notice, this list of conditions and the following disclaimer.
15 1.2 scottr * 2. Redistributions in binary form must reproduce the above copyright
16 1.2 scottr * notice, this list of conditions and the following disclaimer in the
17 1.2 scottr * documentation and/or other materials provided with the distribution.
18 1.2 scottr * 3. All advertising materials mentioning features or use of this software
19 1.2 scottr * must display the following acknowledgement:
20 1.2 scottr * This product includes software developed by the NetBSD
21 1.2 scottr * Foundation, Inc. and its contributors.
22 1.2 scottr * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.2 scottr * contributors may be used to endorse or promote products derived
24 1.2 scottr * from this software without specific prior written permission.
25 1.2 scottr *
26 1.2 scottr * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.2 scottr * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.2 scottr * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.2 scottr * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.2 scottr * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.2 scottr * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.2 scottr * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.2 scottr * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.2 scottr * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.2 scottr * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.2 scottr * POSSIBILITY OF SUCH DAMAGE.
37 1.2 scottr */
38 1.2 scottr
39 1.2 scottr /* XXX This list is incomplete. */
40 1.2 scottr
41 1.2 scottr #define KC(n) KS_KEYCODE(n)
42 1.2 scottr
43 1.2 scottr static const keysym_t akbd_keydesc_us[] = {
44 1.2 scottr /* pos command normal shifted */
45 1.2 scottr KC(0), KS_a,
46 1.2 scottr KC(1), KS_s,
47 1.2 scottr KC(2), KS_d,
48 1.2 scottr KC(3), KS_f,
49 1.2 scottr KC(4), KS_h,
50 1.2 scottr KC(5), KS_g,
51 1.2 scottr KC(6), KS_z,
52 1.2 scottr KC(7), KS_x,
53 1.2 scottr KC(8), KS_c,
54 1.2 scottr KC(9), KS_v,
55 1.2 scottr
56 1.2 scottr KC(11), KS_b,
57 1.2 scottr KC(12), KS_q,
58 1.2 scottr KC(13), KS_w,
59 1.2 scottr KC(14), KS_e,
60 1.2 scottr KC(15), KS_r,
61 1.2 scottr KC(16), KS_y,
62 1.2 scottr KC(17), KS_t,
63 1.2 scottr KC(18), KS_1, KS_exclam,
64 1.2 scottr KC(19), KS_2, KS_at,
65 1.2 scottr KC(20), KS_3, KS_numbersign,
66 1.2 scottr KC(21), KS_4, KS_dollar,
67 1.2 scottr KC(22), KS_6, KS_asciicircum,
68 1.2 scottr KC(23), KS_5, KS_percent,
69 1.2 scottr KC(24), KS_equal, KS_plus,
70 1.2 scottr KC(25), KS_9, KS_parenleft,
71 1.2 scottr KC(26), KS_7, KS_ampersand,
72 1.2 scottr KC(27), KS_minus, KS_underscore,
73 1.2 scottr KC(28), KS_8, KS_asterisk,
74 1.2 scottr KC(29), KS_0, KS_parenright,
75 1.2 scottr KC(30), KS_bracketright, KS_braceright,
76 1.2 scottr KC(31), KS_o,
77 1.2 scottr KC(32), KS_u,
78 1.2 scottr KC(33), KS_bracketleft, KS_braceleft,
79 1.2 scottr KC(34), KS_i,
80 1.2 scottr KC(35), KS_p,
81 1.2 scottr KC(36), KS_Return,
82 1.2 scottr KC(37), KS_l,
83 1.2 scottr KC(38), KS_j,
84 1.2 scottr KC(39), KS_apostrophe, KS_quotedbl,
85 1.2 scottr KC(40), KS_k,
86 1.2 scottr KC(41), KS_semicolon, KS_colon,
87 1.2 scottr KC(42), KS_backslash, KS_bar,
88 1.2 scottr KC(43), KS_comma, KS_less,
89 1.2 scottr KC(44), KS_slash, KS_question,
90 1.2 scottr KC(45), KS_n,
91 1.2 scottr KC(46), KS_m,
92 1.2 scottr KC(47), KS_period, KS_greater,
93 1.2 scottr KC(48), KS_Tab,
94 1.2 scottr KC(49), KS_space,
95 1.2 scottr KC(50), KS_grave, KS_asciitilde,
96 1.2 scottr KC(51), KS_Delete,
97 1.4 manu KC(52), KS_KP_Enter, /* Pretend this is alt-R ? */
98 1.2 scottr KC(53), KS_Escape,
99 1.2 scottr KC(54), KS_Control_L,
100 1.2 scottr KC(55), KS_Cmd, /* Command */
101 1.2 scottr KC(56), KS_Shift_L,
102 1.2 scottr KC(57), KS_Caps_Lock,
103 1.2 scottr KC(58), KS_Cmd1, /* Option */
104 1.2 scottr KC(59), KS_Left,
105 1.2 scottr KC(60), KS_Right,
106 1.2 scottr KC(61), KS_Down,
107 1.2 scottr KC(62), KS_Up,
108 1.2 scottr
109 1.2 scottr KC(65), KS_KP_Decimal,
110 1.2 scottr KC(67), KS_KP_Multiply,
111 1.2 scottr KC(69), KS_KP_Add,
112 1.5 jmmv KC(71), KS_Num_Lock,
113 1.2 scottr KC(75), KS_KP_Divide,
114 1.2 scottr KC(76), KS_KP_Enter,
115 1.2 scottr KC(78), KS_KP_Subtract,
116 1.2 scottr
117 1.2 scottr KC(81), KS_KP_Equal,
118 1.5 jmmv KC(82), KS_KP_Insert, KS_KP_0,
119 1.5 jmmv KC(83), KS_KP_End, KS_KP_1,
120 1.5 jmmv KC(84), KS_KP_Down, KS_KP_2,
121 1.5 jmmv KC(85), KS_KP_Next, KS_KP_3,
122 1.5 jmmv KC(86), KS_KP_Left, KS_KP_4,
123 1.5 jmmv KC(87), KS_KP_Begin, KS_KP_5,
124 1.5 jmmv KC(88), KS_KP_Right, KS_KP_6,
125 1.5 jmmv KC(89), KS_KP_Home, KS_KP_7,
126 1.2 scottr
127 1.5 jmmv KC(91), KS_KP_Up, KS_KP_8,
128 1.5 jmmv KC(92), KS_KP_Prior, KS_KP_9,
129 1.2 scottr
130 1.5 jmmv KC(95), KS_KP_Delete, KS_KP_Decimal,
131 1.4 manu KC(96), KS_f5,
132 1.4 manu KC(97), KS_f6,
133 1.4 manu KC(98), KS_f7,
134 1.4 manu KC(99), KS_f3,
135 1.4 manu KC(100), KS_f8,
136 1.4 manu
137 1.4 manu KC(101), KS_f9,
138 1.4 manu
139 1.4 manu KC(103), KS_f11,
140 1.2 scottr
141 1.5 jmmv KC(105), KS_Print_Screen,
142 1.2 scottr KC(106), KS_KP_Enter,
143 1.5 jmmv KC(107), KS_Hold_Screen,
144 1.2 scottr
145 1.4 manu KC(109), KS_f10,
146 1.4 manu
147 1.4 manu KC(111), KS_f12,
148 1.4 manu
149 1.5 jmmv KC(113), KS_Pause,
150 1.5 jmmv KC(114), KS_Insert,
151 1.4 manu KC(115), KS_Home,
152 1.4 manu KC(116), KS_Prior,
153 1.5 jmmv KC(117), KS_Delete,
154 1.4 manu KC(118), KS_f4,
155 1.4 manu KC(119), KS_End,
156 1.4 manu KC(120), KS_f2,
157 1.4 manu KC(121), KS_Next,
158 1.4 manu KC(122), KS_f1,
159 1.4 manu
160 1.2 scottr KC(127), KS_Cmd_Debugger,
161 1.2 scottr };
162 1.2 scottr
163 1.3 manu static const keysym_t akbd_keydesc_fr[] = {
164 1.3 manu /* pos normal shifted altgr shift-altgr */
165 1.3 manu KC(0), KS_q,
166 1.4 manu KC(1), KS_s, KS_S, KS_Ograve,
167 1.4 manu KC(4), KS_h, KS_H, KS_Igrave, KS_Icircumflex,
168 1.4 manu KC(6), KS_w, KS_W, KS_less, KS_greater,
169 1.4 manu KC(8), KS_c, KS_C, KS_copyright, KS_cent,
170 1.3 manu KC(10), KS_at, KS_numbersign,
171 1.4 manu KC(11), KS_b, KS_B, KS_ssharp,
172 1.4 manu KC(12), KS_a, KS_A, KS_ae, KS_AE,
173 1.4 manu KC(13), KS_z, KS_Z, KS_Acircumflex, KS_Aring,
174 1.4 manu KC(14), KS_e, KS_E, KS_ecircumflex, KS_Ecircumflex,
175 1.4 manu KC(15), KS_r, KS_R, KS_registered, /* Euro */
176 1.4 manu KC(16), KS_y, KS_Y, KS_Uacute,
177 1.4 manu KC(18), KS_ampersand, KS_1, KS_voidSymbol, KS_dead_acute,
178 1.4 manu KC(19), KS_eacute, KS_2, KS_ediaeresis,
179 1.4 manu KC(20), KS_quotedbl, KS_3,
180 1.4 manu KC(21), KS_apostrophe, KS_4, KS_braceleft, KS_bracketleft,
181 1.4 manu KC(22), KS_section, KS_6, KS_paragraph,
182 1.4 manu KC(23), KS_parenleft, KS_5, KS_braceleft, KS_bracketleft,
183 1.3 manu KC(24), KS_minus, KS_underscore, KS_braceright,
184 1.4 manu KC(25), KS_ccedilla, KS_9, KS_Ccedilla, KS_Agrave,
185 1.4 manu KC(26), KS_egrave, KS_7, KS_guillemotleft,KS_guillemotright,
186 1.4 manu KC(27), KS_parenright, KS_degree, KS_braceright, KS_bracketright,
187 1.4 manu KC(28), KS_exclam, KS_8, KS_exclamdown, KS_Ucircumflex,
188 1.4 manu KC(29), KS_agrave, KS_0, KS_oslash,
189 1.4 manu KC(30), KS_dollar, KS_asterisk, KS_comma, KS_yen,
190 1.4 manu KC(33), KS_dead_circumflex, KS_dead_diaeresis,KS_ocircumflex,KS_Ocircumflex,
191 1.4 manu KC(34), KS_i, KS_I, KS_icircumflex, KS_Icircumflex,
192 1.4 manu KC(37), KS_l, KS_L, KS_notsign, KS_bar,
193 1.4 manu KC(38), KS_j, KS_J, KS_Idiaeresis, KS_Igrave,
194 1.4 manu KC(39), KS_ugrave, KS_percent, KS_Ugrave,
195 1.4 manu KC(40), KS_k, KS_K, KS_Egrave, KS_Ediaeresis,
196 1.4 manu KC(41), KS_m, KS_M, KS_mu, KS_Ograve,
197 1.4 manu KC(42), KS_dead_grave, KS_sterling, KS_at, KS_numbersign,
198 1.3 manu KC(43), KS_semicolon, KS_period,
199 1.4 manu KC(44), KS_equal, KS_plus, KS_voidSymbol, KS_plusminus,
200 1.4 manu KC(45), KS_n, KS_N, KS_dead_tilde,
201 1.4 manu KC(46), KS_comma, KS_question, KS_voidSymbol, KS_questiondown,
202 1.4 manu KC(47), KS_colon, KS_slash, KS_division, KS_backslash,
203 1.3 manu KC(50), KS_less, KS_greater,
204 1.3 manu KC(52), KS_Alt_R,
205 1.3 manu KC(55), KS_Meta_L, /* Command */
206 1.4 manu KC(58), KS_Mode_switch, KS_Multi_key, /* Option */
207 1.4 manu };
208 1.4 manu
209 1.4 manu static const keysym_t akbd_keydesc_fr_nodead[] = {
210 1.4 manu KC(18), KS_ampersand, KS_1, KS_voidSymbol, KS_acute,
211 1.4 manu KC(33), KS_asciicircum, KS_diaeresis, KS_ocircumflex, KS_Ocircumflex,
212 1.4 manu KC(42), KS_grave, KS_sterling, KS_at, KS_numbersign,
213 1.4 manu KC(45), KS_n, KS_N, KS_asciitilde,
214 1.3 manu };
215 1.3 manu
216 1.2 scottr static const keysym_t akbd_keydesc_jp[] = {
217 1.2 scottr /* pos command normal shifted */
218 1.4 manu KC(19), KS_2, KS_quotedbl,
219 1.4 manu KC(22), KS_6, KS_ampersand,
220 1.4 manu KC(24), KS_asciicircum, KS_asciitilde,
221 1.4 manu KC(25), KS_9, KS_parenright,
222 1.4 manu KC(26), KS_7, KS_apostrophe,
223 1.4 manu KC(27), KS_minus, KS_equal,
224 1.4 manu KC(28), KS_8, KS_parenleft,
225 1.4 manu KC(29), KS_0,
226 1.4 manu KC(30), KS_bracketleft, KS_braceleft,
227 1.4 manu KC(33), KS_at, KS_grave,
228 1.4 manu KC(39), KS_colon, KS_asterisk,
229 1.4 manu
230 1.4 manu KC(41), KS_semicolon, KS_plus,
231 1.4 manu KC(42), KS_bracketright,KS_braceright,
232 1.2 scottr KC(93), KS_backslash, KS_bar,
233 1.4 manu KC(94), KS_underscore,
234 1.4 manu };
235 1.4 manu
236 1.4 manu static const keysym_t akbd_keydesc_uk[] = {
237 1.4 manu /* pos normal shifted altgr shift-altgr */
238 1.4 manu KC(10), KS_section, KS_plusminus,
239 1.4 manu KC(20), KS_3, KS_sterling, KS_numbersign,
240 1.4 manu KC(52), KS_KP_Enter,
241 1.4 manu KC(58), KS_Mode_switch, KS_Multi_key, /* Option */
242 1.4 manu };
243 1.4 manu
244 1.4 manu static const keysym_t akbd_keydesc_sv[] = {
245 1.4 manu /* pos normal shifted altgr shift-altgr */
246 1.4 manu KC(10), KS_section, KS_degree,
247 1.4 manu KC(19), KS_2, KS_quotedbl, KS_at,
248 1.4 manu KC(21), KS_4, KS_dollar,
249 1.4 manu KC(22), KS_6, KS_ampersand,
250 1.4 manu KC(24), KS_dead_acute, KS_dead_grave,
251 1.4 manu KC(25), KS_9, KS_parenright, KS_bracketright,
252 1.4 manu KC(26), KS_7, KS_slash, KS_braceleft,
253 1.4 manu KC(27), KS_plus, KS_question, KS_backslash,
254 1.4 manu KC(28), KS_8, KS_parenleft, KS_bracketleft,
255 1.4 manu KC(29), KS_0, KS_equal, KS_braceright,
256 1.4 manu KC(30), KS_dead_diaeresis,KS_dead_circumflex,KS_dead_tilde,
257 1.4 manu KC(33), KS_aring,
258 1.4 manu KC(39), KS_adiaeresis,
259 1.4 manu KC(41), KS_odiaeresis,
260 1.4 manu KC(42), KS_apostrophe, KS_asterisk,
261 1.4 manu KC(43), KS_comma, KS_semicolon,
262 1.4 manu KC(44), KS_minus, KS_underscore,
263 1.4 manu KC(47), KS_period, KS_colon,
264 1.4 manu KC(50), KS_less, KS_greater, KS_bar,
265 1.6 mbw KC(58), KS_Mode_switch,KS_Multi_key,
266 1.4 manu };
267 1.4 manu
268 1.4 manu static const keysym_t akbd_keydesc_sv_nodead[] = {
269 1.4 manu /* pos normal shifted altgr shift-altgr */
270 1.4 manu KC(24), KS_apostrophe, KS_grave,
271 1.4 manu KC(30), KS_diaeresis, KS_asciicircum, KS_asciitilde,
272 1.4 manu };
273 1.4 manu
274 1.4 manu static const keysym_t akbd_keydesc_de[] = {
275 1.4 manu /* pos normal shifted altgr shift-altgr */
276 1.4 manu KC(0), KS_a, KS_A, KS_aring, KS_Aring,
277 1.4 manu KC(1), KS_s, KS_S, KS_voidSymbol, KS_Iacute,
278 1.4 manu KC(3), KS_f, KS_F, KS_voidSymbol, KS_Idiaeresis,
279 1.4 manu KC(4), KS_h, KS_H, KS_ordfeminine, KS_Oacute,
280 1.4 manu KC(5), KS_g, KS_G, KS_copyright, KS_Igrave,
281 1.4 manu KC(6), KS_y, KS_Y, KS_yen,
282 1.4 manu KC(7), KS_x, KS_X, KS_voidSymbol, KS_Ugrave,
283 1.4 manu KC(8), KS_c, KS_C, KS_ccedilla, KS_Ccedilla,
284 1.4 manu KC(10), KS_dead_circumflex,KS_degree,
285 1.4 manu KC(12), KS_q, KS_Q, KS_guillemotleft,KS_guillemotright,
286 1.4 manu KC(15), KS_r, KS_R, KS_registered, KS_cedilla,
287 1.4 manu KC(16), KS_z, KS_Z,
288 1.4 manu KC(18), KS_1, KS_exclam, KS_exclamdown, KS_notsign,
289 1.4 manu KC(19), KS_2, KS_quotedbl,
290 1.4 manu KC(20), KS_3, KS_section, KS_paragraph, KS_numbersign,
291 1.4 manu KC(21), KS_4, KS_dollar, KS_cent, KS_sterling,
292 1.4 manu KC(22), KS_6, KS_ampersand, KS_bracketright,KS_dead_circumflex,
293 1.4 manu KC(23), KS_5, KS_percent, KS_bracketleft,
294 1.4 manu KC(24), KS_dead_acute, KS_dead_grave, KS_apostrophe,
295 1.4 manu KC(25), KS_9, KS_parenright, KS_braceright, KS_periodcentered,
296 1.4 manu KC(26), KS_7, KS_slash, KS_bar, KS_backslash,
297 1.4 manu KC(27), KS_ssharp, KS_question, KS_questiondown,
298 1.4 manu KC(28), KS_8, KS_parenleft, KS_braceleft,
299 1.4 manu KC(29), KS_0, KS_equal, KS_voidSymbol, KS_macron,
300 1.4 manu KC(30), KS_plus, KS_asterisk, KS_plusminus,
301 1.4 manu KC(31), KS_o, KS_O, KS_oslash, KS_Ooblique,
302 1.4 manu KC(32), KS_u, KS_U, KS_dead_diaeresis,KS_Aacute,
303 1.4 manu KC(33), KS_udiaeresis, KS_Udiaeresis, KS_voidSymbol, KS_degree,
304 1.4 manu KC(34), KS_i, KS_I, KS_voidSymbol, KS_Ucircumflex,
305 1.4 manu KC(37), KS_l, KS_L, KS_at,
306 1.4 manu KC(38), KS_j, KS_J, KS_masculine,
307 1.4 manu KC(39), KS_adiaeresis, KS_Adiaeresis, KS_ae, KS_AE,
308 1.4 manu KC(41), KS_odiaeresis, KS_Odiaeresis,
309 1.4 manu KC(42), KS_numbersign, KS_apostrophe,
310 1.4 manu KC(43), KS_comma, KS_semicolon,
311 1.4 manu KC(44), KS_minus, KS_underscore,
312 1.4 manu KC(45), KS_n, KS_N, KS_dead_tilde,
313 1.4 manu KC(46), KS_m, KS_M, KS_mu,
314 1.4 manu KC(47), KS_period, KS_colon,
315 1.4 manu KC(50), KS_less, KS_greater,
316 1.4 manu KC(52), KS_Multi_key,
317 1.4 manu KC(58), KS_Mode_switch,
318 1.2 scottr };
319 1.2 scottr
320 1.4 manu static const keysym_t akbd_keydesc_de_nodead[] = {
321 1.4 manu /* pos normal shifted altgr shift-altgr */
322 1.4 manu KC(10), KS_asciicircum, KS_degree,
323 1.4 manu KC(22), KS_6, KS_ampersand, KS_bracketright,KS_asciicircum,
324 1.4 manu KC(24), KS_acute, KS_grave, KS_apostrophe,
325 1.4 manu KC(32), KS_u, KS_U, KS_diaeresis, KS_Aacute,
326 1.4 manu KC(45), KS_n, KS_N, KS_asciitilde,
327 1.4 manu };
328 1.4 manu
329 1.4 manu static const keysym_t akbd_keydesc_sf[] = {
330 1.4 manu /* pos normal shifted altgr shift-altgr */
331 1.4 manu KC(6), KS_y,
332 1.4 manu KC(10), KS_paragraph, KS_degree,
333 1.4 manu KC(16), KS_z,
334 1.4 manu KC(18), KS_plus, KS_1,
335 1.4 manu KC(19), KS_quotedbl, KS_2,
336 1.4 manu KC(20), KS_asterisk, KS_3,
337 1.4 manu KC(21), KS_ccedilla, KS_4, KS_Ccedilla,
338 1.4 manu KC(22), KS_ampersand, KS_6,
339 1.4 manu KC(23), KS_percent, KS_5,
340 1.4 manu KC(24), KS_dead_circumflex,KS_grave,
341 1.4 manu KC(25), KS_parenright, KS_9,
342 1.4 manu KC(26), KS_slash, KS_7,
343 1.4 manu KC(27), KS_apostrophe, KS_question,
344 1.4 manu KC(28), KS_parenleft, KS_8,
345 1.4 manu KC(29), KS_equal, KS_0,
346 1.4 manu KC(30), KS_dead_diaeresis,KS_exclam,
347 1.4 manu KC(33), KS_egrave, KS_udiaeresis,
348 1.4 manu KC(39), KS_agrave, KS_adiaeresis,
349 1.4 manu KC(41), KS_eacute, KS_odiaeresis,
350 1.4 manu KC(42), KS_dollar, KS_sterling,
351 1.4 manu KC(43), KS_period, KS_colon,
352 1.4 manu KC(46), KS_comma, KS_semicolon,
353 1.4 manu KC(47), KS_minus, KS_underscore,
354 1.4 manu KC(50), KS_less, KS_greater,
355 1.4 manu };
356 1.5 jmmv
357 1.5 jmmv static const keysym_t akbd_keydesc_es[] = {
358 1.5 jmmv /* pos normal shifted altgr shift-altgr */
359 1.5 jmmv KC(10), KS_degree, KS_ordfeminine, KS_backslash,
360 1.5 jmmv KC(18), KS_1, KS_exclam, KS_bar,
361 1.5 jmmv KC(19), KS_2, KS_quotedbl, KS_at,
362 1.5 jmmv KC(20), KS_3, KS_periodcentered, KS_numbersign,
363 1.5 jmmv KC(21), KS_4, KS_dollar, KS_asciitilde,
364 1.5 jmmv KC(22), KS_6, KS_ampersand, KS_notsign,
365 1.5 jmmv KC(23), KS_5, KS_percent,
366 1.5 jmmv KC(24), KS_exclamdown, KS_questiondown,
367 1.5 jmmv KC(25), KS_9, KS_parenright,
368 1.5 jmmv KC(26), KS_7, KS_slash,
369 1.5 jmmv KC(27), KS_apostrophe, KS_question,
370 1.5 jmmv KC(28), KS_8, KS_parenleft,
371 1.5 jmmv KC(29), KS_0, KS_equal,
372 1.5 jmmv KC(30), KS_plus, KS_asterisk, KS_bracketright,
373 1.5 jmmv KC(33), KS_dead_grave, KS_dead_circumflex, KS_bracketleft,
374 1.5 jmmv KC(39), KS_dead_acute, KS_dead_diaeresis, KS_braceleft,
375 1.5 jmmv KC(41), KS_ntilde,
376 1.5 jmmv KC(42), KS_ccedilla, KS_Ccedilla, KS_braceright,
377 1.5 jmmv KC(43), KS_comma, KS_semicolon,
378 1.5 jmmv KC(44), KS_minus, KS_underscore,
379 1.5 jmmv KC(47), KS_period, KS_colon,
380 1.5 jmmv KC(50), KS_less, KS_greater,
381 1.5 jmmv KC(55), KS_Alt_L, /* Command */
382 1.5 jmmv KC(58), KS_Mode_switch, KS_Multi_key, /* Option */
383 1.5 jmmv };
384 1.5 jmmv
385 1.2 scottr #define KBD_MAP(name, base, map) \
386 1.2 scottr { name, base, sizeof(map)/sizeof(keysym_t), map }
387 1.2 scottr
388 1.2 scottr static const struct wscons_keydesc akbd_keydesctab[] = {
389 1.2 scottr KBD_MAP(KB_US, 0, akbd_keydesc_us),
390 1.3 manu KBD_MAP(KB_FR, KB_US, akbd_keydesc_fr),
391 1.4 manu KBD_MAP(KB_JP, KB_US, akbd_keydesc_jp),
392 1.4 manu KBD_MAP(KB_FR | KB_NODEAD, KB_FR, akbd_keydesc_fr_nodead),
393 1.4 manu KBD_MAP(KB_SF, KB_US, akbd_keydesc_sf),
394 1.4 manu KBD_MAP(KB_SV, KB_US, akbd_keydesc_sv),
395 1.4 manu KBD_MAP(KB_SV | KB_NODEAD, KB_SV, akbd_keydesc_sv_nodead),
396 1.4 manu KBD_MAP(KB_DE, KB_US, akbd_keydesc_de),
397 1.4 manu KBD_MAP(KB_DE | KB_NODEAD, KB_DE, akbd_keydesc_de_nodead),
398 1.4 manu KBD_MAP(KB_UK, KB_US, akbd_keydesc_uk),
399 1.5 jmmv KBD_MAP(KB_ES, KB_US, akbd_keydesc_es),
400 1.2 scottr {0, 0, 0, 0}
401 1.2 scottr };
402 1.2 scottr
403 1.2 scottr #undef KBD_MAP
404 1.2 scottr #undef KC
405 1.4 manu
406