/[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 257 by jsorg71, Mon Nov 11 23:15:27 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, get_ksname(keysym)));
                                 DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));  
473    
474                                  if (handle_special_keys(keysym, ev_time, True))                                  ev_time = time(NULL);
475                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, True))
476                                          break;                                          break;
477    
478                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 482  xwin_process_events(void) Line 485  xwin_process_events(void)
485    
486                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);
487                                  break;                                  break;
488    
489                          case KeyRelease:                          case KeyRelease:
490                                  XLookupString((XKeyEvent *) & xevent, str,                                  XLookupString((XKeyEvent *) & xevent, str,
491                                                sizeof(str), &keysym, NULL);                                                sizeof(str), &keysym, NULL);
492    
                                 ksname = get_ksname(keysym);  
493                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,
494                                             ksname));                                             get_ksname(keysym)));
495    
496                                  if (handle_special_keys(keysym, ev_time, False))                                  ev_time = time(NULL);
497                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, False))
498                                          break;                                          break;
499    
500                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 511  xwin_process_events(void) Line 515  xwin_process_events(void)
515                                  if (button == 0)                                  if (button == 0)
516                                          break;                                          break;
517    
518                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
519                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);
520                                  break;                                  break;
521    
522                          case MotionNotify:                          case MotionNotify:
523                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
524                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);
525                                  break;                                  break;
526    
527                          case FocusIn:                          case FocusIn:
528                                  reset_modifier_keys();                                  if (xevent.xfocus.mode == NotifyGrab)
529                                  if (grab_keyboard)                                          break;
530                                    focused = True;
531                                    XQueryPointer(display, wnd, &wdummy, &wdummy, &dummy, &dummy, &dummy, &dummy, &state);
532                                    reset_modifier_keys(state);
533                                    if (grab_keyboard && mouse_in_wnd)
534                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
535                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
536                                  break;                                  break;
537    
538                          case FocusOut:                          case FocusOut:
539                                  if (grab_keyboard)                                  if (xevent.xfocus.mode == NotifyUngrab)
540                                            break;
541                                    focused = False;
542                                    if (xevent.xfocus.mode == NotifyWhileGrabbed)
543                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
544                                  break;                                  break;
545    
546                            case EnterNotify:
547                                    /* we only register for this event when in fullscreen mode */
548                                    /* or grab_keyboard */
549                                    mouse_in_wnd = True;
550                                    if (fullscreen)
551                                    {
552                                            XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);
553                                            break;
554                                    }
555                                    if (focused)
556                                            XGrabKeyboard(display, wnd, True,
557                                                          GrabModeAsync, GrabModeAsync, CurrentTime);
558                                    break;
559    
560                            case LeaveNotify:
561                                    /* we only register for this event when grab_keyboard */
562                                    mouse_in_wnd = False;
563                                    XUngrabKeyboard(display, CurrentTime);
564                                    break;
565    
566                          case Expose:                          case Expose:
567                                  XCopyArea(display, backstore, wnd, gc,                                  XCopyArea(display, backstore, wnd, gc,
568                                            xevent.xexpose.x, xevent.xexpose.y,                                            xevent.xexpose.x, xevent.xexpose.y,
# Line 546  xwin_process_events(void) Line 577  xwin_process_events(void)
577                                  if (xevent.xmapping.request == MappingKeyboard                                  if (xevent.xmapping.request == MappingKeyboard
578                                      || xevent.xmapping.request == MappingModifier)                                      || xevent.xmapping.request == MappingModifier)
579                                          XRefreshKeyboardMapping(&xevent.xmapping);                                          XRefreshKeyboardMapping(&xevent.xmapping);
580    
581                                    if (xevent.xmapping.request == MappingModifier)
582                                    {
583                                            XFreeModifiermap(mod_map);
584                                            mod_map = XGetModifierMapping(display);
585                                    }
586                                  break;                                  break;
587    
588                  }                  }

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

  ViewVC Help
Powered by ViewVC 1.1.26