/[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 121 by matthewc, Sat Sep 14 11:48:44 2002 UTC revision 225 by astrand, Fri Oct 11 08:54:08 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 19  Line 19 
19  */  */
20    
21  #include <X11/Xlib.h>  #include <X11/Xlib.h>
22  #include <X11/keysym.h>  #define XK_MISCELLANY
23  #include <stdio.h>  #include <X11/keysymdef.h>
 #include <stdlib.h>  
 #include <string.h>  
24  #include <ctype.h>  #include <ctype.h>
25  #include <limits.h>  #include <limits.h>
26    #include <time.h>
27  #include "rdesktop.h"  #include "rdesktop.h"
28  #include "scancodes.h"  #include "scancodes.h"
29    
# Line 37  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 69  static BOOL Line 69  static BOOL
69  xkeymap_read(char *mapname)  xkeymap_read(char *mapname)
70  {  {
71          FILE *fp;          FILE *fp;
72          char line[KEYMAP_MAX_LINE_LENGTH], path[PATH_MAX];          char line[KEYMAP_MAX_LINE_LENGTH];
73            char path[PATH_MAX], inplace_path[PATH_MAX];
74          unsigned int line_num = 0;          unsigned int line_num = 0;
75          unsigned int line_length = 0;          unsigned int line_length = 0;
76          char *keyname, *p;          char *keyname, *p;
# Line 84  xkeymap_read(char *mapname) Line 85  xkeymap_read(char *mapname)
85          fp = fopen(path, "r");          fp = fopen(path, "r");
86          if (fp == NULL)          if (fp == NULL)
87          {          {
88                  error("Failed to open keymap %s\n", path);                  /* in case we are running from the source tree */
89                  return False;                  strcpy(inplace_path, "keymaps/");
90                    strncat(inplace_path, mapname, sizeof(inplace_path) - sizeof("keymaps/"));
91    
92                    fp = fopen(inplace_path, "r");
93                    if (fp == NULL)
94                    {
95                            error("Failed to open keymap %s\n", path);
96                            return False;
97                    }
98          }          }
99    
100          /* FIXME: More tolerant on white space */          /* FIXME: More tolerant on white space */
# Line 205  void Line 214  void
214  xkeymap_init(void)  xkeymap_init(void)
215  {  {
216          unsigned int max_keycode;          unsigned int max_keycode;
217          int i;          char *mapname_ptr;
218    
219            /* Make keymapname lowercase */
220            mapname_ptr = keymapname;
221            while (*mapname_ptr)
222                *mapname_ptr++ = tolower(*mapname_ptr);
223    
224          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
225                  xkeymap_read(keymapname);          {
226                    if (xkeymap_read(keymapname))
227                            keymap_loaded = True;
228            }
229    
230          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
231  }  }
# Line 216  xkeymap_init(void) Line 233  xkeymap_init(void)
233  /* Handles, for example, multi-scancode keypresses (which is not  /* Handles, for example, multi-scancode keypresses (which is not
234     possible via keymap-files) */     possible via keymap-files) */
235  BOOL  BOOL
236  handle_special_keys(KeySym keysym, uint32 ev_time, BOOL pressed)  handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
237  {  {
238          switch (keysym)          switch (keysym)
239          {          {
240                  case XK_Break:  /* toggle full screen */                  case XK_Break:
241                          if (pressed && (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R)))                  case XK_Pause:
242                            if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
243                                    && (get_key_state(state, XK_Control_L) || get_key_state(state, XK_Control_R)))
244                          {                          {
245                                  toggle_fullscreen();                                  /* Ctrl-Alt-Break: toggle full screen */
246                                  return True;                                  if (pressed)
247                                            xwin_toggle_fullscreen();
248    
249                          }                          }
250                          break;                          else if (keysym == XK_Break)
251                            {
252                                    /* Send Break sequence E0 46 E0 C6 */
253                                    if (pressed)
254                                    {
255                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
256                                                              (SCANCODE_EXTENDED | 0x46));
257                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
258                                                              (SCANCODE_EXTENDED | 0xc6));
259                                    }
260                                    /* No break sequence */
261                            }
262                            else /* XK_Pause */
263                            {
264                                    /* According to MS Keyboard Scan Code
265                                       Specification, pressing Pause should result
266                                       in E1 1D 45 E1 9D C5. I'm not exactly sure
267                                       of how this is supposed to be sent via
268                                       RDP. The code below seems to work, but with
269                                       the side effect that Left Ctrl stays
270                                       down. Therefore, we release it when Pause
271                                       is released. */
272                                    if (pressed)
273                                    {
274                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
275                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
276                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
277                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
278                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
279                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
280                                    }
281                                    else
282                                    {
283                                            /* Release Left Ctrl */
284                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,
285                                                           0);
286                                    }
287                            }
288                            return True;
289    
290                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
291                  case XK_Super_L:                  case XK_Super_L:
# Line 245  handle_special_keys(KeySym keysym, uint3 Line 304  handle_special_keys(KeySym keysym, uint3
304                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
305                          }                          }
306                          return True;                          return True;
                         break;  
307          }          }
308          return False;          return False;
309  }  }
310    
311    
312  key_translation  key_translation
313  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
314  {  {
315          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
316    
# Line 277  xkeymap_translate_key(KeySym keysym, uns Line 335  xkeymap_translate_key(KeySym keysym, uns
335    
336          if (tr.scancode != 0)          if (tr.scancode != 0)
337          {          {
338                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
339                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
340                  return tr;                  return tr;
341          }          }
342    
343          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));          if (keymap_loaded)
344                    error("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
345    
346          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
347          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
348          {          {
349                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
350                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);  
351                    /* The modifiers to send for this key should be
352                       obtained from the local state. Currently, only
353                       shift is implemented. */
354                    if (state & ShiftMask)
355                    {
356                            tr.modifiers = MapLeftShiftMask;
357                    }
358    
359                    DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
360          }          }
361          else          else
362          {          {
363                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
364          }          }
365    
366          return tr;          return tr;
# Line 320  xkeymap_translate_button(unsigned int bu Line 387  xkeymap_translate_button(unsigned int bu
387  }  }
388    
389  char *  char *
390  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
391  {  {
392          char *ksname = NULL;          char *ksname = NULL;
393    
# Line 353  ensure_remote_modifiers(uint32 ev_time, Line 420  ensure_remote_modifiers(uint32 ev_time,
420                          break;                          break;
421          }          }
422    
423          /* Shift */          /* Shift. Left shift and right shift are treated as equal; either is fine. */
424          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
425              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
426          {          {
427                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
428                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
429                  {                  {
430                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
431                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
432                  }                  }
433                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
434                    {
435                            /* Needs right shift. Send down. */
436                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
437                    }
438                  else                  else
439                  {                  {
440                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
441                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
442                                    /* Left shift is down */
443                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
444                            else
445                                    /* Right shift is down */
446                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
447                  }                  }
448          }          }
449    
# Line 410  ensure_remote_modifiers(uint32 ev_time, Line 487  ensure_remote_modifiers(uint32 ev_time,
487  }  }
488    
489    
490    void
491    reset_modifier_keys(unsigned int state)
492    {
493            /* reset keys */
494            uint32 ev_time;
495            ev_time = time(NULL);
496    
497            if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(state, XK_Shift_L))
498                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
499    
500            if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(state, XK_Shift_R))
501                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
502    
503            if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(state, XK_Control_L))
504                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
505    
506            if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(state, XK_Control_R))
507                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
508    
509            if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))
510                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
511    
512            if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
513                !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))
514                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
515    }
516    
517    
518  static void  static void
519  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
520  {  {
521  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
522          uint16 old_modifier_state;          uint16 old_modifier_state;
# Line 419  update_modifier_state(uint16 modifiers, Line 524  update_modifier_state(uint16 modifiers,
524          old_modifier_state = remote_modifier_state;          old_modifier_state = remote_modifier_state;
525  #endif  #endif
526    
527          switch (modifiers)          switch (scancode)
528          {          {
529                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
530                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
# Line 473  update_modifier_state(uint16 modifiers, Line 578  update_modifier_state(uint16 modifiers,
578    
579  /* Send keyboard input */  /* Send keyboard input */
580  void  void
581  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
582  {  {
583          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
584    

Legend:
Removed from v.121  
changed lines
  Added in v.225

  ViewVC Help
Powered by ViewVC 1.1.26