mkbdmap.h revision 1.2 1 1.2 marcus /* $NetBSD: mkbdmap.h,v 1.2 2001/01/16 00:56:29 marcus Exp $ */
2 1.1 marcus
3 1.1 marcus /*
4 1.1 marcus * Copyright (c) 2001 Marcus Comstedt
5 1.1 marcus * All rights reserved.
6 1.1 marcus *
7 1.1 marcus * Redistribution and use in source and binary forms, with or without
8 1.1 marcus * modification, are permitted provided that the following conditions
9 1.1 marcus * are met:
10 1.1 marcus * 1. Redistributions of source code must retain the above copyright
11 1.1 marcus * notice, this list of conditions and the following disclaimer.
12 1.1 marcus * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 marcus * notice, this list of conditions and the following disclaimer in the
14 1.1 marcus * documentation and/or other materials provided with the distribution.
15 1.1 marcus * 3. All advertising materials mentioning features or use of this software
16 1.1 marcus * must display the following acknowledgement:
17 1.1 marcus * This product includes software developed by the NetBSD
18 1.1 marcus * Foundation, Inc. and its contributors.
19 1.1 marcus * 4. Neither the name of The NetBSD Foundation nor the names of its
20 1.1 marcus * contributors may be used to endorse or promote products derived
21 1.1 marcus * from this software without specific prior written permission.
22 1.1 marcus *
23 1.1 marcus * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
24 1.1 marcus * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 1.1 marcus * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 1.1 marcus * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
27 1.1 marcus * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.1 marcus * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.1 marcus * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.1 marcus * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.1 marcus * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.1 marcus * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.1 marcus * POSSIBILITY OF SUCH DAMAGE.
34 1.1 marcus */
35 1.1 marcus
36 1.1 marcus #define KC(n) KS_KEYCODE(n)
37 1.1 marcus
38 1.1 marcus static const keysym_t mkbd_keydesc_jp[] = {
39 1.1 marcus /* pos normal shifted */
40 1.1 marcus KC(4), KS_a,
41 1.1 marcus KC(5), KS_b,
42 1.1 marcus KC(6), KS_c,
43 1.1 marcus KC(7), KS_d,
44 1.1 marcus KC(8), KS_e,
45 1.1 marcus KC(9), KS_f,
46 1.1 marcus KC(10), KS_g,
47 1.1 marcus KC(11), KS_h,
48 1.1 marcus KC(12), KS_i,
49 1.1 marcus KC(13), KS_j,
50 1.1 marcus KC(14), KS_k,
51 1.1 marcus KC(15), KS_l,
52 1.1 marcus KC(16), KS_m,
53 1.1 marcus KC(17), KS_n,
54 1.1 marcus KC(18), KS_o,
55 1.1 marcus KC(19), KS_p,
56 1.1 marcus KC(20), KS_q,
57 1.1 marcus KC(21), KS_r,
58 1.1 marcus KC(22), KS_s,
59 1.1 marcus KC(23), KS_t,
60 1.1 marcus KC(24), KS_u,
61 1.1 marcus KC(25), KS_v,
62 1.1 marcus KC(26), KS_w,
63 1.1 marcus KC(27), KS_x,
64 1.1 marcus KC(28), KS_y,
65 1.1 marcus KC(29), KS_z,
66 1.1 marcus
67 1.1 marcus KC(30), KS_1, KS_exclam,
68 1.1 marcus KC(31), KS_2, KS_quotedbl,
69 1.1 marcus KC(32), KS_3, KS_numbersign,
70 1.1 marcus KC(33), KS_4, KS_dollar,
71 1.1 marcus KC(34), KS_5, KS_percent,
72 1.1 marcus KC(35), KS_6, KS_ampersand,
73 1.1 marcus KC(36), KS_7, KS_apostrophe,
74 1.1 marcus KC(37), KS_8, KS_parenleft,
75 1.1 marcus KC(38), KS_9, KS_parenright,
76 1.1 marcus KC(39), KS_0, KS_asciitilde,
77 1.1 marcus
78 1.1 marcus KC(40), KS_Return,
79 1.1 marcus KC(41), KS_Escape,
80 1.1 marcus KC(42), KS_BackSpace,
81 1.1 marcus KC(43), KS_Tab,
82 1.1 marcus KC(44), KS_space,
83 1.1 marcus
84 1.1 marcus KC(45), KS_minus, KS_equal,
85 1.1 marcus KC(46), KS_asciicircum, KS_macron,
86 1.1 marcus KC(47), KS_at, KS_grave,
87 1.1 marcus KC(48), KS_bracketleft, KS_braceleft,
88 1.1 marcus /* no 49 */
89 1.1 marcus KC(50), KS_bracketright,KS_braceright,
90 1.1 marcus KC(51), KS_semicolon, KS_plus,
91 1.1 marcus KC(52), KS_colon, KS_asterisk,
92 1.1 marcus KC(53), KS_Zenkaku_Hankaku,
93 1.1 marcus KC(54), KS_comma, KS_less,
94 1.1 marcus KC(55), KS_period, KS_greater,
95 1.1 marcus KC(56), KS_slash, KS_question,
96 1.1 marcus
97 1.1 marcus KC(57), KS_Caps_Lock,
98 1.1 marcus
99 1.1 marcus KC(58), KS_f1,
100 1.1 marcus KC(59), KS_f2,
101 1.1 marcus KC(60), KS_f3,
102 1.1 marcus KC(61), KS_f4,
103 1.1 marcus KC(62), KS_f5,
104 1.1 marcus KC(63), KS_f6,
105 1.1 marcus KC(64), KS_f7,
106 1.1 marcus KC(65), KS_f8,
107 1.1 marcus KC(66), KS_f9,
108 1.1 marcus KC(67), KS_f10,
109 1.1 marcus KC(68), KS_f11,
110 1.1 marcus KC(69), KS_f12,
111 1.1 marcus
112 1.1 marcus KC(70), KS_Print_Screen,
113 1.1 marcus KC(71), KS_Hold_Screen,
114 1.1 marcus KC(72), KS_Pause,
115 1.1 marcus KC(73), KS_Insert,
116 1.1 marcus KC(74), KS_Home,
117 1.1 marcus KC(75), KS_Prior,
118 1.1 marcus KC(76), KS_Delete,
119 1.1 marcus KC(77), KS_End,
120 1.1 marcus KC(78), KS_Next,
121 1.1 marcus KC(79), KS_Right,
122 1.1 marcus KC(80), KS_Left,
123 1.1 marcus KC(81), KS_Down,
124 1.1 marcus KC(82), KS_Up,
125 1.1 marcus
126 1.1 marcus /* 83-99 is numeric keypad */
127 1.1 marcus
128 1.1 marcus /* 100 is european keyboard only */
129 1.1 marcus
130 1.1 marcus KC(101), KS_Help,
131 1.1 marcus
132 1.1 marcus /* no 102-134 */
133 1.1 marcus
134 1.1 marcus KC(135), KS_backslash, KS_underscore,
135 1.1 marcus KC(136), KS_Hiragana_Katakana,
136 1.1 marcus KC(137), KS_yen, KS_bar,
137 1.1 marcus KC(138), KS_Henkan_Mode,
138 1.1 marcus KC(139), KS_Muhenkan,
139 1.1 marcus
140 1.1 marcus KC(0x100), KS_Control_L,
141 1.1 marcus KC(0x101), KS_Shift_L,
142 1.1 marcus KC(0x102), KS_Alt_L,
143 1.1 marcus KC(0x103), KS_Meta_L,
144 1.1 marcus KC(0x104), KS_Control_R,
145 1.1 marcus KC(0x105), KS_Shift_R,
146 1.1 marcus KC(0x106), KS_Alt_R,
147 1.1 marcus KC(0x107), KS_Meta_R,
148 1.1 marcus };
149 1.1 marcus
150 1.2 marcus
151 1.2 marcus static const keysym_t mkbd_keydesc_uk[] = {
152 1.2 marcus /* pos normal shifted */
153 1.2 marcus
154 1.2 marcus KC(32), KS_3, KS_sterling,
155 1.2 marcus
156 1.2 marcus KC(35), KS_6, KS_asciicircum,
157 1.2 marcus KC(36), KS_7, KS_ampersand,
158 1.2 marcus KC(37), KS_8, KS_asterisk,
159 1.2 marcus KC(38), KS_9, KS_parenleft,
160 1.2 marcus KC(39), KS_0, KS_parenright,
161 1.2 marcus
162 1.2 marcus KC(45), KS_minus, KS_underscore,
163 1.2 marcus KC(46), KS_equal, KS_plus,
164 1.2 marcus KC(47), KS_bracketleft, KS_braceleft,
165 1.2 marcus KC(48), KS_bracketright,KS_braceright,
166 1.2 marcus
167 1.2 marcus KC(50), KS_numbersign, KS_asciitilde,
168 1.2 marcus KC(51), KS_semicolon, KS_colon,
169 1.2 marcus KC(52), KS_apostrophe, KS_at,
170 1.2 marcus KC(53), KS_grave, KS_notsign, KS_brokenbar,
171 1.2 marcus
172 1.2 marcus KC(83), KS_Num_Lock,
173 1.2 marcus KC(84), KS_KP_Divide,
174 1.2 marcus KC(85), KS_KP_Multiply,
175 1.2 marcus KC(86), KS_KP_Subtract,
176 1.2 marcus KC(87), KS_KP_Add,
177 1.2 marcus KC(88), KS_KP_Enter,
178 1.2 marcus KC(89), KS_KP_1,
179 1.2 marcus KC(90), KS_KP_2,
180 1.2 marcus KC(91), KS_KP_3,
181 1.2 marcus KC(92), KS_KP_4,
182 1.2 marcus KC(93), KS_KP_5,
183 1.2 marcus KC(94), KS_KP_6,
184 1.2 marcus KC(95), KS_KP_7,
185 1.2 marcus KC(96), KS_KP_8,
186 1.2 marcus KC(97), KS_KP_9,
187 1.2 marcus KC(98), KS_KP_0,
188 1.2 marcus KC(99), KS_KP_Decimal,
189 1.2 marcus
190 1.2 marcus KC(100), KS_backslash, KS_bar,
191 1.2 marcus };
192 1.2 marcus
193 1.1 marcus #define KBD_MAP(name, base, map) \
194 1.1 marcus { name, base, sizeof(map)/sizeof(keysym_t), map }
195 1.1 marcus
196 1.1 marcus static const struct wscons_keydesc mkbd_keydesctab[] = {
197 1.1 marcus KBD_MAP(KB_JP, 0, mkbd_keydesc_jp),
198 1.2 marcus KBD_MAP(KB_UK, KB_JP, mkbd_keydesc_uk),
199 1.1 marcus {0, 0, 0, 0}
200 1.1 marcus };
201 1.1 marcus
202 1.1 marcus #undef KBD_MAP
203 1.1 marcus #undef KC
204