/[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 199 by astrand, Wed Sep 25 11:17:59 2002 UTC revision 212 by matthewc, Sun Oct 6 13:25:30 2002 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 36  extern char keymapname[16]; Line 36  extern char keymapname[16];
36  extern int keylayout;  extern int keylayout;
37  extern BOOL enable_compose;  extern BOOL enable_compose;
38    
39    static BOOL keymap_loaded;
40  static key_translation keymap[KEYMAP_SIZE];  static key_translation keymap[KEYMAP_SIZE];
41  static int min_keycode;  static int min_keycode;
42  static uint16 remote_modifier_state = 0;  static uint16 remote_modifier_state = 0;
43    
44  static void update_modifier_state(uint16 modifiers, BOOL pressed);  static void update_modifier_state(uint8 scancode, BOOL pressed);
45    
46  static void  static void
47  add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)  add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)
# Line 206  xkeymap_init(void) Line 207  xkeymap_init(void)
207          unsigned int max_keycode;          unsigned int max_keycode;
208    
209          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
210                  xkeymap_read(keymapname);          {
211                    if (xkeymap_read(keymapname))
212                            keymap_loaded = True;
213            }
214    
215          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
216  }  }
# Line 214  xkeymap_init(void) Line 218  xkeymap_init(void)
218  /* Handles, for example, multi-scancode keypresses (which is not  /* Handles, for example, multi-scancode keypresses (which is not
219     possible via keymap-files) */     possible via keymap-files) */
220  BOOL  BOOL
221  handle_special_keys(uint32 keysym, uint32 ev_time, BOOL pressed)  handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
222  {  {
223          switch (keysym)          switch (keysym)
224          {          {
225                  case XK_Break:                  case XK_Break:
226                          if (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R))                  case XK_Pause:
227                            if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
228                                    && (get_key_state(state, XK_Control_L) || get_key_state(state, XK_Control_R)))
229                          {                          {
230                                  /* toggle full screen */                                  /* Ctrl-Alt-Break: toggle full screen */
231                                  if (pressed)                                  if (pressed)
232                                          xwin_toggle_fullscreen();                                          xwin_toggle_fullscreen();
233    
234                          }                          }
235                          else                          else if (keysym == XK_Break)
236                          {                          {
237                                  /* Send Break sequence E0 46 E0 C6 */                                  /* Send Break sequence E0 46 E0 C6 */
238                                  if (pressed)                                  if (pressed)
# Line 238  handle_special_keys(uint32 keysym, uint3 Line 244  handle_special_keys(uint32 keysym, uint3
244                                  }                                  }
245                                  /* No break sequence */                                  /* No break sequence */
246                          }                          }
247                            else /* XK_Pause */
                         return True;  
                         break;  
   
                 case XK_Pause:  
                         /* According to MS Keyboard Scan Code  
                            Specification, pressing Pause should result  
                            in E1 1D 45 E1 9D C5. I'm not exactly sure  
                            of how this is supposed to be sent via  
                            RDP. The code below seems to work, but with  
                            the side effect that Left Ctrl stays  
                            down. Therefore, we release it when Pause  
                            is released. */  
                         if (pressed)  
248                          {                          {
249                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);                                  /* According to MS Keyboard Scan Code
250                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);                                     Specification, pressing Pause should result
251                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);                                     in E1 1D 45 E1 9D C5. I'm not exactly sure
252                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);                                     of how this is supposed to be sent via
253                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);                                     RDP. The code below seems to work, but with
254                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);                                     the side effect that Left Ctrl stays
255                          }                                     down. Therefore, we release it when Pause
256                          else                                     is released. */
257                          {                                  if (pressed)
258                                  // Release Left Ctrl                                  {
259                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,                                          rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
260                                                 0);                                          rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
261                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
262                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
263                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
264                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
265                                    }
266                                    else
267                                    {
268                                            /* Release Left Ctrl */
269                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,
270                                                           0);
271                                    }
272                          }                          }
   
273                          return True;                          return True;
                         break;  
274    
275                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
276                  case XK_Super_L:                  case XK_Super_L:
# Line 287  handle_special_keys(uint32 keysym, uint3 Line 289  handle_special_keys(uint32 keysym, uint3
289                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
290                          }                          }
291                          return True;                          return True;
                         break;  
292          }          }
293          return False;          return False;
294  }  }
# Line 324  xkeymap_translate_key(uint32 keysym, uns Line 325  xkeymap_translate_key(uint32 keysym, uns
325                  return tr;                  return tr;
326          }          }
327    
328          DEBUG_KBD(("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym)));          if (keymap_loaded)
329                    error("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
330    
331          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
332          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
# Line 471  ensure_remote_modifiers(uint32 ev_time, Line 473  ensure_remote_modifiers(uint32 ev_time,
473    
474    
475  void  void
476  reset_modifier_keys(void)  reset_modifier_keys(unsigned int state)
477  {  {
478          /* reset keys */          /* reset keys */
479          uint32 ev_time;          uint32 ev_time;
480          ev_time = time(NULL);          ev_time = time(NULL);
481    
482          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(XK_Shift_L))          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(state, XK_Shift_L))
483                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
484    
485          if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(XK_Shift_R))          if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(state, XK_Shift_R))
486                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
487    
488          if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(XK_Control_L))          if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(state, XK_Control_L))
489                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
490    
491          if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(XK_Control_R))          if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(state, XK_Control_R))
492                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
493    
494          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))
495                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
496    
497          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&          if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
498              !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))
499                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
500  }  }
501    
502    
503  static void  static void
504  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
505  {  {
506  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
507          uint16 old_modifier_state;          uint16 old_modifier_state;
# Line 507  update_modifier_state(uint16 modifiers, Line 509  update_modifier_state(uint16 modifiers,
509          old_modifier_state = remote_modifier_state;          old_modifier_state = remote_modifier_state;
510  #endif  #endif
511    
512          switch (modifiers)          switch (scancode)
513          {          {
514                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
515                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
# Line 561  update_modifier_state(uint16 modifiers, Line 563  update_modifier_state(uint16 modifiers,
563    
564  /* Send keyboard input */  /* Send keyboard input */
565  void  void
566  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
567  {  {
568          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
569    

Legend:
Removed from v.199  
changed lines
  Added in v.212

  ViewVC Help
Powered by ViewVC 1.1.26