/[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 376 by jsorg71, Mon May 19 21:36:33 2003 UTC revision 447 by jsorg71, Thu Aug 21 23:23:15 2003 UTC
# Line 39  extern Display *display; Line 39  extern Display *display;
39  extern char keymapname[16];  extern char keymapname[16];
40  extern int keylayout;  extern int keylayout;
41  extern int win_button_size;  extern int win_button_size;
42  extern BOOL enable_compose;  extern BOOL g_enable_compose;
43    
44  static BOOL keymap_loaded;  static BOOL keymap_loaded;
45  static key_translation keymap[KEYMAP_SIZE];  static key_translation keymap[KEYMAP_SIZE];
# Line 140  xkeymap_read(char *mapname) Line 140  xkeymap_read(char *mapname)
140                  if (strncmp(line, "enable_compose", 15) == 0)                  if (strncmp(line, "enable_compose", 15) == 0)
141                  {                  {
142                          DEBUG_KBD(("Enabling compose handling\n"));                          DEBUG_KBD(("Enabling compose handling\n"));
143                          enable_compose = True;                          g_enable_compose = True;
144                          continue;                          continue;
145                  }                  }
146    
# Line 359  xkeymap_translate_key(uint32 keysym, uns Line 359  xkeymap_translate_key(uint32 keysym, uns
359                  warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));                  warning("No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
360    
361          /* not in keymap, try to interpret the raw scancode */          /* not in keymap, try to interpret the raw scancode */
362          if (((int)keycode >= min_keycode) && (keycode <= 0x60))          if (((int) keycode >= min_keycode) && (keycode <= 0x60))
363          {          {
364                  tr.scancode = keycode - min_keycode;                  tr.scancode = keycode - min_keycode;
365    

Legend:
Removed from v.376  
changed lines
  Added in v.447

  ViewVC Help
Powered by ViewVC 1.1.26