/[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 116 by astrand, Wed Sep 11 11:11:27 2002 UTC revision 227 by astrand, Fri Oct 11 09:38:49 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 202  xkeymap_read(char *mapname) Line 211  xkeymap_read(char *mapname)
211    
212  /* Before connecting and creating UI */  /* Before connecting and creating UI */
213  void  void
214  xkeymap_init1(void)  xkeymap_init(void)
215  {  {
216          int i;          unsigned int max_keycode;
217            char *mapname_ptr;
218    
219          /* Zeroing keymap */          /* Make keymapname lowercase */
220          for (i = 0; i < KEYMAP_SIZE; i++)          mapname_ptr = keymapname;
221            while (*mapname_ptr)
222          {          {
223                  keymap[i].scancode = 0;                  *mapname_ptr = tolower(*mapname_ptr);
224                  keymap[i].modifiers = 0;                  mapname_ptr++;
225          }          }
226    
227          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
228          {          {
229                  xkeymap_read(keymapname);                  if (xkeymap_read(keymapname))
230                            keymap_loaded = True;
231          }          }
232    
233            XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
234  }  }
235    
236  /* After connecting and creating UI */  /* Handles, for example, multi-scancode keypresses (which is not
237  void     possible via keymap-files) */
238  xkeymap_init2(void)  BOOL
239    handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
240  {  {
241          unsigned int max_keycode;          switch (keysym)
242          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          {
243                    case XK_Break:
244                    case XK_Pause:
245                            if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
246                                && (get_key_state(state, XK_Control_L)
247                                    || get_key_state(state, XK_Control_R)))
248                            {
249                                    /* Ctrl-Alt-Break: toggle full screen */
250                                    if (pressed)
251                                            xwin_toggle_fullscreen();
252    
253                            }
254                            else if (keysym == XK_Break)
255                            {
256                                    /* Send Break sequence E0 46 E0 C6 */
257                                    if (pressed)
258                                    {
259                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
260                                                              (SCANCODE_EXTENDED | 0x46));
261                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
262                                                              (SCANCODE_EXTENDED | 0xc6));
263                                    }
264                                    /* No break sequence */
265                            }
266                            else    /* XK_Pause */
267                            {
268                                    /* According to MS Keyboard Scan Code
269                                       Specification, pressing Pause should result
270                                       in E1 1D 45 E1 9D C5. I'm not exactly sure
271                                       of how this is supposed to be sent via
272                                       RDP. The code below seems to work, but with
273                                       the side effect that Left Ctrl stays
274                                       down. Therefore, we release it when Pause
275                                       is released. */
276                                    if (pressed)
277                                    {
278                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
279                                                           0xe1, 0);
280                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
281                                                           0x1d, 0);
282                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
283                                                           0x45, 0);
284                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
285                                                           0xe1, 0);
286                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
287                                                           0x9d, 0);
288                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS,
289                                                           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                            }
298                            return True;
299    
300                    case XK_Meta_L: /* Windows keys */
301                    case XK_Super_L:
302                    case XK_Hyper_L:
303                    case XK_Meta_R:
304                    case XK_Super_R:
305                    case XK_Hyper_R:
306                            if (pressed)
307                            {
308                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);
309                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);
310                            }
311                            else
312                            {
313                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);
314                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
315                            }
316                            return True;
317            }
318            return False;
319  }  }
320    
321    
322  key_translation  key_translation
323  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
324  {  {
325          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
326    
# Line 255  xkeymap_translate_key(KeySym keysym, uns Line 345  xkeymap_translate_key(KeySym keysym, uns
345    
346          if (tr.scancode != 0)          if (tr.scancode != 0)
347          {          {
348                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
349                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
350                  return tr;                  return tr;
351          }          }
352    
353          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));          if (keymap_loaded)
354                    error("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
355    
356          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
357          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
358          {          {
359                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
360                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);  
361                    /* The modifiers to send for this key should be
362                       obtained from the local state. Currently, only
363                       shift is implemented. */
364                    if (state & ShiftMask)
365                    {
366                            tr.modifiers = MapLeftShiftMask;
367                    }
368    
369                    DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
370          }          }
371          else          else
372          {          {
373                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
374          }          }
375    
376          return tr;          return tr;
# Line 298  xkeymap_translate_button(unsigned int bu Line 397  xkeymap_translate_button(unsigned int bu
397  }  }
398    
399  char *  char *
400  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
401  {  {
402          char *ksname = NULL;          char *ksname = NULL;
403    
# Line 331  ensure_remote_modifiers(uint32 ev_time, Line 430  ensure_remote_modifiers(uint32 ev_time,
430                          break;                          break;
431          }          }
432    
433          /* Shift */          /* Shift. Left shift and right shift are treated as equal; either is fine. */
434          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
435              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
436          {          {
437                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
438                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
439                  {                  {
440                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
441                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
442                  }                  }
443                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
444                    {
445                            /* Needs right shift. Send down. */
446                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
447                    }
448                  else                  else
449                  {                  {
450                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
451                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
452                                    /* Left shift is down */
453                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
454                            else
455                                    /* Right shift is down */
456                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
457                  }                  }
458          }          }
459    
# Line 388  ensure_remote_modifiers(uint32 ev_time, Line 497  ensure_remote_modifiers(uint32 ev_time,
497  }  }
498    
499    
500    void
501    reset_modifier_keys(unsigned int state)
502    {
503            /* reset keys */
504            uint32 ev_time;
505            ev_time = time(NULL);
506    
507            if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask)
508                && !get_key_state(state, XK_Shift_L))
509                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
510    
511            if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask)
512                && !get_key_state(state, XK_Shift_R))
513                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
514    
515            if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask)
516                && !get_key_state(state, XK_Control_L))
517                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
518    
519            if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask)
520                && !get_key_state(state, XK_Control_R))
521                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
522    
523            if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))
524                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
525    
526            if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
527                !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))
528                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
529    }
530    
531    
532  static void  static void
533  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
534  {  {
535  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
536          uint16 old_modifier_state;          uint16 old_modifier_state;
# Line 397  update_modifier_state(uint16 modifiers, Line 538  update_modifier_state(uint16 modifiers,
538          old_modifier_state = remote_modifier_state;          old_modifier_state = remote_modifier_state;
539  #endif  #endif
540    
541          switch (modifiers)          switch (scancode)
542          {          {
543                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
544                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
# Line 451  update_modifier_state(uint16 modifiers, Line 592  update_modifier_state(uint16 modifiers,
592    
593  /* Send keyboard input */  /* Send keyboard input */
594  void  void
595  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
596  {  {
597          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
598    

Legend:
Removed from v.116  
changed lines
  Added in v.227

  ViewVC Help
Powered by ViewVC 1.1.26