summaryrefslogtreecommitdiff
path: root/hw/xwin/winkeybd.h
diff options
context:
space:
mode:
authorPaul Loewenstein <paul.loewenstein@gmail.com>2009-11-01 18:18:45 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2009-11-09 20:33:45 +0000
commit35901ece6a49e5f8e245364c27723da2f9009a1d (patch)
treeddf5ad460c0086fd3ae036e08b4aa28edba1b1d6 /hw/xwin/winkeybd.h
parent0866322b574b1f3695467535ed5fa8f9e629ad1d (diff)
Cygwin/X: Handle fake keypresses generated by speech recognizers
Apparently, fake keypresses generated by speech recognizers may not bother with a scan code, so look up what scan code corresponds to the virtual key code if this occurs. Patch by Paul Loewenstein <paul.loewenstein@gmail.com> Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
Diffstat (limited to 'hw/xwin/winkeybd.h')
-rw-r--r--hw/xwin/winkeybd.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/hw/xwin/winkeybd.h b/hw/xwin/winkeybd.h
index 09eed1491..d0d6b9cad 100644
--- a/hw/xwin/winkeybd.h
+++ b/hw/xwin/winkeybd.h
@@ -45,6 +45,9 @@
#define WIN_KEYMAP_COLS 3
+/* Rows 160 through 165 correspond to software-generated codes, which
+ * may not be associated with the appropriate scan code.
+ */
const int
g_iKeyMap [] = {
/* count Windows VK, ASCII, ASCII when extended VK */
@@ -208,12 +211,12 @@ g_iKeyMap [] = {
/* 157 */ 0, 0, 0,
/* 158 */ 0, 0, 0,
/* 159 */ 0, 0, 0,
- /* 160 */ 0, 0, 0,
- /* 161 */ 0, 0, 0,
- /* 162 */ 0, 0, 0,
- /* 163 */ 0, 0, 0,
- /* 164 */ 0, 0, 0,
- /* 165 */ 0, 0, 0,
+ /* 160 */ VK_LSHIFT, KEY_ShiftL, 0,
+ /* 161 */ VK_RSHIFT, KEY_ShiftR, 0,
+ /* 162 */ VK_LCONTROL, KEY_LCtrl, 0,
+ /* 163 */ VK_RCONTROL, KEY_RCtrl, 0,
+ /* 164 */ VK_LMENU, KEY_Alt, 0,
+ /* 165 */ VK_RMENU, KEY_AltLang, 0,
/* 166 */ 0, 0, 0,
/* 167 */ 0, 0, 0,
/* 168 */ 0, 0, 0,