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

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

  ViewVC Help
Powered by ViewVC 1.1.26