/[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 603 by stargo, Sat Feb 7 18:47:06 2004 UTC revision 704 by stargo, Thu May 27 10:19:41 2004 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 42  Time g_last_gesturetime; Line 43  Time g_last_gesturetime;
43  static int g_x_socket;  static int g_x_socket;
44  static Screen *g_screen;  static Screen *g_screen;
45  Window g_wnd;  Window g_wnd;
46    extern uint32 g_embed_wnd;
47  BOOL g_enable_compose = False;  BOOL g_enable_compose = False;
48    BOOL g_Unobscured;              /* used for screenblt */
49  static GC g_gc = NULL;  static GC g_gc = NULL;
50  static Visual *g_visual;  static Visual *g_visual;
51  static int g_depth;  static int g_depth;
# Line 55  static HCURSOR g_null_cursor = NULL; Line 58  static HCURSOR g_null_cursor = NULL;
58  static Atom g_protocol_atom, g_kill_atom;  static Atom g_protocol_atom, g_kill_atom;
59  static BOOL g_focused;  static BOOL g_focused;
60  static BOOL g_mouse_in_wnd;  static BOOL g_mouse_in_wnd;
61    static BOOL g_arch_match = False;       /* set to True if RGB XServer and little endian */
62    
63  /* endianness */  /* endianness */
64  static BOOL g_host_be;  static BOOL g_host_be;
# Line 63  static int g_red_shift_r, g_blue_shift_r Line 67  static int g_red_shift_r, g_blue_shift_r
67  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;
68    
69  /* software backing store */  /* software backing store */
70  static BOOL g_ownbackstore;  extern BOOL g_ownbackstore;
71  static Pixmap g_backstore = 0;  static Pixmap g_backstore = 0;
72    
73  /* Moving in single app mode */  /* Moving in single app mode */
# Line 112  PixelColour; Line 116  PixelColour;
116  }  }
117    
118  /* colour maps */  /* colour maps */
119  BOOL g_owncolmap = False;  extern BOOL g_owncolmap;
120  static Colormap g_xcolmap;  static Colormap g_xcolmap;
121  static uint32 *g_colmap = NULL;  static uint32 *g_colmap = NULL;
122    
# Line 168  static PixelColour Line 172  static PixelColour
172  split_colour15(uint32 colour)  split_colour15(uint32 colour)
173  {  {
174          PixelColour rv;          PixelColour rv;
175          rv.red = (colour & 0x7c00) >> 10;          rv.red = ((colour >> 7 ) & 0xf8) | ((colour >> 12) & 0x7);
176          rv.red = (rv.red * 0xff) / 0x1f;          rv.green = ((colour >> 2) & 0xf8) | ((colour >> 8) & 0x7);
177          rv.green = (colour & 0x03e0) >> 5;          rv.blue = ((colour << 3) & 0xf8) | ((colour >> 2)  & 0x7);
         rv.green = (rv.green * 0xff) / 0x1f;  
         rv.blue = (colour & 0x1f);  
         rv.blue = (rv.blue * 0xff) / 0x1f;  
178          return rv;          return rv;
179  }  }
180    
# Line 181  static PixelColour Line 182  static PixelColour
182  split_colour16(uint32 colour)  split_colour16(uint32 colour)
183  {  {
184          PixelColour rv;          PixelColour rv;
185          rv.red = (colour & 0xf800) >> 11;          rv.red = ((colour >> 8 ) & 0xf8) | ((colour >> 13) & 0x7);
186          rv.red = (rv.red * 0xff) / 0x1f;          rv.green = ((colour >> 3) & 0xfc) | ((colour >> 9) & 0x3);
187          rv.green = (colour & 0x07e0) >> 5;          rv.blue = ((colour << 3) & 0xf8) | ((colour >> 2)  & 0x7);
         rv.green = (rv.green * 0xff) / 0x3f;  
         rv.blue = (colour & 0x001f);  
         rv.blue = (rv.blue * 0xff) / 0x1f;  
188          return rv;          return rv;
189  }  }
190    
# Line 195  split_colour24(uint32 colour) Line 193  split_colour24(uint32 colour)
193  {  {
194          PixelColour rv;          PixelColour rv;
195          rv.blue = (colour & 0xff0000) >> 16;          rv.blue = (colour & 0xff0000) >> 16;
196          rv.green = (colour & 0xff00) >> 8;          rv.green = (colour & 0x00ff00) >> 8;
197          rv.red = (colour & 0xff);          rv.red = (colour & 0x0000ff);
198          return rv;          return rv;
199  }  }
200    
# Line 232  translate_colour(uint32 colour) Line 230  translate_colour(uint32 colour)
230          return make_colour(pc);          return make_colour(pc);
231  }  }
232    
233    #define UNROLL8(stm) { stm stm stm stm stm stm stm stm }
234    #define REPEAT(stm) \
235    { \
236            while (out <= end - 8 * 4) \
237                    UNROLL8(stm) \
238            while (out < end) \
239                    { stm } \
240    }
241    
242  static void  static void
243  translate8to8(uint8 * data, uint8 * out, uint8 * end)  translate8to8(uint8 * data, uint8 * out, uint8 * end)
244  {  {
# Line 244  translate8to16(uint8 * data, uint8 * out Line 251  translate8to16(uint8 * data, uint8 * out
251  {  {
252          uint16 value;          uint16 value;
253    
254            if (g_arch_match)
255                    REPEAT(*((uint16 *) out) = g_colmap[*(data++)]; out += 2;
256                    )
257            else
258    if (g_xserver_be)
259    {
260          while (out < end)          while (out < end)
261          {          {
262                  value = (uint16) g_colmap[*(data++)];                  value = (uint16) g_colmap[*(data++)];
263                    *(out++) = value >> 8;
264                  if (g_xserver_be)                  *(out++) = value;
                 {  
                         *(out++) = value >> 8;  
                         *(out++) = value;  
                 }  
                 else  
                 {  
                         *(out++) = value;  
                         *(out++) = value >> 8;  
                 }  
265          }          }
266  }  }
267    else
268    {
269            while (out < end)
270            {
271                    value = (uint16) g_colmap[*(data++)];
272                    *(out++) = value;
273                    *(out++) = value >> 8;
274            }
275    }
276    }
277    
278  /* little endian - conversion happens when colourmap is built */  /* little endian - conversion happens when colourmap is built */
279  static void  static void
# Line 267  translate8to24(uint8 * data, uint8 * out Line 281  translate8to24(uint8 * data, uint8 * out
281  {  {
282          uint32 value;          uint32 value;
283    
284          while (out < end)          if (g_xserver_be)
285          {          {
286                  value = g_colmap[*(data++)];                  while (out < end)
   
                 if (g_xserver_be)  
287                  {                  {
288                            value = g_colmap[*(data++)];
289                          *(out++) = value >> 16;                          *(out++) = value >> 16;
290                          *(out++) = value >> 8;                          *(out++) = value >> 8;
291                          *(out++) = value;                          *(out++) = value;
292                  }                  }
293                  else          }
294            else
295            {
296                    while (out < end)
297                  {                  {
298                            value = g_colmap[*(data++)];
299                          *(out++) = value;                          *(out++) = value;
300                          *(out++) = value >> 8;                          *(out++) = value >> 8;
301                          *(out++) = value >> 16;                          *(out++) = value >> 16;
# Line 291  translate8to32(uint8 * data, uint8 * out Line 308  translate8to32(uint8 * data, uint8 * out
308  {  {
309          uint32 value;          uint32 value;
310    
311            if (g_arch_match)
312                    REPEAT(*((uint32 *) out) = g_colmap[*(data++)]; out += 4;
313                    )
314            else
315    if (g_xserver_be)
316    {
317          while (out < end)          while (out < end)
318          {          {
319                  value = g_colmap[*(data++)];                  value = g_colmap[*(data++)];
320                    *(out++) = value >> 24;
321                  if (g_xserver_be)                  *(out++) = value >> 16;
322                  {                  *(out++) = value >> 8;
323                          *(out++) = value >> 24;                  *(out++) = value;
324                          *(out++) = value >> 16;          }
325                          *(out++) = value >> 8;  }
326                          *(out++) = value;  else
327                  }  {
328                  else          while (out < end)
329                  {          {
330                          *(out++) = value;                  value = g_colmap[*(data++)];
331                          *(out++) = value >> 8;                  *(out++) = value;
332                          *(out++) = value >> 16;                  *(out++) = value >> 8;
333                          *(out++) = value >> 24;                  *(out++) = value >> 16;
334                  }                  *(out++) = value >> 24;
335          }          }
336  }  }
337    }
338    
339  static void  static void
340  translate15to16(uint16 * data, uint8 * out, uint8 * end)  translate15to16(uint16 * data, uint8 * out, uint8 * end)
# Line 592  translate24to32(uint8 * data, uint8 * ou Line 616  translate24to32(uint8 * data, uint8 * ou
616  static uint8 *  static uint8 *
617  translate_image(int width, int height, uint8 * data)  translate_image(int width, int height, uint8 * data)
618  {  {
619          int size = width * height * g_bpp / 8;          int size;
620          uint8 *out = (uint8 *) xmalloc(size);          uint8 *out;
621          uint8 *end = out + size;          uint8 *end;
622    
623            /* if server and xserver bpp match, */
624            /* and arch(endian) matches, no need to translate */
625            /* just return data */
626            if (g_arch_match)
627            {
628                    if (g_depth == 15 && g_server_bpp == 15)
629                            return data;
630                    if (g_depth == 16 && g_server_bpp == 16)
631                            return data;
632            }
633    
634            size = width * height * (g_bpp / 8);
635            out = (uint8 *) xmalloc(size);
636            end = out + size;
637    
638          switch (g_server_bpp)          switch (g_server_bpp)
639          {          {
# Line 732  ui_init(void) Line 771  ui_init(void)
771                  TrueColorVisual = True;                  TrueColorVisual = True;
772          }          }
773    
774            test = 1;
775            g_host_be = !(BOOL) (*(uint8 *) (&test));
776            g_xserver_be = (ImageByteOrder(g_display) == MSBFirst);
777    
778          if ((g_server_bpp == 8) && ((!TrueColorVisual) || (g_depth <= 8)))          if ((g_server_bpp == 8) && ((!TrueColorVisual) || (g_depth <= 8)))
779          {          {
780                  /* 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 801  ui_init(void)
801                  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);
802                  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);
803                  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);
804    
805                    /* if RGB video and averything is little endian */
806                    if (vi.red_mask > vi.green_mask && vi.green_mask > vi.blue_mask)
807                            if (!g_xserver_be && !g_host_be)
808                                    g_arch_match = True;
809          }          }
810    
811          pfm = XListPixmapFormats(g_display, &i);          pfm = XListPixmapFormats(g_display, &i);
# Line 791  ui_init(void) Line 839  ui_init(void)
839                          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");
840          }          }
841    
842          if (DoesBackingStore(g_screen) != Always)          if ((!g_ownbackstore) && (DoesBackingStore(g_screen) != Always))
843            {
844                    warning("External BackingStore not available, using internal\n");
845                  g_ownbackstore = True;                  g_ownbackstore = True;
846            }
         test = 1;  
         g_host_be = !(BOOL) (*(uint8 *) (&test));  
         g_xserver_be = (ImageByteOrder(g_display) == MSBFirst);  
847    
848          /*          /*
849           * Determine desktop size           * Determine desktop size
# Line 927  ui_create_window(void) Line 974  ui_create_window(void)
974                  XFree(sizehints);                  XFree(sizehints);
975          }          }
976    
977            if (g_embed_wnd)
978            {
979                    XReparentWindow(g_display, g_wnd, (Window) g_embed_wnd, 0, 0);
980            }
981    
982          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
983                  VisibilityChangeMask | FocusChangeMask;                  VisibilityChangeMask | FocusChangeMask;
984    
# Line 958  ui_create_window(void) Line 1010  ui_create_window(void)
1010                  XMaskEvent(g_display, VisibilityChangeMask, &xevent);                  XMaskEvent(g_display, VisibilityChangeMask, &xevent);
1011          }          }
1012          while (xevent.type != VisibilityNotify);          while (xevent.type != VisibilityNotify);
1013            g_Unobscured = xevent.xvisibility.state == VisibilityUnobscured;
1014    
1015          g_focused = False;          g_focused = False;
1016          g_mouse_in_wnd = False;          g_mouse_in_wnd = False;
# Line 975  ui_create_window(void) Line 1028  ui_create_window(void)
1028  }  }
1029    
1030  void  void
1031    ui_resize_window()
1032    {
1033            XSizeHints *sizehints;
1034    
1035            sizehints = XAllocSizeHints();
1036            if (sizehints)
1037            {
1038                    sizehints->flags = PMinSize | PMaxSize;
1039                    sizehints->min_width = sizehints->max_width = g_width;
1040                    sizehints->min_height = sizehints->max_height = g_height;
1041                    XSetWMNormalHints(g_display, g_wnd, sizehints);
1042                    XFree(sizehints);
1043            }
1044    
1045            if (!(g_fullscreen || g_embed_wnd))
1046            {
1047                    XResizeWindow(g_display, g_wnd, g_width, g_height);
1048            }
1049    }
1050    
1051    void
1052  ui_destroy_window(void)  ui_destroy_window(void)
1053  {  {
1054          if (g_IC != NULL)          if (g_IC != NULL)
# Line 1035  xwin_process_events(void) Line 1109  xwin_process_events(void)
1109    
1110                  switch (xevent.type)                  switch (xevent.type)
1111                  {                  {
1112                            case VisibilityNotify:
1113                                    g_Unobscured = xevent.xvisibility.state == VisibilityUnobscured;
1114                                    break;
1115                          case ClientMessage:                          case ClientMessage:
1116                                  /* the window manager told us to quit */                                  /* the window manager told us to quit */
1117                                  if ((xevent.xclient.message_type == g_protocol_atom)                                  if ((xevent.xclient.message_type == g_protocol_atom)
# Line 1272  xwin_process_events(void) Line 1349  xwin_process_events(void)
1349  int  int
1350  ui_select(int rdp_socket)  ui_select(int rdp_socket)
1351  {  {
1352          int n = (rdp_socket > g_x_socket) ? rdp_socket : g_x_socket;          int n;
1353          fd_set rfds, wfds;          fd_set rfds, wfds;
1354          struct timeval tv;          struct timeval tv;
1355          BOOL s_timeout = False;          BOOL s_timeout = False;
1356    
1357          while (True)          while (True)
1358          {          {
1359                    n = (rdp_socket > g_x_socket) ? rdp_socket : g_x_socket;
1360                  /* Process any events already waiting */                  /* Process any events already waiting */
1361                  if (!xwin_process_events())                  if (!xwin_process_events())
1362                          /* User quit */                          /* User quit */
# Line 1367  ui_create_bitmap(int width, int height, Line 1445  ui_create_bitmap(int width, int height,
1445          XPutImage(g_display, bitmap, g_gc, image, 0, 0, 0, 0, width, height);          XPutImage(g_display, bitmap, g_gc, image, 0, 0, 0, 0, width, height);
1446    
1447          XFree(image);          XFree(image);
1448          if (!g_owncolmap)          if (tdata != data)
1449                  xfree(tdata);                  xfree(tdata);
1450          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
1451  }  }
# Line 1406  ui_paint_bitmap(int x, int y, int cx, in Line 1484  ui_paint_bitmap(int x, int y, int cx, in
1484          }          }
1485    
1486          XFree(image);          XFree(image);
1487          if (!g_owncolmap)          if (tdata != data)
1488                  xfree(tdata);                  xfree(tdata);
1489  }  }
1490    
# Line 1730  ui_patblt(uint8 opcode, Line 1808  ui_patblt(uint8 opcode,
1808          {          {
1809                  case 0: /* Solid */                  case 0: /* Solid */
1810                          SET_FOREGROUND(fgcolour);                          SET_FOREGROUND(fgcolour);
1811                          FILL_RECTANGLE(x, y, cx, cy);                          FILL_RECTANGLE_BACKSTORE(x, y, cx, cy);
1812                          break;                          break;
1813    
1814                  case 2: /* Hatch */                  case 2: /* Hatch */
# Line 1741  ui_patblt(uint8 opcode, Line 1819  ui_patblt(uint8 opcode,
1819                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);
1820                          XSetStipple(g_display, g_gc, fill);                          XSetStipple(g_display, g_gc, fill);
1821                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);
1822                          FILL_RECTANGLE(x, y, cx, cy);                          FILL_RECTANGLE_BACKSTORE(x, y, cx, cy);
1823                          XSetFillStyle(g_display, g_gc, FillSolid);                          XSetFillStyle(g_display, g_gc, FillSolid);
1824                          XSetTSOrigin(g_display, g_gc, 0, 0);                          XSetTSOrigin(g_display, g_gc, 0, 0);
1825                          ui_destroy_glyph((HGLYPH) fill);                          ui_destroy_glyph((HGLYPH) fill);
# Line 1751  ui_patblt(uint8 opcode, Line 1829  ui_patblt(uint8 opcode,
1829                          for (i = 0; i != 8; i++)                          for (i = 0; i != 8; i++)
1830                                  ipattern[7 - i] = brush->pattern[i];                                  ipattern[7 - i] = brush->pattern[i];
1831                          fill = (Pixmap) ui_create_glyph(8, 8, ipattern);                          fill = (Pixmap) ui_create_glyph(8, 8, ipattern);
   
1832                          SET_FOREGROUND(bgcolour);                          SET_FOREGROUND(bgcolour);
1833                          SET_BACKGROUND(fgcolour);                          SET_BACKGROUND(fgcolour);
1834                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);                          XSetFillStyle(g_display, g_gc, FillOpaqueStippled);
1835                          XSetStipple(g_display, g_gc, fill);                          XSetStipple(g_display, g_gc, fill);
1836                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);                          XSetTSOrigin(g_display, g_gc, brush->xorigin, brush->yorigin);
1837                            FILL_RECTANGLE_BACKSTORE(x, y, cx, cy);
                         FILL_RECTANGLE(x, y, cx, cy);  
   
1838                          XSetFillStyle(g_display, g_gc, FillSolid);                          XSetFillStyle(g_display, g_gc, FillSolid);
1839                          XSetTSOrigin(g_display, g_gc, 0, 0);                          XSetTSOrigin(g_display, g_gc, 0, 0);
1840                          ui_destroy_glyph((HGLYPH) fill);                          ui_destroy_glyph((HGLYPH) fill);
# Line 1770  ui_patblt(uint8 opcode, Line 1845  ui_patblt(uint8 opcode,
1845          }          }
1846    
1847          RESET_FUNCTION(opcode);          RESET_FUNCTION(opcode);
1848    
1849            if (g_ownbackstore)
1850                    XCopyArea(g_display, g_backstore, g_wnd, g_gc, x, y, cx, cy, x, y);
1851  }  }
1852    
1853  void  void
# Line 1778  ui_screenblt(uint8 opcode, Line 1856  ui_screenblt(uint8 opcode,
1856               /* src */ int srcx, int srcy)               /* src */ int srcx, int srcy)
1857  {  {
1858          SET_FUNCTION(opcode);          SET_FUNCTION(opcode);
         XCopyArea(g_display, g_wnd, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);  
1859          if (g_ownbackstore)          if (g_ownbackstore)
1860                  XCopyArea(g_display, g_backstore, g_backstore, g_gc, srcx, srcy, cx, cy, x, y);          {
1861                    if (g_Unobscured)
1862                    {
1863                            XCopyArea(g_display, g_wnd, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);
1864                            XCopyArea(g_display, g_backstore, g_backstore, g_gc, srcx, srcy, cx, cy, x,
1865                                      y);
1866                    }
1867                    else
1868                    {
1869                            XCopyArea(g_display, g_backstore, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);
1870                            XCopyArea(g_display, g_backstore, g_backstore, g_gc, srcx, srcy, cx, cy, x,
1871                                      y);
1872                    }
1873            }
1874            else
1875            {
1876                    XCopyArea(g_display, g_wnd, g_wnd, g_gc, srcx, srcy, cx, cy, x, y);
1877            }
1878          RESET_FUNCTION(opcode);          RESET_FUNCTION(opcode);
1879  }  }
1880    
# Line 1917  ui_draw_text(uint8 font, uint8 flags, in Line 2011  ui_draw_text(uint8 font, uint8 flags, in
2011    
2012          SET_FOREGROUND(bgcolour);          SET_FOREGROUND(bgcolour);
2013    
2014            /* Sometimes, the boxcx value is something really large, like
2015               32691. This makes XCopyArea fail with Xvnc. The code below
2016               is a quick fix. */
2017            if (boxx + boxcx > g_width)
2018                    boxcx = g_width - boxx;
2019    
2020          if (boxcx > 1)          if (boxcx > 1)
2021          {          {
2022                  FILL_RECTANGLE_BACKSTORE(boxx, boxy, boxcx, boxcy);                  FILL_RECTANGLE_BACKSTORE(boxx, boxy, boxcx, boxcy);

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

  ViewVC Help
Powered by ViewVC 1.1.26