/[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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 118 by astrand, Wed Sep 11 11:45:20 2002 UTC revision 331 by astrand, Tue Feb 18 13:44:27 2003 UTC
# Line 1  Line 1 
1  /*  /*
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     User interface services - X keyboard mapping     User interface services - X keyboard mapping
4     Copyright (C) Matthew Chapman 1999-2001     Copyright (C) Matthew Chapman 1999-2002
5        
6     This program is free software; you can redistribute it and/or modify     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     it under the terms of the GNU General Public License as published by
# Line 19  Line 19 
19  */  */
20    
21  #include <X11/Xlib.h>  #include <X11/Xlib.h>
22    #define XK_MISCELLANY
23  #include <X11/keysym.h>  #include <X11/keysym.h>
 #include <stdio.h>  
 #include <stdlib.h>  
 #include <string.h>  
24  #include <ctype.h>  #include <ctype.h>
25  #include <limits.h>  #include <limits.h>
26    #include <time.h>
27  #include "rdesktop.h"  #include "rdesktop.h"
28  #include "scancodes.h"  #include "scancodes.h"
29    
30  #define KEYMAP_SIZE 4096  #define KEYMAP_SIZE 0xffff+1
31  #define KEYMAP_MASK (KEYMAP_SIZE - 1)  #define KEYMAP_MASK 0xffff
32  #define KEYMAP_MAX_LINE_LENGTH 80  #define KEYMAP_MAX_LINE_LENGTH 80
33    
34  extern Display *display;  extern Display *display;
35  extern char keymapname[16];  extern char keymapname[16];
36  extern int keylayout;  extern int keylayout;
37    extern int win_button_size;
38  extern BOOL enable_compose;  extern BOOL enable_compose;
39    
40    static BOOL keymap_loaded;
41  static key_translation keymap[KEYMAP_SIZE];  static key_translation keymap[KEYMAP_SIZE];
42  static int min_keycode;  static int min_keycode;
43  static uint16 remote_modifier_state = 0;  static uint16 remote_modifier_state = 0;
44    
45  static void update_modifier_state(uint16 modifiers, BOOL pressed);  static void update_modifier_state(uint8 scancode, BOOL pressed);
46    
47  static void  static void
48  add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)  add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)
# Line 51  add_to_keymap(char *keyname, uint8 scanc Line 52  add_to_keymap(char *keyname, uint8 scanc
52          keysym = XStringToKeysym(keyname);          keysym = XStringToKeysym(keyname);
53          if (keysym == NoSymbol)          if (keysym == NoSymbol)
54          {          {
55                  error("Bad keysym %s in keymap %s\n", keyname, mapname);                  DEBUG_KBD(("Bad keysym \"%s\" in keymap %s (ignoring)\n", keyname, mapname));
56                  return;                  return;
57          }          }
58    
# Line 69  static BOOL Line 70  static BOOL
70  xkeymap_read(char *mapname)  xkeymap_read(char *mapname)
71  {  {
72          FILE *fp;          FILE *fp;
73          char line[KEYMAP_MAX_LINE_LENGTH], path[PATH_MAX];          char line[KEYMAP_MAX_LINE_LENGTH];
74            char path[PATH_MAX], inplace_path[PATH_MAX];
75          unsigned int line_num = 0;          unsigned int line_num = 0;
76          unsigned int line_length = 0;          unsigned int line_length = 0;
77          char *keyname, *p;          char *keyname, *p;
# Line 84  xkeymap_read(char *mapname) Line 86  xkeymap_read(char *mapname)
86          fp = fopen(path, "r");          fp = fopen(path, "r");
87          if (fp == NULL)          if (fp == NULL)
88          {          {
89                  error("Failed to open keymap %s\n", path);                  /* in case we are running from the source tree */
90                  return False;                  strcpy(inplace_path, "keymaps/");
91                    strncat(inplace_path, mapname, sizeof(inplace_path) - sizeof("keymaps/"));
92    
93                    fp = fopen(inplace_path, "r");
94                    if (fp == NULL)
95                    {
96                            error("Failed to open keymap %s\n", path);
97                            return False;
98                    }
99          }          }
100    
101          /* FIXME: More tolerant on white space */          /* FIXME: More tolerant on white space */
# Line 189  xkeymap_read(char *mapname) Line 199  xkeymap_read(char *mapname)
199                          /* Automatically add uppercase key, with same modifiers                          /* Automatically add uppercase key, with same modifiers
200                             plus shift */                             plus shift */
201                          for (p = keyname; *p; p++)                          for (p = keyname; *p; p++)
202                                  *p = toupper(*p);                                  *p = toupper((int) *p);
203                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);
204                          add_to_keymap(keyname, scancode, modifiers, mapname);                          add_to_keymap(keyname, scancode, modifiers, mapname);
205                  }                  }
# Line 202  xkeymap_read(char *mapname) Line 212  xkeymap_read(char *mapname)
212    
213  /* Before connecting and creating UI */  /* Before connecting and creating UI */
214  void  void
215  xkeymap_init1(void)  xkeymap_init(void)
216  {  {
217          int i;          unsigned int max_keycode;
218            char *mapname_ptr;
219    
220          /* Zeroing keymap */          /* Make keymapname lowercase */
221          for (i = 0; i < KEYMAP_SIZE; i++)          mapname_ptr = keymapname;
222            while (*mapname_ptr)
223          {          {
224                  keymap[i].scancode = 0;                  *mapname_ptr = tolower((int) *mapname_ptr);
225                  keymap[i].modifiers = 0;                  mapname_ptr++;
226          }          }
227    
228          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
229          {          {
230                  xkeymap_read(keymapname);                  if (xkeymap_read(keymapname))
231                            keymap_loaded = True;
232          }          }
233    
 }  
   
 /* After connecting and creating UI */  
 void  
 xkeymap_init2(void)  
 {  
         unsigned int max_keycode;  
234          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
235  }  }
236    
237  /* Handles, for example, multi-scancode keypresses (which is not  /* Handles, for example, multi-scancode keypresses (which is not
238     possible via keymap-files) */     possible via keymap-files) */
239  BOOL  BOOL
240  handle_special_keys(KeySym keysym, uint32 ev_time, BOOL pressed)  handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
241  {  {
242          switch (keysym)          switch (keysym)
243          {          {
244                  case XK_Break:  /* toggle full screen */                  case XK_Return:
245                          if (pressed && (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R)))                          if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
246                                && (get_key_state(state, XK_Control_L)
247                                    || get_key_state(state, XK_Control_R)))
248                          {                          {
249                                  toggle_fullscreen();                                  /* Ctrl-Alt-Enter: toggle full screen */
250                                    if (pressed)
251                                            xwin_toggle_fullscreen();
252                                  return True;                                  return True;
253                          }                          }
254                          break;                          break;
255    
256                    case XK_Break:
257                            /* Send Break sequence E0 46 E0 C6 */
258                            if (pressed)
259                            {
260                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
261                                                      (SCANCODE_EXTENDED | 0x46));
262                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
263                                                      (SCANCODE_EXTENDED | 0xc6));
264                            }
265                            /* No release sequence */
266                            return True;
267    
268                    case XK_Pause:
269                            /* According to MS Keyboard Scan Code
270                               Specification, pressing Pause should result
271                               in E1 1D 45 E1 9D C5. I'm not exactly sure
272                               of how this is supposed to be sent via
273                               RDP. The code below seems to work, but with
274                               the side effect that Left Ctrl stays
275                               down. Therefore, we release it when Pause
276                               is released. */
277                            if (pressed)
278                            {
279                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
280                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
281                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
282                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
283                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
284                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
285                            }
286                            else
287                            {
288                                    /* Release Left Ctrl */
289                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE,
290                                                   0x1d, 0);
291                            }
292                            return True;
293    
294                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
295                  case XK_Super_L:                  case XK_Super_L:
296                  case XK_Hyper_L:                  case XK_Hyper_L:
# Line 260  handle_special_keys(KeySym keysym, uint3 Line 308  handle_special_keys(KeySym keysym, uint3
308                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
309                          }                          }
310                          return True;                          return True;
311                          break;  
312                    case XK_space:
313                            /* Prevent access to the Windows system menu in single app mode */
314                            if (win_button_size
315                                && (get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R)))
316                                    return True;
317    
318          }          }
319          return False;          return False;
320  }  }
321    
322    
323  key_translation  key_translation
324  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
325  {  {
326          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
327    
# Line 292  xkeymap_translate_key(KeySym keysym, uns Line 346  xkeymap_translate_key(KeySym keysym, uns
346    
347          if (tr.scancode != 0)          if (tr.scancode != 0)
348          {          {
349                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
350                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
351                  return tr;                  return tr;
352          }          }
353    
354          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));          if (keymap_loaded)
355                    warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
356    
357          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
358          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
359          {          {
360                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
361                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);  
362                    /* The modifiers to send for this key should be
363                       obtained from the local state. Currently, only
364                       shift is implemented. */
365                    if (state & ShiftMask)
366                    {
367                            tr.modifiers = MapLeftShiftMask;
368                    }
369    
370                    DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
371          }          }
372          else          else
373          {          {
374                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
375          }          }
376    
377          return tr;          return tr;
# Line 335  xkeymap_translate_button(unsigned int bu Line 398  xkeymap_translate_button(unsigned int bu
398  }  }
399    
400  char *  char *
401  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
402  {  {
403          char *ksname = NULL;          char *ksname = NULL;
404    
# Line 368  ensure_remote_modifiers(uint32 ev_time, Line 431  ensure_remote_modifiers(uint32 ev_time,
431                          break;                          break;
432          }          }
433    
434          /* Shift */          /* NumLock */
435            if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)
436                != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
437            {
438                    /* The remote modifier state is not correct */
439                    uint16 new_remote_state;
440    
441                    if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
442                    {
443                            DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
444                            new_remote_state = KBD_FLAG_NUMLOCK;
445                            remote_modifier_state = MapNumLockMask;
446                    }
447                    else
448                    {
449                            DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
450                            new_remote_state = 0;
451                            remote_modifier_state = 0;
452                    }
453    
454                    rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
455            }
456    
457            /* Shift. Left shift and right shift are treated as equal; either is fine. */
458          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
459              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
460          {          {
461                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
462                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
463                  {                  {
464                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
465                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
466                  }                  }
467                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
468                    {
469                            /* Needs right shift. Send down. */
470                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
471                    }
472                  else                  else
473                  {                  {
474                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
475                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
476                                    /* Left shift is down */
477                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
478                            else
479                                    /* Right shift is down */
480                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
481                  }                  }
482          }          }
483    
# Line 402  ensure_remote_modifiers(uint32 ev_time, Line 498  ensure_remote_modifiers(uint32 ev_time,
498                  }                  }
499          }          }
500    
         /* NumLock */  
         if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)  
             != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))  
         {  
                 /* The remote modifier state is not correct */  
                 uint16 new_remote_state = 0;  
501    
502                  if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))  }
                 {  
                         DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));  
                         new_remote_state |= KBD_FLAG_NUMLOCK;  
                 }  
                 else  
                 {  
                         DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));  
                 }  
503    
504                  rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);  
505                  update_modifier_state(SCANCODE_CHAR_NUMLOCK, True);  void
506          }  reset_modifier_keys(unsigned int state)
507    {
508            /* reset keys */
509            uint32 ev_time;
510            ev_time = time(NULL);
511    
512            if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask)
513                && !get_key_state(state, XK_Shift_L))
514                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
515    
516            if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask)
517                && !get_key_state(state, XK_Shift_R))
518                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
519    
520            if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask)
521                && !get_key_state(state, XK_Control_L))
522                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
523    
524            if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask)
525                && !get_key_state(state, XK_Control_R))
526                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
527    
528            if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))
529                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
530    
531            if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
532                !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))
533                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
534  }  }
535    
536    
537  static void  static void
538  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
539  {  {
540  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
541          uint16 old_modifier_state;          uint16 old_modifier_state;
# Line 434  update_modifier_state(uint16 modifiers, Line 543  update_modifier_state(uint16 modifiers,
543          old_modifier_state = remote_modifier_state;          old_modifier_state = remote_modifier_state;
544  #endif  #endif
545    
546          switch (modifiers)          switch (scancode)
547          {          {
548                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
549                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
# Line 488  update_modifier_state(uint16 modifiers, Line 597  update_modifier_state(uint16 modifiers,
597    
598  /* Send keyboard input */  /* Send keyboard input */
599  void  void
600  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
601  {  {
602          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
603    

Legend:
Removed from v.118  
changed lines
  Added in v.331

  ViewVC Help
Powered by ViewVC 1.1.26