/[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 203 by matthewc, Thu Sep 26 14:04:30 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 36  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;
# 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 206  xkeymap_init(void) Line 216  xkeymap_init(void)
216          unsigned int max_keycode;          unsigned int max_keycode;
217    
218          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
219                  xkeymap_read(keymapname);          {
220                    if (xkeymap_read(keymapname))
221                            keymap_loaded = True;
222            }
223    
224          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);          XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
225  }  }
# Line 219  handle_special_keys(uint32 keysym, unsig Line 232  handle_special_keys(uint32 keysym, unsig
232          switch (keysym)          switch (keysym)
233          {          {
234                  case XK_Break:                  case XK_Break:
235                          if (get_key_state(state, XK_Alt_L) || get_key_state(state, XK_Alt_R))                  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                                  /* toggle full screen */                                  /* Ctrl-Alt-Break: toggle full screen */
240                                  if (pressed)                                  if (pressed)
241                                          xwin_toggle_fullscreen();                                          xwin_toggle_fullscreen();
242    
243                          }                          }
244                          else                          else if (keysym == XK_Break)
245                          {                          {
246                                  /* Send Break sequence E0 46 E0 C6 */                                  /* Send Break sequence E0 46 E0 C6 */
247                                  if (pressed)                                  if (pressed)
# Line 238  handle_special_keys(uint32 keysym, unsig Line 253  handle_special_keys(uint32 keysym, unsig
253                                  }                                  }
254                                  /* No break sequence */                                  /* No break sequence */
255                          }                          }
256                            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)  
257                          {                          {
258                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);                                  /* According to MS Keyboard Scan Code
259                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x1d, 0);                                     Specification, pressing Pause should result
260                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x45, 0);                                     in E1 1D 45 E1 9D C5. I'm not exactly sure
261                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);                                     of how this is supposed to be sent via
262                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0x9d, 0);                                     RDP. The code below seems to work, but with
263                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xc5, 0);                                     the side effect that Left Ctrl stays
264                          }                                     down. Therefore, we release it when Pause
265                          else                                     is released. */
266                          {                                  if (pressed)
267                                  // Release Left Ctrl                                  {
268                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYRELEASE, 0x1d,                                          rdp_send_input(ev_time, RDP_INPUT_SCANCODE, RDP_KEYPRESS, 0xe1, 0);
269                                                 0);                                          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;                          return True;
                         break;  
283    
284                  case XK_Meta_L: /* Windows keys */                  case XK_Meta_L: /* Windows keys */
285                  case XK_Super_L:                  case XK_Super_L:
# Line 287  handle_special_keys(uint32 keysym, unsig Line 298  handle_special_keys(uint32 keysym, unsig
298                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
299                          }                          }
300                          return True;                          return True;
                         break;  
301          }          }
302          return False;          return False;
303  }  }
# Line 324  xkeymap_translate_key(uint32 keysym, uns Line 334  xkeymap_translate_key(uint32 keysym, uns
334                  return tr;                  return tr;
335          }          }
336    
337          DEBUG_KBD(("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym)));          if (keymap_loaded)
338                    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))

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

  ViewVC Help
Powered by ViewVC 1.1.26