/[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 170 by astrand, Tue Sep 17 08:18:41 2002 UTC revision 449 by astrand, Wed Aug 27 09:42:55 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 12  Line 12 
12     but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.     GNU General Public License for more details.
15      
16     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software     along with this program; if not, write to the Free Software
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 BOOL enable_compose;  extern int win_button_size;
42    extern BOOL g_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    static uint16 saved_remote_modifier_state = 0;
49    
50  static void update_modifier_state(uint16 modifiers, BOOL pressed);  static void update_modifier_state(uint8 scancode, BOOL pressed);
51    
52  static void  static void
53  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 57  add_to_keymap(char *keyname, uint8 scanc
57          keysym = XStringToKeysym(keyname);          keysym = XStringToKeysym(keyname);
58          if (keysym == NoSymbol)          if (keysym == NoSymbol)
59          {          {
60                  error("Bad keysym %s in keymap %s\n", keyname, mapname);                  DEBUG_KBD(("Bad keysym \"%s\" in keymap %s (ignoring)\n", keyname, mapname));
61                  return;                  return;
62          }          }
63    
# Line 69  static BOOL Line 75  static BOOL
75  xkeymap_read(char *mapname)  xkeymap_read(char *mapname)
76  {  {
77          FILE *fp;          FILE *fp;
78          char line[KEYMAP_MAX_LINE_LENGTH], path[PATH_MAX];          char line[KEYMAP_MAX_LINE_LENGTH];
79            char path[PATH_MAX], inplace_path[PATH_MAX];
80          unsigned int line_num = 0;          unsigned int line_num = 0;
81          unsigned int line_length = 0;          unsigned int line_length = 0;
82          char *keyname, *p;          char *keyname, *p;
# Line 84  xkeymap_read(char *mapname) Line 91  xkeymap_read(char *mapname)
91          fp = fopen(path, "r");          fp = fopen(path, "r");
92          if (fp == NULL)          if (fp == NULL)
93          {          {
94                  error("Failed to open keymap %s\n", path);                  /* in case we are running from the source tree */
95                  return False;                  strcpy(inplace_path, "keymaps/");
96                    strncat(inplace_path, mapname, sizeof(inplace_path) - sizeof("keymaps/"));
97    
98                    fp = fopen(inplace_path, "r");
99                    if (fp == NULL)
100                    {
101                            error("Failed to open keymap %s\n", path);
102                            return False;
103                    }
104          }          }
105    
106          /* FIXME: More tolerant on white space */          /* FIXME: More tolerant on white space */
# Line 126  xkeymap_read(char *mapname) Line 141  xkeymap_read(char *mapname)
141                  if (strncmp(line, "enable_compose", 15) == 0)                  if (strncmp(line, "enable_compose", 15) == 0)
142                  {                  {
143                          DEBUG_KBD(("Enabling compose handling\n"));                          DEBUG_KBD(("Enabling compose handling\n"));
144                          enable_compose = True;                          g_enable_compose = True;
145                          continue;                          continue;
146                  }                  }
147    
# Line 189  xkeymap_read(char *mapname) Line 204  xkeymap_read(char *mapname)
204                          /* Automatically add uppercase key, with same modifiers                          /* Automatically add uppercase key, with same modifiers
205                             plus shift */                             plus shift */
206                          for (p = keyname; *p; p++)                          for (p = keyname; *p; p++)
207                                  *p = toupper(*p);                                  *p = toupper((int) *p);
208                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);
209                          add_to_keymap(keyname, scancode, modifiers, mapname);                          add_to_keymap(keyname, scancode, modifiers, mapname);
210                  }                  }
# Line 205  void Line 220  void
220  xkeymap_init(void)  xkeymap_init(void)
221  {  {
222          unsigned int max_keycode;          unsigned int max_keycode;
223          int i;          char *mapname_ptr;
224    
225            /* Make keymapname lowercase */
226            mapname_ptr = keymapname;
227            while (*mapname_ptr)
228            {
229                    *mapname_ptr = tolower((int) *mapname_ptr);
230                    mapname_ptr++;
231            }
232    
233          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
234                  xkeymap_read(keymapname);          {
235                    if (xkeymap_read(keymapname))
236                            keymap_loaded = True;
237            }
238    
239          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
240  }  }
# Line 216  xkeymap_init(void) Line 242  xkeymap_init(void)
242  /* Handles, for example, multi-scancode keypresses (which is not  /* Handles, for example, multi-scancode keypresses (which is not
243     possible via keymap-files) */     possible via keymap-files) */
244  BOOL  BOOL
245  handle_special_keys(KeySym keysym, uint32 ev_time, BOOL pressed)  handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
246  {  {
247          switch (keysym)          switch (keysym)
248          {          {
249                  case XK_Break:  /* toggle full screen */                  case XK_Return:
250                          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))
251                                && (get_key_state(state, XK_Control_L)
252                                    || get_key_state(state, XK_Control_R)))
253                          {                          {
254                                  xwin_toggle_fullscreen();                                  /* Ctrl-Alt-Enter: toggle full screen */
255                                    if (pressed)
256                                            xwin_toggle_fullscreen();
257                                  return True;                                  return True;
258                          }                          }
259                          break;                          break;
260    
261                    case XK_Break:
262                            /* Send Break sequence E0 46 E0 C6 */
263                            if (pressed)
264                            {
265                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
266                                                      (SCANCODE_EXTENDED | 0x46));
267                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
268                                                      (SCANCODE_EXTENDED | 0xc6));
269                            }
270                            /* No release sequence */
271                            return True;
272    
273                    case XK_Pause:
274                            /* According to MS Keyboard Scan Code
275                               Specification, pressing Pause should result
276                               in E1 1D 45 E1 9D C5. I'm not exactly sure
277                               of how this is supposed to be sent via
278                               RDP. The code below seems to work, but with
279                               the side effect that Left Ctrl stays
280                               down. Therefore, we release it when Pause
281                               is released. */
282                            if (pressed)
283                            {
284                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
285                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
286                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
287                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
288                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
289                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
290                            }
291                            else
292                            {
293                                    /* Release Left Ctrl */
294                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE,
295                                                   0x1d, 0);
296                            }
297                            return True;
298    
299                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
300                  case XK_Super_L:                  case XK_Super_L:
301                  case XK_Hyper_L:                  case XK_Hyper_L:
# Line 245  handle_special_keys(KeySym keysym, uint3 Line 313  handle_special_keys(KeySym keysym, uint3
313                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
314                          }                          }
315                          return True;                          return True;
316                          break;  
317                    case XK_space:
318                            /* Prevent access to the Windows system menu in single app mode */
319                            if (win_button_size
320                                && (get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R)))
321                                    return True;
322    
323          }          }
324          return False;          return False;
325  }  }
326    
327    
328  key_translation  key_translation
329  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
330  {  {
331          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
332    
# Line 277  xkeymap_translate_key(KeySym keysym, uns Line 351  xkeymap_translate_key(KeySym keysym, uns
351    
352          if (tr.scancode != 0)          if (tr.scancode != 0)
353          {          {
354                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
355                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
356                  return tr;                  return tr;
357          }          }
358    
359          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));          if (keymap_loaded)
360                    warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
361    
362          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
363          if ((keycode >= min_keycode) && (keycode <= 0x60))          if (((int) keycode >= min_keycode) && (keycode <= 0x60))
364          {          {
365                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
366    
# Line 298  xkeymap_translate_key(KeySym keysym, uns Line 372  xkeymap_translate_key(KeySym keysym, uns
372                          tr.modifiers = MapLeftShiftMask;                          tr.modifiers = MapLeftShiftMask;
373                  }                  }
374    
375                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);                  DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
376          }          }
377          else          else
378          {          {
379                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
380          }          }
381    
382          return tr;          return tr;
# Line 329  xkeymap_translate_button(unsigned int bu Line 403  xkeymap_translate_button(unsigned int bu
403  }  }
404    
405  char *  char *
406  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
407  {  {
408          char *ksname = NULL;          char *ksname = NULL;
409    
# Line 341  get_ksname(KeySym keysym) Line 415  get_ksname(KeySym keysym)
415          return ksname;          return ksname;
416  }  }
417    
418    void
419    save_remote_modifiers()
420    {
421            saved_remote_modifier_state = remote_modifier_state;
422    }
423    
424    void
425    restore_remote_modifiers(uint32 ev_time)
426    {
427            key_translation dummy;
428    
429            dummy.scancode = 0;
430            dummy.modifiers = saved_remote_modifier_state;
431            ensure_remote_modifiers(ev_time, dummy);
432    }
433    
434  void  void
435  ensure_remote_modifiers(uint32 ev_time, key_translation tr)  ensure_remote_modifiers(uint32 ev_time, key_translation tr)
# Line 362  ensure_remote_modifiers(uint32 ev_time, Line 451  ensure_remote_modifiers(uint32 ev_time,
451                          break;                          break;
452          }          }
453    
454          /* Shift */          /* NumLock */
455            if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)
456                != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
457            {
458                    /* The remote modifier state is not correct */
459                    uint16 new_remote_state;
460    
461                    if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
462                    {
463                            DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
464                            new_remote_state = KBD_FLAG_NUMLOCK;
465                            remote_modifier_state = MapNumLockMask;
466                    }
467                    else
468                    {
469                            DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
470                            new_remote_state = 0;
471                            remote_modifier_state = 0;
472                    }
473    
474                    rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
475            }
476    
477            /* Shift. Left shift and right shift are treated as equal; either is fine. */
478          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
479              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
480          {          {
481                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
482                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
483                  {                  {
484                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
485                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
486                  }                  }
487                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
488                    {
489                            /* Needs right shift. Send down. */
490                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
491                    }
492                  else                  else
493                  {                  {
494                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
495                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
496                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);                                  /* Left shift is down */
497                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
498                            else
499                                    /* Right shift is down */
500                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
501                  }                  }
502          }          }
503    
# Line 397  ensure_remote_modifiers(uint32 ev_time, Line 518  ensure_remote_modifiers(uint32 ev_time,
518                  }                  }
519          }          }
520    
         /* 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;  
521    
                 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"));  
                 }  
   
                 rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);  
                 update_modifier_state(SCANCODE_CHAR_NUMLOCK, True);  
         }  
522  }  }
523    
524    
525  void  void
526  reset_modifier_keys()  reset_modifier_keys(unsigned int state)
527  {  {
528          /* reset keys */          /* reset keys */
529          uint32 ev_time;          uint32 ev_time;
530          ev_time = time(NULL);          ev_time = time(NULL);
531    
532          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(XK_Shift_L))          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask)
533                && !get_key_state(state, XK_Shift_L))
534                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
535    
536          if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(XK_Shift_R))          if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask)
537                && !get_key_state(state, XK_Shift_R))
538                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
539    
540          if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(XK_Control_L))          if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask)
541                && !get_key_state(state, XK_Control_L))
542                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
543    
544          if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(XK_Control_R))          if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask)
545                && !get_key_state(state, XK_Control_R))
546                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
547    
548          if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(XK_Alt_L))          if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))
549                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
550    
551          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
552              !get_key_state(XK_Alt_R) && !get_key_state(XK_Mode_switch))              !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))
553                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
554  }  }
555    
556    
557  static void  static void
558  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
559  {  {
560  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
561          uint16 old_modifier_state;          uint16 old_modifier_state;
# Line 457  update_modifier_state(uint16 modifiers, Line 563  update_modifier_state(uint16 modifiers,
563          old_modifier_state = remote_modifier_state;          old_modifier_state = remote_modifier_state;
564  #endif  #endif
565    
566          switch (modifiers)          switch (scancode)
567          {          {
568                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
569                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
# Line 511  update_modifier_state(uint16 modifiers, Line 617  update_modifier_state(uint16 modifiers,
617    
618  /* Send keyboard input */  /* Send keyboard input */
619  void  void
620  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
621  {  {
622          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
623    

Legend:
Removed from v.170  
changed lines
  Added in v.449

  ViewVC Help
Powered by ViewVC 1.1.26