/[rdesktop]/jpeg/rdesktop/trunk/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 /jpeg/rdesktop/trunk/xkeymap.c

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

revision 318 by astrand, Mon Feb 10 12:58:51 2003 UTC revision 810 by stargo, Sun Jan 23 19:29:31 2005 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    
5     Copyright (C) Matthew Chapman 1999-2002     Copyright (C) Matthew Chapman 1999-2002
6       Copyright (C) Peter Astrand <peter@cendio.se> 2003
7        
8     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
9     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 14 
14     but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.     GNU General Public License for more details.
17      
18     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software     along with this program; if not, write to the Free Software
20     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */  */
22    
23    #ifdef RDP2VNC
24    #include "vnc/x11stubs.h"
25    #else
26  #include <X11/Xlib.h>  #include <X11/Xlib.h>
27  #define XK_MISCELLANY  #include <X11/keysym.h>
28  #include <X11/keysymdef.h>  #endif
29    
30  #include <ctype.h>  #include <ctype.h>
31  #include <limits.h>  #include <limits.h>
32  #include <time.h>  #include <time.h>
# Line 31  Line 37 
37  #define KEYMAP_MASK 0xffff  #define KEYMAP_MASK 0xffff
38  #define KEYMAP_MAX_LINE_LENGTH 80  #define KEYMAP_MAX_LINE_LENGTH 80
39    
40  extern Display *display;  extern Display *g_display;
41    extern Window g_wnd;
42  extern char keymapname[16];  extern char keymapname[16];
43  extern int keylayout;  extern int g_keylayout;
44  extern BOOL enable_compose;  extern int g_win_button_size;
45    extern BOOL g_enable_compose;
46    extern BOOL g_use_rdp5;
47    extern BOOL g_numlock_sync;
48    
49  static BOOL keymap_loaded;  static BOOL keymap_loaded;
50  static key_translation keymap[KEYMAP_SIZE];  static key_translation keymap[KEYMAP_SIZE];
51  static int min_keycode;  static int min_keycode;
52  static uint16 remote_modifier_state = 0;  static uint16 remote_modifier_state = 0;
53    static uint16 saved_remote_modifier_state = 0;
54    
55  static void update_modifier_state(uint8 scancode, BOOL pressed);  static void update_modifier_state(uint8 scancode, BOOL pressed);
56    
# Line 51  add_to_keymap(char *keyname, uint8 scanc Line 62  add_to_keymap(char *keyname, uint8 scanc
62          keysym = XStringToKeysym(keyname);          keysym = XStringToKeysym(keyname);
63          if (keysym == NoSymbol)          if (keysym == NoSymbol)
64          {          {
65                  warning("Bad keysym %s in keymap %s\n", keyname, mapname);                  DEBUG_KBD(("Bad keysym \"%s\" in keymap %s (ignoring)\n", keyname, mapname));
66                  return;                  return;
67          }          }
68    
# Line 126  xkeymap_read(char *mapname) Line 137  xkeymap_read(char *mapname)
137                  /* map */                  /* map */
138                  if (strncmp(line, "map ", 4) == 0)                  if (strncmp(line, "map ", 4) == 0)
139                  {                  {
140                          keylayout = strtol(line + 4, NULL, 16);                          g_keylayout = strtol(line + 4, NULL, 16);
141                          DEBUG_KBD(("Keylayout 0x%x\n", keylayout));                          DEBUG_KBD(("Keylayout 0x%x\n", g_keylayout));
142                          continue;                          continue;
143                  }                  }
144    
# Line 135  xkeymap_read(char *mapname) Line 146  xkeymap_read(char *mapname)
146                  if (strncmp(line, "enable_compose", 15) == 0)                  if (strncmp(line, "enable_compose", 15) == 0)
147                  {                  {
148                          DEBUG_KBD(("Enabling compose handling\n"));                          DEBUG_KBD(("Enabling compose handling\n"));
149                          enable_compose = True;                          g_enable_compose = True;
150                          continue;                          continue;
151                  }                  }
152    
# Line 230  xkeymap_init(void) Line 241  xkeymap_init(void)
241                          keymap_loaded = True;                          keymap_loaded = True;
242          }          }
243    
244          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          XDisplayKeycodes(g_display, &min_keycode, (int *) &max_keycode);
245    }
246    
247    static void
248    send_winkey(uint32 ev_time, BOOL pressed, BOOL leftkey)
249    {
250            uint8 winkey;
251    
252            if (leftkey)
253                    winkey = SCANCODE_CHAR_LWIN;
254            else
255                    winkey = SCANCODE_CHAR_RWIN;
256    
257            if (pressed)
258            {
259                    if (g_use_rdp5)
260                    {
261                            rdp_send_scancode(ev_time, RDP_KEYPRESS, winkey);
262                    }
263                    else
264                    {
265                            /* RDP4 doesn't support winkey. Fake with Ctrl-Esc */
266                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);
267                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);
268                    }
269            }
270            else
271            {
272                    /* key released */
273                    if (g_use_rdp5)
274                    {
275                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, winkey);
276                    }
277                    else
278                    {
279                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);
280                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
281                    }
282            }
283    }
284    
285    static void
286    reset_winkey(uint32 ev_time)
287    {
288            if (g_use_rdp5)
289            {
290                    /* For some reason, it seems to suffice to release
291                     *either* the left or right winkey. */
292                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LWIN);
293            }
294  }  }
295    
296  /* Handles, for example, multi-scancode keypresses (which is not  /* Handles, for example, multi-scancode keypresses (which is not
# Line 263  handle_special_keys(uint32 keysym, unsig Line 323  handle_special_keys(uint32 keysym, unsig
323                          }                          }
324                          /* No release sequence */                          /* No release sequence */
325                          return True;                          return True;
326                            break;
327    
328                  case XK_Pause:                  case XK_Pause:
329                          /* According to MS Keyboard Scan Code                          /* According to MS Keyboard Scan Code
# Line 289  handle_special_keys(uint32 keysym, unsig Line 350  handle_special_keys(uint32 keysym, unsig
350                                                 0x1d, 0);                                                 0x1d, 0);
351                          }                          }
352                          return True;                          return True;
353                            break;
354    
355                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
356                  case XK_Super_L:                  case XK_Super_L:
357                  case XK_Hyper_L:                  case XK_Hyper_L:
358                            send_winkey(ev_time, pressed, True);
359                            return True;
360                            break;
361    
362                  case XK_Meta_R:                  case XK_Meta_R:
363                  case XK_Super_R:                  case XK_Super_R:
364                  case XK_Hyper_R:                  case XK_Hyper_R:
365                          if (pressed)                          send_winkey(ev_time, pressed, False);
                         {  
                                 rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);  
                                 rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);  
                         }  
                         else  
                         {  
                                 rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);  
                                 rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);  
                         }  
366                          return True;                          return True;
367                            break;
368    
369                    case XK_space:
370                            /* Prevent access to the Windows system menu in single app mode */
371                            if (g_win_button_size
372                                && (get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R)))
373                                    return True;
374                            break;
375                    case XK_Num_Lock:
376                            /* FIXME: We might want to do RDP_INPUT_SYNCHRONIZE here, if g_numlock_sync */
377                            if (!g_numlock_sync)
378                                    /* Inhibit */
379                                    return True;
380                            break;
381    
382          }          }
383          return False;          return False;
384  }  }
# Line 336  xkeymap_translate_key(uint32 keysym, uns Line 408  xkeymap_translate_key(uint32 keysym, uns
408                  }                  }
409          }          }
410    
411            if (((remote_modifier_state & MapLeftCtrlMask)
412                 || (remote_modifier_state & MapRightCtrlMask)) && get_key_state(state, XK_Caps_Lock))
413            {
414                    DEBUG_KBD(("CapsLock + Ctrl pressed, releasing LeftShift\n"));
415                    tr.modifiers ^= MapLeftShiftMask;
416            }
417    
418          if (tr.scancode != 0)          if (tr.scancode != 0)
419          {          {
420                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
# Line 347  xkeymap_translate_key(uint32 keysym, uns Line 426  xkeymap_translate_key(uint32 keysym, uns
426                  warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));                  warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
427    
428          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
429          if ((keycode >= min_keycode) && (keycode <= 0x60))          if (((int) keycode >= min_keycode) && (keycode <= 0x60))
430          {          {
431                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
432    
# Line 402  get_ksname(uint32 keysym) Line 481  get_ksname(uint32 keysym)
481          return ksname;          return ksname;
482  }  }
483    
484    static BOOL
485  void  is_modifier(uint8 scancode)
 ensure_remote_modifiers(uint32 ev_time, key_translation tr)  
486  {  {
487          /* If this key is a modifier, do nothing */          switch (scancode)
         switch (tr.scancode)  
488          {          {
489                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
490                  case SCANCODE_CHAR_RSHIFT:                  case SCANCODE_CHAR_RSHIFT:
# Line 418  ensure_remote_modifiers(uint32 ev_time, Line 495  ensure_remote_modifiers(uint32 ev_time,
495                  case SCANCODE_CHAR_LWIN:                  case SCANCODE_CHAR_LWIN:
496                  case SCANCODE_CHAR_RWIN:                  case SCANCODE_CHAR_RWIN:
497                  case SCANCODE_CHAR_NUMLOCK:                  case SCANCODE_CHAR_NUMLOCK:
498                          return;                          return True;
499                  default:                  default:
500                          break;                          break;
501          }          }
502            return False;
503    }
504    
505          /* NumLock */  void
506          if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)  save_remote_modifiers(uint8 scancode)
507              != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))  {
508          {          if (is_modifier(scancode))
509                  /* The remote modifier state is not correct */                  return;
                 uint16 new_remote_state;  
510    
511                  if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))          saved_remote_modifier_state = remote_modifier_state;
512                  {  }
513                          DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));  
514                          new_remote_state = KBD_FLAG_NUMLOCK;  void
515                          remote_modifier_state = MapNumLockMask;  restore_remote_modifiers(uint32 ev_time, uint8 scancode)
516                  }  {
517                  else          key_translation dummy;
518    
519            if (is_modifier(scancode))
520                    return;
521    
522            dummy.scancode = 0;
523            dummy.modifiers = saved_remote_modifier_state;
524            ensure_remote_modifiers(ev_time, dummy);
525    }
526    
527    void
528    ensure_remote_modifiers(uint32 ev_time, key_translation tr)
529    {
530            /* If this key is a modifier, do nothing */
531            if (is_modifier(tr.scancode))
532                    return;
533    
534            if (!g_numlock_sync)
535            {
536                    /* NumLock */
537                    if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)
538                        != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
539                  {                  {
540                          DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));                          /* The remote modifier state is not correct */
541                          new_remote_state = 0;                          uint16 new_remote_state;
542                          remote_modifier_state = 0;  
543                  }                          if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
544                            {
545                                    DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
546                                    new_remote_state = KBD_FLAG_NUMLOCK;
547                                    remote_modifier_state = MapNumLockMask;
548                            }
549                            else
550                            {
551                                    DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
552                                    new_remote_state = 0;
553                                    remote_modifier_state = 0;
554                            }
555    
556                  rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);                          rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
557                    }
558          }          }
559    
560    
561          /* Shift. Left shift and right shift are treated as equal; either is fine. */          /* Shift. Left shift and right shift are treated as equal; either is fine. */
562          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
563              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
# Line 494  ensure_remote_modifiers(uint32 ev_time, Line 606  ensure_remote_modifiers(uint32 ev_time,
606  }  }
607    
608    
609    unsigned int
610    read_keyboard_state()
611    {
612    #ifdef RDP2VNC
613            return 0;
614    #else
615            unsigned int state;
616            Window wdummy;
617            int dummy;
618    
619            XQueryPointer(g_display, g_wnd, &wdummy, &wdummy, &dummy, &dummy, &dummy, &dummy, &state);
620            return state;
621    #endif
622    }
623    
624    
625    uint16
626    ui_get_numlock_state(unsigned int state)
627    {
628            uint16 numlock_state = 0;
629    
630            if (get_key_state(state, XK_Num_Lock))
631                    numlock_state = KBD_FLAG_NUMLOCK;
632    
633            return numlock_state;
634    }
635    
636    
637  void  void
638  reset_modifier_keys(unsigned int state)  reset_modifier_keys()
639  {  {
640            unsigned int state = read_keyboard_state();
641    
642          /* reset keys */          /* reset keys */
643          uint32 ev_time;          uint32 ev_time;
644          ev_time = time(NULL);          ev_time = time(NULL);
# Line 521  reset_modifier_keys(unsigned int state) Line 663  reset_modifier_keys(unsigned int state)
663                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
664    
665          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
666              !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))              !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch)
667                && !get_key_state(state, XK_ISO_Level3_Shift))
668                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
669    
670            reset_winkey(ev_time);
671    
672            if (g_numlock_sync)
673                    rdp_send_input(ev_time, RDP_INPUT_SYNCHRONIZE, 0, ui_get_numlock_state(state), 0);
674  }  }
675    
676    
# Line 564  update_modifier_state(uint8 scancode, BO Line 712  update_modifier_state(uint8 scancode, BO
712                  case SCANCODE_CHAR_NUMLOCK:                  case SCANCODE_CHAR_NUMLOCK:
713                          /* KeyReleases for NumLocks are sent immediately. Toggle the                          /* KeyReleases for NumLocks are sent immediately. Toggle the
714                             modifier state only on Keypress */                             modifier state only on Keypress */
715                          if (pressed)                          if (pressed && !g_numlock_sync)
716                          {                          {
717                                  BOOL newNumLockState;                                  BOOL newNumLockState;
718                                  newNumLockState =                                  newNumLockState =
# Line 573  update_modifier_state(uint8 scancode, BO Line 721  update_modifier_state(uint8 scancode, BO
721                                  MASK_CHANGE_BIT(remote_modifier_state,                                  MASK_CHANGE_BIT(remote_modifier_state,
722                                                  MapNumLockMask, newNumLockState);                                                  MapNumLockMask, newNumLockState);
723                          }                          }
                         break;  
724          }          }
725    
726  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD

Legend:
Removed from v.318  
changed lines
  Added in v.810

  ViewVC Help
Powered by ViewVC 1.1.26