/[rdesktop]/sourceforge.net/trunk/rdesktop/xkeymap.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /sourceforge.net/trunk/rdesktop/xkeymap.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 118 - (show annotations)
Wed Sep 11 11:45:20 2002 UTC (21 years, 8 months ago) by astrand
File MIME type: text/plain
File size: 11584 byte(s)
Support for Windows keys (via Ctrl-Esc)

1 /*
2 rdesktop: A Remote Desktop Protocol client.
3 User interface services - X keyboard mapping
4 Copyright (C) Matthew Chapman 1999-2001
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include <X11/Xlib.h>
22 #include <X11/keysym.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <ctype.h>
27 #include <limits.h>
28 #include "rdesktop.h"
29 #include "scancodes.h"
30
31 #define KEYMAP_SIZE 4096
32 #define KEYMAP_MASK (KEYMAP_SIZE - 1)
33 #define KEYMAP_MAX_LINE_LENGTH 80
34
35 extern Display *display;
36 extern char keymapname[16];
37 extern int keylayout;
38 extern BOOL enable_compose;
39
40 static key_translation keymap[KEYMAP_SIZE];
41 static int min_keycode;
42 static uint16 remote_modifier_state = 0;
43
44 static void update_modifier_state(uint16 modifiers, BOOL pressed);
45
46 static void
47 add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)
48 {
49 KeySym keysym;
50
51 keysym = XStringToKeysym(keyname);
52 if (keysym == NoSymbol)
53 {
54 error("Bad keysym %s in keymap %s\n", keyname, mapname);
55 return;
56 }
57
58 DEBUG_KBD(("Adding translation, keysym=0x%x, scancode=0x%x, "
59 "modifiers=0x%x\n", (unsigned int) keysym, scancode, modifiers));
60
61 keymap[keysym & KEYMAP_MASK].scancode = scancode;
62 keymap[keysym & KEYMAP_MASK].modifiers = modifiers;
63
64 return;
65 }
66
67
68 static BOOL
69 xkeymap_read(char *mapname)
70 {
71 FILE *fp;
72 char line[KEYMAP_MAX_LINE_LENGTH], path[PATH_MAX];
73 unsigned int line_num = 0;
74 unsigned int line_length = 0;
75 char *keyname, *p;
76 char *line_rest;
77 uint8 scancode;
78 uint16 modifiers;
79
80
81 strcpy(path, KEYMAP_PATH);
82 strncat(path, mapname, sizeof(path) - sizeof(KEYMAP_PATH));
83
84 fp = fopen(path, "r");
85 if (fp == NULL)
86 {
87 error("Failed to open keymap %s\n", path);
88 return False;
89 }
90
91 /* FIXME: More tolerant on white space */
92 while (fgets(line, sizeof(line), fp) != NULL)
93 {
94 line_num++;
95
96 /* Replace the \n with \0 */
97 p = strchr(line, '\n');
98 if (p != NULL)
99 *p = 0;
100
101 line_length = strlen(line);
102
103 /* Completely empty line */
104 if (strspn(line, " \t\n\r\f\v") == line_length)
105 {
106 continue;
107 }
108
109 /* Include */
110 if (strncmp(line, "include ", 8) == 0)
111 {
112 if (!xkeymap_read(line + 8))
113 return False;
114 continue;
115 }
116
117 /* map */
118 if (strncmp(line, "map ", 4) == 0)
119 {
120 keylayout = strtol(line + 4, NULL, 16);
121 DEBUG_KBD(("Keylayout 0x%x\n", keylayout));
122 continue;
123 }
124
125 /* compose */
126 if (strncmp(line, "enable_compose", 15) == 0)
127 {
128 DEBUG_KBD(("Enabling compose handling\n"));
129 enable_compose = True;
130 continue;
131 }
132
133 /* Comment */
134 if (line[0] == '#')
135 {
136 continue;
137 }
138
139 /* Normal line */
140 keyname = line;
141 p = strchr(line, ' ');
142 if (p == NULL)
143 {
144 error("Bad line %d in keymap %s\n", line_num, mapname);
145 continue;
146 }
147 else
148 {
149 *p = 0;
150 }
151
152 /* scancode */
153 p++;
154 scancode = strtol(p, &line_rest, 16);
155
156 /* flags */
157 /* FIXME: Should allow case-insensitive flag names.
158 Fix by using lex+yacc... */
159 modifiers = 0;
160 if (strstr(line_rest, "altgr"))
161 {
162 MASK_ADD_BITS(modifiers, MapAltGrMask);
163 }
164
165 if (strstr(line_rest, "shift"))
166 {
167 MASK_ADD_BITS(modifiers, MapLeftShiftMask);
168 }
169
170 if (strstr(line_rest, "numlock"))
171 {
172 MASK_ADD_BITS(modifiers, MapNumLockMask);
173 }
174
175 if (strstr(line_rest, "localstate"))
176 {
177 MASK_ADD_BITS(modifiers, MapLocalStateMask);
178 }
179
180 if (strstr(line_rest, "inhibit"))
181 {
182 MASK_ADD_BITS(modifiers, MapInhibitMask);
183 }
184
185 add_to_keymap(keyname, scancode, modifiers, mapname);
186
187 if (strstr(line_rest, "addupper"))
188 {
189 /* Automatically add uppercase key, with same modifiers
190 plus shift */
191 for (p = keyname; *p; p++)
192 *p = toupper(*p);
193 MASK_ADD_BITS(modifiers, MapLeftShiftMask);
194 add_to_keymap(keyname, scancode, modifiers, mapname);
195 }
196 }
197
198 fclose(fp);
199 return True;
200 }
201
202
203 /* Before connecting and creating UI */
204 void
205 xkeymap_init1(void)
206 {
207 int i;
208
209 /* Zeroing keymap */
210 for (i = 0; i < KEYMAP_SIZE; i++)
211 {
212 keymap[i].scancode = 0;
213 keymap[i].modifiers = 0;
214 }
215
216 if (strcmp(keymapname, "none"))
217 {
218 xkeymap_read(keymapname);
219 }
220
221 }
222
223 /* After connecting and creating UI */
224 void
225 xkeymap_init2(void)
226 {
227 unsigned int max_keycode;
228 XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
229 }
230
231 /* Handles, for example, multi-scancode keypresses (which is not
232 possible via keymap-files) */
233 BOOL
234 handle_special_keys(KeySym keysym, uint32 ev_time, BOOL pressed)
235 {
236 switch (keysym)
237 {
238 case XK_Break: /* toggle full screen */
239 if (pressed && (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R)))
240 {
241 toggle_fullscreen();
242 return True;
243 }
244 break;
245
246 case XK_Meta_L: /* Windows keys */
247 case XK_Super_L:
248 case XK_Hyper_L:
249 case XK_Meta_R:
250 case XK_Super_R:
251 case XK_Hyper_R:
252 if (pressed)
253 {
254 rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);
255 rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);
256 }
257 else
258 {
259 rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);
260 rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
261 }
262 return True;
263 break;
264 }
265 return False;
266 }
267
268
269 key_translation
270 xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)
271 {
272 key_translation tr = { 0, 0 };
273
274 tr = keymap[keysym & KEYMAP_MASK];
275
276 if (tr.modifiers & MapInhibitMask)
277 {
278 DEBUG_KBD(("Inhibiting key\n"));
279 tr.scancode = 0;
280 return tr;
281 }
282
283 if (tr.modifiers & MapLocalStateMask)
284 {
285 /* The modifiers to send for this key should be obtained
286 from the local state. Currently, only shift is implemented. */
287 if (state & ShiftMask)
288 {
289 tr.modifiers = MapLeftShiftMask;
290 }
291 }
292
293 if (tr.scancode != 0)
294 {
295 DEBUG_KBD
296 (("Found key translation, scancode=0x%x, modifiers=0x%x\n",
297 tr.scancode, tr.modifiers));
298 return tr;
299 }
300
301 fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
302
303 /* not in keymap, try to interpret the raw scancode */
304 if ((keycode >= min_keycode) && (keycode <= 0x60))
305 {
306 tr.scancode = keycode - min_keycode;
307 fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);
308 }
309 else
310 {
311 fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);
312 }
313
314 return tr;
315 }
316
317 uint16
318 xkeymap_translate_button(unsigned int button)
319 {
320 switch (button)
321 {
322 case Button1: /* left */
323 return MOUSE_FLAG_BUTTON1;
324 case Button2: /* middle */
325 return MOUSE_FLAG_BUTTON3;
326 case Button3: /* right */
327 return MOUSE_FLAG_BUTTON2;
328 case Button4: /* wheel up */
329 return MOUSE_FLAG_BUTTON4;
330 case Button5: /* wheel down */
331 return MOUSE_FLAG_BUTTON5;
332 }
333
334 return 0;
335 }
336
337 char *
338 get_ksname(KeySym keysym)
339 {
340 char *ksname = NULL;
341
342 if (keysym == NoSymbol)
343 ksname = "NoSymbol";
344 else if (!(ksname = XKeysymToString(keysym)))
345 ksname = "(no name)";
346
347 return ksname;
348 }
349
350
351 void
352 ensure_remote_modifiers(uint32 ev_time, key_translation tr)
353 {
354 /* If this key is a modifier, do nothing */
355 switch (tr.scancode)
356 {
357 case SCANCODE_CHAR_LSHIFT:
358 case SCANCODE_CHAR_RSHIFT:
359 case SCANCODE_CHAR_LCTRL:
360 case SCANCODE_CHAR_RCTRL:
361 case SCANCODE_CHAR_LALT:
362 case SCANCODE_CHAR_RALT:
363 case SCANCODE_CHAR_LWIN:
364 case SCANCODE_CHAR_RWIN:
365 case SCANCODE_CHAR_NUMLOCK:
366 return;
367 default:
368 break;
369 }
370
371 /* Shift */
372 if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
373 != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
374 {
375 /* The remote modifier state is not correct */
376 if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))
377 {
378 /* Needs this modifier. Send down. */
379 rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
380 }
381 else
382 {
383 /* Should not use this modifier. Send up. */
384 rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
385 }
386 }
387
388 /* AltGr */
389 if (MASK_HAS_BITS(tr.modifiers, MapAltGrMask)
390 != MASK_HAS_BITS(remote_modifier_state, MapAltGrMask))
391 {
392 /* The remote modifier state is not correct */
393 if (MASK_HAS_BITS(tr.modifiers, MapAltGrMask))
394 {
395 /* Needs this modifier. Send down. */
396 rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RALT);
397 }
398 else
399 {
400 /* Should not use this modifier. Send up. */
401 rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
402 }
403 }
404
405 /* NumLock */
406 if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)
407 != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
408 {
409 /* The remote modifier state is not correct */
410 uint16 new_remote_state = 0;
411
412 if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
413 {
414 DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
415 new_remote_state |= KBD_FLAG_NUMLOCK;
416 }
417 else
418 {
419 DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
420 }
421
422 rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
423 update_modifier_state(SCANCODE_CHAR_NUMLOCK, True);
424 }
425 }
426
427
428 static void
429 update_modifier_state(uint16 modifiers, BOOL pressed)
430 {
431 #ifdef WITH_DEBUG_KBD
432 uint16 old_modifier_state;
433
434 old_modifier_state = remote_modifier_state;
435 #endif
436
437 switch (modifiers)
438 {
439 case SCANCODE_CHAR_LSHIFT:
440 MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
441 break;
442 case SCANCODE_CHAR_RSHIFT:
443 MASK_CHANGE_BIT(remote_modifier_state, MapRightShiftMask, pressed);
444 break;
445 case SCANCODE_CHAR_LCTRL:
446 MASK_CHANGE_BIT(remote_modifier_state, MapLeftCtrlMask, pressed);
447 break;
448 case SCANCODE_CHAR_RCTRL:
449 MASK_CHANGE_BIT(remote_modifier_state, MapRightCtrlMask, pressed);
450 break;
451 case SCANCODE_CHAR_LALT:
452 MASK_CHANGE_BIT(remote_modifier_state, MapLeftAltMask, pressed);
453 break;
454 case SCANCODE_CHAR_RALT:
455 MASK_CHANGE_BIT(remote_modifier_state, MapRightAltMask, pressed);
456 break;
457 case SCANCODE_CHAR_LWIN:
458 MASK_CHANGE_BIT(remote_modifier_state, MapLeftWinMask, pressed);
459 break;
460 case SCANCODE_CHAR_RWIN:
461 MASK_CHANGE_BIT(remote_modifier_state, MapRightWinMask, pressed);
462 break;
463 case SCANCODE_CHAR_NUMLOCK:
464 /* KeyReleases for NumLocks are sent immediately. Toggle the
465 modifier state only on Keypress */
466 if (pressed)
467 {
468 BOOL newNumLockState;
469 newNumLockState =
470 (MASK_HAS_BITS
471 (remote_modifier_state, MapNumLockMask) == False);
472 MASK_CHANGE_BIT(remote_modifier_state,
473 MapNumLockMask, newNumLockState);
474 }
475 break;
476 }
477
478 #ifdef WITH_DEBUG_KBD
479 if (old_modifier_state != remote_modifier_state)
480 {
481 DEBUG_KBD(("Before updating modifier_state:0x%x, pressed=0x%x\n",
482 old_modifier_state, pressed));
483 DEBUG_KBD(("After updating modifier_state:0x%x\n", remote_modifier_state));
484 }
485 #endif
486
487 }
488
489 /* Send keyboard input */
490 void
491 rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)
492 {
493 update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
494
495 if (scancode & SCANCODE_EXTENDED)
496 {
497 DEBUG_KBD(("Sending extended scancode=0x%x, flags=0x%x\n",
498 scancode & ~SCANCODE_EXTENDED, flags));
499 rdp_send_input(time, RDP_INPUT_SCANCODE, flags | KBD_FLAG_EXT,
500 scancode & ~SCANCODE_EXTENDED, 0);
501 }
502 else
503 {
504 DEBUG_KBD(("Sending scancode=0x%x, flags=0x%x\n", scancode, flags));
505 rdp_send_input(time, RDP_INPUT_SCANCODE, flags, scancode, 0);
506 }
507 }

  ViewVC Help
Powered by ViewVC 1.1.26