/[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 82 by astrand, Tue Jul 30 07:18:48 2002 UTC revision 273 by astrand, Tue Nov 19 14:22:47 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 22  Line 22 
22  #include <X11/Xutil.h>  #include <X11/Xutil.h>
23  #include <time.h>  #include <time.h>
24  #include <errno.h>  #include <errno.h>
 #define XK_MISCELLANY  
 #include <X11/keysymdef.h>  
25  #include "rdesktop.h"  #include "rdesktop.h"
 #include "scancodes.h"  
26    
27  extern int width;  extern int width;
28  extern int height;  extern int height;
29  extern BOOL sendmotion;  extern BOOL sendmotion;
30  extern BOOL fullscreen;  extern BOOL fullscreen;
31  extern BOOL grab_keyboard;  extern BOOL grab_keyboard;
32    extern BOOL hide_decorations;
33    extern char title[];
34    BOOL enable_compose = False;
35    BOOL focused;
36    BOOL mouse_in_wnd;
37    
38  Display *display = NULL;  Display *display;
39  static int x_socket;  static int x_socket;
40    static Screen *screen;
41  static Window wnd;  static Window wnd;
42  static GC gc;  static GC gc;
43  static Visual *visual;  static Visual *visual;
44  static int depth;  static int depth;
45  static int bpp;  static int bpp;
46    static XIM IM;
47    static XIC IC;
48    static XModifierKeymap *mod_map;
49    static Cursor current_cursor;
50    
51  /* endianness */  /* endianness */
52  static BOOL host_be;  static BOOL host_be;
# Line 49  static BOOL xserver_be; Line 56  static BOOL xserver_be;
56  static BOOL ownbackstore;  static BOOL ownbackstore;
57  static Pixmap backstore;  static Pixmap backstore;
58    
59    /* MWM decorations */
60    #define MWM_HINTS_DECORATIONS   (1L << 1)
61    #define PROP_MOTIF_WM_HINTS_ELEMENTS    5
62    typedef struct
63    {
64            unsigned long flags;
65            unsigned long functions;
66            unsigned long decorations;
67            long inputMode;
68            unsigned long status;
69    }
70    PropMotifWmHints;
71    
72    
73  #define FILL_RECTANGLE(x,y,cx,cy)\  #define FILL_RECTANGLE(x,y,cx,cy)\
74  { \  { \
75          XFillRectangle(display, wnd, gc, x, y, cx, cy); \          XFillRectangle(display, wnd, gc, x, y, cx, cy); \
# Line 57  static Pixmap backstore; Line 78  static Pixmap backstore;
78  }  }
79    
80  /* colour maps */  /* colour maps */
 static BOOL owncolmap;  
81  static Colormap xcolmap;  static Colormap xcolmap;
 static uint32 white;  
82  static uint32 *colmap;  static uint32 *colmap;
 static XIM IM = NULL;  
 static XIC IC = NULL;  
   
 /* Compose support */  
 BOOL enable_compose = False;  
83    
84  #define TRANSLATE(col)          ( owncolmap ? col : translate_colour(colmap[col]) )  #define SET_FOREGROUND(col)     XSetForeground(display, gc, translate_colour(colmap[col]));
85  #define SET_FOREGROUND(col)     XSetForeground(display, gc, TRANSLATE(col));  #define SET_BACKGROUND(col)     XSetBackground(display, gc, translate_colour(colmap[col]));
 #define SET_BACKGROUND(col)     XSetBackground(display, gc, TRANSLATE(col));  
86    
87  static int rop2_map[] = {  static int rop2_map[] = {
88          GXclear,                /* 0 */          GXclear,                /* 0 */
# Line 93  static int rop2_map[] = { Line 106  static int rop2_map[] = {
106  #define SET_FUNCTION(rop2)      { if (rop2 != ROP2_COPY) XSetFunction(display, gc, rop2_map[rop2]); }  #define SET_FUNCTION(rop2)      { if (rop2 != ROP2_COPY) XSetFunction(display, gc, rop2_map[rop2]); }
107  #define RESET_FUNCTION(rop2)    { if (rop2 != ROP2_COPY) XSetFunction(display, gc, GXcopy); }  #define RESET_FUNCTION(rop2)    { if (rop2 != ROP2_COPY) XSetFunction(display, gc, GXcopy); }
108    
109    void
110    mwm_hide_decorations(void)
111    {
112            PropMotifWmHints motif_hints;
113            Atom hintsatom;
114    
115            /* setup the property */
116            motif_hints.flags = MWM_HINTS_DECORATIONS;
117            motif_hints.decorations = 0;
118    
119            /* get the atom for the property */
120            hintsatom = XInternAtom(display, "_MOTIF_WM_HINTS", False);
121            if (!hintsatom)
122            {
123                    error("Failed to get atom _MOTIF_WM_HINTS\n");
124                    return;
125            }
126    
127            XChangeProperty(display, wnd, hintsatom, hintsatom, 32, PropModeReplace,
128                            (unsigned char *) &motif_hints, PROP_MOTIF_WM_HINTS_ELEMENTS);
129    }
130    
131  static void  static void
132  translate8(uint8 * data, uint8 * out, uint8 * end)  translate8(uint8 * data, uint8 * out, uint8 * end)
133  {  {
# Line 187  translate_colour(uint32 colour) Line 222  translate_colour(uint32 colour)
222          return colour;          return colour;
223  }  }
224    
225  static unsigned long  BOOL
226  init_inputmethod(void)  get_key_state(unsigned int state, uint32 keysym)
227  {  {
228          unsigned long filtered_events = 0;          int modifierpos, key, keysymMask = 0;
229            int offset;
         IM = XOpenIM(display, NULL, NULL, NULL);  
         if (IM == NULL)  
         {  
                 error("Failed to open input method\n");  
         }  
230    
231          if (IM != NULL)          KeyCode keycode = XKeysymToKeycode(display, keysym);
         {  
                 /* Must be done after XCreateWindow */  
                 IC = XCreateIC(IM, XNInputStyle,  
                                (XIMPreeditNothing | XIMStatusNothing),  
                                XNClientWindow, wnd, XNFocusWindow, wnd, NULL);  
232    
233                  if (IC == NULL)          if (keycode == NoSymbol)
234                  {                  return False;
                         error("Failed to create input context\n");  
                         XCloseIM(IM);  
                         IM = NULL;  
                 }  
         }  
235    
236          /* For correct Multi_key/Compose processing, I guess.          for (modifierpos = 0; modifierpos < 8; modifierpos++)
            It seems to work alright anyway, though. */  
         if (IC != NULL)  
237          {          {
238                  if (XGetICValues(IC, XNFilterEvents, &filtered_events, NULL) != NULL)                  offset = mod_map->max_keypermod * modifierpos;
                 {  
                         error("Failed to obtain XNFilterEvents value from IC\n");  
                         filtered_events = 0;  
                 }  
         }  
         return filtered_events;  
 }  
239    
240  static void                  for (key = 0; key < mod_map->max_keypermod; key++)
 close_inputmethod(void)  
 {  
         if (IC != NULL)  
         {  
                 XDestroyIC(IC);  
                 if (IM != NULL)  
241                  {                  {
242                          XCloseIM(IM);                          if (mod_map->modifiermap[offset + key] == keycode)
243                          IM = NULL;                                  keysymMask |= 1 << modifierpos;
244                  }                  }
245          }          }
246    
247            return (state & keysymMask) ? True : False;
248  }  }
249    
250  BOOL  BOOL
251  ui_init()  ui_init(void)
252  {  {
253          Screen *screen;          XPixmapFormatValues *pfm;
254            uint16 test;
255            int i;
256    
257          display = XOpenDisplay(NULL);          display = XOpenDisplay(NULL);
258          if (display == NULL)          if (display == NULL)
259          {          {
260                  error("Failed to open display\n");                  error("Failed to open display: %s\n", XDisplayName(NULL));
261                  return False;                  return False;
262          }          }
         if (fullscreen)  
         {  
                 screen = DefaultScreenOfDisplay(display);  
                 width = WidthOfScreen(screen);  
                 height = HeightOfScreen(screen);  
         }  
         return True;  
 }  
   
 BOOL  
 ui_create_window(char *title)  
 {  
         XSetWindowAttributes attribs;  
         XClassHint *classhints;  
         XSizeHints *sizehints;  
         unsigned long input_mask;  
         XPixmapFormatValues *pfm;  
         Screen *screen;  
         uint16 test;  
         int i;  
263    
264          x_socket = ConnectionNumber(display);          x_socket = ConnectionNumber(display);
265          screen = DefaultScreenOfDisplay(display);          screen = DefaultScreenOfDisplay(display);
# Line 298  ui_create_window(char *title) Line 288  ui_create_window(char *title)
288                  return False;                  return False;
289          }          }
290    
291          if (depth <= 8)          xcolmap = DefaultColormapOfScreen(screen);
292                  owncolmap = True;          gc = XCreateGC(display, RootWindowOfScreen(screen), 0, NULL);
293          else  
294                  xcolmap = DefaultColormapOfScreen(screen);          if (DoesBackingStore(screen) != Always)
295                    ownbackstore = True;
296    
297          test = 1;          test = 1;
298          host_be = !(BOOL) (*(uint8 *) (&test));          host_be = !(BOOL) (*(uint8 *) (&test));
299          xserver_be = (ImageByteOrder(display) == MSBFirst);          xserver_be = (ImageByteOrder(display) == MSBFirst);
300    
301          white = WhitePixelOfScreen(screen);          if ((width == 0) || (height == 0))
302          attribs.background_pixel = BlackPixelOfScreen(screen);          {
303          attribs.backing_store = DoesBackingStore(screen);                  /* Fetch geometry from _NET_WORKAREA */
304                    uint32 xpos, ypos;
305    
306          if (attribs.backing_store == NotUseful)                  if (get_current_workarea(&xpos, &ypos, &width, &height) < 0)
307                  ownbackstore = True;                  {
308                            error("Failed to get workarea.\n");
309                            error("Perhaps your window manager does not support EWMH?\n");
310                            error("Defaulting to geometry 800x600\n");
311                            width = 800; height = 600;
312                    }
313            }
314    
315          if (fullscreen)          if (fullscreen)
316          {          {
                 attribs.override_redirect = True;  
317                  width = WidthOfScreen(screen);                  width = WidthOfScreen(screen);
318                  height = HeightOfScreen(screen);                  height = HeightOfScreen(screen);
319          }          }
320          else  
321            /* make sure width is a multiple of 4 */
322            width = (width + 3) & ~3;
323    
324            if (ownbackstore)
325          {          {
326                  attribs.override_redirect = False;                  backstore =
327                            XCreatePixmap(display, RootWindowOfScreen(screen), width, height, depth);
328    
329                    /* clear to prevent rubbish being exposed at startup */
330                    XSetForeground(display, gc, BlackPixelOfScreen(screen));
331                    XFillRectangle(display, backstore, gc, 0, 0, width, height);
332          }          }
333    
334          width = (width + 3) & ~3;       /* make width a multiple of 32 bits */          mod_map = XGetModifierMapping(display);
335    
336            if (enable_compose)
337                    IM = XOpenIM(display, NULL, NULL, NULL);
338    
339            xkeymap_init();
340            return True;
341    }
342    
343    void
344    ui_deinit(void)
345    {
346            if (IM != NULL)
347                    XCloseIM(IM);
348    
349            XFreeModifiermap(mod_map);
350    
351            if (ownbackstore)
352                    XFreePixmap(display, backstore);
353    
354            XFreeGC(display, gc);
355            XCloseDisplay(display);
356            display = NULL;
357    }
358    
359    BOOL
360    ui_create_window(void)
361    {
362            XSetWindowAttributes attribs;
363            XClassHint *classhints;
364            XSizeHints *sizehints;
365            int wndwidth, wndheight;
366            long input_mask, ic_input_mask;
367            XEvent xevent;
368    
369          wnd = XCreateWindow(display, RootWindowOfScreen(screen),          wndwidth = fullscreen ? WidthOfScreen(screen) : width;
370                              0, 0, width, height, 0, CopyFromParent,          wndheight = fullscreen ? HeightOfScreen(screen) : height;
371                              InputOutput, CopyFromParent,  
372                              CWBackingStore | CWBackPixel | CWOverrideRedirect, &attribs);          attribs.background_pixel = BlackPixelOfScreen(screen);
373            attribs.backing_store = ownbackstore ? NotUseful : Always;
374            attribs.override_redirect = fullscreen;
375    
376            wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, wndwidth, wndheight,
377                                0, CopyFromParent, InputOutput, CopyFromParent,
378                                CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);
379    
380          XStoreName(display, wnd, title);          XStoreName(display, wnd, title);
381    
382            if (hide_decorations)
383                    mwm_hide_decorations();
384    
385          classhints = XAllocClassHint();          classhints = XAllocClassHint();
386          if (classhints != NULL)          if (classhints != NULL)
387          {          {
# Line 352  ui_create_window(char *title) Line 400  ui_create_window(char *title)
400                  XFree(sizehints);                  XFree(sizehints);
401          }          }
402    
403          xkeymap_init2();          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
404                    VisibilityChangeMask | FocusChangeMask;
405    
         input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask;  
         if (grab_keyboard)  
                 input_mask |= EnterWindowMask | LeaveWindowMask;  
406          if (sendmotion)          if (sendmotion)
407                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
   
408          if (ownbackstore)          if (ownbackstore)
409                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
410            if (fullscreen || grab_keyboard)
411                    input_mask |= EnterWindowMask;
412            if (grab_keyboard)
413                    input_mask |= LeaveWindowMask;
414    
415          if (enable_compose)          if (IM != NULL)
416                  input_mask |= init_inputmethod();          {
417                    IC = XCreateIC(IM, XNInputStyle, (XIMPreeditNothing | XIMStatusNothing),
418                                   XNClientWindow, wnd, XNFocusWindow, wnd, NULL);
419    
420          XSelectInput(display, wnd, input_mask);                  if ((IC != NULL)
421                        && (XGetICValues(IC, XNFilterEvents, &ic_input_mask, NULL) == NULL))
422                            input_mask |= ic_input_mask;
423            }
424    
425          gc = XCreateGC(display, wnd, 0, NULL);          XSelectInput(display, wnd, input_mask);
426            XMapWindow(display, wnd);
427    
428          if (ownbackstore)          /* wait for VisibilityNotify */
429                  backstore = XCreatePixmap(display, wnd, width, height, depth);          do
430            {
431                    XMaskEvent(display, VisibilityChangeMask, &xevent);
432            }
433            while (xevent.type != VisibilityNotify);
434    
435          XMapWindow(display, wnd);          focused = False;
436            mouse_in_wnd = False;
437    
438          return True;          return True;
439  }  }
440    
441  void  void
442  ui_destroy_window()  ui_destroy_window(void)
443  {  {
444          if (ownbackstore)          if (IC != NULL)
445                  XFreePixmap(display, backstore);                  XDestroyIC(IC);
446    
447          XFreeGC(display, gc);          XDestroyWindow(display, wnd);
448    }
449    
450          close_inputmethod();  void
451    xwin_toggle_fullscreen(void)
452    {
453            Pixmap contents = 0;
454    
455          XDestroyWindow(display, wnd);          if (!ownbackstore)
456          XCloseDisplay(display);          {
457          display = NULL;                  /* need to save contents of window */
458                    contents = XCreatePixmap(display, wnd, width, height, depth);
459                    XCopyArea(display, wnd, contents, gc, 0, 0, width, height, 0, 0);
460            }
461    
462            ui_destroy_window();
463            fullscreen = !fullscreen;
464            ui_create_window();
465    
466            XDefineCursor(display, wnd, current_cursor);
467    
468            if (!ownbackstore)
469            {
470                    XCopyArea(display, contents, wnd, gc, 0, 0, width, height, 0, 0);
471                    XFreePixmap(display, contents);
472            }
473  }  }
474    
475    /* Process all events in Xlib queue */
476  static void  static void
477  xwin_process_events()  xwin_process_events(void)
478  {  {
479          XEvent xevent;          XEvent xevent;
   
480          KeySym keysym;          KeySym keysym;
481          uint16 button, flags;          uint16 button, flags;
482          uint32 ev_time;          uint32 ev_time;
483          key_translation tr;          key_translation tr;
         char *ksname = NULL;  
484          char str[256];          char str[256];
485          Status status;          Status status;
486            unsigned int state;
487            Window wdummy;
488            int dummy;
489    
490          /* Refresh keyboard mapping if it has changed. This is important for          while (XPending(display) > 0)
            Xvnc, since it allocates keycodes dynamically */  
         if (XCheckTypedEvent(display, MappingNotify, &xevent))  
491          {          {
492                  if (xevent.xmapping.request == MappingKeyboard                  XNextEvent(display, &xevent);
                     || xevent.xmapping.request == MappingModifier)  
                         XRefreshKeyboardMapping(&xevent.xmapping);  
         }  
493    
494          while (XCheckMaskEvent(display, ~0, &xevent))                  if ((IC != NULL) && (XFilterEvent(&xevent, None) == True))
         {  
                 if (enable_compose && (XFilterEvent(&xevent, None) == True))  
495                  {                  {
496                          DEBUG_KBD("Filtering event\n");                          DEBUG_KBD(("Filtering event\n"));
497                          continue;                          continue;
498                  }                  }
499    
                 ev_time = time(NULL);  
500                  flags = 0;                  flags = 0;
501    
502                  switch (xevent.type)                  switch (xevent.type)
# Line 445  xwin_process_events() Line 518  xwin_process_events()
518                                  else                                  else
519                                  {                                  {
520                                          /* Plain old XLookupString */                                          /* Plain old XLookupString */
521                                          DEBUG_KBD("No input context, using XLookupString\n");                                          DEBUG_KBD(("\nNo input context, using XLookupString\n"));
522                                          XLookupString((XKeyEvent *) & xevent,                                          XLookupString((XKeyEvent *) & xevent,
523                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
524                                  }                                  }
525    
526                                  ksname = get_ksname(keysym);                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym,
527                                  DEBUG_KBD("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname);                                             get_ksname(keysym)));
528    
529                                  if (inhibit_key(keysym))                                  ev_time = time(NULL);
530                                  {                                  if (handle_special_keys(keysym, xevent.xkey.state, ev_time, True))
                                         DEBUG_KBD("Inhibiting key\n");  
531                                          break;                                          break;
                                 }  
532    
533                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
534                                                             xevent.xkey.keycode, xevent.xkey.state);                                                             xevent.xkey.keycode, xevent.xkey.state);
535    
                                 ensure_remote_modifiers(ev_time, tr);  
   
536                                  if (tr.scancode == 0)                                  if (tr.scancode == 0)
537                                          break;                                          break;
538    
539                                    ensure_remote_modifiers(ev_time, tr);
540    
541                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);
542                                  break;                                  break;
543    
544                          case KeyRelease:                          case KeyRelease:
545                                  XLookupString((XKeyEvent *) & xevent, str,                                  XLookupString((XKeyEvent *) & xevent, str,
546                                                sizeof(str), &keysym, NULL);                                                sizeof(str), &keysym, NULL);
547    
548                                  ksname = get_ksname(keysym);                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,
549                                  DEBUG_KBD("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym, ksname);                                             get_ksname(keysym)));
550    
551                                  if (inhibit_key(keysym))                                  ev_time = time(NULL);
552                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, False))
553                                          break;                                          break;
554    
555                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 497  xwin_process_events() Line 570  xwin_process_events()
570                                  if (button == 0)                                  if (button == 0)
571                                          break;                                          break;
572    
573                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
574                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);
575                                  break;                                  break;
576    
577                          case MotionNotify:                          case MotionNotify:
578                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
579                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);
580                                  break;                                  break;
581    
582                          case FocusIn:                          case FocusIn:
583                                  /* fall through */                                  if (xevent.xfocus.mode == NotifyGrab)
584                          case EnterNotify:                                          break;
585                                  if (grab_keyboard)                                  focused = True;
586                                    XQueryPointer(display, wnd, &wdummy, &wdummy, &dummy, &dummy,
587                                                  &dummy, &dummy, &state);
588                                    reset_modifier_keys(state);
589                                    if (grab_keyboard && mouse_in_wnd)
590                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
591                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
592                                  break;                                  break;
593    
594                          case FocusOut:                          case FocusOut:
595                                  /* reset keys */                                  if (xevent.xfocus.mode == NotifyUngrab)
596                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE,                                          break;
597                                                 KBD_FLAG_DOWN | KBD_FLAG_UP, SCANCODE_CHAR_LCTRL, 0);                                  focused = False;
598                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE,                                  if (xevent.xfocus.mode == NotifyWhileGrabbed)
                                                KBD_FLAG_DOWN | KBD_FLAG_UP, SCANCODE_CHAR_LALT, 0);  
                                 /* fall through */  
                         case LeaveNotify:  
                                 if (grab_keyboard)  
599                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
600                                  break;                                  break;
601    
602                            case EnterNotify:
603                                    /* we only register for this event when in fullscreen mode */
604                                    /* or grab_keyboard */
605                                    mouse_in_wnd = True;
606                                    if (fullscreen)
607                                    {
608                                            XSetInputFocus(display, wnd, RevertToPointerRoot,
609                                                           CurrentTime);
610                                            break;
611                                    }
612                                    if (focused)
613                                            XGrabKeyboard(display, wnd, True,
614                                                          GrabModeAsync, GrabModeAsync, CurrentTime);
615                                    break;
616    
617                            case LeaveNotify:
618                                    /* we only register for this event when grab_keyboard */
619                                    mouse_in_wnd = False;
620                                    XUngrabKeyboard(display, CurrentTime);
621                                    break;
622    
623                          case Expose:                          case Expose:
624                                  XCopyArea(display, backstore, wnd, gc,                                  XCopyArea(display, backstore, wnd, gc,
625                                            xevent.xexpose.x, xevent.xexpose.y,                                            xevent.xexpose.x, xevent.xexpose.y,
# Line 533  xwin_process_events() Line 627  xwin_process_events()
627                                            xevent.xexpose.height,                                            xevent.xexpose.height,
628                                            xevent.xexpose.x, xevent.xexpose.y);                                            xevent.xexpose.x, xevent.xexpose.y);
629                                  break;                                  break;
630    
631                            case MappingNotify:
632                                    /* Refresh keyboard mapping if it has changed. This is important for
633                                       Xvnc, since it allocates keycodes dynamically */
634                                    if (xevent.xmapping.request == MappingKeyboard
635                                        || xevent.xmapping.request == MappingModifier)
636                                            XRefreshKeyboardMapping(&xevent.xmapping);
637    
638                                    if (xevent.xmapping.request == MappingModifier)
639                                    {
640                                            XFreeModifiermap(mod_map);
641                                            mod_map = XGetModifierMapping(display);
642                                    }
643                                    break;
644    
645                  }                  }
646          }          }
647  }  }
# Line 547  ui_select(int rdp_socket) Line 656  ui_select(int rdp_socket)
656    
657          while (True)          while (True)
658          {          {
659                    /* Process any events already waiting */
660                    xwin_process_events();
661    
662                  FD_ZERO(&rfds);                  FD_ZERO(&rfds);
663                  FD_SET(rdp_socket, &rfds);                  FD_SET(rdp_socket, &rfds);
664                  if (display != NULL)                  FD_SET(x_socket, &rfds);
                 {  
                         FD_SET(x_socket, &rfds);  
                         XFlush(display);  
                 }  
665    
666                  switch (select(n, &rfds, NULL, NULL, NULL))                  switch (select(n, &rfds, NULL, NULL, NULL))
667                  {                  {
# Line 564  ui_select(int rdp_socket) Line 672  ui_select(int rdp_socket)
672                                  continue;                                  continue;
673                  }                  }
674    
                 if (FD_ISSET(x_socket, &rfds))  
                         xwin_process_events();  
   
675                  if (FD_ISSET(rdp_socket, &rfds))                  if (FD_ISSET(rdp_socket, &rfds))
676                          return;                          return;
677          }          }
# Line 585  ui_create_bitmap(int width, int height, Line 690  ui_create_bitmap(int width, int height,
690          Pixmap bitmap;          Pixmap bitmap;
691          uint8 *tdata;          uint8 *tdata;
692    
693          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
694          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
695          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
696                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
# Line 593  ui_create_bitmap(int width, int height, Line 698  ui_create_bitmap(int width, int height,
698          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
699    
700          XFree(image);          XFree(image);
701          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
702          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
703  }  }
704    
# Line 604  ui_paint_bitmap(int x, int y, int cx, in Line 708  ui_paint_bitmap(int x, int y, int cx, in
708          XImage *image;          XImage *image;
709          uint8 *tdata;          uint8 *tdata;
710    
711          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
712          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
713                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
714    
# Line 619  ui_paint_bitmap(int x, int y, int cx, in Line 723  ui_paint_bitmap(int x, int y, int cx, in
723          }          }
724    
725          XFree(image);          XFree(image);
726          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
727  }  }
728    
729  void  void
# Line 735  ui_create_cursor(unsigned int x, unsigne Line 838  ui_create_cursor(unsigned int x, unsigne
838  void  void
839  ui_set_cursor(HCURSOR cursor)  ui_set_cursor(HCURSOR cursor)
840  {  {
841          XDefineCursor(display, wnd, (Cursor) cursor);          current_cursor = (Cursor) cursor;
842            XDefineCursor(display, wnd, current_cursor);
843  }  }
844    
845  void  void
# Line 755  ui_create_colourmap(COLOURMAP * colours) Line 859  ui_create_colourmap(COLOURMAP * colours)
859  {  {
860          COLOURENTRY *entry;          COLOURENTRY *entry;
861          int i, ncolours = colours->ncolours;          int i, ncolours = colours->ncolours;
862            uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
863          if (owncolmap)          XColor xentry;
864            XColor xc_cache[256];
865            uint32 colour;
866            int colLookup = 256;
867            for (i = 0; i < ncolours; i++)
868          {          {
869                  XColor *xcolours, *xentry;                  entry = &colours->colours[i];
870                  Colormap map;                  MAKE_XCOLOR(&xentry, entry);
871    
872                  xcolours = xmalloc(sizeof(XColor) * ncolours);                  if (XAllocColor(display, xcolmap, &xentry) == 0)
                 for (i = 0; i < ncolours; i++)  
873                  {                  {
874                          entry = &colours->colours[i];                          /* Allocation failed, find closest match. */
875                          xentry = &xcolours[i];                          int j = 256;
876                          xentry->pixel = i;                          int nMinDist = 3 * 256 * 256;
877                          MAKE_XCOLOR(xentry, entry);                          long nDist = nMinDist;
                 }  
878    
879                  map = XCreateColormap(display, wnd, visual, AllocAll);                          /* only get the colors once */
880                  XStoreColors(display, map, xcolours, ncolours);                          while (colLookup--)
881                            {
882                                    xc_cache[colLookup].pixel = colLookup;
883                                    xc_cache[colLookup].red = xc_cache[colLookup].green =
884                                            xc_cache[colLookup].blue = 0;
885                                    xc_cache[colLookup].flags = 0;
886                                    XQueryColor(display,
887                                                DefaultColormap(display, DefaultScreen(display)),
888                                                &xc_cache[colLookup]);
889                            }
890                            colLookup = 0;
891    
892                  xfree(xcolours);                          /* approximate the pixel */
893                  return (HCOLOURMAP) map;                          while (j--)
894          }                          {
895          else                                  if (xc_cache[j].flags)
896          {                                  {
897                  uint32 *map = xmalloc(sizeof(*colmap) * ncolours);                                          nDist = ((long) (xc_cache[j].red >> 8) -
898                  XColor xentry;                                                   (long) (xentry.red >> 8)) *
899                  uint32 colour;                                                  ((long) (xc_cache[j].red >> 8) -
900                                                     (long) (xentry.red >> 8)) +
901                                                    ((long) (xc_cache[j].green >> 8) -
902                                                     (long) (xentry.green >> 8)) *
903                                                    ((long) (xc_cache[j].green >> 8) -
904                                                     (long) (xentry.green >> 8)) +
905                                                    ((long) (xc_cache[j].blue >> 8) -
906                                                     (long) (xentry.blue >> 8)) *
907                                                    ((long) (xc_cache[j].blue >> 8) -
908                                                     (long) (xentry.blue >> 8));
909                                    }
910                                    if (nDist < nMinDist)
911                                    {
912                                            nMinDist = nDist;
913                                            xentry.pixel = j;
914                                    }
915                            }
916                    }
917                    colour = xentry.pixel;
918    
919                  for (i = 0; i < ncolours; i++)                  /* update our cache */
920                    if (xentry.pixel < 256)
921                  {                  {
922                          entry = &colours->colours[i];                          xc_cache[xentry.pixel].red = xentry.red;
923                          MAKE_XCOLOR(&xentry, entry);                          xc_cache[xentry.pixel].green = xentry.green;
924                            xc_cache[xentry.pixel].blue = xentry.blue;
                         if (XAllocColor(display, xcolmap, &xentry) != 0)  
                                 colour = xentry.pixel;  
                         else  
                                 colour = white;  
925    
                         /* byte swap here to make translate_image faster */  
                         map[i] = translate_colour(colour);  
926                  }                  }
927    
928                  return map;  
929                    /* byte swap here to make translate_image faster */
930                    map[i] = translate_colour(colour);
931          }          }
932    
933            return map;
934  }  }
935    
936  void  void
937  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
938  {  {
939          if (owncolmap)          xfree(map);
                 XFreeColormap(display, (Colormap) map);  
         else  
                 xfree(map);  
940  }  }
941    
942  void  void
943  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
944  {  {
945          if (owncolmap)          colmap = map;
                 XSetWindowColormap(display, wnd, (Colormap) map);  
         else  
                 colmap = map;  
946  }  }
947    
948  void  void
# Line 831  ui_set_clip(int x, int y, int cx, int cy Line 958  ui_set_clip(int x, int y, int cx, int cy
958  }  }
959    
960  void  void
961  ui_reset_clip()  ui_reset_clip(void)
962  {  {
963          XRectangle rect;          XRectangle rect;
964    
# Line 843  ui_reset_clip() Line 970  ui_reset_clip()
970  }  }
971    
972  void  void
973  ui_bell()  ui_bell(void)
974  {  {
975          XBell(display, 0);          XBell(display, 0);
976  }  }
# Line 1062  ui_draw_text(uint8 font, uint8 flags, in Line 1189  ui_draw_text(uint8 font, uint8 flags, in
1189                                  else                                  else
1190                                  {                                  {
1191                                          error("this shouldn't be happening\n");                                          error("this shouldn't be happening\n");
1192                                          break;                                          exit(1);
1193                                  }                                  }
1194                                  /* this will move pointer from start to first character after FF command */                                  /* this will move pointer from start to first character after FF command */
1195                                  length -= i + 3;                                  length -= i + 3;

Legend:
Removed from v.82  
changed lines
  Added in v.273

  ViewVC Help
Powered by ViewVC 1.1.26