/[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 207 by matthewc, Thu Sep 26 14:26:46 2002 UTC revision 227 by astrand, Fri Oct 11 09:38:49 2002 UTC
# 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 205  void Line 214  void
214  xkeymap_init(void)  xkeymap_init(void)
215  {  {
216          unsigned int max_keycode;          unsigned int max_keycode;
217            char *mapname_ptr;
218    
219            /* Make keymapname lowercase */
220            mapname_ptr = keymapname;
221            while (*mapname_ptr)
222            {
223                    *mapname_ptr = tolower(*mapname_ptr);
224                    mapname_ptr++;
225            }
226    
227          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
228          {          {
# Line 223  handle_special_keys(uint32 keysym, unsig Line 241  handle_special_keys(uint32 keysym, unsig
241          switch (keysym)          switch (keysym)
242          {          {
243                  case XK_Break:                  case XK_Break:
244                          if (get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))                  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                                  /* toggle full screen */                                  /* Ctrl-Alt-Break: toggle full screen */
250                                  if (pressed)                                  if (pressed)
251                                          xwin_toggle_fullscreen();                                          xwin_toggle_fullscreen();
252    
253                          }                          }
254                          else                          else if (keysym == XK_Break)
255                          {                          {
256                                  /* Send Break sequence E0 46 E0 C6 */                                  /* Send Break sequence E0 46 E0 C6 */
257                                  if (pressed)                                  if (pressed)
# Line 242  handle_special_keys(uint32 keysym, unsig Line 263  handle_special_keys(uint32 keysym, unsig
263                                  }                                  }
264                                  /* No break sequence */                                  /* No break sequence */
265                          }                          }
266                            else    /* XK_Pause */
                         return True;  
                         break;  
   
                 case XK_Pause:  
                         /* According to MS Keyboard Scan Code  
                            Specification, pressing Pause should result  
                            in E1 1D 45 E1 9D C5. I'm not exactly sure  
                            of how this is supposed to be sent via  
                            RDP. The code below seems to work, but with  
                            the side effect that Left Ctrl stays  
                            down. Therefore, we release it when Pause  
                            is released. */  
                         if (pressed)  
                         {  
                                 rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);  
                                 rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);  
                                 rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);  
                                 rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);  
                                 rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);  
                                 rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);  
                         }  
                         else  
267                          {                          {
268                                  /* Release Left Ctrl */                                  /* According to MS Keyboard Scan Code
269                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,                                     Specification, pressing Pause should result
270                                                 0);                                     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;                          return True;
                         break;  
299    
300                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
301                  case XK_Super_L:                  case XK_Super_L:
# Line 291  handle_special_keys(uint32 keysym, unsig Line 314  handle_special_keys(uint32 keysym, unsig
314                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
315                          }                          }
316                          return True;                          return True;
                         break;  
317          }          }
318          return False;          return False;
319  }  }
# Line 482  reset_modifier_keys(unsigned int state) Line 504  reset_modifier_keys(unsigned int state)
504          uint32 ev_time;          uint32 ev_time;
505          ev_time = time(NULL);          ev_time = time(NULL);
506    
507          if (MASK_HAS_BITS(remote_modifier_state, MapLeftShiftMask) && !get_key_state(state, XK_Shift_L))          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);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
510    
511          if (MASK_HAS_BITS(remote_modifier_state, MapRightShiftMask) && !get_key_state(state, XK_Shift_R))          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);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);
514    
515          if (MASK_HAS_BITS(remote_modifier_state, MapLeftCtrlMask) && !get_key_state(state, XK_Control_L))          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);                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
518    
519          if (MASK_HAS_BITS(remote_modifier_state, MapRightCtrlMask) && !get_key_state(state, XK_Control_R))          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);                  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))          if (MASK_HAS_BITS(remote_modifier_state, MapLeftAltMask) && !get_key_state(state, XK_Alt_L))

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

  ViewVC Help
Powered by ViewVC 1.1.26