/[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 113 by astrand, Wed Sep 11 07:39:53 2002 UTC revision 552 by astrand, Mon Dec 8 12:01:25 2003 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  
5       Copyright (C) Matthew Chapman 1999-2002
6       Copyright (C) Peter Astrand <peter@cendio.se> 2003
7        
8     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
9     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 12  Line 14 
14     but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.     GNU General Public License for more details.
17      
18     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software     along with this program; if not, write to the Free Software
20     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */  */
22    
23    #ifdef RDP2VNC
24    #include "vnc/x11stubs.h"
25    #else
26  #include <X11/Xlib.h>  #include <X11/Xlib.h>
27  #include <X11/keysym.h>  #include <X11/keysym.h>
28  #include <stdio.h>  #endif
29  #include <stdlib.h>  
 #include <string.h>  
30  #include <ctype.h>  #include <ctype.h>
31  #include <limits.h>  #include <limits.h>
32    #include <time.h>
33  #include "rdesktop.h"  #include "rdesktop.h"
34  #include "scancodes.h"  #include "scancodes.h"
35    
36  #define KEYMAP_SIZE 4096  #define KEYMAP_SIZE 0xffff+1
37  #define KEYMAP_MASK (KEYMAP_SIZE - 1)  #define KEYMAP_MASK 0xffff
38  #define KEYMAP_MAX_LINE_LENGTH 80  #define KEYMAP_MAX_LINE_LENGTH 80
39    
40  extern Display *display;  extern Display *g_display;
41    extern Window g_wnd;
42  extern char keymapname[16];  extern char keymapname[16];
43  extern int keylayout;  extern int keylayout;
44  extern BOOL enable_compose;  extern int g_win_button_size;
45    extern BOOL g_enable_compose;
46    extern BOOL g_use_rdp5;
47    extern BOOL g_numlock_sync;
48    
49    static BOOL keymap_loaded;
50  static key_translation keymap[KEYMAP_SIZE];  static key_translation keymap[KEYMAP_SIZE];
51  static int min_keycode;  static int min_keycode;
52  static uint16 remote_modifier_state = 0;  static uint16 remote_modifier_state = 0;
53    static uint16 saved_remote_modifier_state = 0;
54    
55    static void update_modifier_state(uint8 scancode, BOOL pressed);
56    
57  static void  static void
58  add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)  add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)
# Line 49  add_to_keymap(char *keyname, uint8 scanc Line 62  add_to_keymap(char *keyname, uint8 scanc
62          keysym = XStringToKeysym(keyname);          keysym = XStringToKeysym(keyname);
63          if (keysym == NoSymbol)          if (keysym == NoSymbol)
64          {          {
65                  error("Bad keysym %s in keymap %s\n", keyname, mapname);                  DEBUG_KBD(("Bad keysym \"%s\" in keymap %s (ignoring)\n", keyname, mapname));
66                  return;                  return;
67          }          }
68    
# Line 67  static BOOL Line 80  static BOOL
80  xkeymap_read(char *mapname)  xkeymap_read(char *mapname)
81  {  {
82          FILE *fp;          FILE *fp;
83          char line[KEYMAP_MAX_LINE_LENGTH], path[PATH_MAX];          char line[KEYMAP_MAX_LINE_LENGTH];
84            char path[PATH_MAX], inplace_path[PATH_MAX];
85          unsigned int line_num = 0;          unsigned int line_num = 0;
86          unsigned int line_length = 0;          unsigned int line_length = 0;
87          char *keyname, *p;          char *keyname, *p;
# Line 82  xkeymap_read(char *mapname) Line 96  xkeymap_read(char *mapname)
96          fp = fopen(path, "r");          fp = fopen(path, "r");
97          if (fp == NULL)          if (fp == NULL)
98          {          {
99                  error("Failed to open keymap %s\n", path);                  /* in case we are running from the source tree */
100                  return False;                  strcpy(inplace_path, "keymaps/");
101                    strncat(inplace_path, mapname, sizeof(inplace_path) - sizeof("keymaps/"));
102    
103                    fp = fopen(inplace_path, "r");
104                    if (fp == NULL)
105                    {
106                            error("Failed to open keymap %s\n", path);
107                            return False;
108                    }
109          }          }
110    
111          /* FIXME: More tolerant on white space */          /* FIXME: More tolerant on white space */
# Line 124  xkeymap_read(char *mapname) Line 146  xkeymap_read(char *mapname)
146                  if (strncmp(line, "enable_compose", 15) == 0)                  if (strncmp(line, "enable_compose", 15) == 0)
147                  {                  {
148                          DEBUG_KBD(("Enabling compose handling\n"));                          DEBUG_KBD(("Enabling compose handling\n"));
149                          enable_compose = True;                          g_enable_compose = True;
150                          continue;                          continue;
151                  }                  }
152    
# Line 175  xkeymap_read(char *mapname) Line 197  xkeymap_read(char *mapname)
197                          MASK_ADD_BITS(modifiers, MapLocalStateMask);                          MASK_ADD_BITS(modifiers, MapLocalStateMask);
198                  }                  }
199    
200                    if (strstr(line_rest, "inhibit"))
201                    {
202                            MASK_ADD_BITS(modifiers, MapInhibitMask);
203                    }
204    
205                  add_to_keymap(keyname, scancode, modifiers, mapname);                  add_to_keymap(keyname, scancode, modifiers, mapname);
206    
207                  if (strstr(line_rest, "addupper"))                  if (strstr(line_rest, "addupper"))
# Line 182  xkeymap_read(char *mapname) Line 209  xkeymap_read(char *mapname)
209                          /* Automatically add uppercase key, with same modifiers                          /* Automatically add uppercase key, with same modifiers
210                             plus shift */                             plus shift */
211                          for (p = keyname; *p; p++)                          for (p = keyname; *p; p++)
212                                  *p = toupper(*p);                                  *p = toupper((int) *p);
213                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);                          MASK_ADD_BITS(modifiers, MapLeftShiftMask);
214                          add_to_keymap(keyname, scancode, modifiers, mapname);                          add_to_keymap(keyname, scancode, modifiers, mapname);
215                  }                  }
# Line 195  xkeymap_read(char *mapname) Line 222  xkeymap_read(char *mapname)
222    
223  /* Before connecting and creating UI */  /* Before connecting and creating UI */
224  void  void
225  xkeymap_init1(void)  xkeymap_init(void)
226  {  {
227          int i;          unsigned int max_keycode;
228            char *mapname_ptr;
229    
230          /* Zeroing keymap */          /* Make keymapname lowercase */
231          for (i = 0; i < KEYMAP_SIZE; i++)          mapname_ptr = keymapname;
232            while (*mapname_ptr)
233          {          {
234                  keymap[i].scancode = 0;                  *mapname_ptr = tolower((int) *mapname_ptr);
235                  keymap[i].modifiers = 0;                  mapname_ptr++;
236          }          }
237    
238          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
239          {          {
240                  xkeymap_read(keymapname);                  if (xkeymap_read(keymapname))
241                            keymap_loaded = True;
242          }          }
243    
244            XDisplayKeycodes(g_display, &min_keycode, (int *) &max_keycode);
245  }  }
246    
247  /* After connecting and creating UI */  static void
248  void  send_winkey(uint32 ev_time, BOOL pressed, BOOL leftkey)
 xkeymap_init2(void)  
249  {  {
250          unsigned int max_keycode;          uint8 winkey;
251          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);  
252            if (leftkey)
253                    winkey = SCANCODE_CHAR_LWIN;
254            else
255                    winkey = SCANCODE_CHAR_RWIN;
256    
257            if (pressed)
258            {
259                    if (g_use_rdp5)
260                    {
261                            rdp_send_scancode(ev_time, RDP_KEYPRESS, winkey);
262                    }
263                    else
264                    {
265                            /* RDP4 doesn't support winkey. Fake with Ctrl-Esc */
266                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);
267                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);
268                    }
269            }
270            else
271            {
272                    /* key released */
273                    if (g_use_rdp5)
274                    {
275                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, winkey);
276                    }
277                    else
278                    {
279                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);
280                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
281                    }
282            }
283    }
284    
285    static void
286    reset_winkey(uint32 ev_time)
287    {
288            if (g_use_rdp5)
289            {
290                    /* For some reason, it seems to suffice to release
291                     *either* the left or right winkey. */
292                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LWIN);
293            }
294    }
295    
296    /* Handles, for example, multi-scancode keypresses (which is not
297       possible via keymap-files) */
298    BOOL
299    handle_special_keys(uint32 keysym, unsigned int state, uint32 ev_time, BOOL pressed)
300    {
301            switch (keysym)
302            {
303                    case XK_Return:
304                            if ((get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))
305                                && (get_key_state(state, XK_Control_L)
306                                    || get_key_state(state, XK_Control_R)))
307                            {
308                                    /* Ctrl-Alt-Enter: toggle full screen */
309                                    if (pressed)
310                                            xwin_toggle_fullscreen();
311                                    return True;
312                            }
313                            break;
314    
315                    case XK_Break:
316                            /* Send Break sequence E0 46 E0 C6 */
317                            if (pressed)
318                            {
319                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
320                                                      (SCANCODE_EXTENDED | 0x46));
321                                    rdp_send_scancode(ev_time, RDP_KEYPRESS,
322                                                      (SCANCODE_EXTENDED | 0xc6));
323                            }
324                            /* No release sequence */
325                            return True;
326    
327                    case XK_Pause:
328                            /* According to MS Keyboard Scan Code
329                               Specification, pressing Pause should result
330                               in E1 1D 45 E1 9D C5. I'm not exactly sure
331                               of how this is supposed to be sent via
332                               RDP. The code below seems to work, but with
333                               the side effect that Left Ctrl stays
334                               down. Therefore, we release it when Pause
335                               is released. */
336                            if (pressed)
337                            {
338                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
339                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);
340                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);
341                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
342                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);
343                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);
344                            }
345                            else
346                            {
347                                    /* Release Left Ctrl */
348                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE,
349                                                   0x1d, 0);
350                            }
351                            return True;
352    
353                    case XK_Meta_L: /* Windows keys */
354                    case XK_Super_L:
355                    case XK_Hyper_L:
356                            send_winkey(ev_time, pressed, True);
357                            return True;
358    
359                    case XK_Meta_R:
360                    case XK_Super_R:
361                    case XK_Hyper_R:
362                            send_winkey(ev_time, pressed, False);
363                            return True;
364    
365                    case XK_space:
366                            /* Prevent access to the Windows system menu in single app mode */
367                            if (g_win_button_size
368                                && (get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R)))
369                                    return True;
370                    case XK_Num_Lock:
371                            /* FIXME: We might want to do RDP_INPUT_SYNCHRONIZE here, if g_numlock_sync */
372                            if (!g_numlock_sync)
373                                    /* Inhibit */
374                                    return True;
375    
376    
377            }
378            return False;
379  }  }
380    
381    
382  key_translation  key_translation
383  xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)  xkeymap_translate_key(uint32 keysym, unsigned int keycode, unsigned int state)
384  {  {
385          key_translation tr = { 0, 0 };          key_translation tr = { 0, 0 };
386    
387          tr = keymap[keysym & KEYMAP_MASK];          tr = keymap[keysym & KEYMAP_MASK];
388    
389            if (tr.modifiers & MapInhibitMask)
390            {
391                    DEBUG_KBD(("Inhibiting key\n"));
392                    tr.scancode = 0;
393                    return tr;
394            }
395    
396          if (tr.modifiers & MapLocalStateMask)          if (tr.modifiers & MapLocalStateMask)
397          {          {
398                  /* The modifiers to send for this key should be obtained                  /* The modifiers to send for this key should be obtained
# Line 241  xkeymap_translate_key(KeySym keysym, uns Line 405  xkeymap_translate_key(KeySym keysym, uns
405    
406          if (tr.scancode != 0)          if (tr.scancode != 0)
407          {          {
408                  DEBUG_KBD                  DEBUG_KBD(("Found key translation, scancode=0x%x, modifiers=0x%x\n",
409                          (("Found key translation, scancode=0x%x, modifiers=0x%x\n",                             tr.scancode, tr.modifiers));
                           tr.scancode, tr.modifiers));  
410                  return tr;                  return tr;
411          }          }
412    
413          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));          if (keymap_loaded)
414                    warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
415    
416          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
417          if ((keycode >= min_keycode) && (keycode <= 0x60))          if (((int) keycode >= min_keycode) && (keycode <= 0x60))
418          {          {
419                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
420                  fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);  
421                    /* The modifiers to send for this key should be
422                       obtained from the local state. Currently, only
423                       shift is implemented. */
424                    if (state & ShiftMask)
425                    {
426                            tr.modifiers = MapLeftShiftMask;
427                    }
428    
429                    DEBUG_KBD(("Sending guessed scancode 0x%x\n", tr.scancode));
430          }          }
431          else          else
432          {          {
433                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);                  DEBUG_KBD(("No good guess for keycode 0x%x found\n", keycode));
434          }          }
435    
436          return tr;          return tr;
# Line 284  xkeymap_translate_button(unsigned int bu Line 457  xkeymap_translate_button(unsigned int bu
457  }  }
458    
459  char *  char *
460  get_ksname(KeySym keysym)  get_ksname(uint32 keysym)
461  {  {
462          char *ksname = NULL;          char *ksname = NULL;
463    
# Line 296  get_ksname(KeySym keysym) Line 469  get_ksname(KeySym keysym)
469          return ksname;          return ksname;
470  }  }
471    
472  BOOL  static BOOL
473  inhibit_key(KeySym keysym)  is_modifier(uint8 scancode)
474  {  {
475          switch (keysym)          switch (scancode)
476          {          {
477                  case XK_Caps_Lock:                  case SCANCODE_CHAR_LSHIFT:
478                          return True;                  case SCANCODE_CHAR_RSHIFT:
479                          break;                  case SCANCODE_CHAR_LCTRL:
480                  case XK_Multi_key:                  case SCANCODE_CHAR_RCTRL:
481                    case SCANCODE_CHAR_LALT:
482                    case SCANCODE_CHAR_RALT:
483                    case SCANCODE_CHAR_LWIN:
484                    case SCANCODE_CHAR_RWIN:
485                    case SCANCODE_CHAR_NUMLOCK:
486                          return True;                          return True;
                         break;  
487                  default:                  default:
488                          break;                          break;
489          }          }
# Line 314  inhibit_key(KeySym keysym) Line 491  inhibit_key(KeySym keysym)
491  }  }
492    
493  void  void
494    save_remote_modifiers(uint8 scancode)
495    {
496            if (is_modifier(scancode))
497                    return;
498    
499            saved_remote_modifier_state = remote_modifier_state;
500    }
501    
502    void
503    restore_remote_modifiers(uint32 ev_time, uint8 scancode)
504    {
505            key_translation dummy;
506    
507            if (is_modifier(scancode))
508                    return;
509    
510            dummy.scancode = 0;
511            dummy.modifiers = saved_remote_modifier_state;
512            ensure_remote_modifiers(ev_time, dummy);
513    }
514    
515    void
516  ensure_remote_modifiers(uint32 ev_time, key_translation tr)  ensure_remote_modifiers(uint32 ev_time, key_translation tr)
517  {  {
518          /* If this key is a modifier, do nothing */          /* If this key is a modifier, do nothing */
519          switch (tr.scancode)          if (is_modifier(tr.scancode))
520                    return;
521    
522            if (!g_numlock_sync)
523          {          {
524                  case SCANCODE_CHAR_LSHIFT:                  /* NumLock */
525                  case SCANCODE_CHAR_RSHIFT:                  if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)
526                  case SCANCODE_CHAR_LCTRL:                      != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
527                  case SCANCODE_CHAR_RCTRL:                  {
528                  case SCANCODE_CHAR_LALT:                          /* The remote modifier state is not correct */
529                  case SCANCODE_CHAR_RALT:                          uint16 new_remote_state;
530                  case SCANCODE_CHAR_LWIN:  
531                  case SCANCODE_CHAR_RWIN:                          if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
532                  case SCANCODE_CHAR_NUMLOCK:                          {
533                          return;                                  DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
534                  default:                                  new_remote_state = KBD_FLAG_NUMLOCK;
535                          break;                                  remote_modifier_state = MapNumLockMask;
536                            }
537                            else
538                            {
539                                    DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
540                                    new_remote_state = 0;
541                                    remote_modifier_state = 0;
542                            }
543    
544                            rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
545                    }
546          }          }
547    
548          /* Shift */  
549            /* Shift. Left shift and right shift are treated as equal; either is fine. */
550          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)          if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
551              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))              != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
552          {          {
553                  /* The remote modifier state is not correct */                  /* The remote modifier state is not correct */
554                  if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))                  if (MASK_HAS_BITS(tr.modifiers, MapLeftShiftMask))
555                  {                  {
556                          /* Needs this modifier. Send down. */                          /* Needs left shift. Send down. */
557                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);                          rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
558                  }                  }
559                    else if (MASK_HAS_BITS(tr.modifiers, MapRightShiftMask))
560                    {
561                            /* Needs right shift. Send down. */
562                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RSHIFT);
563                    }
564                  else                  else
565                  {                  {
566                          /* Should not use this modifier. Send up. */                          /* Should not use this modifier. Send up for shift currently pressed. */
567                          rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);                          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask))
568                                    /* Left shift is down */
569                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
570                            else
571                                    /* Right shift is down */
572                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
573                  }                  }
574          }          }
575    
# Line 367  ensure_remote_modifiers(uint32 ev_time, Line 590  ensure_remote_modifiers(uint32 ev_time,
590                  }                  }
591          }          }
592    
         /* NumLock */  
         if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)  
             != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))  
         {  
                 /* The remote modifier state is not correct */  
                 DEBUG_KBD(("Remote NumLock state is incorrect. Toggling\n"));  
                 if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))  
                 {  
                         /* Needs this modifier. Toggle */  
                         rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_NUMLOCK);  
                         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_NUMLOCK);  
                 }  
                 else  
                 {  
                         /* Should not use this modifier. Toggle */  
                         rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_NUMLOCK);  
                         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_NUMLOCK);  
                 }  
         }  
593    
594  }  }
595    
596    
597    unsigned int
598    read_keyboard_state()
599    {
600            unsigned int state;
601            Window wdummy;
602            int dummy;
603    
604            XQueryPointer(g_display, g_wnd, &wdummy, &wdummy, &dummy, &dummy, &dummy, &dummy, &state);
605            return state;
606    }
607    
608    
609    uint16
610    ui_get_numlock_state(unsigned int state)
611    {
612            uint16 numlock_state = 0;
613    
614            if (get_key_state(state, XK_Num_Lock))
615                    numlock_state = KBD_FLAG_NUMLOCK;
616    
617            return numlock_state;
618    }
619    
620    
621    void
622    reset_modifier_keys()
623    {
624            unsigned int state = read_keyboard_state();
625    
626            /* reset keys */
627            uint32 ev_time;
628            ev_time = time(NULL);
629    
630            if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask)
631                && !get_key_state(state, XK_Shift_L))
632                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
633    
634            if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask)
635                && !get_key_state(state, XK_Shift_R))
636                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
637    
638            if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask)
639                && !get_key_state(state, XK_Control_L))
640                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
641    
642            if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask)
643                && !get_key_state(state, XK_Control_R))
644                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);
645    
646            if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))
647                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);
648    
649            if (MASK_HAS_BITS(remote_modifier_state, MapRightAltMask) &&
650                !get_key_state(state, XK_Alt_R) && !get_key_state(state, XK_Mode_switch))
651                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
652    
653            reset_winkey(ev_time);
654    
655            if (g_numlock_sync)
656                    rdp_send_input(ev_time, RDP_INPUT_SYNCHRONIZE, 0, ui_get_numlock_state(state), 0);
657    }
658    
659    
660  static void  static void
661  update_modifier_state(uint16 modifiers, BOOL pressed)  update_modifier_state(uint8 scancode, BOOL pressed)
662  {  {
663  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
664          uint16 old_modifier_state;          uint16 old_modifier_state;
# Line 399  update_modifier_state(uint16 modifiers, Line 666  update_modifier_state(uint16 modifiers,
666          old_modifier_state = remote_modifier_state;          old_modifier_state = remote_modifier_state;
667  #endif  #endif
668    
669          switch (modifiers)          switch (scancode)
670          {          {
671                  case SCANCODE_CHAR_LSHIFT:                  case SCANCODE_CHAR_LSHIFT:
672                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);                          MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
# Line 428  update_modifier_state(uint16 modifiers, Line 695  update_modifier_state(uint16 modifiers,
695                  case SCANCODE_CHAR_NUMLOCK:                  case SCANCODE_CHAR_NUMLOCK:
696                          /* KeyReleases for NumLocks are sent immediately. Toggle the                          /* KeyReleases for NumLocks are sent immediately. Toggle the
697                             modifier state only on Keypress */                             modifier state only on Keypress */
698                          if (pressed)                          if (pressed && !g_numlock_sync)
699                          {                          {
700                                  BOOL newNumLockState;                                  BOOL newNumLockState;
701                                  newNumLockState =                                  newNumLockState =
# Line 437  update_modifier_state(uint16 modifiers, Line 704  update_modifier_state(uint16 modifiers,
704                                  MASK_CHANGE_BIT(remote_modifier_state,                                  MASK_CHANGE_BIT(remote_modifier_state,
705                                                  MapNumLockMask, newNumLockState);                                                  MapNumLockMask, newNumLockState);
706                          }                          }
                         break;  
707          }          }
708    
709  #ifdef WITH_DEBUG_KBD  #ifdef WITH_DEBUG_KBD
# Line 453  update_modifier_state(uint16 modifiers, Line 719  update_modifier_state(uint16 modifiers,
719    
720  /* Send keyboard input */  /* Send keyboard input */
721  void  void
722  rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)  rdp_send_scancode(uint32 time, uint16 flags, uint8 scancode)
723  {  {
724          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));          update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
725    

Legend:
Removed from v.113  
changed lines
  Added in v.552

  ViewVC Help
Powered by ViewVC 1.1.26