2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
19 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "KeyboardCodes.h"
31 #include "PlatformKeyboardEvent.h"
37 static String keyIdentifierForQtKeyCode(int keyCode)
109 case Qt::Key_PageDown:
116 return "PrintScreen";
123 // Standard says that DEL becomes U+00007F.
127 return String::sprintf("U+%06X", toupper(keyCode));
131 static int windowsKeyCodeForKeyEvent(unsigned int keycode)
134 /* FIXME: Need to supply a bool in this func, to determine wheter the event comes from the keypad
136 return VK_NUMPAD0;// (60) Numeric keypad 0 key
138 return VK_NUMPAD1;// (61) Numeric keypad 1 key
140 return VK_NUMPAD2; // (62) Numeric keypad 2 key
142 return VK_NUMPAD3; // (63) Numeric keypad 3 key
144 return VK_NUMPAD4; // (64) Numeric keypad 4 key
146 return VK_NUMPAD5; //(65) Numeric keypad 5 key
148 return VK_NUMPAD6; // (66) Numeric keypad 6 key
150 return VK_NUMPAD7; // (67) Numeric keypad 7 key
152 return VK_NUMPAD8; // (68) Numeric keypad 8 key
154 return VK_NUMPAD9; // (69) Numeric keypad 9 key
155 case Qt::Key_Asterisk:
156 return VK_MULTIPLY; // (6A) Multiply key
158 return VK_ADD; // (6B) Add key
160 return VK_SUBTRACT; // (6D) Subtract key
162 return VK_DECIMAL; // (6E) Decimal key
164 return VK_DIVIDE; // (6F) Divide key
167 case Qt::Key_BackSpace:
168 return VK_BACK; // (08) BACKSPACE key
170 return VK_TAB; // (09) TAB key
172 return VK_CLEAR; // (0C) CLEAR key
174 return VK_RETURN; //(0D) Return key
176 return VK_SHIFT; // (10) SHIFT key
177 case Qt::Key_Control:
178 return VK_CONTROL; // (11) CTRL key
181 return VK_MENU; // (12) ALT key
184 return VK_PAUSE; // (13) PAUSE key
185 case Qt::Key_CapsLock:
186 return VK_CAPITAL; // (14) CAPS LOCK key
187 case Qt::Key_Kana_Lock:
188 case Qt::Key_Kana_Shift:
189 return VK_KANA; // (15) Input Method Editor (IME) Kana mode
191 return VK_HANGUL; // VK_HANGUL (15) IME Hangul mode
192 // VK_JUNJA (17) IME Junja mode
193 // VK_FINAL (18) IME final mode
194 case Qt::Key_Hangul_Hanja:
195 return VK_HANJA; // (19) IME Hanja mode
197 return VK_KANJI; // (19) IME Kanji mode
199 return VK_ESCAPE; // (1B) ESC key
200 // VK_CONVERT (1C) IME convert
201 // VK_NONCONVERT (1D) IME nonconvert
202 // VK_ACCEPT (1E) IME accept
203 // VK_MODECHANGE (1F) IME mode change request
205 return VK_SPACE; // (20) SPACEBAR
207 return VK_PRIOR; // (21) PAGE UP key
208 case Qt::Key_PageDown:
209 return VK_NEXT; // (22) PAGE DOWN key
211 return VK_END; // (23) END key
213 return VK_HOME; // (24) HOME key
215 return VK_LEFT; // (25) LEFT ARROW key
217 return VK_UP; // (26) UP ARROW key
219 return VK_RIGHT; // (27) RIGHT ARROW key
221 return VK_DOWN; // (28) DOWN ARROW key
223 return VK_SELECT; // (29) SELECT key
225 return VK_PRINT; // (2A) PRINT key
226 case Qt::Key_Execute:
227 return VK_EXECUTE;// (2B) EXECUTE key
229 //case Qt::Key_PrintScreen:
230 // return VK_SNAPSHOT; // (2C) PRINT SCREEN key
232 return VK_INSERT; // (2D) INS key
234 return VK_DELETE; // (2E) DEL key
236 return VK_HELP; // (2F) HELP key
238 case Qt::Key_ParenLeft:
239 return VK_0; // (30) 0) key
241 return VK_1; // (31) 1 ! key
244 return VK_2; // (32) 2 & key
246 case Qt::Key_NumberSign:
247 return VK_3; //case '3': case '#';
249 case Qt::Key_Dollar: // (34) 4 key '$';
252 case Qt::Key_Percent:
253 return VK_5; // (35) 5 key '%'
255 case Qt::Key_AsciiCircum:
256 return VK_6; // (36) 6 key '^'
258 case Qt::Key_Ampersand:
259 return VK_7; // (37) 7 key case '&'
261 case Qt::Key_Asterisk:
262 return VK_8; // (38) 8 key '*'
264 case Qt::Key_ParenRight:
265 return VK_9; // (39) 9 key '('
267 return VK_A; // (41) A key case 'a': case 'A': return 0x41;
269 return VK_B; // (42) B key case 'b': case 'B': return 0x42;
271 return VK_C; // (43) C key case 'c': case 'C': return 0x43;
273 return VK_D; // (44) D key case 'd': case 'D': return 0x44;
275 return VK_E; // (45) E key case 'e': case 'E': return 0x45;
277 return VK_F; // (46) F key case 'f': case 'F': return 0x46;
279 return VK_G; // (47) G key case 'g': case 'G': return 0x47;
281 return VK_H; // (48) H key case 'h': case 'H': return 0x48;
283 return VK_I; // (49) I key case 'i': case 'I': return 0x49;
285 return VK_J; // (4A) J key case 'j': case 'J': return 0x4A;
287 return VK_K; // (4B) K key case 'k': case 'K': return 0x4B;
289 return VK_L; // (4C) L key case 'l': case 'L': return 0x4C;
291 return VK_M; // (4D) M key case 'm': case 'M': return 0x4D;
293 return VK_N; // (4E) N key case 'n': case 'N': return 0x4E;
295 return VK_O; // (4F) O key case 'o': case 'O': return 0x4F;
297 return VK_P; // (50) P key case 'p': case 'P': return 0x50;
299 return VK_Q; // (51) Q key case 'q': case 'Q': return 0x51;
301 return VK_R; // (52) R key case 'r': case 'R': return 0x52;
303 return VK_S; // (53) S key case 's': case 'S': return 0x53;
305 return VK_T; // (54) T key case 't': case 'T': return 0x54;
307 return VK_U; // (55) U key case 'u': case 'U': return 0x55;
309 return VK_V; // (56) V key case 'v': case 'V': return 0x56;
311 return VK_W; // (57) W key case 'w': case 'W': return 0x57;
313 return VK_X; // (58) X key case 'x': case 'X': return 0x58;
315 return VK_Y; // (59) Y key case 'y': case 'Y': return 0x59;
317 return VK_Z; // (5A) Z key case 'z': case 'Z': return 0x5A;
319 return VK_LWIN; // (5B) Left Windows key (Microsoft Natural keyboard)
320 //case Qt::Key_Meta_R: TODO: What to do here?
321 // return VK_RWIN; // (5C) Right Windows key (Natural keyboard)
322 // VK_APPS (5D) Applications key (Natural keyboard)
323 // VK_SLEEP (5F) Computer Sleep key
324 // VK_SEPARATOR (6C) Separator key
325 // VK_SUBTRACT (6D) Subtract key
326 // VK_DECIMAL (6E) Decimal key
327 // VK_DIVIDE (6F) Divide key
328 // handled by key code above
330 case Qt::Key_NumLock:
331 return VK_NUMLOCK; // (90) NUM LOCK key
333 case Qt::Key_ScrollLock:
334 return VK_SCROLL; // (91) SCROLL LOCK key
336 // VK_LSHIFT (A0) Left SHIFT key
337 // VK_RSHIFT (A1) Right SHIFT key
338 // VK_LCONTROL (A2) Left CONTROL key
339 // VK_RCONTROL (A3) Right CONTROL key
340 // VK_LMENU (A4) Left MENU key
341 // VK_RMENU (A5) Right MENU key
342 // VK_BROWSER_BACK (A6) Windows 2000/XP: Browser Back key
343 // VK_BROWSER_FORWARD (A7) Windows 2000/XP: Browser Forward key
344 // VK_BROWSER_REFRESH (A8) Windows 2000/XP: Browser Refresh key
345 // VK_BROWSER_STOP (A9) Windows 2000/XP: Browser Stop key
346 // VK_BROWSER_SEARCH (AA) Windows 2000/XP: Browser Search key
347 // VK_BROWSER_FAVORITES (AB) Windows 2000/XP: Browser Favorites key
348 // VK_BROWSER_HOME (AC) Windows 2000/XP: Browser Start and Home key
349 // VK_VOLUME_MUTE (AD) Windows 2000/XP: Volume Mute key
350 // VK_VOLUME_DOWN (AE) Windows 2000/XP: Volume Down key
351 // VK_VOLUME_UP (AF) Windows 2000/XP: Volume Up key
352 // VK_MEDIA_NEXT_TRACK (B0) Windows 2000/XP: Next Track key
353 // VK_MEDIA_PREV_TRACK (B1) Windows 2000/XP: Previous Track key
354 // VK_MEDIA_STOP (B2) Windows 2000/XP: Stop Media key
355 // VK_MEDIA_PLAY_PAUSE (B3) Windows 2000/XP: Play/Pause Media key
356 // VK_LAUNCH_MAIL (B4) Windows 2000/XP: Start Mail key
357 // VK_LAUNCH_MEDIA_SELECT (B5) Windows 2000/XP: Select Media key
358 // VK_LAUNCH_APP1 (B6) Windows 2000/XP: Start Application 1 key
359 // VK_LAUNCH_APP2 (B7) Windows 2000/XP: Start Application 2 key
361 // VK_OEM_1 (BA) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the ';:' key
362 case Qt::Key_Semicolon:
364 return VK_OEM_1; //case ';': case ':': return 0xBA;
365 // VK_OEM_PLUS (BB) Windows 2000/XP: For any country/region, the '+' key
368 return VK_OEM_PLUS; //case '=': case '+': return 0xBB;
369 // VK_OEM_COMMA (BC) Windows 2000/XP: For any country/region, the ',' key
372 return VK_OEM_COMMA; //case ',': case '<': return 0xBC;
373 // VK_OEM_MINUS (BD) Windows 2000/XP: For any country/region, the '-' key
375 case Qt::Key_Underscore:
376 return VK_OEM_MINUS; //case '-': case '_': return 0xBD;
377 // VK_OEM_PERIOD (BE) Windows 2000/XP: For any country/region, the '.' key
379 case Qt::Key_Greater:
380 return VK_OEM_PERIOD; //case '.': case '>': return 0xBE;
381 // VK_OEM_2 (BF) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '/?' key
383 case Qt::Key_Question:
384 return VK_OEM_2; //case '/': case '?': return 0xBF;
385 // VK_OEM_3 (C0) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '`~' key
386 case Qt::Key_AsciiTilde:
387 case Qt::Key_QuoteLeft:
388 return VK_OEM_3; //case '`': case '~': return 0xC0;
389 // VK_OEM_4 (DB) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '[{' key
390 case Qt::Key_BracketLeft:
391 case Qt::Key_BraceLeft:
392 return VK_OEM_4; //case '[': case '{': return 0xDB;
393 // VK_OEM_5 (DC) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the '\|' key
394 case Qt::Key_Backslash:
396 return VK_OEM_5; //case '\\': case '|': return 0xDC;
397 // VK_OEM_6 (DD) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the ']}' key
398 case Qt::Key_BracketRight:
399 case Qt::Key_BraceRight:
400 return VK_OEM_6; // case ']': case '}': return 0xDD;
401 // VK_OEM_7 (DE) Used for miscellaneous characters; it can vary by keyboard. Windows 2000/XP: For the US standard keyboard, the 'single-quote/double-quote' key
402 case Qt::Key_QuoteDbl:
403 return VK_OEM_7; // case '\'': case '"': return 0xDE;
404 // VK_OEM_8 (DF) Used for miscellaneous characters; it can vary by keyboard.
405 // VK_OEM_102 (E2) Windows 2000/XP: Either the angle bracket key or the backslash key on the RT 102-key keyboard
406 // VK_PROCESSKEY (E5) Windows 95/98/Me, Windows NT 4.0, Windows 2000/XP: IME PROCESS key
407 // VK_PACKET (E7) Windows 2000/XP: Used to pass Unicode characters as if they were keystrokes. The VK_PACKET key is the low word of a 32-bit Virtual Key value used for non-keyboard input methods. For more information, see Remark in KEYBDINPUT,SendInput, WM_KEYDOWN, and WM_KEYUP
408 // VK_ATTN (F6) Attn key
409 // VK_CRSEL (F7) CrSel key
410 // VK_EXSEL (F8) ExSel key
411 // VK_EREOF (F9) Erase EOF key
412 // VK_PLAY (FA) Play key
413 // VK_ZOOM (FB) Zoom key
414 // VK_NONAME (FC) Reserved for future use
415 // VK_PA1 (FD) PA1 key
416 // VK_OEM_CLEAR (FE) Clear key
423 PlatformKeyboardEvent::PlatformKeyboardEvent(QKeyEvent* event, bool isKeyUp)
425 m_text = fromQString(event->text());
426 m_unmodifiedText = fromQString(event->text()); // TODO: not correct
427 m_keyIdentifier = keyIdentifierForQtKeyCode(event->key());
429 m_autoRepeat = event->isAutoRepeat();
430 m_WindowsKeyCode = windowsKeyCodeForKeyEvent(event->key());
431 m_isKeypad = (event->modifiers() & Qt::KeypadModifier) != 0;
432 m_shiftKey = (event->modifiers() & Qt::ShiftModifier) != 0;
433 m_ctrlKey = (event->modifiers() & Qt::ControlModifier) != 0;
434 m_altKey = (event->modifiers() & Qt::AltModifier) != 0;
435 m_metaKey = (event->modifiers() & Qt::MetaModifier) != 0;