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

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

revision 603 by stargo, Sat Feb 7 18:47:06 2004 UTC revision 822 by stargo, Mon Feb 28 22:38:24 2005 UTC
# Line 21  Line 21 
21  #include <X11/Xlib.h>  #include <X11/Xlib.h>
22  #include <X11/Xutil.h>  #include <X11/Xutil.h>
23  #include <unistd.h>  #include <unistd.h>
24    #include <sys/time.h>
25  #include <time.h>  #include <time.h>
26  #include <errno.h>  #include <errno.h>
27  #include <strings.h>  #include <strings.h>
# Line 29  Line 30 
30    
31  extern int g_width;  extern int g_width;
32  extern int g_height;  extern int g_height;
33    extern int g_xpos;
34    extern int g_ypos;
35  extern BOOL g_sendmotion;  extern BOOL g_sendmotion;
36  extern BOOL g_fullscreen;  extern BOOL g_fullscreen;
37  extern BOOL g_grab_keyboard;  extern BOOL g_grab_keyboard;
# Line 42  Time g_last_gesturetime; Line 45  Time g_last_gesturetime;
45  static int g_x_socket;  static int g_x_socket;
46  static Screen *g_screen;  static Screen *g_screen;
47  Window g_wnd;  Window g_wnd;
48    extern uint32 g_embed_wnd;
49  BOOL g_enable_compose = False;  BOOL g_enable_compose = False;
50    BOOL g_Unobscured;              /* used for screenblt */
51  static GC g_gc = NULL;  static GC g_gc = NULL;
52    static GC g_create_bitmap_gc = NULL;
53    static GC g_create_glyph_gc = NULL;
54  static Visual *g_visual;  static Visual *g_visual;
55  static int g_depth;  static int g_depth;
56  static int g_bpp;  static int g_bpp;
# Line 55  static HCURSOR g_null_cursor = NULL; Line 62  static HCURSOR g_null_cursor = NULL;
62  static Atom g_protocol_atom, g_kill_atom;  static Atom g_protocol_atom, g_kill_atom;
63  static BOOL g_focused;  static BOOL g_focused;
64  static BOOL g_mouse_in_wnd;  static BOOL g_mouse_in_wnd;
65    static BOOL g_arch_match = False;       /* set to True if RGB XServer and little endian */
66    
67  /* endianness */  /* endianness */
68  static BOOL g_host_be;  static BOOL g_host_be;
# Line 63  static int g_red_shift_r, g_blue_shift_r Line 71  static int g_red_shift_r, g_blue_shift_r
71  static int g_red_shift_l, g_blue_shift_l, g_green_shift_l;  static int g_red_shift_l, g_blue_shift_l, g_green_shift_l;
72    
73  /* software backing store */  /* software backing store */
74  static BOOL g_ownbackstore;  extern BOOL g_ownbackstore;
75  static Pixmap g_backstore = 0;  static Pixmap g_backstore = 0;
76    
77  /* Moving in single app mode */  /* Moving in single app mode */
# Line 112  PixelColour; Line 120  PixelColour;
120  }  }
121    
122  /* colour maps */  /* colour maps */
123  BOOL g_owncolmap = False;  extern BOOL g_owncolmap;
124  static Colormap g_xcolmap;  static Colormap g_xcolmap;
125  static uint32 *g_colmap = NULL;  static uint32 *g_colmap = NULL;
126    
# Line 164  mwm_hide_decorations(void) Line 172  mwm_hide_decorations(void)
172                          (unsigned char *) &motif_hints, PROP_MOTIF_WM_HINTS_ELEMENTS);                          (unsigned char *) &motif_hints, PROP_MOTIF_WM_HINTS_ELEMENTS);
173  }  }
174    
175  static PixelColour  #define SPLITCOLOUR15(colour, rv) \
176  split_colour15(uint32 colour)  { \
177  {          rv.red = ((colour >> 7) & 0xf8) | ((colour >> 12) & 0x7); \
178          PixelColour rv;          rv.green = ((colour >> 2) & 0xf8) | ((colour >> 8) & 0x7); \
179          rv.red = (colour & 0x7c00) >> 10;          rv.blue = ((colour << 3) & 0xf8) | ((colour >> 2) & 0x7); \
         rv.red = (rv.red * 0xff) / 0x1f;  
         rv.green = (colour & 0x03e0) >> 5;  
         rv.green = (rv.green * 0xff) / 0x1f;  
         rv.blue = (colour & 0x1f);  
         rv.blue = (rv.blue * 0xff) / 0x1f;  
         return rv;  
 }  
   
 static PixelColour  
 split_colour16(uint32 colour)  
 {  
         PixelColour rv;  
         rv.red = (colour & 0xf800) >> 11;  
         rv.red = (rv.red * 0xff) / 0x1f;  
         rv.green = (colour & 0x07e0) >> 5;  
         rv.green = (rv.green * 0xff) / 0x3f;  
         rv.blue = (colour & 0x001f);  
         rv.blue = (rv.blue * 0xff) / 0x1f;  
         return rv;  
 }  
   
 static PixelColour  
 split_colour24(uint32 colour)  
 {  
         PixelColour rv;  
         rv.blue = (colour & 0xff0000) >> 16;  
         rv.green = (colour & 0xff00) >> 8;  
         rv.red = (colour & 0xff);  
         return rv;  
180  }  }
181    
182  static uint32  #define SPLITCOLOUR16(colour, rv) \
183  make_colour(PixelColour pc)  { \
184  {          rv.red = ((colour >> 8) & 0xf8) | ((colour >> 13) & 0x7); \
185          return (((pc.red >> g_red_shift_r) << g_red_shift_l)          rv.green = ((colour >> 3) & 0xfc) | ((colour >> 9) & 0x3); \
186                  | ((pc.green >> g_green_shift_r) << g_green_shift_l)          rv.blue = ((colour << 3) & 0xf8) | ((colour >> 2) & 0x7); \
187                  | ((pc.blue >> g_blue_shift_r) << g_blue_shift_l));  } \
188    
189    #define SPLITCOLOUR24(colour, rv) \
190    { \
191            rv.blue = (colour & 0xff0000) >> 16; \
192            rv.green = (colour & 0x00ff00) >> 8; \
193            rv.red = (colour & 0x0000ff); \
194  }  }
195    
196    #define MAKECOLOUR(pc) \
197            ((pc.red >> g_red_shift_r) << g_red_shift_l) \
198                    | ((pc.green >> g_green_shift_r) << g_green_shift_l) \
199                    | ((pc.blue >> g_blue_shift_r) << g_blue_shift_l) \
200    
201  #define BSWAP16(x) { x = (((x & 0xff) << 8) | (x >> 8)); }  #define BSWAP16(x) { x = (((x & 0xff) << 8) | (x >> 8)); }
202  #define BSWAP24(x) { x = (((x & 0xff) << 16) | (x >> 16) | (x & 0xff00)); }  #define BSWAP24(x) { x = (((x & 0xff) << 16) | (x >> 16) | (x & 0xff00)); }
203  #define BSWAP32(x) { x = (((x & 0xff00ff) << 8) | ((x >> 8) & 0xff00ff)); \  #define BSWAP32(x) { x = (((x & 0xff00ff) << 8) | ((x >> 8) & 0xff00ff)); \
204                          x = (x << 16) | (x >> 16); }                          x = (x << 16) | (x >> 16); }
205    
206    #define BOUT16(o, x) { *(o++) = x >> 8; *(o++) = x; }
207    #define BOUT24(o, x) { *(o++) = x >> 16; *(o++) = x >> 8; *(o++) = x; }
208    #define BOUT32(o, x) { *(o++) = x >> 24; *(o++) = x >> 16; *(o++) = x >> 8; *(o++) = x; }
209    #define LOUT16(o, x) { *(o++) = x; *(o++) = x >> 8; }
210    #define LOUT24(o, x) { *(o++) = x; *(o++) = x >> 8; *(o++) = x >> 16; }
211    #define LOUT32(o, x) { *(o++) = x; *(o++) = x >> 8; *(o++) = x >> 16; *(o++) = x >> 24; }
212    
213  static uint32  static uint32
214  translate_colour(uint32 colour)  translate_colour(uint32 colour)
215  {  {
# Line 220  translate_colour(uint32 colour) Line 217  translate_colour(uint32 colour)
217          switch (g_server_bpp)          switch (g_server_bpp)
218          {          {
219                  case 15:                  case 15:
220                          pc = split_colour15(colour);                          SPLITCOLOUR15(colour, pc);
221                          break;                          break;
222                  case 16:                  case 16:
223                          pc = split_colour16(colour);                          SPLITCOLOUR16(colour, pc);
224                          break;                          break;
225                  case 24:                  case 24:
226                          pc = split_colour24(colour);                          SPLITCOLOUR24(colour, pc);
227                          break;                          break;
228          }          }
229          return make_colour(pc);          return MAKECOLOUR(pc);
230    }
231    
232    /* indent is confused by UNROLL8 */
233    /* *INDENT-OFF* */
234    
235    /* repeat and unroll, similar to bitmap.c */
236    /* potentialy any of the following translate */
237    /* functions can use repeat but just doing */
238    /* the most common ones */
239    
240    #define UNROLL8(stm) { stm stm stm stm stm stm stm stm }
241    /* 2 byte output repeat */
242    #define REPEAT2(stm) \
243    { \
244            while (out <= end - 8 * 2) \
245                    UNROLL8(stm) \
246            while (out < end) \
247                    { stm } \
248    }
249    /* 3 byte output repeat */
250    #define REPEAT3(stm) \
251    { \
252            while (out <= end - 8 * 3) \
253                    UNROLL8(stm) \
254            while (out < end) \
255                    { stm } \
256    }
257    /* 4 byte output repeat */
258    #define REPEAT4(stm) \
259    { \
260            while (out <= end - 8 * 4) \
261                    UNROLL8(stm) \
262            while (out < end) \
263                    { stm } \
264  }  }
265    /* *INDENT-ON* */
266    
267  static void  static void
268  translate8to8(uint8 * data, uint8 * out, uint8 * end)  translate8to8(const uint8 * data, uint8 * out, uint8 * end)
269  {  {
270          while (out < end)          while (out < end)
271                  *(out++) = (uint8) g_colmap[*(data++)];                  *(out++) = (uint8) g_colmap[*(data++)];
272  }  }
273    
274  static void  static void
275  translate8to16(uint8 * data, uint8 * out, uint8 * end)  translate8to16(const uint8 * data, uint8 * out, uint8 * end)
276  {  {
277          uint16 value;          uint16 value;
278    
279          while (out < end)          if (g_arch_match)
280          {          {
281                  value = (uint16) g_colmap[*(data++)];                  /* *INDENT-OFF* */
282                    REPEAT2
283                  if (g_xserver_be)                  (
284                            *((uint16 *) out) = g_colmap[*(data++)];
285                            out += 2;
286                    )
287                    /* *INDENT-ON* */
288            }
289            else if (g_xserver_be)
290            {
291                    while (out < end)
292                  {                  {
293                          *(out++) = value >> 8;                          value = (uint16) g_colmap[*(data++)];
294                          *(out++) = value;                          BOUT16(out, value);
295                  }                  }
296                  else          }
297            else
298            {
299                    while (out < end)
300                  {                  {
301                          *(out++) = value;                          value = (uint16) g_colmap[*(data++)];
302                          *(out++) = value >> 8;                          LOUT16(out, value);
303                  }                  }
304          }          }
305  }  }
306    
307  /* little endian - conversion happens when colourmap is built */  /* little endian - conversion happens when colourmap is built */
308  static void  static void
309  translate8to24(uint8 * data, uint8 * out, uint8 * end)  translate8to24(const uint8 * data, uint8 * out, uint8 * end)
310  {  {
311          uint32 value;          uint32 value;
312    
313          while (out < end)          if (g_xserver_be)
314          {          {
315                  value = g_colmap[*(data++)];                  while (out < end)
   
                 if (g_xserver_be)  
316                  {                  {
317                          *(out++) = value >> 16;                          value = g_colmap[*(data++)];
318                          *(out++) = value >> 8;                          BOUT24(out, value);
                         *(out++) = value;  
319                  }                  }
320                  else          }
321            else
322            {
323                    while (out < end)
324                  {                  {
325                          *(out++) = value;                          value = g_colmap[*(data++)];
326                          *(out++) = value >> 8;                          LOUT24(out, value);
                         *(out++) = value >> 16;  
327                  }                  }
328          }          }
329  }  }
330    
331  static void  static void
332  translate8to32(uint8 * data, uint8 * out, uint8 * end)  translate8to32(const uint8 * data, uint8 * out, uint8 * end)
333  {  {
334          uint32 value;          uint32 value;
335    
336          while (out < end)          if (g_arch_match)
337          {          {
338                  value = g_colmap[*(data++)];                  /* *INDENT-OFF* */
339                    REPEAT4
340                  if (g_xserver_be)                  (
341                            *((uint32 *) out) = g_colmap[*(data++)];
342                            out += 4;
343                    )
344                    /* *INDENT-ON* */
345            }
346            else if (g_xserver_be)
347            {
348                    while (out < end)
349                  {                  {
350                          *(out++) = value >> 24;                          value = g_colmap[*(data++)];
351                          *(out++) = value >> 16;                          BOUT32(out, value);
                         *(out++) = value >> 8;  
                         *(out++) = value;  
352                  }                  }
353                  else          }
354            else
355            {
356                    while (out < end)
357                  {                  {
358                          *(out++) = value;                          value = g_colmap[*(data++)];
359                          *(out++) = value >> 8;                          LOUT32(out, value);
                         *(out++) = value >> 16;  
                         *(out++) = value >> 24;  
360                  }                  }
361          }          }
362  }  }
363    
364  static void  static void
365  translate15to16(uint16 * data, uint8 * out, uint8 * end)  translate15to16(const uint16 * data, uint8 * out, uint8 * end)
366  {  {
367          uint16 pixel;          uint16 pixel;
368          uint16 value;          uint16 value;
369            PixelColour pc;
370    
371          while (out < end)          if (g_xserver_be)
372          {          {
373                  pixel = *(data++);                  while (out < end)
   
                 if (g_host_be)  
                 {  
                         BSWAP16(pixel);  
                 }  
   
                 value = make_colour(split_colour15(pixel));  
   
                 if (g_xserver_be)  
374                  {                  {
375                          *(out++) = value >> 8;                          pixel = *(data++);
376                          *(out++) = value;                          if (g_host_be)
377                            {
378                                    BSWAP16(pixel);
379                            }
380                            SPLITCOLOUR15(pixel, pc);
381                            value = MAKECOLOUR(pc);
382                            BOUT16(out, value);
383                  }                  }
384                  else          }
385            else
386            {
387                    while (out < end)
388                  {                  {
389                          *(out++) = value;                          pixel = *(data++);
390                          *(out++) = value >> 8;                          if (g_host_be)
391                            {
392                                    BSWAP16(pixel);
393                            }
394                            SPLITCOLOUR15(pixel, pc);
395                            value = MAKECOLOUR(pc);
396                            LOUT16(out, value);
397                  }                  }
398          }          }
399  }  }
400    
401  static void  static void
402  translate15to24(uint16 * data, uint8 * out, uint8 * end)  translate15to24(const uint16 * data, uint8 * out, uint8 * end)
403  {  {
404          uint32 value;          uint32 value;
405          uint16 pixel;          uint16 pixel;
406            PixelColour pc;
407    
408          while (out < end)          if (g_arch_match)
409          {          {
410                  pixel = *(data++);                  /* *INDENT-OFF* */
411                    REPEAT3
412                  if (g_host_be)                  (
413                  {                          pixel = *(data++);
414                          BSWAP16(pixel);                          SPLITCOLOUR15(pixel, pc);
415                  }                          *(out++) = pc.blue;
416                            *(out++) = pc.green;
417                  value = make_colour(split_colour15(pixel));                          *(out++) = pc.red;
418                  if (g_xserver_be)                  )
419                    /* *INDENT-ON* */
420            }
421            else if (g_xserver_be)
422            {
423                    while (out < end)
424                  {                  {
425                          *(out++) = value >> 16;                          pixel = *(data++);
426                          *(out++) = value >> 8;                          if (g_host_be)
427                          *(out++) = value;                          {
428                                    BSWAP16(pixel);
429                            }
430                            SPLITCOLOUR15(pixel, pc);
431                            value = MAKECOLOUR(pc);
432                            BOUT24(out, value);
433                  }                  }
434                  else          }
435            else
436            {
437                    while (out < end)
438                  {                  {
439                          *(out++) = value;                          pixel = *(data++);
440                          *(out++) = value >> 8;                          if (g_host_be)
441                          *(out++) = value >> 16;                          {
442                                    BSWAP16(pixel);
443                            }
444                            SPLITCOLOUR15(pixel, pc);
445                            value = MAKECOLOUR(pc);
446                            LOUT24(out, value);
447                  }                  }
448          }          }
449  }  }
450    
451  static void  static void
452  translate15to32(uint16 * data, uint8 * out, uint8 * end)  translate15to32(const uint16 * data, uint8 * out, uint8 * end)
453  {  {
454          uint16 pixel;          uint16 pixel;
455          uint32 value;          uint32 value;
456            PixelColour pc;
457    
458          while (out < end)          if (g_arch_match)
459          {          {
460                  pixel = *(data++);                  /* *INDENT-OFF* */
461                    REPEAT4
462                  if (g_host_be)                  (
463                  {                          pixel = *(data++);
464                          BSWAP16(pixel);                          SPLITCOLOUR15(pixel, pc);
465                  }                          *(out++) = pc.blue;
466                            *(out++) = pc.green;
467                  value = make_colour(split_colour15(pixel));                          *(out++) = pc.red;
468                            *(out++) = 0;
469                  if (g_xserver_be)                  )
470                    /* *INDENT-ON* */
471            }
472            else if (g_xserver_be)
473            {
474                    while (out < end)
475                  {                  {
476                          *(out++) = value >> 24;                          pixel = *(data++);
477                          *(out++) = value >> 16;                          if (g_host_be)
478                          *(out++) = value >> 8;                          {
479                          *(out++) = value;                                  BSWAP16(pixel);
480                            }
481                            SPLITCOLOUR15(pixel, pc);
482                            value = MAKECOLOUR(pc);
483                            BOUT32(out, value);
484                  }                  }
485                  else          }
486            else
487            {
488                    while (out < end)
489                  {                  {
490                          *(out++) = value;                          pixel = *(data++);
491                          *(out++) = value >> 8;                          if (g_host_be)
492                          *(out++) = value >> 16;                          {
493                          *(out++) = value >> 24;                                  BSWAP16(pixel);
494                            }
495                            SPLITCOLOUR15(pixel, pc);
496                            value = MAKECOLOUR(pc);
497                            LOUT32(out, value);
498                  }                  }
499          }          }
500  }  }
501    
502  static void  static void
503  translate16to16(uint16 * data, uint8 * out, uint8 * end)  translate16to16(const uint16 * data, uint8 * out, uint8 * end)
504  {  {
505          uint16 pixel;          uint16 pixel;
506          uint16 value;          uint16 value;
507            PixelColour pc;
508    
509          while (out < end)          if (g_xserver_be)
510          {          {
                 pixel = *(data++);  
   
511                  if (g_host_be)                  if (g_host_be)
512                  {                  {
513                          BSWAP16(pixel);                          while (out < end)
514                            {
515                                    pixel = *(data++);
516                                    BSWAP16(pixel);
517                                    SPLITCOLOUR16(pixel, pc);
518                                    value = MAKECOLOUR(pc);
519                                    BOUT16(out, value);
520                            }
521                  }                  }
522                    else
                 value = make_colour(split_colour16(pixel));  
   
                 if (g_xserver_be)  
523                  {                  {
524                          *(out++) = value >> 8;                          while (out < end)
525                          *(out++) = value;                          {
526                                    pixel = *(data++);
527                                    SPLITCOLOUR16(pixel, pc);
528                                    value = MAKECOLOUR(pc);
529                                    BOUT16(out, value);
530                            }
531                    }
532            }
533            else
534            {
535                    if (g_host_be)
536                    {
537                            while (out < end)
538                            {
539                                    pixel = *(data++);
540                                    BSWAP16(pixel);
541                                    SPLITCOLOUR16(pixel, pc);
542                                    value = MAKECOLOUR(pc);
543                                    LOUT16(out, value);
544                            }
545                  }                  }
546                  else                  else
547                  {                  {
548                          *(out++) = value;                          while (out < end)
549                          *(out++) = value >> 8;                          {
550                                    pixel = *(data++);
551                                    SPLITCOLOUR16(pixel, pc);
552                                    value = MAKECOLOUR(pc);
553                                    LOUT16(out, value);
554                            }
555                  }                  }
556          }          }
557  }  }
558    
559  static void  static void
560  translate16to24(uint16 * data, uint8 * out, uint8 * end)  translate16to24(const uint16 * data, uint8 * out, uint8 * end)
561  {  {
562          uint32 value;          uint32 value;
563          uint16 pixel;          uint16 pixel;
564            PixelColour pc;
565    
566          while (out < end)          if (g_arch_match)
567            {
568                    /* *INDENT-OFF* */
569                    REPEAT3
570                    (
571                            pixel = *(data++);
572                            SPLITCOLOUR16(pixel, pc);
573                            *(out++) = pc.blue;
574                            *(out++) = pc.green;
575                            *(out++) = pc.red;
576                    )
577                    /* *INDENT-ON* */
578            }
579            else if (g_xserver_be)
580          {          {
                 pixel = *(data++);  
   
581                  if (g_host_be)                  if (g_host_be)
582                  {                  {
583                          BSWAP16(pixel);                          while (out < end)
584                            {
585                                    pixel = *(data++);
586                                    BSWAP16(pixel);
587                                    SPLITCOLOUR16(pixel, pc);
588                                    value = MAKECOLOUR(pc);
589                                    BOUT24(out, value);
590                            }
591                  }                  }
592                    else
                 value = make_colour(split_colour16(pixel));  
   
                 if (g_xserver_be)  
593                  {                  {
594                          *(out++) = value >> 16;                          while (out < end)
595                          *(out++) = value >> 8;                          {
596                          *(out++) = value;                                  pixel = *(data++);
597                                    SPLITCOLOUR16(pixel, pc);
598                                    value = MAKECOLOUR(pc);
599                                    BOUT24(out, value);
600                            }
601                    }
602            }
603            else
604            {
605                    if (g_host_be)
606                    {
607                            while (out < end)
608                            {
609                                    pixel = *(data++);
610                                    BSWAP16(pixel);
611                                    SPLITCOLOUR16(pixel, pc);
612                                    value = MAKECOLOUR(pc);
613                                    LOUT24(out, value);
614                            }
615                  }                  }
616                  else                  else
617                  {                  {
618                          *(out++) = value;                          while (out < end)
619                          *(out++) = value >> 8;                          {
620                          *(out++) = value >> 16;                                  pixel = *(data++);
621                                    SPLITCOLOUR16(pixel, pc);
622                                    value = MAKECOLOUR(pc);
623                                    LOUT24(out, value);
624                            }
625                  }                  }
626          }          }
627  }  }
628    
629  static void  static void
630  translate16to32(uint16 * data, uint8 * out, uint8 * end)  translate16to32(const uint16 * data, uint8 * out, uint8 * end)
631  {  {
632          uint16 pixel;          uint16 pixel;
633          uint32 value;          uint32 value;
634            PixelColour pc;
635    
636          while (out < end)          if (g_arch_match)
637            {
638                    /* *INDENT-OFF* */
639                    REPEAT4
640                    (
641                            pixel = *(data++);
642                            SPLITCOLOUR16(pixel, pc);
643                            *(out++) = pc.blue;
644                            *(out++) = pc.green;
645                            *(out++) = pc.red;
646                            *(out++) = 0;
647                    )
648                    /* *INDENT-ON* */
649            }
650            else if (g_xserver_be)
651          {          {
                 pixel = *(data++);  
   
652                  if (g_host_be)                  if (g_host_be)
653                  {                  {
654                          BSWAP16(pixel);                          while (out < end)
655                            {
656                                    pixel = *(data++);
657                                    BSWAP16(pixel);
658                                    SPLITCOLOUR16(pixel, pc);
659                                    value = MAKECOLOUR(pc);
660                                    BOUT32(out, value);
661                            }
662                  }                  }
663                    else
                 value = make_colour(split_colour16(pixel));  
   
                 if (g_xserver_be)  
664                  {                  {
665                          *(out++) = value >> 24;                          {
666                          *(out++) = value >> 16;                                  pixel = *(data++);
667                          *(out++) = value >> 8;                                  SPLITCOLOUR16(pixel, pc);
668                          *(out++) = value;                                  value = MAKECOLOUR(pc);
669                                    BOUT32(out, value);
670                            }
671                    }
672            }
673            else
674            {
675                    if (g_host_be)
676                    {
677                            while (out < end)
678                            {
679                                    pixel = *(data++);
680                                    BSWAP16(pixel);
681                                    SPLITCOLOUR16(pixel, pc);
682                                    value = MAKECOLOUR(pc);
683                                    LOUT32(out, value);
684                            }
685                  }                  }
686                  else                  else
687                  {                  {
688                          *(out++) = value;                          while (out < end)
689                          *(out++) = value >> 8;                          {
690                          *(out++) = value >> 16;                                  pixel = *(data++);
691                          *(out++) = value >> 24;                                  SPLITCOLOUR16(pixel, pc);
692                                    value = MAKECOLOUR(pc);
693                                    LOUT32(out, value);
694                            }
695                  }                  }
696          }          }
697  }  }
698    
699  static void  static void
700  translate24to16(uint8 * data, uint8 * out, uint8 * end)  translate24to16(const uint8 * data, uint8 * out, uint8 * end)
701  {  {
702          uint32 pixel = 0;          uint32 pixel = 0;
703          uint16 value;          uint16 value;
704            PixelColour pc;
705    
706          while (out < end)          while (out < end)
707          {          {
708                  pixel = *(data++) << 16;                  pixel = *(data++) << 16;
709                  pixel |= *(data++) << 8;                  pixel |= *(data++) << 8;
710                  pixel |= *(data++);                  pixel |= *(data++);
711                    SPLITCOLOUR24(pixel, pc);
712                  value = (uint16) make_colour(split_colour24(pixel));                  value = MAKECOLOUR(pc);
   
713                  if (g_xserver_be)                  if (g_xserver_be)
714                  {                  {
715                          *(out++) = value >> 8;                          BOUT16(out, value);
                         *(out++) = value;  
716                  }                  }
717                  else                  else
718                  {                  {
719                          *(out++) = value;                          LOUT16(out, value);
                         *(out++) = value >> 8;  
720                  }                  }
721          }          }
722  }  }
723    
724  static void  static void
725  translate24to24(uint8 * data, uint8 * out, uint8 * end)  translate24to24(const uint8 * data, uint8 * out, uint8 * end)
726  {  {
727          uint32 pixel;          uint32 pixel;
728          uint32 value;          uint32 value;
729            PixelColour pc;
730    
731          while (out < end)          if (g_xserver_be)
732          {          {
733                  pixel = *(data++) << 16;                  while (out < end)
                 pixel |= *(data++) << 8;  
                 pixel |= *(data++);  
   
                 value = make_colour(split_colour24(pixel));  
   
                 if (g_xserver_be)  
734                  {                  {
735                          *(out++) = value >> 16;                          pixel = *(data++) << 16;
736                          *(out++) = value >> 8;                          pixel |= *(data++) << 8;
737                          *(out++) = value;                          pixel |= *(data++);
738                            SPLITCOLOUR24(pixel, pc);
739                            value = MAKECOLOUR(pc);
740                            BOUT24(out, value);
741                  }                  }
742                  else          }
743            else
744            {
745                    while (out < end)
746                  {                  {
747                          *(out++) = value;                          pixel = *(data++) << 16;
748                          *(out++) = value >> 8;                          pixel |= *(data++) << 8;
749                          *(out++) = value >> 16;                          pixel |= *(data++);
750                            SPLITCOLOUR24(pixel, pc);
751                            value = MAKECOLOUR(pc);
752                            LOUT24(out, value);
753                  }                  }
754          }          }
755  }  }
756    
757  static void  static void
758  translate24to32(uint8 * data, uint8 * out, uint8 * end)  translate24to32(const uint8 * data, uint8 * out, uint8 * end)
759  {  {
760          uint32 pixel;          uint32 pixel;
761          uint32 value;          uint32 value;
762            PixelColour pc;
763    
764          while (out < end)          if (g_arch_match)
765          {          {
766                  pixel = *(data++) << 16;                  /* *INDENT-OFF* */
767                  pixel |= *(data++) << 8;  #ifdef NEED_ALIGN
768                  pixel |= *(data++);                  REPEAT4
769                    (
770                  value = make_colour(split_colour24(pixel));                          *(out++) = *(data++);
771                            *(out++) = *(data++);
772                  if (g_xserver_be)                          *(out++) = *(data++);
773                            *(out++) = 0;
774                    )
775    #else
776                    REPEAT4
777                    (
778                            *((uint32 *) out) = *((uint32 *) data);
779                            out += 4;
780                            data += 3;
781                    )
782    #endif
783                    /* *INDENT-ON* */
784            }
785            else if (g_xserver_be)
786            {
787                    while (out < end)
788                  {                  {
789                          *(out++) = value >> 24;                          pixel = *(data++) << 16;
790                          *(out++) = value >> 16;                          pixel |= *(data++) << 8;
791                          *(out++) = value >> 8;                          pixel |= *(data++);
792                          *(out++) = value;                          SPLITCOLOUR24(pixel, pc);
793                            value = MAKECOLOUR(pc);
794                            BOUT32(out, value);
795                  }                  }
796                  else          }
797            else
798            {
799                    while (out < end)
800                  {                  {
801                          *(out++) = value;                          pixel = *(data++) << 16;
802                          *(out++) = value >> 8;                          pixel |= *(data++) << 8;
803                          *(out++) = value >> 16;                          pixel |= *(data++);
804                          *(out++) = value >> 24;                          SPLITCOLOUR24(pixel, pc);
805                            value = MAKECOLOUR(pc);
806                            LOUT32(out, value);
807                  }                  }
808          }          }
809  }  }
# Line 592  translate24to32(uint8 * data, uint8 * ou Line 811  translate24to32(uint8 * data, uint8 * ou
811  static uint8 *  static uint8 *
812  translate_image(int width, int height, uint8 * data)  translate_image(int width, int height, uint8 * data)
813  {  {
814          int size = width * height * g_bpp / 8;          int size;
815          uint8 *out = (uint8 *) xmalloc(size);          uint8 *out;
816          uint8 *end = out + size;          uint8 *end;
817    
818            /* if server and xserver bpp match, */
819            /* and arch(endian) matches, no need to translate */
820            /* just return data */
821            if (g_arch_match)
822            {
823                    if (g_depth == 15 && g_server_bpp == 15)
824                            return data;
825                    if (g_depth == 16 && g_server_bpp == 16)
826                            return data;
827                    if (g_depth == 24 && g_bpp == 24 && g_server_bpp == 24)
828                            return data;
829            }
830    
831            size = width * height * (g_bpp / 8);
832            out = (uint8 *) xmalloc(size);
833            end = out + size;
834    
835          switch (g_server_bpp)          switch (g_server_bpp)
836          {          {
# Line 732  ui_init(void) Line 968  ui_init(void)
968                  TrueColorVisual = True;                  TrueColorVisual = True;
969          }          }
970    
971            test = 1;
972            g_host_be = !(BOOL) (*(uint8 *) (&test));
973            g_xserver_be = (ImageByteOrder(g_display) == MSBFirst);
974    
975          if ((g_server_bpp == 8) && ((!TrueColorVisual) || (g_depth <= 8)))          if ((g_server_bpp == 8) && ((!TrueColorVisual) || (g_depth <= 8)))
976          {          {
977                  /* we use a colourmap, so the default visual should do */                  /* we use a colourmap, so the default visual should do */
# Line 758  ui_init(void) Line 998  ui_init(void)
998                  calculate_shifts(vi.red_mask, &g_red_shift_r, &g_red_shift_l);                  calculate_shifts(vi.red_mask, &g_red_shift_r, &g_red_shift_l);
999                  calculate_shifts(vi.blue_mask, &g_blue_shift_r, &g_blue_shift_l);                  calculate_shifts(vi.blue_mask, &g_blue_shift_r, &g_blue_shift_l);
1000                  calculate_shifts(vi.green_mask, &g_green_shift_r, &g_green_shift_l);                  calculate_shifts(vi.green_mask, &g_green_shift_r, &g_green_shift_l);
1001    
1002                    /* if RGB video and everything is little endian */
1003                    if ((vi.red_mask > vi.green_mask && vi.green_mask > vi.blue_mask) &&
1004                        !g_xserver_be && !g_host_be)
1005                    {
1006                            if (g_depth <= 16 || (g_red_shift_l == 16 && g_green_shift_l == 8 &&
1007                                                  g_blue_shift_l == 0))
1008                            {
1009                                    g_arch_match = True;
1010                            }
1011                    }
1012    
1013                    if (g_arch_match)
1014                    {
1015                            DEBUG(("Architectures match, enabling little endian optimisations.\n"));
1016                    }
1017          }          }
1018    
1019          pfm = XListPixmapFormats(g_display, &i);          pfm = XListPixmapFormats(g_display, &i);
# Line 791  ui_init(void) Line 1047  ui_init(void)
1047                          warning("Screen depth is 8 bits or lower: you may want to use -C for a private colourmap\n");                          warning("Screen depth is 8 bits or lower: you may want to use -C for a private colourmap\n");
1048          }          }
1049    
1050          if (DoesBackingStore(g_screen) != Always)          if ((!g_ownbackstore) && (DoesBackingStore(g_screen) != Always))
1051            {
1052                    warning("External BackingStore not available, using internal\n");
1053                  g_ownbackstore = True;                  g_ownbackstore = True;
1054            }
         test = 1;  
         g_host_be = !(BOOL) (*(uint8 *) (&test));  
         g_xserver_be = (ImageByteOrder(g_display) == MSBFirst);  
1055    
1056          /*          /*
1057           * Determine desktop size           * Determine desktop size
# Line 870  BOOL Line 1125  BOOL
1125  ui_create_window(void)  ui_create_window(void)
1126  {  {
1127          uint8 null_pointer_mask[1] = { 0x80 };          uint8 null_pointer_mask[1] = { 0x80 };
1128          uint8 null_pointer_data[4] = { 0x00, 0x00, 0x00, 0x00 };          uint8 null_pointer_data[24] = { 0x00 };
1129    
1130          XSetWindowAttributes attribs;          XSetWindowAttributes attribs;
1131          XClassHint *classhints;          XClassHint *classhints;
1132          XSizeHints *sizehints;          XSizeHints *sizehints;
# Line 887  ui_create_window(void) Line 1143  ui_create_window(void)
1143          attribs.override_redirect = g_fullscreen;          attribs.override_redirect = g_fullscreen;
1144          attribs.colormap = g_xcolmap;          attribs.colormap = g_xcolmap;
1145    
1146          g_wnd = XCreateWindow(g_display, RootWindowOfScreen(g_screen), 0, 0, wndwidth, wndheight,          g_wnd = XCreateWindow(g_display, RootWindowOfScreen(g_screen), g_xpos, g_ypos, wndwidth,
1147                                0, g_depth, InputOutput, g_visual,                                wndheight, 0, g_depth, InputOutput, g_visual,
1148                                CWBackPixel | CWBackingStore | CWOverrideRedirect |                                CWBackPixel | CWBackingStore | CWOverrideRedirect | CWColormap |
1149                                CWColormap | CWBorderPixel, &attribs);                                CWBorderPixel, &attribs);
1150    
1151          if (g_gc == NULL)          if (g_gc == NULL)
1152                  g_gc = XCreateGC(g_display, g_wnd, 0, NULL);                  g_gc = XCreateGC(g_display, g_wnd, 0, NULL);
1153    
1154            if (g_create_bitmap_gc == NULL)
1155                    g_create_bitmap_gc = XCreateGC(g_display, g_wnd, 0, NULL);
1156    
1157          if ((g_ownbackstore) && (g_backstore == 0))          if ((g_ownbackstore) && (g_backstore == 0))
1158          {          {
1159                  g_backstore = XCreatePixmap(g_display, g_wnd, g_width, g_height, g_depth);                  g_backstore = XCreatePixmap(g_display, g_wnd, g_width, g_height, g_depth);
# Line 927  ui_create_window(void) Line 1186  ui_create_window(void)
1186                  XFree(sizehints);                  XFree(sizehints);
1187          }          }
1188    
1189            if (g_embed_wnd)
1190            {
1191                    XReparentWindow(g_display, g_wnd, (Window) g_embed_wnd, 0, 0);
1192            }
1193    
1194          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
1195                  VisibilityChangeMask | FocusChangeMask;                  VisibilityChangeMask | FocusChangeMask;
1196    
# Line 958  ui_create_window(void) Line 1222  ui_create_window(void)
1222                  XMaskEvent(g_display, VisibilityChangeMask, &xevent);                  XMaskEvent(g_display, VisibilityChangeMask, &xevent);
1223          }          }
1224          while (xevent.type != VisibilityNotify);          while (xevent.type != VisibilityNotify);
1225            g_Unobscured = xevent.xvisibility.state == VisibilityUnobscured;
1226    
1227          g_focused = False;          g_focused = False;
1228          g_mouse_in_wnd = False;          g_mouse_in_wnd = False;
# Line 975  ui_create_window(void) Line 1240  ui_create_window(void)
1240  }  }
1241    
1242  void  void
1243    ui_resize_window()
1244    {
1245            XSizeHints *sizehints;
1246            Pixmap bs;
1247    
1248            sizehints = XAllocSizeHints();
1249            if (sizehints)
1250            {
1251                    sizehints->flags = PMinSize | PMaxSize;
1252                    sizehints->min_width = sizehints->max_width = g_width;
1253                    sizehints->min_height = sizehints->max_height = g_height;
1254                    XSetWMNormalHints(g_display, g_wnd, sizehints);
1255                    XFree(sizehints);
1256            }
1257    
1258            if (!(g_fullscreen || g_embed_wnd))
1259            {
1260                    XResizeWindow(g_display, g_wnd, g_width, g_height);
1261            }
1262    
1263            /* create new backstore pixmap */
1264            if (g_backstore != 0)
1265            {
1266                    bs = XCreatePixmap(g_display, g_wnd, g_width, g_height, g_depth);
1267                    XSetForeground(g_display, g_gc, BlackPixelOfScreen(g_screen));
1268                    XFillRectangle(g_display, bs, g_gc, 0, 0, g_width, g_height);
1269                    XCopyArea(g_display, g_backstore, bs, g_gc, 0, 0, g_width, g_height, 0, 0);
1270                    XFreePixmap(g_display, g_backstore);
1271                    g_backstore = bs;
1272            }
1273    }
1274    
1275    void
1276  ui_destroy_window(void)  ui_destroy_window(void)
1277  {  {
1278          if (g_IC != NULL)          if (g_IC != NULL)
# Line 1035  xwin_process_events(void) Line 1333  xwin_process_events(void)
1333    
1334                  switch (xevent.type)                  switch (xevent.type)
1335                  {                  {
1336                            case VisibilityNotify:
1337                                    g_Unobscured = xevent.xvisibility.state == VisibilityUnobscured;
1338                                    break;
1339                          case ClientMessage:                          case ClientMessage:
1340                                  /* the window manager told us to quit */                                  /* the window manager told us to quit */
1341                                  if ((xevent.xclient.message_type == g_protocol_atom)                                  if ((xevent.xclient.message_type == g_protocol_atom)
# Line 1272  xwin_process_events(void) Line 1573  xwin_process_events(void)
1573  int  int
1574  ui_select(int rdp_socket)  ui_select(int rdp_socket)
1575  {  {
1576          int n = (rdp_socket > g_x_socket) ? rdp_socket : g_x_socket;          int n;
1577          fd_set rfds, wfds;          fd_set rfds, wfds;
1578          struct timeval tv;          struct timeval tv;
1579          BOOL s_timeout = False;          BOOL s_timeout = False;
1580    
1581          while (True)          while (True)
1582          {          {
1583                    n = (rdp_socket > g_x_socket) ? rdp_socket : g_x_socket;
1584                  /* Process any events already waiting */                  /* Process any events already waiting */
1585                  if (!xwin_process_events())                  if (!xwin_process_events())
1586                          /* User quit */                          /* User quit */
# Line 1312  ui_select(int rdp_socket) Line 1614  ui_select(int rdp_socket)
1614                                  error("select: %s\n", strerror(errno));                                  error("select: %s\n", strerror(errno));
1615    
1616                          case 0:                          case 0:
1617                                  /* TODO: if tv.tv_sec just times out                                  /* Abort serial read calls */
1618                                   * we will segfault.                                  if (s_timeout)
1619                                   * FIXME:                                          rdpdr_check_fds(&rfds, &wfds, (BOOL) True);
                                  */  
                                 //s_timeout = True;  
                                 //rdpdr_check_fds(&rfds, &wfds, (BOOL) True);  
1620                                  continue;                                  continue;
1621                  }                  }
1622    
# Line 1364  ui_create_bitmap(int width, int height, Line 1663  ui_create_bitmap(int width, int height,
1663          image = XCreateImage(g_display, g_visual, g_depth, ZPixmap, 0,          image = XCreateImage(g_display, g_visual, g_depth, ZPixmap, 0,
1664                               (char *) tdata, width, height, bitmap_pad, 0);                               (char *) tdata, width, height, bitmap_pad, 0);
1665    
1666          XPutImage(g_display, bitmap, g_gc, image, 0, 0, 0, 0, width, height);          XPutImage(g_display, bitmap, g_create_bitmap_gc, image, 0, 0, 0, 0, width, height);
1667    
1668          XFree(image);          XFree(image);
1669          if (!g_owncolmap)          if (tdata != data)
1670                  xfree(tdata);                  xfree(tdata);
1671          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
1672  }  }
# Line 1406  ui_paint_bitmap(int x, int y, int cx, in Line 1705  ui_paint_bitmap(int x, int y, int cx, in
1705          }          }
1706    
1707          XFree(image);          XFree(image);
1708          if (!g_owncolmap)          if (tdata != data)
1709                  xfree(tdata);                  xfree(tdata);
1710  }  }
1711    
# Line 1422  ui_create_glyph(int width, int height, u Line 1721  ui_create_glyph(int width, int height, u
1721          XImage *image;          XImage *image;
1722          Pixmap bitmap;          Pixmap bitmap;
1723          int scanline;          int scanline;
         GC gc;  
1724    
1725          scanline = (width + 7) / 8;          scanline = (width + 7) / 8;
1726    
1727          bitmap = XCreatePixmap(g_display, g_wnd, width, height, 1);          bitmap = XCreatePixmap(g_display, g_wnd, width, height, 1);
1728          gc = XCreateGC(g_display, bitmap, 0, NULL);          if (g_create_glyph_gc == 0)
1729                    g_create_glyph_gc = XCreateGC(g_display, bitmap, 0, NULL);
1730    
1731          image = XCreateImage(g_display, g_visual, 1, ZPixmap, 0, (char *) data,          image = XCreateImage(g_display, g_visual, 1, ZPixmap, 0, (char *) data,
1732                               width, height, 8, scanline);                               width, height, 8, scanline);
# Line 1435  ui_create_glyph(int width, int height, u Line 1734  ui_create_glyph(int width, int height, u
1734          image->bitmap_bit_order = MSBFirst;          image->bitmap_bit_order = MSBFirst;
1735          XInitImage(image);          XInitImage(image);
1736    
1737          XPutImage(g_display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(g_display, bitmap, g_create_glyph_gc, image, 0, 0, 0, 0, width, height);
1738    
1739          XFree(image);          XFree(image);
         XFreeGC(g_display, gc);  
1740          return (HGLYPH) bitmap;          return (HGLYPH) bitmap;
1741  }  }
1742    
# Line 1730  ui_patblt(uint8 opcode, Line 2028  ui_patblt(uint8 opcode,
2028          {          {
2029                  case 0: /* Solid */                  case 0: /* Solid */
2030                          SET_FOREGROUND(fgcolour);                          SET_FOREGROUND(fgcolour);
2031                          FILL_RECTANGLE(x, y, cx, cy);                          FILL_RECTANGLE_BACKSTORE(x, y, cx, cy);
2032                          break;                          break;
2033    
2034                  case 2: /* Hatch */                  case 2: /* Hatch */
# Line 1741  ui_patblt(uint8 opcode, Line 2039  ui_patblt(uint8 opcode,
2039                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);
2040                          XSetStipple(g_display, g_gc, fill);                          XSetStipple(g_display, g_gc, fill);
2041                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);
2042                          FILL_RECTANGLE(x, y, cx, cy);                          FILL_RECTANGLE_BACKSTORE(x, y, cx, cy);
2043                          XSetFillStyle(g_display, g_gc, FillSolid);                          XSetFillStyle(g_display, g_gc, FillSolid);
2044                          XSetTSOrigin(g_display, g_gc, 0, 0);                          XSetTSOrigin(g_display, g_gc, 0, 0);
2045                          ui_destroy_glyph((HGLYPH) fill);                          ui_destroy_glyph((HGLYPH) fill);
# Line 1751  ui_patblt(uint8 opcode, Line 2049  ui_patblt(uint8 opcode,
2049                          for (i = 0; i != 8; i++)                          for (i = 0; i != 8; i++)
2050                                  ipattern[7 - i] = brush->pattern[i];                                  ipattern[7 - i] = brush->pattern[i];
2051                          fill = (Pixmap) ui_create_glyph(8, 8, ipattern);                          fill = (Pixmap) ui_create_glyph(8, 8, ipattern);
   
2052                          SET_FOREGROUND(bgcolour);                          SET_FOREGROUND(bgcolour);
2053                          SET_BACKGROUND(fgcolour);                          SET_BACKGROUND(fgcolour);
2054                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);
2055                          XSetStipple(g_display, g_gc, fill);                          XSetStipple(g_display, g_gc, fill);
2056                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);
2057                            FILL_RECTANGLE_BACKSTORE(x, y, cx, cy);
                         FILL_RECTANGLE(x, y, cx, cy);  
   
2058                          XSetFillStyle(g_display, g_gc, FillSolid);                          XSetFillStyle(g_display, g_gc, FillSolid);
2059                          XSetTSOrigin(g_display, g_gc, 0, 0);                          XSetTSOrigin(g_display, g_gc, 0, 0);
2060                          ui_destroy_glyph((HGLYPH) fill);                          ui_destroy_glyph((HGLYPH) fill);
# Line 1770  ui_patblt(uint8 opcode, Line 2065  ui_patblt(uint8 opcode,
2065          }          }
2066    
2067          RESET_FUNCTION(opcode);          RESET_FUNCTION(opcode);
2068    
2069            if (g_ownbackstore)
2070                    XCopyArea(g_display, g_backstore, g_wnd, g_gc, x, y, cx, cy, x, y);
2071  }  }
2072    
2073  void  void
# Line 1778  ui_screenblt(uint8 opcode, Line 2076  ui_screenblt(uint8 opcode,
2076               /* src */ int srcx, int srcy)               /* src */ int srcx, int srcy)
2077  {  {
2078          SET_FUNCTION(opcode);          SET_FUNCTION(opcode);
         XCopyArea(g_display, g_wnd, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);  
2079          if (g_ownbackstore)          if (g_ownbackstore)
2080                  XCopyArea(g_display, g_backstore, g_backstore, g_gc, srcx, srcy, cx, cy, x, y);          {
2081                    if (g_Unobscured)
2082                    {
2083                            XCopyArea(g_display, g_wnd, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);
2084                            XCopyArea(g_display, g_backstore, g_backstore, g_gc, srcx, srcy, cx, cy, x,
2085                                      y);
2086                    }
2087                    else
2088                    {
2089                            XCopyArea(g_display, g_backstore, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);
2090                            XCopyArea(g_display, g_backstore, g_backstore, g_gc, srcx, srcy, cx, cy, x,
2091                                      y);
2092                    }
2093            }
2094            else
2095            {
2096                    XCopyArea(g_display, g_wnd, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);
2097            }
2098          RESET_FUNCTION(opcode);          RESET_FUNCTION(opcode);
2099  }  }
2100    
# Line 1917  ui_draw_text(uint8 font, uint8 flags, in Line 2231  ui_draw_text(uint8 font, uint8 flags, in
2231    
2232          SET_FOREGROUND(bgcolour);          SET_FOREGROUND(bgcolour);
2233    
2234            /* Sometimes, the boxcx value is something really large, like
2235               32691. This makes XCopyArea fail with Xvnc. The code below
2236               is a quick fix. */
2237            if (boxx + boxcx > g_width)
2238                    boxcx = g_width - boxx;
2239    
2240          if (boxcx > 1)          if (boxcx > 1)
2241          {          {
2242                  FILL_RECTANGLE_BACKSTORE(boxx, boxy, boxcx, boxcy);                  FILL_RECTANGLE_BACKSTORE(boxx, boxy, boxcx, boxcy);
# Line 2044  ui_desktop_restore(uint32 offset, int x, Line 2364  ui_desktop_restore(uint32 offset, int x,
2364    
2365          XFree(image);          XFree(image);
2366  }  }
2367    
2368    /* these do nothing here but are used in uiports */
2369    void
2370    ui_begin_update(void)
2371    {
2372    }
2373    
2374    void
2375    ui_end_update(void)
2376    {
2377    }

Legend:
Removed from v.603  
changed lines
  Added in v.822

  ViewVC Help
Powered by ViewVC 1.1.26