/[rdesktop]/sourceforge.net/trunk/rdesktop/xwin.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/xwin.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 196 by astrand, Wed Sep 25 11:07:12 2002 UTC revision 261 by astrand, Mon Nov 18 15:35:41 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 Window System     User interface services - X Window System
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 31  extern BOOL fullscreen; Line 31  extern BOOL fullscreen;
31  extern BOOL grab_keyboard;  extern BOOL grab_keyboard;
32  extern char title[];  extern char title[];
33  BOOL enable_compose = False;  BOOL enable_compose = False;
34    BOOL focused;
35    BOOL mouse_in_wnd;
36    
37  Display *display;  Display *display;
38  static int x_socket;  static int x_socket;
# Line 42  static int depth; Line 44  static int depth;
44  static int bpp;  static int bpp;
45  static XIM IM;  static XIM IM;
46  static XIC IC;  static XIC IC;
47    static XModifierKeymap *mod_map;
48  static Cursor current_cursor;  static Cursor current_cursor;
49    
50  /* endianness */  /* endianness */
# Line 183  translate_colour(uint32 colour) Line 186  translate_colour(uint32 colour)
186  }  }
187    
188  BOOL  BOOL
189  get_key_state(int keysym)  get_key_state(unsigned int state, uint32 keysym)
190  {  {
191          int keysymMask = 0, modifierpos, key;          int modifierpos, key, keysymMask = 0;
         Window wDummy1, wDummy2;  
         int iDummy3, iDummy4, iDummy5, iDummy6;  
         unsigned int current_state;  
192          int offset;          int offset;
193    
         XModifierKeymap *map = XGetModifierMapping(display);  
194          KeyCode keycode = XKeysymToKeycode(display, keysym);          KeyCode keycode = XKeysymToKeycode(display, keysym);
195    
196          if (keycode == NoSymbol)          if (keycode == NoSymbol)
# Line 199  get_key_state(int keysym) Line 198  get_key_state(int keysym)
198    
199          for (modifierpos = 0; modifierpos < 8; modifierpos++)          for (modifierpos = 0; modifierpos < 8; modifierpos++)
200          {          {
201                  offset = map->max_keypermod * modifierpos;                  offset = mod_map->max_keypermod * modifierpos;
202    
203                  for (key = 0; key < map->max_keypermod; key++)                  for (key = 0; key < mod_map->max_keypermod; key++)
204                  {                  {
205                          if (map->modifiermap[offset + key] == keycode)                          if (mod_map->modifiermap[offset + key] == keycode)
206                                  keysymMask = 1 << modifierpos;                                  keysymMask |= 1 << modifierpos;
207                  }                  }
208          }          }
209    
210          XQueryPointer(display, DefaultRootWindow(display), &wDummy1,          return (state & keysymMask) ? True : False;
                       &wDummy2, &iDummy3, &iDummy4, &iDummy5, &iDummy6, &current_state);  
   
         XFreeModifiermap(map);  
   
         return (current_state & keysymMask) ? True : False;  
211  }  }
212    
213  BOOL  BOOL
# Line 226  ui_init(void) Line 220  ui_init(void)
220          display = XOpenDisplay(NULL);          display = XOpenDisplay(NULL);
221          if (display == NULL)          if (display == NULL)
222          {          {
223                  error("Failed to open display\n");                  error("Failed to open display: %s\n", XDisplayName(NULL));
224                  return False;                  return False;
225          }          }
226    
# Line 286  ui_init(void) Line 280  ui_init(void)
280                  XFillRectangle(display, backstore, gc, 0, 0, width, height);                  XFillRectangle(display, backstore, gc, 0, 0, width, height);
281          }          }
282    
283            mod_map = XGetModifierMapping(display);
284    
285          if (enable_compose)          if (enable_compose)
286                  IM = XOpenIM(display, NULL, NULL, NULL);                  IM = XOpenIM(display, NULL, NULL, NULL);
287    
# Line 299  ui_deinit(void) Line 295  ui_deinit(void)
295          if (IM != NULL)          if (IM != NULL)
296                  XCloseIM(IM);                  XCloseIM(IM);
297    
298            XFreeModifiermap(mod_map);
299    
300          if (ownbackstore)          if (ownbackstore)
301                  XFreePixmap(display, backstore);                  XFreePixmap(display, backstore);
302    
# Line 349  ui_create_window(void) Line 347  ui_create_window(void)
347          }          }
348    
349          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
350                  StructureNotifyMask | FocusChangeMask;                  VisibilityChangeMask | FocusChangeMask;
351    
352          if (sendmotion)          if (sendmotion)
353                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
354          if (ownbackstore)          if (ownbackstore)
355                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
356            if (fullscreen || grab_keyboard)
357                    input_mask |= EnterWindowMask;
358            if (grab_keyboard)
359                    input_mask |= LeaveWindowMask;
360    
361          if (IM != NULL)          if (IM != NULL)
362          {          {
# Line 369  ui_create_window(void) Line 371  ui_create_window(void)
371          XSelectInput(display, wnd, input_mask);          XSelectInput(display, wnd, input_mask);
372          XMapWindow(display, wnd);          XMapWindow(display, wnd);
373    
374          /* wait for MapNotify */          /* wait for VisibilityNotify */
375          do          do
376          {          {
377                  XMaskEvent(display, StructureNotifyMask, &xevent);                  XMaskEvent(display, VisibilityChangeMask, &xevent);
378          }          }
379          while (xevent.type != MapNotify);          while (xevent.type != VisibilityNotify);
380    
381          if (fullscreen)          focused = False;
382                  XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);          mouse_in_wnd = False;
383    
384          return True;          return True;
385  }  }
# Line 425  xwin_process_events(void) Line 427  xwin_process_events(void)
427          uint16 button, flags;          uint16 button, flags;
428          uint32 ev_time;          uint32 ev_time;
429          key_translation tr;          key_translation tr;
         char *ksname = NULL;  
430          char str[256];          char str[256];
431          Status status;          Status status;
432            unsigned int state;
433            Window wdummy;
434            int dummy;
435    
436          while (XPending(display) > 0)          while (XPending(display) > 0)
437          {          {
# Line 439  xwin_process_events(void) Line 443  xwin_process_events(void)
443                          continue;                          continue;
444                  }                  }
445    
                 ev_time = time(NULL);  
446                  flags = 0;                  flags = 0;
447    
448                  switch (xevent.type)                  switch (xevent.type)
# Line 466  xwin_process_events(void) Line 469  xwin_process_events(void)
469                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
470                                  }                                  }
471    
472                                  ksname = get_ksname(keysym);                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym,
473                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));                                             get_ksname(keysym)));
474    
475                                  if (handle_special_keys(keysym, ev_time, True))                                  ev_time = time(NULL);
476                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, True))
477                                          break;                                          break;
478    
479                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 482  xwin_process_events(void) Line 486  xwin_process_events(void)
486    
487                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);
488                                  break;                                  break;
489    
490                          case KeyRelease:                          case KeyRelease:
491                                  XLookupString((XKeyEvent *) & xevent, str,                                  XLookupString((XKeyEvent *) & xevent, str,
492                                                sizeof(str), &keysym, NULL);                                                sizeof(str), &keysym, NULL);
493    
                                 ksname = get_ksname(keysym);  
494                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,
495                                             ksname));                                             get_ksname(keysym)));
496    
497                                  if (handle_special_keys(keysym, ev_time, False))                                  ev_time = time(NULL);
498                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, False))
499                                          break;                                          break;
500    
501                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 511  xwin_process_events(void) Line 516  xwin_process_events(void)
516                                  if (button == 0)                                  if (button == 0)
517                                          break;                                          break;
518    
519                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
520                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);
521                                  break;                                  break;
522    
523                          case MotionNotify:                          case MotionNotify:
524                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
525                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);
526                                  break;                                  break;
527    
528                          case FocusIn:                          case FocusIn:
529                                  reset_modifier_keys();                                  if (xevent.xfocus.mode == NotifyGrab)
530                                  if (grab_keyboard)                                          break;
531                                    focused = True;
532                                    XQueryPointer(display, wnd, &wdummy, &wdummy, &dummy, &dummy,
533                                                  &dummy, &dummy, &state);
534                                    reset_modifier_keys(state);
535                                    if (grab_keyboard && mouse_in_wnd)
536                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
537                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
538                                  break;                                  break;
539    
540                          case FocusOut:                          case FocusOut:
541                                  if (grab_keyboard)                                  if (xevent.xfocus.mode == NotifyUngrab)
542                                            break;
543                                    focused = False;
544                                    if (xevent.xfocus.mode == NotifyWhileGrabbed)
545                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
546                                  break;                                  break;
547    
548                            case EnterNotify:
549                                    /* we only register for this event when in fullscreen mode */
550                                    /* or grab_keyboard */
551                                    mouse_in_wnd = True;
552                                    if (fullscreen)
553                                    {
554                                            XSetInputFocus(display, wnd, RevertToPointerRoot,
555                                                           CurrentTime);
556                                            break;
557                                    }
558                                    if (focused)
559                                            XGrabKeyboard(display, wnd, True,
560                                                          GrabModeAsync, GrabModeAsync, CurrentTime);
561                                    break;
562    
563                            case LeaveNotify:
564                                    /* we only register for this event when grab_keyboard */
565                                    mouse_in_wnd = False;
566                                    XUngrabKeyboard(display, CurrentTime);
567                                    break;
568    
569                          case Expose:                          case Expose:
570                                  XCopyArea(display, backstore, wnd, gc,                                  XCopyArea(display, backstore, wnd, gc,
571                                            xevent.xexpose.x, xevent.xexpose.y,                                            xevent.xexpose.x, xevent.xexpose.y,
# Line 546  xwin_process_events(void) Line 580  xwin_process_events(void)
580                                  if (xevent.xmapping.request == MappingKeyboard                                  if (xevent.xmapping.request == MappingKeyboard
581                                      || xevent.xmapping.request == MappingModifier)                                      || xevent.xmapping.request == MappingModifier)
582                                          XRefreshKeyboardMapping(&xevent.xmapping);                                          XRefreshKeyboardMapping(&xevent.xmapping);
583    
584                                    if (xevent.xmapping.request == MappingModifier)
585                                    {
586                                            XFreeModifiermap(mod_map);
587                                            mod_map = XGetModifierMapping(display);
588                                    }
589                                  break;                                  break;
590    
591                  }                  }

Legend:
Removed from v.196  
changed lines
  Added in v.261

  ViewVC Help
Powered by ViewVC 1.1.26