/[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 414 by forsberg, Fri Jun 6 11:09:24 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 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 189  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 205  void Line 219  void
219  xkeymap_init(void)  xkeymap_init(void)
220  {  {
221          unsigned int max_keycode;          unsigned int max_keycode;
222          int i;          char *mapname_ptr;
223    
224            /* Make keymapname lowercase */
225            mapname_ptr = keymapname;
226            while (*mapname_ptr)
227            {
228                    *mapname_ptr = tolower((int) *mapname_ptr);
229                    mapname_ptr++;
230            }
231    
232          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
233                  xkeymap_read(keymapname);          {
234                    if (xkeymap_read(keymapname))
235                            keymap_loaded = True;
236            }
237    
238          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
239  }  }
# Line 216  xkeymap_init(void) Line 241  xkeymap_init(void)
241  /* Handles, for example, multi-scancode keypresses (which is not  /* Handles, for example, multi-scancode keypresses (which is not
242     possible via keymap-files) */     possible via keymap-files) */
243  BOOL  BOOL
244  handle_special_keys(KeySym keysym, uint32 ev_time, BOOL pressed)  handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
245  {  {
246          switch (keysym)          switch (keysym)
247          {          {
248                  case XK_Break:  /* toggle full screen */                  case XK_Return:
249                          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))
250                                && (get_key_state(state, XK_Control_L)
251                                    || get_key_state(state, XK_Control_R)))
252                          {                          {
253                                  xwin_toggle_fullscreen();                                  /* Ctrl-Alt-Enter: toggle full screen */
254                                    if (pressed)
255                                            xwin_toggle_fullscreen();
256                                  return True;                                  return True;
257                          }                          }
258                          break;                          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 */                  case XK_Meta_L: /* Windows keys */
299                  case XK_Super_L:                  case XK_Super_L:
300                  case XK_Hyper_L:                  case XK_Hyper_L:
# Line 245  handle_special_keys(KeySym keysym, uint3 Line 312  handle_special_keys(KeySym keysym, uint3
312                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
313                          }                          }
314                          return True;                          return True;
315                          break;  
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;          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    
# Line 277  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 (((int) keycode >= min_keycode) && (keycode <= 0x60))
363          {          {
364                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
365    
# Line 298  xkeymap_translate_key(KeySym keysym, uns Line 371  xkeymap_translate_key(KeySym keysym, uns
371                          tr.modifiers = MapLeftShiftMask;                          tr.modifiers = MapLeftShiftMask;
372                  }                  }
373    
374                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);                  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 329  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 362  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                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);                                  /* 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 397  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    
                 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);  
         }  
506  }  }
507    
508    
509  void  void
510  reset_modifier_keys()  reset_modifier_keys(unsigned int state)
511  {  {
512          /* reset keys */          /* reset keys */
513          uint32 ev_time;          uint32 ev_time;
514          ev_time = time(NULL);          ev_time = time(NULL);
515    
516          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(XK_Shift_L))          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);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
519    
520          if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(XK_Shift_R))          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);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
523    
524          if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(XK_Control_L))          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);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
527    
528          if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(XK_Control_R))          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);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
531    
532          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))
533                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
534    
535          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
536              !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))
537                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);                  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 457  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 511  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.170  
changed lines
  Added in v.414

  ViewVC Help
Powered by ViewVC 1.1.26