/[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 197 by astrand, Wed Sep 25 11:07:57 2002 UTC
# 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 205  void Line 204  void
204  xkeymap_init(void)  xkeymap_init(void)
205  {  {
206          unsigned int max_keycode;          unsigned int max_keycode;
         int i;  
207    
208          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
209                  xkeymap_read(keymapname);                  xkeymap_read(keymapname);
# Line 216  xkeymap_init(void) Line 214  xkeymap_init(void)
214  /* Handles, for example, multi-scancode keypresses (which is not  /* Handles, for example, multi-scancode keypresses (which is not
215     possible via keymap-files) */     possible via keymap-files) */
216  BOOL  BOOL
217  handle_special_keys(KeySym keysym, uint32 ev_time, BOOL pressed)  handle_special_keys(uint32 keysym, uint32 ev_time, BOOL pressed)
218  {  {
219          switch (keysym)          switch (keysym)
220          {          {
221                  case XK_Break:  /* toggle full screen */                  case XK_Break:  /* toggle full screen */
222                          if (pressed && (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R)))                          if (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R))
223                          {                          {
224                                  toggle_fullscreen();                                  if (pressed)
225                                            xwin_toggle_fullscreen();
226                                  return True;                                  return True;
227                          }                          }
228                          break;                          break;
229    
230                    case XK_Pause:
231                            /* According to MS Keyboard Scan Code
232                               Specification, pressing Pause should result
233                               in E1 1D 45 E1 9D C5. I'm not exactly sure
234                               of how this is supposed to be sent via
235                               RDP. The code below seems to work, but with
236                               the side effect that Left Ctrl stays
237                               down. Therefore, we release it when Pause
238                               is released. */
239                            if (pressed)
240                            {
241                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
242                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
243                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
244                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
245                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
246                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
247                            }
248                            else
249                            {
250                                    // Release Left Ctrl
251                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,
252                                                   0);
253                            }
254    
255                            return True;
256                            break;
257    
258                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
259                  case XK_Super_L:                  case XK_Super_L:
260                  case XK_Hyper_L:                  case XK_Hyper_L:
# Line 252  handle_special_keys(KeySym keysym, uint3 Line 279  handle_special_keys(KeySym keysym, uint3
279    
280    
281  key_translation  key_translation
282  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
283  {  {
284          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
285    
# Line 277  xkeymap_translate_key(KeySym keysym, uns Line 304  xkeymap_translate_key(KeySym keysym, uns
304    
305          if (tr.scancode != 0)          if (tr.scancode != 0)
306          {          {
307                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
308                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
309                  return tr;                  return tr;
310          }          }
311    
312          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));          DEBUG_KBD(("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym)));
313    
314          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
315          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
316          {          {
317                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
318                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);  
319                    /* The modifiers to send for this key should be
320                       obtained from the local state. Currently, only
321                       shift is implemented. */
322                    if (state & ShiftMask)
323                    {
324                            tr.modifiers = MapLeftShiftMask;
325                    }
326    
327                    DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
328          }          }
329          else          else
330          {          {
331                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
332          }          }
333    
334          return tr;          return tr;
# Line 320  xkeymap_translate_button(unsigned int bu Line 355  xkeymap_translate_button(unsigned int bu
355  }  }
356    
357  char *  char *
358  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
359  {  {
360          char *ksname = NULL;          char *ksname = NULL;
361    
# Line 353  ensure_remote_modifiers(uint32 ev_time, Line 388  ensure_remote_modifiers(uint32 ev_time,
388                          break;                          break;
389          }          }
390    
391          /* Shift */          /* Shift. Left shift and right shift are treated as equal; either is fine. */
392          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
393              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
394          {          {
395                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
396                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
397                  {                  {
398                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
399                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
400                  }                  }
401                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
402                    {
403                            /* Needs right shift. Send down. */
404                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
405                    }
406                  else                  else
407                  {                  {
408                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
409                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
410                                    /* Left shift is down */
411                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
412                            else
413                                    /* Right shift is down */
414                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
415                  }                  }
416          }          }
417    
# Line 410  ensure_remote_modifiers(uint32 ev_time, Line 455  ensure_remote_modifiers(uint32 ev_time,
455  }  }
456    
457    
458    void
459    reset_modifier_keys(void)
460    {
461            /* reset keys */
462            uint32 ev_time;
463            ev_time = time(NULL);
464    
465            if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(XK_Shift_L))
466                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
467    
468            if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(XK_Shift_R))
469                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
470    
471            if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(XK_Control_L))
472                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
473    
474            if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(XK_Control_R))
475                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
476    
477            if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(XK_Alt_L))
478                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
479    
480            if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
481                !get_key_state(XK_Alt_R) && !get_key_state(XK_Mode_switch))
482                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
483    }
484    
485    
486  static void  static void
487  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint16 modifiers, BOOL pressed)
488  {  {

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

  ViewVC Help
Powered by ViewVC 1.1.26