/[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 77 by astrand, Mon Jul 29 20:17:10 2002 UTC revision 216 by matthewc, Tue Oct 8 02:30:20 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(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)
48  {  {
# Line 53  add_to_keymap(char *keyname, uint8 scanc Line 55  add_to_keymap(char *keyname, uint8 scanc
55                  return;                  return;
56          }          }
57    
58          DEBUG_KBD("Adding translation, keysym=0x%x, scancode=0x%x, "          DEBUG_KBD(("Adding translation, keysym=0x%x, scancode=0x%x, "
59                    "modifiers=0x%x\n", (unsigned int) keysym, scancode,                     "modifiers=0x%x\n", (unsigned int) keysym, scancode, modifiers));
                   modifiers);  
60    
61          keymap[keysym & KEYMAP_MASK].scancode = scancode;          keymap[keysym & KEYMAP_MASK].scancode = scancode;
62          keymap[keysym & KEYMAP_MASK].modifiers = modifiers;          keymap[keysym & KEYMAP_MASK].modifiers = modifiers;
# Line 68  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 83  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 117  xkeymap_read(char *mapname) Line 127  xkeymap_read(char *mapname)
127                  if (strncmp(line, "map ", 4) == 0)                  if (strncmp(line, "map ", 4) == 0)
128                  {                  {
129                          keylayout = strtol(line + 4, NULL, 16);                          keylayout = strtol(line + 4, NULL, 16);
130                          DEBUG_KBD("Keylayout 0x%x\n", keylayout);                          DEBUG_KBD(("Keylayout 0x%x\n", keylayout));
131                          continue;                          continue;
132                  }                  }
133    
134                  /* compose */                  /* compose */
135                  if (strncmp(line, "enable_compose", 15) == 0)                  if (strncmp(line, "enable_compose", 15) == 0)
136                  {                  {
137                          DEBUG_KBD("Enabling compose handling\n");                          DEBUG_KBD(("Enabling compose handling\n"));
138                          enable_compose = True;                          enable_compose = True;
139                          continue;                          continue;
140                  }                  }
# Line 140  xkeymap_read(char *mapname) Line 150  xkeymap_read(char *mapname)
150                  p = strchr(line, ' ');                  p = strchr(line, ' ');
151                  if (p == NULL)                  if (p == NULL)
152                  {                  {
153                          error("Bad line %d in keymap %s\n", line_num,                          error("Bad line %d in keymap %s\n", line_num, mapname);
                               mapname);  
154                          continue;                          continue;
155                  }                  }
156                  else                  else
# Line 177  xkeymap_read(char *mapname) Line 186  xkeymap_read(char *mapname)
186                          MASK_ADD_BITS(modifiers, MapLocalStateMask);                          MASK_ADD_BITS(modifiers, MapLocalStateMask);
187                  }                  }
188    
189                    if (strstr(line_rest, "inhibit"))
190                    {
191                            MASK_ADD_BITS(modifiers, MapInhibitMask);
192                    }
193    
194                  add_to_keymap(keyname, scancode, modifiers, mapname);                  add_to_keymap(keyname, scancode, modifiers, mapname);
195    
196                  if (strstr(line_rest, "addupper"))                  if (strstr(line_rest, "addupper"))
# Line 197  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;
   
         /* Zeroing keymap */  
         for (i = 0; i < KEYMAP_SIZE; i++)  
         {  
                 keymap[i].scancode = 0;  
                 keymap[i].modifiers = 0;  
         }  
217    
218          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
219          {          {
220                  xkeymap_read(keymapname);                  if (xkeymap_read(keymapname))
221                            keymap_loaded = True;
222          }          }
223    
224            XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
225  }  }
226    
227  /* After connecting and creating UI */  /* Handles, for example, multi-scancode keypresses (which is not
228  void     possible via keymap-files) */
229  xkeymap_init2(void)  BOOL
230    handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
231  {  {
232          unsigned int max_keycode;          switch (keysym)
233          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          {
234                    case XK_Break:
235                    case XK_Pause:
236                            if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
237                                    && (get_key_state(state, XK_Control_L) || get_key_state(state, XK_Control_R)))
238                            {
239                                    /* Ctrl-Alt-Break: toggle full screen */
240                                    if (pressed)
241                                            xwin_toggle_fullscreen();
242    
243                            }
244                            else if (keysym == XK_Break)
245                            {
246                                    /* Send Break sequence E0 46 E0 C6 */
247                                    if (pressed)
248                                    {
249                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
250                                                              (SCANCODE_EXTENDED | 0x46));
251                                            rdp_send_scancode(ev_time, RDP_KEYPRESS,
252                                                              (SCANCODE_EXTENDED | 0xc6));
253                                    }
254                                    /* No break sequence */
255                            }
256                            else /* XK_Pause */
257                            {
258                                    /* According to MS Keyboard Scan Code
259                                       Specification, pressing Pause should result
260                                       in E1 1D 45 E1 9D C5. I'm not exactly sure
261                                       of how this is supposed to be sent via
262                                       RDP. The code below seems to work, but with
263                                       the side effect that Left Ctrl stays
264                                       down. Therefore, we release it when Pause
265                                       is released. */
266                                    if (pressed)
267                                    {
268                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
269                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
270                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
271                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
272                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
273                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
274                                    }
275                                    else
276                                    {
277                                            /* Release Left Ctrl */
278                                            rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,
279                                                           0);
280                                    }
281                            }
282                            return True;
283    
284                    case XK_Meta_L: /* Windows keys */
285                    case XK_Super_L:
286                    case XK_Hyper_L:
287                    case XK_Meta_R:
288                    case XK_Super_R:
289                    case XK_Hyper_R:
290                            if (pressed)
291                            {
292                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);
293                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);
294                            }
295                            else
296                            {
297                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);
298                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
299                            }
300                            return True;
301            }
302            return False;
303  }  }
304    
305    
306  key_translation  key_translation
307  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
308  {  {
309          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
310    
311          tr = keymap[keysym & KEYMAP_MASK];          tr = keymap[keysym & KEYMAP_MASK];
312    
313            if (tr.modifiers & MapInhibitMask)
314            {
315                    DEBUG_KBD(("Inhibiting key\n"));
316                    tr.scancode = 0;
317                    return tr;
318            }
319    
320          if (tr.modifiers & MapLocalStateMask)          if (tr.modifiers & MapLocalStateMask)
321          {          {
322                  /* The modifiers to send for this key should be obtained                  /* The modifiers to send for this key should be obtained
# Line 243  xkeymap_translate_key(KeySym keysym, uns Line 329  xkeymap_translate_key(KeySym keysym, uns
329    
330          if (tr.scancode != 0)          if (tr.scancode != 0)
331          {          {
332                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
333                          ("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                          tr.scancode, tr.modifiers);  
334                  return tr;                  return tr;
335          }          }
336    
337          printf("No translation for (keysym 0x%lx, %s)\n", keysym,          if (keymap_loaded)
338                 get_ksname(keysym));                  error("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
339    
340          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
341          if ((keycode >= min_keycode) && (keycode <= 0x60))          if ((keycode >= min_keycode) && (keycode <= 0x60))
342          {          {
343                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
344                  printf("Sending guessed scancode 0x%x\n", tr.scancode);  
345                    /* The modifiers to send for this key should be
346                       obtained from the local state. Currently, only
347                       shift is implemented. */
348                    if (state & ShiftMask)
349                    {
350                            tr.modifiers = MapLeftShiftMask;
351                    }
352    
353                    DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
354          }          }
355          else          else
356          {          {
357                  printf("No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
358          }          }
359    
360          return tr;          return tr;
# Line 287  xkeymap_translate_button(unsigned int bu Line 381  xkeymap_translate_button(unsigned int bu
381  }  }
382    
383  char *  char *
384  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
385  {  {
386          char *ksname = NULL;          char *ksname = NULL;
387    
# Line 299  get_ksname(KeySym keysym) Line 393  get_ksname(KeySym keysym)
393          return ksname;          return ksname;
394  }  }
395    
 BOOL  
 inhibit_key(KeySym keysym)  
 {  
         switch (keysym)  
         {  
                 case XK_Caps_Lock:  
                         return True;  
                         break;  
                 case XK_Multi_key:  
                         return True;  
                         break;  
                 default:  
                         break;  
         }  
         return False;  
 }  
396    
397  void  void
398  ensure_remote_modifiers(uint32 ev_time, key_translation tr)  ensure_remote_modifiers(uint32 ev_time, key_translation tr)
# Line 336  ensure_remote_modifiers(uint32 ev_time, Line 414  ensure_remote_modifiers(uint32 ev_time,
414                          break;                          break;
415          }          }
416    
417          /* Shift */          /* Shift. Left shift and right shift are treated as equal; either is fine. */
418          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
419              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
420          {          {
421                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
422                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
423                  {                  {
424                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
425                          rdp_send_scancode(ev_time, RDP_KEYPRESS,                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
426                                            SCANCODE_CHAR_LSHIFT);                  }
427                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
428                    {
429                            /* Needs right shift. Send down. */
430                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
431                  }                  }
432                  else                  else
433                  {                  {
434                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
435                          rdp_send_scancode(ev_time, RDP_KEYRELEASE,                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
436                                            SCANCODE_CHAR_LSHIFT);                                  /* Left shift is down */
437                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
438                            else
439                                    /* Right shift is down */
440                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
441                  }                  }
442          }          }
443    
# Line 363  ensure_remote_modifiers(uint32 ev_time, Line 449  ensure_remote_modifiers(uint32 ev_time,
449                  if (MASK_HAS_BITS(tr.modifiers, MapAltGrMask))                  if (MASK_HAS_BITS(tr.modifiers, MapAltGrMask))
450                  {                  {
451                          /* Needs this modifier. Send down. */                          /* Needs this modifier. Send down. */
452                          rdp_send_scancode(ev_time, RDP_KEYPRESS,                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RALT);
                                           SCANCODE_CHAR_RALT);  
453                  }                  }
454                  else                  else
455                  {                  {
456                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up. */
457                          rdp_send_scancode(ev_time, RDP_KEYRELEASE,                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
                                           SCANCODE_CHAR_RALT);  
458                  }                  }
459          }          }
460    
# Line 379  ensure_remote_modifiers(uint32 ev_time, Line 463  ensure_remote_modifiers(uint32 ev_time,
463              != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))              != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
464          {          {
465                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
466                  DEBUG_KBD("Remote NumLock state is incorrect. Toggling\n");                  uint16 new_remote_state = 0;
467    
468                  if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))                  if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
469                  {                  {
470                          /* Needs this modifier. Toggle */                          DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
471                          rdp_send_scancode(ev_time, RDP_KEYPRESS,                          new_remote_state |= KBD_FLAG_NUMLOCK;
                                           SCANCODE_CHAR_NUMLOCK);  
                         rdp_send_scancode(ev_time, RDP_KEYRELEASE,  
                                           SCANCODE_CHAR_NUMLOCK);  
472                  }                  }
473                  else                  else
474                  {                  {
475                          /* Should not use this modifier. Toggle */                          DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
                         rdp_send_scancode(ev_time, RDP_KEYPRESS,  
                                           SCANCODE_CHAR_NUMLOCK);  
                         rdp_send_scancode(ev_time, RDP_KEYRELEASE,  
                                           SCANCODE_CHAR_NUMLOCK);  
476                  }                  }
477    
478                    rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
479                    update_modifier_state(SCANCODE_CHAR_NUMLOCK, True);
480          }          }
481    }
482    
483    
484    void
485    reset_modifier_keys(unsigned int state)
486    {
487            /* reset keys */
488            uint32 ev_time;
489            ev_time = time(NULL);
490    
491            if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(state, XK_Shift_L))
492                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
493    
494            if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(state, XK_Shift_R))
495                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
496    
497            if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(state, XK_Control_L))
498                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
499    
500            if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(state, XK_Control_R))
501                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
502    
503            if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))
504                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
505    
506            if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
507                !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))
508                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
509  }  }
510    
511    
512  static void  static void
513  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
514  {  {
515    #ifdef WITH_DEBUG_KBD
516            uint16 old_modifier_state;
517    
518          DEBUG_KBD("Before updating modifier_state:0x%x, pressed=0x%x\n",          old_modifier_state = remote_modifier_state;
519                    remote_modifier_state, pressed);  #endif
520          switch (modifiers)  
521            switch (scancode)
522          {          {
523                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
524                          MASK_CHANGE_BIT(remote_modifier_state,                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
                                         MapLeftShiftMask, pressed);  
525                          break;                          break;
526                  case SCANCODE_CHAR_RSHIFT:                  case SCANCODE_CHAR_RSHIFT:
527                          MASK_CHANGE_BIT(remote_modifier_state,                          MASK_CHANGE_BIT(remote_modifier_state, MapRightShiftMask, pressed);
                                         MapRightShiftMask, pressed);  
528                          break;                          break;
529                  case SCANCODE_CHAR_LCTRL:                  case SCANCODE_CHAR_LCTRL:
530                          MASK_CHANGE_BIT(remote_modifier_state,                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftCtrlMask, pressed);
                                         MapLeftCtrlMask, pressed);  
531                          break;                          break;
532                  case SCANCODE_CHAR_RCTRL:                  case SCANCODE_CHAR_RCTRL:
533                          MASK_CHANGE_BIT(remote_modifier_state,                          MASK_CHANGE_BIT(remote_modifier_state, MapRightCtrlMask, pressed);
                                         MapRightCtrlMask, pressed);  
534                          break;                          break;
535                  case SCANCODE_CHAR_LALT:                  case SCANCODE_CHAR_LALT:
536                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftAltMask,                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftAltMask, pressed);
                                         pressed);  
537                          break;                          break;
538                  case SCANCODE_CHAR_RALT:                  case SCANCODE_CHAR_RALT:
539                          MASK_CHANGE_BIT(remote_modifier_state,                          MASK_CHANGE_BIT(remote_modifier_state, MapRightAltMask, pressed);
                                         MapRightAltMask, pressed);  
540                          break;                          break;
541                  case SCANCODE_CHAR_LWIN:                  case SCANCODE_CHAR_LWIN:
542                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftWinMask,                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftWinMask, pressed);
                                         pressed);  
543                          break;                          break;
544                  case SCANCODE_CHAR_RWIN:                  case SCANCODE_CHAR_RWIN:
545                          MASK_CHANGE_BIT(remote_modifier_state,                          MASK_CHANGE_BIT(remote_modifier_state, MapRightWinMask, pressed);
                                         MapRightWinMask, pressed);  
546                          break;                          break;
547                  case SCANCODE_CHAR_NUMLOCK:                  case SCANCODE_CHAR_NUMLOCK:
548                          /* KeyReleases for NumLocks are sent immediately. Toggle the                          /* KeyReleases for NumLocks are sent immediately. Toggle the
# Line 449  update_modifier_state(uint16 modifiers, Line 552  update_modifier_state(uint16 modifiers,
552                                  BOOL newNumLockState;                                  BOOL newNumLockState;
553                                  newNumLockState =                                  newNumLockState =
554                                          (MASK_HAS_BITS                                          (MASK_HAS_BITS
555                                           (remote_modifier_state,                                           (remote_modifier_state, MapNumLockMask) == False);
                                           MapNumLockMask) == False);  
556                                  MASK_CHANGE_BIT(remote_modifier_state,                                  MASK_CHANGE_BIT(remote_modifier_state,
557                                                  MapNumLockMask,                                                  MapNumLockMask, newNumLockState);
                                                 newNumLockState);  
558                          }                          }
559                          break;                          break;
560          }          }
561          DEBUG_KBD("After updating modifier_state:0x%x\n",  
562                    remote_modifier_state);  #ifdef WITH_DEBUG_KBD
563            if (old_modifier_state != remote_modifier_state)
564            {
565                    DEBUG_KBD(("Before updating modifier_state:0x%x, pressed=0x%x\n",
566                               old_modifier_state, pressed));
567                    DEBUG_KBD(("After updating modifier_state:0x%x\n", remote_modifier_state));
568            }
569    #endif
570    
571  }  }
572    
573  /* Send keyboard input */  /* Send keyboard input */
574  void  void
575  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
576  {  {
577          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
578    
579          if (scancode & SCANCODE_EXTENDED)          if (scancode & SCANCODE_EXTENDED)
580          {          {
581                  DEBUG_KBD("Sending extended scancode=0x%x, flags=0x%x\n",                  DEBUG_KBD(("Sending extended scancode=0x%x, flags=0x%x\n",
582                            scancode & ~SCANCODE_EXTENDED, flags);                             scancode & ~SCANCODE_EXTENDED, flags));
583                  rdp_send_input(time, RDP_INPUT_SCANCODE, flags | KBD_FLAG_EXT,                  rdp_send_input(time, RDP_INPUT_SCANCODE, flags | KBD_FLAG_EXT,
584                                 scancode & ~SCANCODE_EXTENDED, 0);                                 scancode & ~SCANCODE_EXTENDED, 0);
585          }          }
586          else          else
587          {          {
588                  DEBUG_KBD("Sending scancode=0x%x, flags=0x%x\n", scancode,                  DEBUG_KBD(("Sending scancode=0x%x, flags=0x%x\n", scancode, flags));
                           flags);  
589                  rdp_send_input(time, RDP_INPUT_SCANCODE, flags, scancode, 0);                  rdp_send_input(time, RDP_INPUT_SCANCODE, flags, scancode, 0);
590          }          }
591  }  }

Legend:
Removed from v.77  
changed lines
  Added in v.216

  ViewVC Help
Powered by ViewVC 1.1.26