/[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 115 by astrand, Wed Sep 11 09:52:30 2002 UTC revision 333 by astrand, Thu Feb 20 12:14:13 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 18  Line 18 
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */  */
20    
21    #ifdef RDP2VNC
22    #include "vnc/x11stubs.h"
23    #else
24  #include <X11/Xlib.h>  #include <X11/Xlib.h>
25  #include <X11/keysym.h>  #include <X11/keysym.h>
26  #include <stdio.h>  #endif
27  #include <stdlib.h>  
 #include <string.h>  
28  #include <ctype.h>  #include <ctype.h>
29  #include <limits.h>  #include <limits.h>
30    #include <time.h>
31  #include "rdesktop.h"  #include "rdesktop.h"
32  #include "scancodes.h"  #include "scancodes.h"
33    
34  #define KEYMAP_SIZE 4096  #define KEYMAP_SIZE 0xffff+1
35  #define KEYMAP_MASK (KEYMAP_SIZE - 1)  #define KEYMAP_MASK 0xffff
36  #define KEYMAP_MAX_LINE_LENGTH 80  #define KEYMAP_MAX_LINE_LENGTH 80
37    
38  extern Display *display;  extern Display *display;
39  extern char keymapname[16];  extern char keymapname[16];
40  extern int keylayout;  extern int keylayout;
41    extern int win_button_size;
42  extern BOOL enable_compose;  extern BOOL enable_compose;
43    
44    static BOOL keymap_loaded;
45  static key_translation keymap[KEYMAP_SIZE];  static key_translation keymap[KEYMAP_SIZE];
46  static int min_keycode;  static int min_keycode;
47  static uint16 remote_modifier_state = 0;  static uint16 remote_modifier_state = 0;
48    
49  static void update_modifier_state(uint16 modifiers, BOOL pressed);  static void update_modifier_state(uint8 scancode, BOOL pressed);
50    
51  static void  static void
52  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 56  add_to_keymap(char *keyname, uint8 scanc
56          keysym = XStringToKeysym(keyname);          keysym = XStringToKeysym(keyname);
57          if (keysym == NoSymbol)          if (keysym == NoSymbol)
58          {          {
59                  error("Bad keysym %s in keymap %s\n", keyname, mapname);                  DEBUG_KBD(("Bad keysym \"%s\" in keymap %s (ignoring)\n", keyname, mapname));
60                  return;                  return;
61          }          }
62    
# Line 69  static BOOL Line 74  static BOOL
74  xkeymap_read(char *mapname)  xkeymap_read(char *mapname)
75  {  {
76          FILE *fp;          FILE *fp;
77          char line[KEYMAP_MAX_LINE_LENGTH], path[PATH_MAX];          char line[KEYMAP_MAX_LINE_LENGTH];
78            char path[PATH_MAX], inplace_path[PATH_MAX];
79          unsigned int line_num = 0;          unsigned int line_num = 0;
80          unsigned int line_length = 0;          unsigned int line_length = 0;
81          char *keyname, *p;          char *keyname, *p;
# Line 84  xkeymap_read(char *mapname) Line 90  xkeymap_read(char *mapname)
90          fp = fopen(path, "r");          fp = fopen(path, "r");
91          if (fp == NULL)          if (fp == NULL)
92          {          {
93                  error("Failed to open keymap %s\n", path);                  /* in case we are running from the source tree */
94                  return False;                  strcpy(inplace_path, "keymaps/");
95                    strncat(inplace_path, mapname, sizeof(inplace_path) - sizeof("keymaps/"));
96    
97                    fp = fopen(inplace_path, "r");
98                    if (fp == NULL)
99                    {
100                            error("Failed to open keymap %s\n", path);
101                            return False;
102                    }
103          }          }
104    
105          /* FIXME: More tolerant on white space */          /* FIXME: More tolerant on white space */
# Line 177  xkeymap_read(char *mapname) Line 191  xkeymap_read(char *mapname)
191                          MASK_ADD_BITS(modifiers, MapLocalStateMask);                          MASK_ADD_BITS(modifiers, MapLocalStateMask);
192                  }                  }
193    
194                    if (strstr(line_rest, "inhibit"))
195                    {
196                            MASK_ADD_BITS(modifiers, MapInhibitMask);
197                    }
198    
199                  add_to_keymap(keyname, scancode, modifiers, mapname);                  add_to_keymap(keyname, scancode, modifiers, mapname);
200    
201                  if (strstr(line_rest, "addupper"))                  if (strstr(line_rest, "addupper"))
# Line 184  xkeymap_read(char *mapname) Line 203  xkeymap_read(char *mapname)
203                          /* Automatically add uppercase key, with same modifiers                          /* Automatically add uppercase key, with same modifiers
204                             plus shift */                             plus shift */
205                          for (p = keyname; *p; p++)                          for (p = keyname; *p; p++)
206                                  *p = toupper(*p);                                  *p = toupper((int) *p);
207                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);
208                          add_to_keymap(keyname, scancode, modifiers, mapname);                          add_to_keymap(keyname, scancode, modifiers, mapname);
209                  }                  }
# Line 197  xkeymap_read(char *mapname) Line 216  xkeymap_read(char *mapname)
216    
217  /* Before connecting and creating UI */  /* Before connecting and creating UI */
218  void  void
219  xkeymap_init1(void)  xkeymap_init(void)
220  {  {
221          int i;          unsigned int max_keycode;
222            char *mapname_ptr;
223    
224          /* Zeroing keymap */          /* Make keymapname lowercase */
225          for (i = 0; i < KEYMAP_SIZE; i++)          mapname_ptr = keymapname;
226            while (*mapname_ptr)
227          {          {
228                  keymap[i].scancode = 0;                  *mapname_ptr = tolower((int) *mapname_ptr);
229                  keymap[i].modifiers = 0;                  mapname_ptr++;
230          }          }
231    
232          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
233          {          {
234                  xkeymap_read(keymapname);                  if (xkeymap_read(keymapname))
235                            keymap_loaded = True;
236          }          }
237    
238            XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
239  }  }
240    
241  /* After connecting and creating UI */  /* Handles, for example, multi-scancode keypresses (which is not
242  void     possible via keymap-files) */
243  xkeymap_init2(void)  BOOL
244    handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
245  {  {
246          unsigned int max_keycode;          switch (keysym)
247          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          {
248                    case XK_Return:
249                            if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
250                                && (get_key_state(state, XK_Control_L)
251                                    || get_key_state(state, XK_Control_R)))
252                            {
253                                    /* Ctrl-Alt-Enter: toggle full screen */
254                                    if (pressed)
255                                            xwin_toggle_fullscreen();
256                                    return True;
257                            }
258                            break;
259    
260                    case XK_Break:
261                            /* Send Break sequence E0 46 E0 C6 */
262                            if (pressed)
263                            {
264                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
265                                                      (SCANCODE_EXTENDED | 0x46));
266                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
267                                                      (SCANCODE_EXTENDED | 0xc6));
268                            }
269                            /* No release sequence */
270                            return True;
271    
272                    case XK_Pause:
273                            /* According to MS Keyboard Scan Code
274                               Specification, pressing Pause should result
275                               in E1 1D 45 E1 9D C5. I'm not exactly sure
276                               of how this is supposed to be sent via
277                               RDP. The code below seems to work, but with
278                               the side effect that Left Ctrl stays
279                               down. Therefore, we release it when Pause
280                               is released. */
281                            if (pressed)
282                            {
283                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
284                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
285                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
286                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
287                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
288                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
289                            }
290                            else
291                            {
292                                    /* Release Left Ctrl */
293                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE,
294                                                   0x1d, 0);
295                            }
296                            return True;
297    
298                    case XK_Meta_L: /* Windows keys */
299                    case XK_Super_L:
300                    case XK_Hyper_L:
301                    case XK_Meta_R:
302                    case XK_Super_R:
303                    case XK_Hyper_R:
304                            if (pressed)
305                            {
306                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);
307                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);
308                            }
309                            else
310                            {
311                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);
312                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
313                            }
314                            return True;
315    
316                    case XK_space:
317                            /* Prevent access to the Windows system menu in single app mode */
318                            if (win_button_size
319                                && (get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R)))
320                                    return True;
321    
322            }
323            return False;
324  }  }
325    
326    
327  key_translation  key_translation
328  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
329  {  {
330          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
331    
332          tr = keymap[keysym & KEYMAP_MASK];          tr = keymap[keysym & KEYMAP_MASK];
333    
334            if (tr.modifiers & MapInhibitMask)
335            {
336                    DEBUG_KBD(("Inhibiting key\n"));
337                    tr.scancode = 0;
338                    return tr;
339            }
340    
341          if (tr.modifiers & MapLocalStateMask)          if (tr.modifiers & MapLocalStateMask)
342          {          {
343                  /* The modifiers to send for this key should be obtained                  /* The modifiers to send for this key should be obtained
# Line 243  xkeymap_translate_key(KeySym keysym, uns Line 350  xkeymap_translate_key(KeySym keysym, uns
350    
351          if (tr.scancode != 0)          if (tr.scancode != 0)
352          {          {
353                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
354                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
355                  return tr;                  return tr;
356          }          }
357    
358          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));          if (keymap_loaded)
359                    warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
360    
361          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
362          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
363          {          {
364                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
365                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);  
366                    /* The modifiers to send for this key should be
367                       obtained from the local state. Currently, only
368                       shift is implemented. */
369                    if (state & ShiftMask)
370                    {
371                            tr.modifiers = MapLeftShiftMask;
372                    }
373    
374                    DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
375          }          }
376          else          else
377          {          {
378                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
379          }          }
380    
381          return tr;          return tr;
# Line 286  xkeymap_translate_button(unsigned int bu Line 402  xkeymap_translate_button(unsigned int bu
402  }  }
403    
404  char *  char *
405  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
406  {  {
407          char *ksname = NULL;          char *ksname = NULL;
408    
# Line 298  get_ksname(KeySym keysym) Line 414  get_ksname(KeySym keysym)
414          return ksname;          return ksname;
415  }  }
416    
 BOOL  
 inhibit_key(KeySym keysym)  
 {  
         switch (keysym)  
         {  
                 case XK_Caps_Lock:  
                         return True;  
                         break;  
                 case XK_Multi_key:  
                         return True;  
                         break;  
                 case XK_Num_Lock:  
                         return True;  
                         break;  
                 default:  
                         break;  
         }  
         return False;  
 }  
417    
418  void  void
419  ensure_remote_modifiers(uint32 ev_time, key_translation tr)  ensure_remote_modifiers(uint32 ev_time, key_translation tr)
# Line 338  ensure_remote_modifiers(uint32 ev_time, Line 435  ensure_remote_modifiers(uint32 ev_time,
435                          break;                          break;
436          }          }
437    
438          /* Shift */          /* NumLock */
439            if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)
440                != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
441            {
442                    /* The remote modifier state is not correct */
443                    uint16 new_remote_state;
444    
445                    if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
446                    {
447                            DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
448                            new_remote_state = KBD_FLAG_NUMLOCK;
449                            remote_modifier_state = MapNumLockMask;
450                    }
451                    else
452                    {
453                            DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
454                            new_remote_state = 0;
455                            remote_modifier_state = 0;
456                    }
457    
458                    rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
459            }
460    
461            /* Shift. Left shift and right shift are treated as equal; either is fine. */
462          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
463              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
464          {          {
465                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
466                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
467                  {                  {
468                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
469                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
470                  }                  }
471                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
472                    {
473                            /* Needs right shift. Send down. */
474                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
475                    }
476                  else                  else
477                  {                  {
478                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
479                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
480                                    /* Left shift is down */
481                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
482                            else
483                                    /* Right shift is down */
484                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
485                  }                  }
486          }          }
487    
# Line 372  ensure_remote_modifiers(uint32 ev_time, Line 502  ensure_remote_modifiers(uint32 ev_time,
502                  }                  }
503          }          }
504    
         /* 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;  
505    
506                  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"));  
                 }  
507    
508                  rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);  
509                  update_modifier_state(SCANCODE_CHAR_NUMLOCK, True);  void
510          }  reset_modifier_keys(unsigned int state)
511    {
512            /* reset keys */
513            uint32 ev_time;
514            ev_time = time(NULL);
515    
516            if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask)
517                && !get_key_state(state, XK_Shift_L))
518                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
519    
520            if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask)
521                && !get_key_state(state, XK_Shift_R))
522                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
523    
524            if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask)
525                && !get_key_state(state, XK_Control_L))
526                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
527    
528            if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask)
529                && !get_key_state(state, XK_Control_R))
530                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
531    
532            if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))
533                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
534    
535            if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
536                !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))
537                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
538  }  }
539    
540    
541  static void  static void
542  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
543  {  {
544  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
545          uint16 old_modifier_state;          uint16 old_modifier_state;
# Line 404  update_modifier_state(uint16 modifiers, Line 547  update_modifier_state(uint16 modifiers,
547          old_modifier_state = remote_modifier_state;          old_modifier_state = remote_modifier_state;
548  #endif  #endif
549    
550          switch (modifiers)          switch (scancode)
551          {          {
552                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
553                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
# Line 458  update_modifier_state(uint16 modifiers, Line 601  update_modifier_state(uint16 modifiers,
601    
602  /* Send keyboard input */  /* Send keyboard input */
603  void  void
604  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
605  {  {
606          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
607    

Legend:
Removed from v.115  
changed lines
  Added in v.333

  ViewVC Help
Powered by ViewVC 1.1.26