Statistics
| Branch: | Revision:

root / ui / x_keymap.c @ 7fee199c

History | View | Annotate | Download (5.9 kB)

1 6070dd07 ths
/*
2 6070dd07 ths
 * QEMU SDL display driver
3 6070dd07 ths
 *
4 6070dd07 ths
 * Copyright (c) 2003 Fabrice Bellard
5 6070dd07 ths
 *
6 6070dd07 ths
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 6070dd07 ths
 * of this software and associated documentation files (the "Software"), to deal
8 6070dd07 ths
 * in the Software without restriction, including without limitation the rights
9 6070dd07 ths
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 6070dd07 ths
 * copies of the Software, and to permit persons to whom the Software is
11 6070dd07 ths
 * furnished to do so, subject to the following conditions:
12 6070dd07 ths
 *
13 6070dd07 ths
 * The above copyright notice and this permission notice shall be included in
14 6070dd07 ths
 * all copies or substantial portions of the Software.
15 6070dd07 ths
 *
16 6070dd07 ths
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 6070dd07 ths
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 6070dd07 ths
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 6070dd07 ths
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 6070dd07 ths
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 6070dd07 ths
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 6070dd07 ths
 * THE SOFTWARE.
23 6070dd07 ths
 */
24 87ecb68b pbrook
#include "qemu-common.h"
25 5368a422 aliguori
#include "x_keymap.h"
26 87ecb68b pbrook
27 6070dd07 ths
static const uint8_t x_keycode_to_pc_keycode[115] = {
28 6070dd07 ths
   0xc7,      /*  97  Home   */
29 6070dd07 ths
   0xc8,      /*  98  Up     */
30 6070dd07 ths
   0xc9,      /*  99  PgUp   */
31 6070dd07 ths
   0xcb,      /* 100  Left   */
32 6070dd07 ths
   0x4c,        /* 101  KP-5   */
33 6070dd07 ths
   0xcd,      /* 102  Right  */
34 6070dd07 ths
   0xcf,      /* 103  End    */
35 6070dd07 ths
   0xd0,      /* 104  Down   */
36 6070dd07 ths
   0xd1,      /* 105  PgDn   */
37 6070dd07 ths
   0xd2,      /* 106  Ins    */
38 6070dd07 ths
   0xd3,      /* 107  Del    */
39 6070dd07 ths
   0x9c,      /* 108  Enter  */
40 6070dd07 ths
   0x9d,      /* 109  Ctrl-R */
41 6070dd07 ths
   0x0,       /* 110  Pause  */
42 6070dd07 ths
   0xb7,      /* 111  Print  */
43 6070dd07 ths
   0xb5,      /* 112  Divide */
44 6070dd07 ths
   0xb8,      /* 113  Alt-R  */
45 6070dd07 ths
   0xc6,      /* 114  Break  */
46 6070dd07 ths
   0x0,         /* 115 */
47 6070dd07 ths
   0x0,         /* 116 */
48 6070dd07 ths
   0x0,         /* 117 */
49 6070dd07 ths
   0x0,         /* 118 */
50 6070dd07 ths
   0x0,         /* 119 */
51 6070dd07 ths
   0x0,         /* 120 */
52 6070dd07 ths
   0x0,         /* 121 */
53 6070dd07 ths
   0x0,         /* 122 */
54 6070dd07 ths
   0x0,         /* 123 */
55 6070dd07 ths
   0x0,         /* 124 */
56 6070dd07 ths
   0x0,         /* 125 */
57 6070dd07 ths
   0x0,         /* 126 */
58 6070dd07 ths
   0x0,         /* 127 */
59 6070dd07 ths
   0x0,         /* 128 */
60 6070dd07 ths
   0x79,         /* 129 Henkan */
61 6070dd07 ths
   0x0,         /* 130 */
62 6070dd07 ths
   0x7b,         /* 131 Muhenkan */
63 6070dd07 ths
   0x0,         /* 132 */
64 6070dd07 ths
   0x7d,         /* 133 Yen */
65 6070dd07 ths
   0x0,         /* 134 */
66 6070dd07 ths
   0x0,         /* 135 */
67 6070dd07 ths
   0x47,         /* 136 KP_7 */
68 6070dd07 ths
   0x48,         /* 137 KP_8 */
69 6070dd07 ths
   0x49,         /* 138 KP_9 */
70 6070dd07 ths
   0x4b,         /* 139 KP_4 */
71 6070dd07 ths
   0x4c,         /* 140 KP_5 */
72 6070dd07 ths
   0x4d,         /* 141 KP_6 */
73 6070dd07 ths
   0x4f,         /* 142 KP_1 */
74 6070dd07 ths
   0x50,         /* 143 KP_2 */
75 6070dd07 ths
   0x51,         /* 144 KP_3 */
76 6070dd07 ths
   0x52,         /* 145 KP_0 */
77 6070dd07 ths
   0x53,         /* 146 KP_. */
78 6070dd07 ths
   0x47,         /* 147 KP_HOME */
79 6070dd07 ths
   0x48,         /* 148 KP_UP */
80 6070dd07 ths
   0x49,         /* 149 KP_PgUp */
81 6070dd07 ths
   0x4b,         /* 150 KP_Left */
82 6070dd07 ths
   0x4c,         /* 151 KP_ */
83 6070dd07 ths
   0x4d,         /* 152 KP_Right */
84 6070dd07 ths
   0x4f,         /* 153 KP_End */
85 6070dd07 ths
   0x50,         /* 154 KP_Down */
86 6070dd07 ths
   0x51,         /* 155 KP_PgDn */
87 6070dd07 ths
   0x52,         /* 156 KP_Ins */
88 6070dd07 ths
   0x53,         /* 157 KP_Del */
89 6070dd07 ths
};
90 6070dd07 ths
91 5368a422 aliguori
/* This table is generated based off the xfree86 -> scancode mapping above
92 5368a422 aliguori
 * and the keycode mappings in /usr/share/X11/xkb/keycodes/evdev
93 5368a422 aliguori
 * and  /usr/share/X11/xkb/keycodes/xfree86
94 5368a422 aliguori
 */
95 5368a422 aliguori
96 5368a422 aliguori
static const uint8_t evdev_keycode_to_pc_keycode[61] = {
97 5368a422 aliguori
    0,         /*  97 EVDEV - RO   ("Internet" Keyboards) */
98 5368a422 aliguori
    0,         /*  98 EVDEV - KATA (Katakana) */
99 5368a422 aliguori
    0,         /*  99 EVDEV - HIRA (Hiragana) */
100 5368a422 aliguori
    0x79,      /* 100 EVDEV - HENK (Henkan) */
101 5368a422 aliguori
    0x70,      /* 101 EVDEV - HKTG (Hiragana/Katakana toggle) */
102 5368a422 aliguori
    0x7b,      /* 102 EVDEV - MUHE (Muhenkan) */
103 5368a422 aliguori
    0,         /* 103 EVDEV - JPCM (KPJPComma) */
104 5368a422 aliguori
    0x9c,      /* 104 KPEN */
105 5368a422 aliguori
    0x9d,      /* 105 RCTL */
106 5368a422 aliguori
    0xb5,      /* 106 KPDV */
107 5368a422 aliguori
    0xb7,      /* 107 PRSC */
108 5368a422 aliguori
    0xb8,      /* 108 RALT */
109 5368a422 aliguori
    0,         /* 109 EVDEV - LNFD ("Internet" Keyboards) */
110 5368a422 aliguori
    0xc7,      /* 110 HOME */
111 5368a422 aliguori
    0xc8,      /* 111 UP */
112 5368a422 aliguori
    0xc9,      /* 112 PGUP */
113 5368a422 aliguori
    0xcb,      /* 113 LEFT */
114 5368a422 aliguori
    0xcd,      /* 114 RGHT */
115 5368a422 aliguori
    0xcf,      /* 115 END */
116 5368a422 aliguori
    0xd0,      /* 116 DOWN */
117 5368a422 aliguori
    0xd1,      /* 117 PGDN */
118 5368a422 aliguori
    0xd2,      /* 118 INS */
119 5368a422 aliguori
    0xd3,      /* 119 DELE */
120 5368a422 aliguori
    0,         /* 120 EVDEV - I120 ("Internet" Keyboards) */
121 5368a422 aliguori
    0,         /* 121 EVDEV - MUTE */
122 5368a422 aliguori
    0,         /* 122 EVDEV - VOL- */
123 5368a422 aliguori
    0,         /* 123 EVDEV - VOL+ */
124 5368a422 aliguori
    0,         /* 124 EVDEV - POWR */
125 5368a422 aliguori
    0,         /* 125 EVDEV - KPEQ */
126 5368a422 aliguori
    0,         /* 126 EVDEV - I126 ("Internet" Keyboards) */
127 5368a422 aliguori
    0,         /* 127 EVDEV - PAUS */
128 5368a422 aliguori
    0,         /* 128 EVDEV - ???? */
129 5368a422 aliguori
    0,         /* 129 EVDEV - I129 ("Internet" Keyboards) */
130 5368a422 aliguori
    0xf1,      /* 130 EVDEV - HNGL (Korean Hangul Latin toggle) */
131 5368a422 aliguori
    0xf2,      /* 131 EVDEV - HJCV (Korean Hangul Hanja toggle) */
132 5368a422 aliguori
    0x7d,      /* 132 AE13 (Yen)*/
133 5368a422 aliguori
    0xdb,      /* 133 EVDEV - LWIN */
134 5368a422 aliguori
    0xdc,      /* 134 EVDEV - RWIN */
135 5368a422 aliguori
    0xdd,      /* 135 EVDEV - MENU */
136 5368a422 aliguori
    0,         /* 136 EVDEV - STOP */
137 5368a422 aliguori
    0,         /* 137 EVDEV - AGAI */
138 5368a422 aliguori
    0,         /* 138 EVDEV - PROP */
139 5368a422 aliguori
    0,         /* 139 EVDEV - UNDO */
140 5368a422 aliguori
    0,         /* 140 EVDEV - FRNT */
141 5368a422 aliguori
    0,         /* 141 EVDEV - COPY */
142 5368a422 aliguori
    0,         /* 142 EVDEV - OPEN */
143 5368a422 aliguori
    0,         /* 143 EVDEV - PAST */
144 5368a422 aliguori
    0,         /* 144 EVDEV - FIND */
145 5368a422 aliguori
    0,         /* 145 EVDEV - CUT  */
146 5368a422 aliguori
    0,         /* 146 EVDEV - HELP */
147 5368a422 aliguori
    0,         /* 147 EVDEV - I147 */
148 5368a422 aliguori
    0,         /* 148 EVDEV - I148 */
149 5368a422 aliguori
    0,         /* 149 EVDEV - I149 */
150 5368a422 aliguori
    0,         /* 150 EVDEV - I150 */
151 5368a422 aliguori
    0,         /* 151 EVDEV - I151 */
152 5368a422 aliguori
    0,         /* 152 EVDEV - I152 */
153 5368a422 aliguori
    0,         /* 153 EVDEV - I153 */
154 5368a422 aliguori
    0,         /* 154 EVDEV - I154 */
155 5368a422 aliguori
    0,         /* 155 EVDEV - I156 */
156 5368a422 aliguori
    0,         /* 156 EVDEV - I157 */
157 5368a422 aliguori
    0,         /* 157 EVDEV - I158 */
158 5368a422 aliguori
};
159 5368a422 aliguori
160 5368a422 aliguori
uint8_t translate_xfree86_keycode(const int key)
161 5368a422 aliguori
{
162 5368a422 aliguori
    return x_keycode_to_pc_keycode[key];
163 5368a422 aliguori
}
164 5368a422 aliguori
165 5368a422 aliguori
uint8_t translate_evdev_keycode(const int key)
166 6070dd07 ths
{
167 5368a422 aliguori
    return evdev_keycode_to_pc_keycode[key];
168 6070dd07 ths
}