/[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 203 by matthewc, Thu Sep 26 14:04:30 2002 UTC revision 331 by astrand, Tue Feb 18 13:44:27 2003 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 29  extern int height; Line 29  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[];  extern char title[];
34    extern int server_bpp;
35    extern int win_button_size;
36  BOOL enable_compose = False;  BOOL enable_compose = False;
37    BOOL focused;
38    BOOL mouse_in_wnd;
39    
40  Display *display;  Display *display;
41  static int x_socket;  static int x_socket;
# Line 44  static XIM IM; Line 49  static XIM IM;
49  static XIC IC;  static XIC IC;
50  static XModifierKeymap *mod_map;  static XModifierKeymap *mod_map;
51  static Cursor current_cursor;  static Cursor current_cursor;
52    static Atom protocol_atom, kill_atom;
53    
54  /* endianness */  /* endianness */
55  static BOOL host_be;  static BOOL host_be;
# Line 53  static BOOL xserver_be; Line 59  static BOOL xserver_be;
59  static BOOL ownbackstore;  static BOOL ownbackstore;
60  static Pixmap backstore;  static Pixmap backstore;
61    
62    /* MWM decorations */
63    #define MWM_HINTS_DECORATIONS   (1L << 1)
64    #define PROP_MOTIF_WM_HINTS_ELEMENTS    5
65    typedef struct
66    {
67            uint32 flags;
68            uint32 functions;
69            uint32 decorations;
70            sint32 inputMode;
71            uint32 status;
72    }
73    PropMotifWmHints;
74    
75    typedef struct
76    {
77            uint32 red;
78            uint32 green;
79            uint32 blue;
80    }
81    PixelColour;
82    
83  #define FILL_RECTANGLE(x,y,cx,cy)\  #define FILL_RECTANGLE(x,y,cx,cy)\
84  { \  { \
85          XFillRectangle(display, wnd, gc, x, y, cx, cy); \          XFillRectangle(display, wnd, gc, x, y, cx, cy); \
# Line 60  static Pixmap backstore; Line 87  static Pixmap backstore;
87                  XFillRectangle(display, backstore, gc, x, y, cx, cy); \                  XFillRectangle(display, backstore, gc, x, y, cx, cy); \
88  }  }
89    
90    #define FILL_RECTANGLE_BACKSTORE(x,y,cx,cy)\
91    { \
92            XFillRectangle(display, ownbackstore ? backstore : wnd, gc, x, y, cx, cy); \
93    }
94    
95  /* colour maps */  /* colour maps */
96    BOOL owncolmap = False;
97  static Colormap xcolmap;  static Colormap xcolmap;
98  static uint32 *colmap;  static uint32 *colmap;
99    
100  #define SET_FOREGROUND(col)     XSetForeground(display, gc, translate_colour(colmap[col]));  #define TRANSLATE(col)          ( server_bpp != 8 ? translate_colour(col) : owncolmap ? col : translate_colour(colmap[col]) )
101  #define SET_BACKGROUND(col)     XSetBackground(display, gc, translate_colour(colmap[col]));  #define SET_FOREGROUND(col)     XSetForeground(display, gc, TRANSLATE(col));
102    #define SET_BACKGROUND(col)     XSetBackground(display, gc, TRANSLATE(col));
103    
104  static int rop2_map[] = {  static int rop2_map[] = {
105          GXclear,                /* 0 */          GXclear,                /* 0 */
# Line 90  static int rop2_map[] = { Line 124  static int rop2_map[] = {
124  #define RESET_FUNCTION(rop2)    { if (rop2 != ROP2_COPY) XSetFunction(display, gc, GXcopy); }  #define RESET_FUNCTION(rop2)    { if (rop2 != ROP2_COPY) XSetFunction(display, gc, GXcopy); }
125    
126  static void  static void
127  translate8(uint8 * data, uint8 * out, uint8 * end)  mwm_hide_decorations(void)
128    {
129            PropMotifWmHints motif_hints;
130            Atom hintsatom;
131    
132            /* setup the property */
133            motif_hints.flags = MWM_HINTS_DECORATIONS;
134            motif_hints.decorations = 0;
135    
136            /* get the atom for the property */
137            hintsatom = XInternAtom(display, "_MOTIF_WM_HINTS", False);
138            if (!hintsatom)
139            {
140                    warning("Failed to get atom _MOTIF_WM_HINTS: probably your window manager does not support MWM hints\n");
141                    return;
142            }
143    
144            XChangeProperty(display, wnd, hintsatom, hintsatom, 32, PropModeReplace,
145                            (unsigned char *) &motif_hints, PROP_MOTIF_WM_HINTS_ELEMENTS);
146    }
147    
148    static PixelColour
149    split_colour15(uint32 colour)
150    {
151            PixelColour rv;
152            rv.red = (colour & 0x7c00) >> 10;
153            rv.red = (rv.red * 0xff) / 0x1f;
154            rv.green = (colour & 0x03e0) >> 5;
155            rv.green = (rv.green * 0xff) / 0x1f;
156            rv.blue = (colour & 0x1f);
157            rv.blue = (rv.blue * 0xff) / 0x1f;
158            return rv;
159    }
160    
161    static PixelColour
162    split_colour16(uint32 colour)
163    {
164            PixelColour rv;
165            rv.red = (colour & 0xf800) >> 11;
166            rv.red = (rv.red * 0xff) / 0x1f;
167            rv.green = (colour & 0x07e0) >> 5;
168            rv.green = (rv.green * 0xff) / 0x3f;
169            rv.blue = (colour & 0x001f);
170            rv.blue = (rv.blue * 0xff) / 0x1f;
171            return rv;
172    }
173    
174    static PixelColour
175    split_colour24(uint32 colour)
176    {
177            PixelColour rv;
178            rv.blue = (colour & 0xff0000) >> 16;
179            rv.green = (colour & 0xff00) >> 8;
180            rv.red = (colour & 0xff);
181            return rv;
182    }
183    
184    static uint32
185    make_colour16(PixelColour pc)
186    {
187            pc.red = (pc.red * 0x1f) / 0xff;
188            pc.green = (pc.green * 0x3f) / 0xff;
189            pc.blue = (pc.blue * 0x1f) / 0xff;
190            return (pc.red << 11) | (pc.green << 5) | pc.blue;
191    }
192    
193    static uint32
194    make_colour24(PixelColour pc)
195    {
196            return (pc.red << 16) | (pc.green << 8) | pc.blue;
197    }
198    
199    static uint32
200    make_colour32(PixelColour pc)
201    {
202            return (pc.red << 16) | (pc.green << 8) | pc.blue;
203    }
204    
205    #define BSWAP16(x) { x = (((x & 0xff) << 8) | (x >> 8)); }
206    #define BSWAP24(x) { x = (((x & 0xff) << 16) | (x >> 16) | ((x >> 8) & 0xff00)); }
207    #define BSWAP32(x) { x = (((x & 0xff00ff) << 8) | ((x >> 8) & 0xff00ff)); \
208                            x = (x << 16) | (x >> 16); }
209    
210    static uint32
211    translate_colour(uint32 colour)
212    {
213            switch (server_bpp)
214            {
215                    case 15:
216                            switch (bpp)
217                            {
218                                    case 16:
219                                            colour = make_colour16(split_colour15(colour));
220                                            break;
221                                    case 24:
222                                            colour = make_colour24(split_colour15(colour));
223                                            break;
224                                    case 32:
225                                            colour = make_colour32(split_colour15(colour));
226                                            break;
227                            }
228                            break;
229                    case 16:
230                            switch (bpp)
231                            {
232                                    case 16:
233                                            break;
234                                    case 24:
235                                            colour = make_colour24(split_colour16(colour));
236                                            break;
237                                    case 32:
238                                            colour = make_colour32(split_colour16(colour));
239                                            break;
240                            }
241                            break;
242                    case 24:
243                            switch (bpp)
244                            {
245                                    case 16:
246                                            colour = make_colour16(split_colour24(colour));
247                                            break;
248                                    case 24:
249                                            break;
250                                    case 32:
251                                            colour = make_colour32(split_colour24(colour));
252                                            break;
253                            }
254                            break;
255            }
256            switch (bpp)
257            {
258                    case 16:
259                            if (host_be != xserver_be)
260                                    BSWAP16(colour);
261                            break;
262    
263                    case 24:
264                            if (xserver_be)
265                                    BSWAP24(colour);
266                            break;
267    
268                    case 32:
269                            if (host_be != xserver_be)
270                                    BSWAP32(colour);
271                            break;
272            }
273    
274            return colour;
275    }
276    
277    static void
278    translate8to8(uint8 * data, uint8 * out, uint8 * end)
279  {  {
280          while (out < end)          while (out < end)
281                  *(out++) = (uint8) colmap[*(data++)];                  *(out++) = (uint8) colmap[*(data++)];
282  }  }
283    
284  static void  static void
285  translate16(uint8 * data, uint16 * out, uint16 * end)  translate8to16(uint8 * data, uint16 * out, uint16 * end)
286  {  {
287          while (out < end)          while (out < end)
288                  *(out++) = (uint16) colmap[*(data++)];                  *(out++) = (uint16) colmap[*(data++)];
# Line 105  translate16(uint8 * data, uint16 * out, Line 290  translate16(uint8 * data, uint16 * out,
290    
291  /* little endian - conversion happens when colourmap is built */  /* little endian - conversion happens when colourmap is built */
292  static void  static void
293  translate24(uint8 * data, uint8 * out, uint8 * end)  translate8to24(uint8 * data, uint8 * out, uint8 * end)
294  {  {
295          uint32 value;          uint32 value;
296    
# Line 119  translate24(uint8 * data, uint8 * out, u Line 304  translate24(uint8 * data, uint8 * out, u
304  }  }
305    
306  static void  static void
307  translate32(uint8 * data, uint32 * out, uint32 * end)  translate8to32(uint8 * data, uint32 * out, uint32 * end)
308  {  {
309          while (out < end)          while (out < end)
310                  *(out++) = colmap[*(data++)];                  *(out++) = colmap[*(data++)];
311  }  }
312    
313  static uint8 *  /* todo the remaining translate function might need some big endian check ?? */
314  translate_image(int width, int height, uint8 * data)  
315    static void
316    translate15to16(uint16 * data, uint16 * out, uint16 * end)
317  {  {
318          int size = width * height * bpp / 8;          while (out < end)
319          uint8 *out = xmalloc(size);                  *(out++) = (uint16) make_colour16(split_colour15(*(data++)));
320          uint8 *end = out + size;  }
321    
322          switch (bpp)  static void
323    translate15to24(uint16 * data, uint8 * out, uint8 * end)
324    {
325            uint32 value;
326    
327            while (out < end)
328          {          {
329                  case 8:                  value = make_colour24(split_colour15(*(data++)));
330                          translate8(data, out, end);                  *(out++) = value;
331                          break;                  *(out++) = value >> 8;
332                    *(out++) = value >> 16;
333            }
334    }
335    
336                  case 16:  static void
337                          translate16(data, (uint16 *) out, (uint16 *) end);  translate15to32(uint16 * data, uint32 * out, uint32 * end)
338                          break;  {
339            while (out < end)
340                    *(out++) = make_colour32(split_colour15(*(data++)));
341    }
342    
343                  case 24:  static void
344                          translate24(data, out, end);  translate16to16(uint16 * data, uint16 * out, uint16 * end)
345                          break;  {
346            while (out < end)
347                    *(out++) = (uint16) (*(data++));
348    }
349    
350                  case 32:  
351                          translate32(data, (uint32 *) out, (uint32 *) end);  static void
352                          break;  translate16to24(uint16 * data, uint8 * out, uint8 * end)
353    {
354            uint32 value;
355    
356            while (out < end)
357            {
358                    value = make_colour24(split_colour16(*(data++)));
359                    *(out++) = value;
360                    *(out++) = value >> 8;
361                    *(out++) = value >> 16;
362          }          }
363    }
364    
365          return out;  static void
366    translate16to32(uint16 * data, uint32 * out, uint32 * end)
367    {
368            while (out < end)
369                    *(out++) = make_colour32(split_colour16(*(data++)));
370  }  }
371    
372  #define BSWAP16(x) { x = (((x & 0xff) << 8) | (x >> 8)); }  static void
373  #define BSWAP24(x) { x = (((x & 0xff) << 16) | (x >> 16) | ((x >> 8) & 0xff00)); }  translate24to16(uint8 * data, uint16 * out, uint16 * end)
374  #define BSWAP32(x) { x = (((x & 0xff00ff) << 8) | ((x >> 8) & 0xff00ff)); \  {
375                          x = (x << 16) | (x >> 16); }          uint32 pixel = 0;
376            while (out < end)
377            {
378                    pixel = *(data++) << 16;
379                    pixel |= *(data++) << 8;
380                    pixel |= *(data++);
381                    *(out++) = (uint16) make_colour16(split_colour24(pixel));
382            }
383    }
384    
385  static uint32  static void
386  translate_colour(uint32 colour)  translate24to24(uint8 * data, uint8 * out, uint8 * end)
387  {  {
388          switch (bpp)          while (out < end)
389          {          {
390                  case 16:                  *(out++) = (*(data++));
391                          if (host_be != xserver_be)          }
392                                  BSWAP16(colour);  }
393                          break;  
394    static void
395    translate24to32(uint8 * data, uint32 * out, uint32 * end)
396    {
397            uint32 pixel = 0;
398            while (out < end)
399            {
400                    memcpy(&pixel, data, 3);
401                    data += 3;
402                    *(out++) = pixel;
403            }
404    }
405    
406    static uint8 *
407    translate_image(int width, int height, uint8 * data)
408    {
409            int size = width * height * bpp / 8;
410            uint8 *out = xmalloc(size);
411            uint8 *end = out + size;
412    
413            switch (server_bpp)
414            {
415                  case 24:                  case 24:
416                          if (xserver_be)                          switch (bpp)
417                                  BSWAP24(colour);                          {
418                                    case 32:
419                                            translate24to32(data, (uint32 *) out, (uint32 *) end);
420                                            break;
421                                    case 24:
422                                            translate24to24(data, out, end);
423                                            break;
424                                    case 16:
425                                            translate24to16(data, (uint16 *) out, (uint16 *) end);
426                                            break;
427                            }
428                          break;                          break;
429                    case 16:
430                  case 32:                          switch (bpp)
431                          if (host_be != xserver_be)                          {
432                                  BSWAP32(colour);                                  case 32:
433                                            translate16to32((uint16 *) data, (uint32 *) out,
434                                                            (uint32 *) end);
435                                            break;
436                                    case 24:
437                                            translate16to24((uint16 *) data, out, end);
438                                            break;
439                                    case 16:
440                                            translate16to16((uint16 *) data, (uint16 *) out,
441                                                            (uint16 *) end);
442                                            break;
443                            }
444                            break;
445                    case 15:
446                            switch (bpp)
447                            {
448                                    case 32:
449                                            translate15to32((uint16 *) data, (uint32 *) out,
450                                                            (uint32 *) end);
451                                            break;
452                                    case 24:
453                                            translate15to24((uint16 *) data, out, end);
454                                            break;
455                                    case 16:
456                                            translate15to16((uint16 *) data, (uint16 *) out,
457                                                            (uint16 *) end);
458                                            break;
459                            }
460                            break;
461                    case 8:
462                            switch (bpp)
463                            {
464                                    case 8:
465                                            translate8to8(data, out, end);
466                                            break;
467                                    case 16:
468                                            translate8to16(data, (uint16 *) out, (uint16 *) end);
469                                            break;
470                                    case 24:
471                                            translate8to24(data, out, end);
472                                            break;
473                                    case 32:
474                                            translate8to32(data, (uint32 *) out, (uint32 *) end);
475                                            break;
476                            }
477                          break;                          break;
478          }          }
479            return out;
         return colour;  
480  }  }
481    
482  BOOL  BOOL
483  get_key_state(uint32 keysym, unsigned int state)  get_key_state(unsigned int state, uint32 keysym)
484  {  {
485          int modifierpos, key, keysymMask = 0;          int modifierpos, key, keysymMask = 0;
486          int offset;          int offset;
# Line 218  ui_init(void) Line 514  ui_init(void)
514          display = XOpenDisplay(NULL);          display = XOpenDisplay(NULL);
515          if (display == NULL)          if (display == NULL)
516          {          {
517                  error("Failed to open display\n");                  error("Failed to open display: %s\n", XDisplayName(NULL));
518                  return False;                  return False;
519          }          }
520    
# Line 249  ui_init(void) Line 545  ui_init(void)
545                  return False;                  return False;
546          }          }
547    
548          xcolmap = DefaultColormapOfScreen(screen);          if (owncolmap != True)
549            {
550                    xcolmap = DefaultColormapOfScreen(screen);
551                    if (depth <= 8)
552                            warning("Screen depth is 8 bits or lower: you may want to use -C for a private colourmap\n");
553            }
554    
555          gc = XCreateGC(display, RootWindowOfScreen(screen), 0, NULL);          gc = XCreateGC(display, RootWindowOfScreen(screen), 0, NULL);
556    
557          if (DoesBackingStore(screen) != Always)          if (DoesBackingStore(screen) != Always)
# Line 259  ui_init(void) Line 561  ui_init(void)
561          host_be = !(BOOL) (*(uint8 *) (&test));          host_be = !(BOOL) (*(uint8 *) (&test));
562          xserver_be = (ImageByteOrder(display) == MSBFirst);          xserver_be = (ImageByteOrder(display) == MSBFirst);
563    
564            if ((width == 0) || (height == 0))
565            {
566                    /* Fetch geometry from _NET_WORKAREA */
567                    uint32 x, y, cx, cy;
568    
569                    if (get_current_workarea(&x, &y, &cx, &cy) == 0)
570                    {
571                            width = cx;
572                            height = cy;
573                    }
574                    else
575                    {
576                            warning("Failed to get workarea: probably your window manager does not support extended hints\n");
577                            width = 800;
578                            height = 600;
579                    }
580            }
581    
582          if (fullscreen)          if (fullscreen)
583          {          {
584                  width = WidthOfScreen(screen);                  width = WidthOfScreen(screen);
# Line 284  ui_init(void) Line 604  ui_init(void)
604                  IM = XOpenIM(display, NULL, NULL, NULL);                  IM = XOpenIM(display, NULL, NULL, NULL);
605    
606          xkeymap_init();          xkeymap_init();
607    
608            /* todo take this out when high colour is done */
609            printf("server bpp %d client bpp %d depth %d\n", server_bpp, bpp, depth);
610    
611          return True;          return True;
612  }  }
613    
# Line 293  ui_deinit(void) Line 617  ui_deinit(void)
617          if (IM != NULL)          if (IM != NULL)
618                  XCloseIM(IM);                  XCloseIM(IM);
619    
620          XFreeModifierMap(mod_map);          XFreeModifiermap(mod_map);
621    
622          if (ownbackstore)          if (ownbackstore)
623                  XFreePixmap(display, backstore);                  XFreePixmap(display, backstore);
# Line 326  ui_create_window(void) Line 650  ui_create_window(void)
650    
651          XStoreName(display, wnd, title);          XStoreName(display, wnd, title);
652    
653            if (hide_decorations)
654                    mwm_hide_decorations();
655    
656          classhints = XAllocClassHint();          classhints = XAllocClassHint();
657          if (classhints != NULL)          if (classhints != NULL)
658          {          {
# Line 345  ui_create_window(void) Line 672  ui_create_window(void)
672          }          }
673    
674          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
675                  StructureNotifyMask | FocusChangeMask;                  VisibilityChangeMask | FocusChangeMask;
676    
677          if (sendmotion)          if (sendmotion)
678                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
679          if (ownbackstore)          if (ownbackstore)
680                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
681            if (fullscreen || grab_keyboard)
682                    input_mask |= EnterWindowMask;
683            if (grab_keyboard)
684                    input_mask |= LeaveWindowMask;
685    
686          if (IM != NULL)          if (IM != NULL)
687          {          {
# Line 365  ui_create_window(void) Line 696  ui_create_window(void)
696          XSelectInput(display, wnd, input_mask);          XSelectInput(display, wnd, input_mask);
697          XMapWindow(display, wnd);          XMapWindow(display, wnd);
698    
699          /* wait for MapNotify */          /* wait for VisibilityNotify */
700          do          do
701          {          {
702                  XMaskEvent(display, StructureNotifyMask, &xevent);                  XMaskEvent(display, VisibilityChangeMask, &xevent);
703          }          }
704          while (xevent.type != MapNotify);          while (xevent.type != VisibilityNotify);
705    
706          if (fullscreen)          focused = False;
707                  XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);          mouse_in_wnd = False;
708    
709            /* handle the WM_DELETE_WINDOW protocol */
710            protocol_atom = XInternAtom(display, "WM_PROTOCOLS", True);
711            kill_atom = XInternAtom(display, "WM_DELETE_WINDOW", True);
712            XSetWMProtocols(display, wnd, &kill_atom, 1);
713    
714          return True;          return True;
715  }  }
# Line 412  xwin_toggle_fullscreen(void) Line 748  xwin_toggle_fullscreen(void)
748          }          }
749  }  }
750    
751  /* Process all events in Xlib queue */  /* Process all events in Xlib queue
752  static void     Returns 0 after user quit, 1 otherwise */
753    static int
754  xwin_process_events(void)  xwin_process_events(void)
755  {  {
756          XEvent xevent;          XEvent xevent;
# Line 441  xwin_process_events(void) Line 778  xwin_process_events(void)
778    
779                  switch (xevent.type)                  switch (xevent.type)
780                  {                  {
781                            case ClientMessage:
782                                    /* the window manager told us to quit */
783                                    if ((xevent.xclient.message_type == protocol_atom)
784                                        && (xevent.xclient.data.l[0] == kill_atom))
785                                            /* Quit */
786                                            return 0;
787                                    break;
788    
789                          case KeyPress:                          case KeyPress:
790                                  if (IC != NULL)                                  if (IC != NULL)
791                                          /* Multi_key compatible version */                                          /* Multi_key compatible version */
# Line 463  xwin_process_events(void) Line 808  xwin_process_events(void)
808                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
809                                  }                                  }
810    
811                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym)));                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym,
812                                               get_ksname(keysym)));
813    
814                                  ev_time = time(NULL);                                  ev_time = time(NULL);
815                                  if (handle_special_keys(keysym, xevent.xkey.state, ev_time, True))                                  if (handle_special_keys(keysym, xevent.xkey.state, ev_time, True))
# Line 509  xwin_process_events(void) Line 855  xwin_process_events(void)
855                                  if (button == 0)                                  if (button == 0)
856                                          break;                                          break;
857    
858                                    /* If win_button_size is nonzero, enable single app mode */
859                                    if (xevent.xbutton.y < win_button_size)
860                                    {
861                                            if (xevent.xbutton.x < win_button_size)
862                                            {
863                                                    /* The system menu, do not send to server */
864                                                    break;
865                                            }
866                                            else if (xevent.xbutton.x >= width - win_button_size)
867                                            {
868                                                    /* The close button, continue */
869                                                    ;
870                                            }
871                                            else if (xevent.xbutton.x >= width - win_button_size * 2)
872                                            {
873                                                    /* The maximize/restore button. Do not send to
874                                                       server.  It might be a good idea to change the
875                                                       cursor or give some other visible indication
876                                                       that rdesktop inhibited this click */
877                                                    break;
878                                            }
879                                            else if (xevent.xbutton.x >= width - win_button_size * 3)
880                                            {
881                                                    /* The minimize button. Iconify window. */
882                                                    XIconifyWindow(display, wnd,
883                                                                   DefaultScreen(display));
884                                                    break;
885                                            }
886                                    }
887    
888                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
889                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);
890                                  break;                                  break;
891    
892                          case MotionNotify:                          case MotionNotify:
893                                    if (fullscreen && !focused)
894                                            XSetInputFocus(display, wnd, RevertToPointerRoot,
895                                                           CurrentTime);
896                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
897                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);
898                                  break;                                  break;
899    
900                          case FocusIn:                          case FocusIn:
901                                  XQueryPointer(display, wnd, &wdummy, &wdummy, &dummy, &dummy, &dummy, &dummy, &state);                                  if (xevent.xfocus.mode == NotifyGrab)
902                                            break;
903                                    focused = True;
904                                    XQueryPointer(display, wnd, &wdummy, &wdummy, &dummy, &dummy,
905                                                  &dummy, &dummy, &state);
906                                  reset_modifier_keys(state);                                  reset_modifier_keys(state);
907                                  if (grab_keyboard)                                  if (grab_keyboard && mouse_in_wnd)
908                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
909                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
910                                  break;                                  break;
911    
912                          case FocusOut:                          case FocusOut:
913                                    if (xevent.xfocus.mode == NotifyUngrab)
914                                            break;
915                                    focused = False;
916                                  if (xevent.xfocus.mode == NotifyWhileGrabbed)                                  if (xevent.xfocus.mode == NotifyWhileGrabbed)
917                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
918                                  break;                                  break;
919    
920                            case EnterNotify:
921                                    /* we only register for this event when in fullscreen mode */
922                                    /* or grab_keyboard */
923                                    mouse_in_wnd = True;
924                                    if (fullscreen)
925                                    {
926                                            XSetInputFocus(display, wnd, RevertToPointerRoot,
927                                                           CurrentTime);
928                                            break;
929                                    }
930                                    if (focused)
931                                            XGrabKeyboard(display, wnd, True,
932                                                          GrabModeAsync, GrabModeAsync, CurrentTime);
933                                    break;
934    
935                            case LeaveNotify:
936                                    /* we only register for this event when grab_keyboard */
937                                    mouse_in_wnd = False;
938                                    XUngrabKeyboard(display, CurrentTime);
939                                    break;
940    
941                          case Expose:                          case Expose:
942                                  XCopyArea(display, backstore, wnd, gc,                                  XCopyArea(display, backstore, wnd, gc,
943                                            xevent.xexpose.x, xevent.xexpose.y,                                            xevent.xexpose.x, xevent.xexpose.y,
# Line 548  xwin_process_events(void) Line 955  xwin_process_events(void)
955    
956                                  if (xevent.xmapping.request == MappingModifier)                                  if (xevent.xmapping.request == MappingModifier)
957                                  {                                  {
958                                          XFreeModifierMap(mod_map);                                          XFreeModifiermap(mod_map);
959                                          mod_map = XGetModifierMapping(display);                                          mod_map = XGetModifierMapping(display);
960                                  }                                  }
961                                  break;                                  break;
962    
963                  }                  }
964          }          }
965            /* Keep going */
966            return 1;
967  }  }
968    
969  void  /* Returns 0 after user quit, 1 otherwise */
970    int
971  ui_select(int rdp_socket)  ui_select(int rdp_socket)
972  {  {
973          int n = (rdp_socket > x_socket) ? rdp_socket + 1 : x_socket + 1;          int n = (rdp_socket > x_socket) ? rdp_socket + 1 : x_socket + 1;
# Line 568  ui_select(int rdp_socket) Line 978  ui_select(int rdp_socket)
978          while (True)          while (True)
979          {          {
980                  /* Process any events already waiting */                  /* Process any events already waiting */
981                  xwin_process_events();                  if (!xwin_process_events())
982                            /* User quit */
983                            return 0;
984    
985                  FD_ZERO(&rfds);                  FD_ZERO(&rfds);
986                  FD_SET(rdp_socket, &rfds);                  FD_SET(rdp_socket, &rfds);
# Line 584  ui_select(int rdp_socket) Line 996  ui_select(int rdp_socket)
996                  }                  }
997    
998                  if (FD_ISSET(rdp_socket, &rfds))                  if (FD_ISSET(rdp_socket, &rfds))
999                          return;                          return 1;
1000          }          }
1001  }  }
1002    
# Line 601  ui_create_bitmap(int width, int height, Line 1013  ui_create_bitmap(int width, int height,
1013          Pixmap bitmap;          Pixmap bitmap;
1014          uint8 *tdata;          uint8 *tdata;
1015    
1016          tdata = translate_image(width, height, data);          tdata = (owncolmap ? data : translate_image(width, height, data));
1017          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
1018          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
1019                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, server_bpp == 8 ? 8 : bpp, 0);
1020    
1021          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
1022    
1023          XFree(image);          XFree(image);
1024          xfree(tdata);          if (!owncolmap)
1025                    xfree(tdata);
1026          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
1027  }  }
1028    
# Line 618  ui_paint_bitmap(int x, int y, int cx, in Line 1031  ui_paint_bitmap(int x, int y, int cx, in
1031  {  {
1032          XImage *image;          XImage *image;
1033          uint8 *tdata;          uint8 *tdata;
1034            tdata = (owncolmap ? data : translate_image(width, height, data));
         tdata = translate_image(width, height, data);  
1035          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
1036                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, server_bpp == 8 ? 8 : bpp, 0);
1037    
1038          if (ownbackstore)          if (ownbackstore)
1039          {          {
# Line 634  ui_paint_bitmap(int x, int y, int cx, in Line 1046  ui_paint_bitmap(int x, int y, int cx, in
1046          }          }
1047    
1048          XFree(image);          XFree(image);
1049          xfree(tdata);          if (!owncolmap)
1050                    xfree(tdata);
1051  }  }
1052    
1053  void  void
# Line 765  ui_destroy_cursor(HCURSOR cursor) Line 1178  ui_destroy_cursor(HCURSOR cursor)
1178                  (xc)->blue  = ((c)->blue  << 8) | (c)->blue; \                  (xc)->blue  = ((c)->blue  << 8) | (c)->blue; \
1179                  (xc)->flags = DoRed | DoGreen | DoBlue;                  (xc)->flags = DoRed | DoGreen | DoBlue;
1180    
1181    
1182  HCOLOURMAP  HCOLOURMAP
1183  ui_create_colourmap(COLOURMAP * colours)  ui_create_colourmap(COLOURMAP * colours)
1184  {  {
1185          COLOURENTRY *entry;          COLOURENTRY *entry;
1186          int i, ncolours = colours->ncolours;          int i, ncolours = colours->ncolours;
1187          uint32 *map = xmalloc(sizeof(*colmap) * ncolours);          if (!owncolmap)
         XColor xentry;  
         XColor xc_cache[256];  
         uint32 colour;  
         int colLookup = 256;  
         for (i = 0; i < ncolours; i++)  
1188          {          {
1189                  entry = &colours->colours[i];                  uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
1190                  MAKE_XCOLOR(&xentry, entry);                  XColor xentry;
1191                    XColor xc_cache[256];
1192                  if (XAllocColor(display, xcolmap, &xentry) == 0)                  uint32 colour;
1193                    int colLookup = 256;
1194                    for (i = 0; i < ncolours; i++)
1195                  {                  {
1196                          /* Allocation failed, find closest match. */                          entry = &colours->colours[i];
1197                          int j = 256;                          MAKE_XCOLOR(&xentry, entry);
                         int nMinDist = 3 * 256 * 256;  
                         long nDist = nMinDist;  
1198    
1199                          /* only get the colors once */                          if (XAllocColor(display, xcolmap, &xentry) == 0)
                         while (colLookup--)  
1200                          {                          {
1201                                  xc_cache[colLookup].pixel = colLookup;                                  /* Allocation failed, find closest match. */
1202                                  xc_cache[colLookup].red = xc_cache[colLookup].green =                                  int j = 256;
1203                                          xc_cache[colLookup].blue = 0;                                  int nMinDist = 3 * 256 * 256;
1204                                  xc_cache[colLookup].flags = 0;                                  long nDist = nMinDist;
                                 XQueryColor(display,  
                                             DefaultColormap(display, DefaultScreen(display)),  
                                             &xc_cache[colLookup]);  
                         }  
                         colLookup = 0;  
1205    
1206                          /* approximate the pixel */                                  /* only get the colors once */
1207                          while (j--)                                  while (colLookup--)
                         {  
                                 if (xc_cache[j].flags)  
1208                                  {                                  {
1209                                          nDist = ((long) (xc_cache[j].red >> 8) -                                          xc_cache[colLookup].pixel = colLookup;
1210                                                   (long) (xentry.red >> 8)) *                                          xc_cache[colLookup].red = xc_cache[colLookup].green =
1211                                                  ((long) (xc_cache[j].red >> 8) -                                                  xc_cache[colLookup].blue = 0;
1212                                                   (long) (xentry.red >> 8)) +                                          xc_cache[colLookup].flags = 0;
1213                                                  ((long) (xc_cache[j].green >> 8) -                                          XQueryColor(display,
1214                                                   (long) (xentry.green >> 8)) *                                                      DefaultColormap(display,
1215                                                  ((long) (xc_cache[j].green >> 8) -                                                                      DefaultScreen(display)),
1216                                                   (long) (xentry.green >> 8)) +                                                      &xc_cache[colLookup]);
                                                 ((long) (xc_cache[j].blue >> 8) -  
                                                  (long) (xentry.blue >> 8)) *  
                                                 ((long) (xc_cache[j].blue >> 8) -  
                                                  (long) (xentry.blue >> 8));  
1217                                  }                                  }
1218                                  if (nDist < nMinDist)                                  colLookup = 0;
1219    
1220                                    /* approximate the pixel */
1221                                    while (j--)
1222                                  {                                  {
1223                                          nMinDist = nDist;                                          if (xc_cache[j].flags)
1224                                          xentry.pixel = j;                                          {
1225                                                    nDist = ((long) (xc_cache[j].red >> 8) -
1226                                                             (long) (xentry.red >> 8)) *
1227                                                            ((long) (xc_cache[j].red >> 8) -
1228                                                             (long) (xentry.red >> 8)) +
1229                                                            ((long) (xc_cache[j].green >> 8) -
1230                                                             (long) (xentry.green >> 8)) *
1231                                                            ((long) (xc_cache[j].green >> 8) -
1232                                                             (long) (xentry.green >> 8)) +
1233                                                            ((long) (xc_cache[j].blue >> 8) -
1234                                                             (long) (xentry.blue >> 8)) *
1235                                                            ((long) (xc_cache[j].blue >> 8) -
1236                                                             (long) (xentry.blue >> 8));
1237                                            }
1238                                            if (nDist < nMinDist)
1239                                            {
1240                                                    nMinDist = nDist;
1241                                                    xentry.pixel = j;
1242                                            }
1243                                  }                                  }
1244                          }                          }
1245                            colour = xentry.pixel;
1246    
1247                            /* update our cache */
1248                            if (xentry.pixel < 256)
1249                            {
1250                                    xc_cache[xentry.pixel].red = xentry.red;
1251                                    xc_cache[xentry.pixel].green = xentry.green;
1252                                    xc_cache[xentry.pixel].blue = xentry.blue;
1253    
1254                            }
1255    
1256    
1257                            /* byte swap here to make translate_image faster */
1258                            map[i] = translate_colour(colour);
1259                  }                  }
1260                  colour = xentry.pixel;                  return map;
1261            }
1262            else
1263            {
1264                    XColor *xcolours, *xentry;
1265                    Colormap map;
1266    
1267                  /* update our cache */                  xcolours = xmalloc(sizeof(XColor) * ncolours);
1268                  if (xentry.pixel < 256)                  for (i = 0; i < ncolours; i++)
1269                  {                  {
1270                          xc_cache[xentry.pixel].red = xentry.red;                          entry = &colours->colours[i];
1271                          xc_cache[xentry.pixel].green = xentry.green;                          xentry = &xcolours[i];
1272                          xc_cache[xentry.pixel].blue = xentry.blue;                          xentry->pixel = i;
1273                            MAKE_XCOLOR(xentry, entry);
1274                  }                  }
1275    
1276                    map = XCreateColormap(display, wnd, visual, AllocAll);
1277                    XStoreColors(display, map, xcolours, ncolours);
1278    
1279                  /* byte swap here to make translate_image faster */                  xfree(xcolours);
1280                  map[i] = translate_colour(colour);                  return (HCOLOURMAP) map;
1281          }          }
   
         return map;  
1282  }  }
1283    
1284  void  void
1285  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
1286  {  {
1287          xfree(map);          if (!owncolmap)
1288                    xfree(map);
1289            else
1290                    XFreeColormap(display, (Colormap) map);
1291  }  }
1292    
1293  void  void
1294  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
1295  {  {
1296          colmap = map;          if (!owncolmap)
1297                    colmap = map;
1298            else
1299                    XSetWindowColormap(display, wnd, (Colormap) map);
1300  }  }
1301    
1302  void  void
# Line 1016  ui_rect( Line 1459  ui_rect(
1459          FILL_RECTANGLE(x, y, cx, cy);          FILL_RECTANGLE(x, y, cx, cy);
1460  }  }
1461    
1462    /* warning, this function only draws on wnd or backstore, not both */
1463  void  void
1464  ui_draw_glyph(int mixmode,  ui_draw_glyph(int mixmode,
1465                /* dest */ int x, int y, int cx, int cy,                /* dest */ int x, int y, int cx, int cy,
# Line 1030  ui_draw_glyph(int mixmode, Line 1474  ui_draw_glyph(int mixmode,
1474          XSetStipple(display, gc, (Pixmap) glyph);          XSetStipple(display, gc, (Pixmap) glyph);
1475          XSetTSOrigin(display, gc, x, y);          XSetTSOrigin(display, gc, x, y);
1476    
1477          FILL_RECTANGLE(x, y, cx, cy);          FILL_RECTANGLE_BACKSTORE(x, y, cx, cy);
1478    
1479          XSetFillStyle(display, gc, FillSolid);          XSetFillStyle(display, gc, FillSolid);
1480  }  }
# Line 1059  ui_draw_glyph(int mixmode, Line 1503  ui_draw_glyph(int mixmode,
1503      }\      }\
1504    if (glyph != NULL)\    if (glyph != NULL)\
1505      {\      {\
1506        ui_draw_glyph (mixmode, x + (short) glyph->offset,\        ui_draw_glyph (mixmode, x + glyph->offset,\
1507                       y + (short) glyph->baseline,\                       y + glyph->baseline,\
1508                       glyph->width, glyph->height,\                       glyph->width, glyph->height,\
1509                       glyph->pixmap, 0, 0, bgcolour, fgcolour);\                       glyph->pixmap, 0, 0, bgcolour, fgcolour);\
1510        if (flags & TEXT2_IMPLICIT_X)\        if (flags & TEXT2_IMPLICIT_X)\
# Line 1082  ui_draw_text(uint8 font, uint8 flags, in Line 1526  ui_draw_text(uint8 font, uint8 flags, in
1526    
1527          if (boxcx > 1)          if (boxcx > 1)
1528          {          {
1529                  FILL_RECTANGLE(boxx, boxy, boxcx, boxcy);                  FILL_RECTANGLE_BACKSTORE(boxx, boxy, boxcx, boxcy);
1530          }          }
1531          else if (mixmode == MIX_OPAQUE)          else if (mixmode == MIX_OPAQUE)
1532          {          {
1533                  FILL_RECTANGLE(clipx, clipy, clipcx, clipcy);                  FILL_RECTANGLE_BACKSTORE(clipx, clipy, clipcx, clipcy);
1534          }          }
1535    
1536          /* Paint text, character by character */          /* Paint text, character by character */
# Line 1100  ui_draw_text(uint8 font, uint8 flags, in Line 1544  ui_draw_text(uint8 font, uint8 flags, in
1544                                  else                                  else
1545                                  {                                  {
1546                                          error("this shouldn't be happening\n");                                          error("this shouldn't be happening\n");
1547                                          break;                                          exit(1);
1548                                  }                                  }
1549                                  /* this will move pointer from start to first character after FF command */                                  /* this will move pointer from start to first character after FF command */
1550                                  length -= i + 3;                                  length -= i + 3;
# Line 1120  ui_draw_text(uint8 font, uint8 flags, in Line 1564  ui_draw_text(uint8 font, uint8 flags, in
1564                                                  else                                                  else
1565                                                          x += text[i + 2];                                                          x += text[i + 2];
1566                                          }                                          }
                                         if (i + 2 < length)  
                                                 i += 3;  
                                         else  
                                                 i += 2;  
                                         length -= i;  
                                         /* this will move pointer from start to first character after FE command */  
                                         text = &(text[i]);  
                                         i = 0;  
1567                                          for (j = 0; j < entry->size; j++)                                          for (j = 0; j < entry->size; j++)
1568                                                  DO_GLYPH(((uint8 *) (entry->data)), j);                                                  DO_GLYPH(((uint8 *) (entry->data)), j);
1569                                  }                                  }
1570                                    if (i + 2 < length)
1571                                            i += 3;
1572                                    else
1573                                            i += 2;
1574                                    length -= i;
1575                                    /* this will move pointer from start to first character after FE command */
1576                                    text = &(text[i]);
1577                                    i = 0;
1578                                  break;                                  break;
1579    
1580                          default:                          default:
# Line 1139  ui_draw_text(uint8 font, uint8 flags, in Line 1583  ui_draw_text(uint8 font, uint8 flags, in
1583                                  break;                                  break;
1584                  }                  }
1585          }          }
1586            if (ownbackstore)
1587            {
1588                    if (boxcx > 1)
1589                            XCopyArea(display, backstore, wnd, gc, boxx,
1590                                      boxy, boxcx, boxcy, boxx, boxy);
1591                    else
1592                            XCopyArea(display, backstore, wnd, gc, clipx,
1593                                      clipy, clipcx, clipcy, clipx, clipy);
1594            }
1595  }  }
1596    
1597  void  void

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

  ViewVC Help
Powered by ViewVC 1.1.26