/[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 170 by astrand, Tue Sep 17 08:18:41 2002 UTC revision 199 by astrand, Wed Sep 25 11:17:59 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:
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                                  xwin_toggle_fullscreen();                                  /* toggle full screen */
225                                  return True;                                  if (pressed)
226                                            xwin_toggle_fullscreen();
227    
228                            }
229                            else
230                            {
231                                    /* Send Break sequence E0 46 E0 C6 */
232                                    if (pressed)
233                                    {
234                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
235                                                              (SCANCODE_EXTENDED | 0x46));
236                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
237                                                              (SCANCODE_EXTENDED | 0xc6));
238                                    }
239                                    /* No break sequence */
240                          }                          }
241    
242                            return True;
243                            break;
244    
245                    case XK_Pause:
246                            /* According to MS Keyboard Scan Code
247                               Specification, pressing Pause should result
248                               in E1 1D 45 E1 9D C5. I'm not exactly sure
249                               of how this is supposed to be sent via
250                               RDP. The code below seems to work, but with
251                               the side effect that Left Ctrl stays
252                               down. Therefore, we release it when Pause
253                               is released. */
254                            if (pressed)
255                            {
256                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
257                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
258                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
259                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
260                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
261                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
262                            }
263                            else
264                            {
265                                    // Release Left Ctrl
266                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,
267                                                   0);
268                            }
269    
270                            return True;
271                          break;                          break;
272    
273                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
# Line 252  handle_special_keys(KeySym keysym, uint3 Line 294  handle_special_keys(KeySym keysym, uint3
294    
295    
296  key_translation  key_translation
297  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
298  {  {
299          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
300    
# Line 277  xkeymap_translate_key(KeySym keysym, uns Line 319  xkeymap_translate_key(KeySym keysym, uns
319    
320          if (tr.scancode != 0)          if (tr.scancode != 0)
321          {          {
322                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
323                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
324                  return tr;                  return tr;
325          }          }
326    
327          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)));
328    
329          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
330          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
# Line 298  xkeymap_translate_key(KeySym keysym, uns Line 339  xkeymap_translate_key(KeySym keysym, uns
339                          tr.modifiers = MapLeftShiftMask;                          tr.modifiers = MapLeftShiftMask;
340                  }                  }
341    
342                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);                  DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
343          }          }
344          else          else
345          {          {
346                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
347          }          }
348    
349          return tr;          return tr;
# Line 329  xkeymap_translate_button(unsigned int bu Line 370  xkeymap_translate_button(unsigned int bu
370  }  }
371    
372  char *  char *
373  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
374  {  {
375          char *ksname = NULL;          char *ksname = NULL;
376    
# Line 362  ensure_remote_modifiers(uint32 ev_time, Line 403  ensure_remote_modifiers(uint32 ev_time,
403                          break;                          break;
404          }          }
405    
406          /* Shift */          /* Shift. Left shift and right shift are treated as equal; either is fine. */
407          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
408              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
409          {          {
410                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
411                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
412                  {                  {
413                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
414                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
415                  }                  }
416                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
417                    {
418                            /* Needs right shift. Send down. */
419                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
420                    }
421                  else                  else
422                  {                  {
423                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
424                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
425                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);                                  /* Left shift is down */
426                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
427                            else
428                                    /* Right shift is down */
429                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
430                  }                  }
431          }          }
432    
# Line 421  ensure_remote_modifiers(uint32 ev_time, Line 471  ensure_remote_modifiers(uint32 ev_time,
471    
472    
473  void  void
474  reset_modifier_keys()  reset_modifier_keys(void)
475  {  {
476          /* reset keys */          /* reset keys */
477          uint32 ev_time;          uint32 ev_time;

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

  ViewVC Help
Powered by ViewVC 1.1.26