/[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 706 by astrand, Tue Jun 1 08:06:02 2004 UTC revision 795 by stargo, Wed Nov 3 13:56:52 2004 UTC
# Line 47  extern uint32 g_embed_wnd; Line 47  extern uint32 g_embed_wnd;
47  BOOL g_enable_compose = False;  BOOL g_enable_compose = False;
48  BOOL g_Unobscured;              /* used for screenblt */  BOOL g_Unobscured;              /* used for screenblt */
49  static GC g_gc = NULL;  static GC g_gc = NULL;
50    static GC g_create_bitmap_gc = NULL;
51    static GC g_create_glyph_gc = NULL;
52  static Visual *g_visual;  static Visual *g_visual;
53  static int g_depth;  static int g_depth;
54  static int g_bpp;  static int g_bpp;
# Line 230  translate_colour(uint32 colour) Line 232  translate_colour(uint32 colour)
232          return make_colour(pc);          return make_colour(pc);
233  }  }
234    
235    /* indent is confused by UNROLL8 */
236    /* *INDENT-OFF* */
237    
238    /* repeat and unroll, similar to bitmap.c */
239    /* potentialy any of the following translate */
240    /* functions can use repeat but just doing */
241    /* the most common ones */
242    
243  #define UNROLL8(stm) { stm stm stm stm stm stm stm stm }  #define UNROLL8(stm) { stm stm stm stm stm stm stm stm }
244  #define REPEAT(stm) \  /* 2 byte output repeat */
245    #define REPEAT2(stm) \
246    { \
247            while (out <= end - 8 * 2) \
248                    UNROLL8(stm) \
249            while (out < end) \
250                    { stm } \
251    }
252    /* 4 byte output repeat */
253    #define REPEAT4(stm) \
254  { \  { \
255          while (out <= end - 8 * 4) \          while (out <= end - 8 * 4) \
256                  UNROLL8(stm) \                  UNROLL8(stm) \
# Line 252  translate8to16(uint8 * data, uint8 * out Line 271  translate8to16(uint8 * data, uint8 * out
271          uint16 value;          uint16 value;
272    
273          if (g_arch_match)          if (g_arch_match)
                 REPEAT(*((uint16 *) out) = g_colmap[*(data++)];  
                        out += 2;)  
         else  
 if (g_xserver_be)  
 {  
         while (out < end)  
274          {          {
275                  value = (uint16) g_colmap[*(data++)];                  REPEAT2
276                  *(out++) = value >> 8;                  (
277                  *(out++) = value;                          *((uint16 *) out) = g_colmap[*(data++)];
278                            out += 2;
279                    )
280          }          }
281  }          else if (g_xserver_be)
 else  
 {  
         while (out < end)  
282          {          {
283                  value = (uint16) g_colmap[*(data++)];                  while (out < end)
284                  *(out++) = value;                  {
285                  *(out++) = value >> 8;                          value = (uint16) g_colmap[*(data++)];
286                            *(out++) = value >> 8;
287                            *(out++) = value;
288                    }
289            }
290            else
291            {
292                    while (out < end)
293                    {
294                            value = (uint16) g_colmap[*(data++)];
295                            *(out++) = value;
296                            *(out++) = value >> 8;
297                    }
298          }          }
 }  
299  }  }
300    
301  /* little endian - conversion happens when colourmap is built */  /* little endian - conversion happens when colourmap is built */
# Line 309  translate8to32(uint8 * data, uint8 * out Line 332  translate8to32(uint8 * data, uint8 * out
332          uint32 value;          uint32 value;
333    
334          if (g_arch_match)          if (g_arch_match)
                 REPEAT(*((uint32 *) out) = g_colmap[*(data++)];  
                        out += 4;)  
         else  
 if (g_xserver_be)  
 {  
         while (out < end)  
335          {          {
336                  value = g_colmap[*(data++)];                  REPEAT4
337                  *(out++) = value >> 24;                  (
338                  *(out++) = value >> 16;                          *((uint32 *) out) = g_colmap[*(data++)];
339                  *(out++) = value >> 8;                          out += 4;
340                  *(out++) = value;                  )
341          }          }
342  }          else if (g_xserver_be)
 else  
 {  
         while (out < end)  
343          {          {
344                  value = g_colmap[*(data++)];                  while (out < end)
345                  *(out++) = value;                  {
346                  *(out++) = value >> 8;                          value = g_colmap[*(data++)];
347                  *(out++) = value >> 16;                          *(out++) = value >> 24;
348                  *(out++) = value >> 24;                          *(out++) = value >> 16;
349                            *(out++) = value >> 8;
350                            *(out++) = value;
351                    }
352            }
353            else
354            {
355                    while (out < end)
356                    {
357                            value = g_colmap[*(data++)];
358                            *(out++) = value;
359                            *(out++) = value >> 8;
360                            *(out++) = value >> 16;
361                            *(out++) = value >> 24;
362                    }
363          }          }
364  }  }
365  }  
366    /* *INDENT-ON* */
367    
368  static void  static void
369  translate15to16(uint16 * data, uint8 * out, uint8 * end)  translate15to16(uint16 * data, uint8 * out, uint8 * end)
# Line 917  BOOL Line 946  BOOL
946  ui_create_window(void)  ui_create_window(void)
947  {  {
948          uint8 null_pointer_mask[1] = { 0x80 };          uint8 null_pointer_mask[1] = { 0x80 };
949          uint8 null_pointer_data[4] = { 0x00, 0x00, 0x00, 0x00 };          uint8 null_pointer_data[24] = { 0x00 };
950    
951          XSetWindowAttributes attribs;          XSetWindowAttributes attribs;
952          XClassHint *classhints;          XClassHint *classhints;
953          XSizeHints *sizehints;          XSizeHints *sizehints;
# Line 942  ui_create_window(void) Line 972  ui_create_window(void)
972          if (g_gc == NULL)          if (g_gc == NULL)
973                  g_gc = XCreateGC(g_display, g_wnd, 0, NULL);                  g_gc = XCreateGC(g_display, g_wnd, 0, NULL);
974    
975            if (g_create_bitmap_gc == NULL)
976                    g_create_bitmap_gc = XCreateGC(g_display, g_wnd, 0, NULL);
977    
978          if ((g_ownbackstore) && (g_backstore == 0))          if ((g_ownbackstore) && (g_backstore == 0))
979          {          {
980                  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 1031  void Line 1064  void
1064  ui_resize_window()  ui_resize_window()
1065  {  {
1066          XSizeHints *sizehints;          XSizeHints *sizehints;
1067            Pixmap bs;
1068    
1069          sizehints = XAllocSizeHints();          sizehints = XAllocSizeHints();
1070          if (sizehints)          if (sizehints)
# Line 1046  ui_resize_window() Line 1080  ui_resize_window()
1080          {          {
1081                  XResizeWindow(g_display, g_wnd, g_width, g_height);                  XResizeWindow(g_display, g_wnd, g_width, g_height);
1082          }          }
1083    
1084            /* create new backstore pixmap */
1085            if (g_backstore != 0)
1086            {
1087                    bs = XCreatePixmap(g_display, g_wnd, g_width, g_height, g_depth);
1088                    XSetForeground(g_display, g_gc, BlackPixelOfScreen(g_screen));
1089                    XFillRectangle(g_display, bs, g_gc, 0, 0, g_width, g_height);
1090                    XCopyArea(g_display, g_backstore, bs, g_gc, 0, 0, g_width, g_height, 0, 0);
1091                    XFreePixmap(g_display, g_backstore);
1092                    g_backstore = bs;
1093            }
1094  }  }
1095    
1096  void  void
# Line 1390  ui_select(int rdp_socket) Line 1435  ui_select(int rdp_socket)
1435                                  error("select: %s\n", strerror(errno));                                  error("select: %s\n", strerror(errno));
1436    
1437                          case 0:                          case 0:
1438                                  /* TODO: if tv.tv_sec just times out                                  /* Abort serial read calls */
1439                                   * we will segfault.                                  if (s_timeout)
1440                                   * FIXME:                                          rdpdr_check_fds(&rfds, &wfds, (BOOL) True);
                                  */  
                                 //s_timeout = True;  
                                 //rdpdr_check_fds(&rfds, &wfds, (BOOL) True);  
1441                                  continue;                                  continue;
1442                  }                  }
1443    
# Line 1442  ui_create_bitmap(int width, int height, Line 1484  ui_create_bitmap(int width, int height,
1484          image = XCreateImage(g_display, g_visual, g_depth, ZPixmap, 0,          image = XCreateImage(g_display, g_visual, g_depth, ZPixmap, 0,
1485                               (char *) tdata, width, height, bitmap_pad, 0);                               (char *) tdata, width, height, bitmap_pad, 0);
1486    
1487          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);
1488    
1489          XFree(image);          XFree(image);
1490          if (tdata != data)          if (tdata != data)
# Line 1500  ui_create_glyph(int width, int height, u Line 1542  ui_create_glyph(int width, int height, u
1542          XImage *image;          XImage *image;
1543          Pixmap bitmap;          Pixmap bitmap;
1544          int scanline;          int scanline;
         GC gc;  
1545    
1546          scanline = (width + 7) / 8;          scanline = (width + 7) / 8;
1547    
1548          bitmap = XCreatePixmap(g_display, g_wnd, width, height, 1);          bitmap = XCreatePixmap(g_display, g_wnd, width, height, 1);
1549          gc = XCreateGC(g_display, bitmap, 0, NULL);          if (g_create_glyph_gc == 0)
1550                    g_create_glyph_gc = XCreateGC(g_display, bitmap, 0, NULL);
1551    
1552          image = XCreateImage(g_display, g_visual, 1, ZPixmap, 0, (char *) data,          image = XCreateImage(g_display, g_visual, 1, ZPixmap, 0, (char *) data,
1553                               width, height, 8, scanline);                               width, height, 8, scanline);
# Line 1513  ui_create_glyph(int width, int height, u Line 1555  ui_create_glyph(int width, int height, u
1555          image->bitmap_bit_order = MSBFirst;          image->bitmap_bit_order = MSBFirst;
1556          XInitImage(image);          XInitImage(image);
1557    
1558          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);
1559    
1560          XFree(image);          XFree(image);
         XFreeGC(g_display, gc);  
1561          return (HGLYPH) bitmap;          return (HGLYPH) bitmap;
1562  }  }
1563    
# Line 2144  ui_desktop_restore(uint32 offset, int x, Line 2185  ui_desktop_restore(uint32 offset, int x,
2185    
2186          XFree(image);          XFree(image);
2187  }  }
2188    
2189    /* these do nothing here but are used in uiports */
2190    void
2191    ui_begin_update(void)
2192    {
2193    }
2194    
2195    void
2196    ui_end_update(void)
2197    {
2198    }

Legend:
Removed from v.706  
changed lines
  Added in v.795

  ViewVC Help
Powered by ViewVC 1.1.26