/[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 28 by matty, Wed Jun 20 13:54:48 2001 UTC revision 59 by jsorg71, Sun Jul 14 04:20:25 2002 UTC
# Line 1  Line 1 
1  /*  /*
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     User interface services - X-Windows     User interface services - X Window System
4     Copyright (C) Matthew Chapman 1999-2000     Copyright (C) Matthew Chapman 1999-2001
5      
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.     (at your option) any later version.
10      
11     This program is distributed in the hope that it will be useful,     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.     GNU General Public License for more details.
15      
16     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# Line 20  Line 20 
20    
21  #include <X11/Xlib.h>  #include <X11/Xlib.h>
22  #include <X11/Xutil.h>  #include <X11/Xutil.h>
23    #include <X11/XKBlib.h>
24  #include <time.h>  #include <time.h>
25    #include <errno.h>
26  #include "rdesktop.h"  #include "rdesktop.h"
27    
28    extern char keymapname[16];
29    extern int keylayout;
30  extern int width;  extern int width;
31  extern int height;  extern int height;
32  extern BOOL motion;  extern BOOL sendmotion;
 extern BOOL grab_keyboard;  
33  extern BOOL fullscreen;  extern BOOL fullscreen;
 extern int private_colormap;  
34    
35  static int bpp;  Display *display;
36  static int depth;  XkbDescPtr xkb;
37  static Display *display;  static int x_socket;
38  static Window wnd;  static Window wnd;
39  static GC gc;  static GC gc;
40  static Visual *visual;  static Visual *visual;
41  static uint32 *colmap;  static int depth;
42    static int bpp;
 #define Ctrans(col) ( private_colormap ? col : colmap[col])  
43    
44  #define L_ENDIAN  /* endianness */
45  int screen_msbfirst = 0;  static BOOL host_be;
46    static BOOL xserver_be;
47    
48    /* software backing store */
49    static BOOL ownbackstore;
50    static Pixmap backstore;
51    
52    /* needed to keep track of the modifiers */
53    static unsigned int numlock_modifier_mask = 0;
54    static unsigned int key_down_state = 0;
55    
56    
57    #define DShift1Mask   (1<<0)
58    #define DLockMask     (1<<1)
59    #define DControl1Mask (1<<2)
60    #define DMod1Mask     (1<<3)
61    #define DMod2Mask     (1<<4)
62    #define DMod3Mask     (1<<5)
63    #define DMod4Mask     (1<<6)
64    #define DMod5Mask     (1<<7)
65    #define DShift2Mask   (1<<8)
66    #define DControl2Mask (1<<9)
67    #define DNumLockMask  (1<<10)
68    
69    #define FILL_RECTANGLE(x,y,cx,cy)\
70    { \
71            XFillRectangle(display, wnd, gc, x, y, cx, cy); \
72            if (ownbackstore) \
73                    XFillRectangle(display, backstore, gc, x, y, cx, cy); \
74    }
75    
76    /* colour maps */
77    static BOOL owncolmap;
78    static Colormap xcolmap;
79    static uint32 white;
80    static uint32 *colmap;
81    
82  static uint8 *translate(int width, int height, uint8 *data);  #define TRANSLATE(col)          ( owncolmap ? col : translate_colour(colmap[col]) )
83    #define SET_FOREGROUND(col)     XSetForeground(display, gc, TRANSLATE(col));
84    #define SET_BACKGROUND(col)     XSetBackground(display, gc, TRANSLATE(col));
85    
86  static int rop2_map[] = {  static int rop2_map[] = {
87          GXclear,                /* 0 */          GXclear,                /* 0 */
# Line 64  static int rop2_map[] = { Line 102  static int rop2_map[] = {
102          GXset                   /* 1 */          GXset                   /* 1 */
103  };  };
104    
105    #define SET_FUNCTION(rop2)      { if (rop2 != ROP2_COPY) XSetFunction(display, gc, rop2_map[rop2]); }
106    #define RESET_FUNCTION(rop2)    { if (rop2 != ROP2_COPY) XSetFunction(display, gc, GXcopy); }
107    
108    void xwin_get_numlock_mask();
109    void xwin_mod_update(uint32 state, uint32 ev_time );
110    void xwin_mod_release(uint32 state, uint32 ev_time, uint32 scancode);
111    void xwin_mod_press(uint32 state, uint32 ev_time, uint32 scancode);
112    
113    static void
114    translate8(uint8 *data, uint8 *out, uint8 *end)
115    {
116            while (out < end)
117                    *(out++) = (uint8)colmap[*(data++)];
118    }
119    
120    static void
121    translate16(uint8 *data, uint16 *out, uint16 *end)
122    {
123            while (out < end)
124                    *(out++) = (uint16)colmap[*(data++)];
125    }
126    
127    /* little endian - conversion happens when colourmap is built */
128  static void  static void
129  xwin_set_function(uint8 rop2)  translate24(uint8 *data, uint8 *out, uint8 *end)
130  {  {
131          static uint8 last_rop2 = ROP2_COPY;          uint32 value;
132    
133          if (last_rop2 != rop2)          while (out < end)
134          {          {
135                  XSetFunction(display, gc, rop2_map[rop2]);                  value = colmap[*(data++)];
136                  last_rop2 = rop2;                  *(out++) = value;
137                    *(out++) = value >> 8;
138                    *(out++) = value >> 16;
139          }          }
140  }  }
141    
142  static void  static void
143  xwin_grab_keyboard()  translate32(uint8 *data, uint32 *out, uint32 *end)
144  {  {
145          XGrabKeyboard(display, wnd, True, GrabModeAsync, GrabModeAsync,          while (out < end)
146                        CurrentTime);                  *(out++) = colmap[*(data++)];
147  }  }
148    
149  static void  static uint8 *
150  xwin_ungrab_keyboard()  translate_image(int width, int height, uint8 *data)
151    {
152            int size = width * height * bpp/8;
153            uint8 *out = xmalloc(size);
154            uint8 *end = out + size;
155    
156            switch (bpp)
157            {
158                    case 8:
159                            translate8(data, out, end);
160                            break;
161    
162                    case 16:
163                            translate16(data, (uint16 *)out, (uint16 *)end);
164                            break;
165    
166                    case 24:
167                            translate24(data, out, end);
168                            break;
169    
170                    case 32:
171                            translate32(data, (uint32 *)out, (uint32 *)end);
172                            break;
173            }
174    
175            return out;
176    }
177    
178    #define BSWAP16(x) { x = (((x & 0xff) << 8) | (x >> 8)); }
179    #define BSWAP24(x) { x = (((x & 0xff) << 16) | (x >> 16) | ((x >> 8) & 0xff00)); }
180    #define BSWAP32(x) { x = (((x & 0xff00ff) << 8) | ((x >> 8) & 0xff00ff)); \
181                            x = (x << 16) | (x >> 16); }
182    
183    static uint32
184    translate_colour(uint32 colour)
185  {  {
186          XUngrabKeyboard(display, CurrentTime);          switch (bpp)
187            {
188                    case 16:
189                            if (host_be != xserver_be)
190                                    BSWAP16(colour);
191                            break;
192    
193                    case 24:
194                            if (xserver_be)
195                                    BSWAP24(colour);
196                            break;
197    
198                    case 32:
199                            if (host_be != xserver_be)
200                                    BSWAP32(colour);
201                            break;
202            }
203    
204            return colour;
205  }  }
206    
207  BOOL  BOOL
# Line 97  ui_create_window(char *title) Line 212  ui_create_window(char *title)
212          XSizeHints *sizehints;          XSizeHints *sizehints;
213          unsigned long input_mask;          unsigned long input_mask;
214          XPixmapFormatValues *pfm;          XPixmapFormatValues *pfm;
215          int count;          Screen *screen;
216            uint16 test;
217            int i;
218            
219            int xkb_minor, xkb_major;
220            int xkb_event, xkb_error, xkb_reason;
221    
222            /* compare compiletime libs with runtime libs. */
223            xkb_major = XkbMajorVersion;
224            xkb_minor = XkbMinorVersion;
225            if( XkbLibraryVersion( &xkb_major, &xkb_minor ) == False )
226            {
227                    error("please re-compile rdesktop\ncompile time version of xkb is not compatible with\nyour runtime version of the library\n");
228                    return False;
229            }
230    
231    
232            display = XkbOpenDisplay( NULL, &xkb_event, &xkb_error, &xkb_major, &xkb_minor, &xkb_reason );
233            switch(xkb_reason)
234            {
235                    case XkbOD_BadLibraryVersion:
236                            error("XkbOD_BadLibraryVersion: XKB extensions in server and the library rdesktop is linked against aren't compatible with each other.\n");
237                            break;
238                    case XkbOD_ConnectionRefused:
239                            error("XkbOD_ConnectionRefused\n");
240                            break;
241                    case XkbOD_BadServerVersion:
242                            error("XkbOD_BadServerVersion\n");
243                            break;
244                    case XkbOD_NonXkbServer:
245                            error("XkbOD_NonXkbServer: XKB extension not present in server\nupdate your X server.\n");
246                            break;
247                    case XkbOD_Success:
248                            DEBUG("XkbOD_Success: Connection established with display\n");
249                            break;
250            }
251    
         display = XOpenDisplay(NULL);  
252          if (display == NULL)          if (display == NULL)
253          {          {
254                  ERROR("Failed to open display\n");                  error("Failed to open display\n");
255                  return False;                  return False;
256          }          }
257    
258          visual = DefaultVisual(display, DefaultScreen(display));          x_socket = ConnectionNumber(display);
259          depth = DefaultDepth(display, DefaultScreen(display));          screen = DefaultScreenOfDisplay(display);
260          pfm = XListPixmapFormats(display, &count);          visual = DefaultVisualOfScreen(screen);
261            depth = DefaultDepthOfScreen(screen);
262            
263            pfm = XListPixmapFormats(display, &i);
264          if (pfm != NULL)          if (pfm != NULL)
265          {          {
266                  while (count--)                  /* Use maximum bpp for this depth - this is generally
267                       desirable, e.g. 24 bits->32 bits. */
268                    while (i--)
269                  {                  {
270                          if ((pfm + count)->depth == depth                          if ((pfm[i].depth == depth)
271                              && (pfm + count)->bits_per_pixel > bpp)                              && (pfm[i].bits_per_pixel > bpp))
272                          {                          {
273                                  bpp = (pfm + count)->bits_per_pixel;                                  bpp = pfm[i].bits_per_pixel;
274                          }                          }
275                  }                  }
276                  XFree(pfm);                  XFree(pfm);
# Line 124  ui_create_window(char *title) Line 278  ui_create_window(char *title)
278    
279          if (bpp < 8)          if (bpp < 8)
280          {          {
281                  ERROR("Less than 8 bpp not currently supported.\n");                  error("Less than 8 bpp not currently supported.\n");
282                  XCloseDisplay(display);                  XCloseDisplay(display);
283                  return False;                  return False;
284          }          }
285    
286          width &= ~3; /* make width nicely divisible */          if (depth <= 8)
287                    owncolmap = True;
288            else
289                    xcolmap = DefaultColormapOfScreen(screen);
290    
291            test = 1;
292            host_be = !(BOOL)(*(uint8 *)(&test));
293            xserver_be = (ImageByteOrder(display) == MSBFirst);
294    
295            white = WhitePixelOfScreen(screen);
296            attribs.background_pixel = BlackPixelOfScreen(screen);
297            attribs.backing_store = DoesBackingStore(screen);
298    
299          attribs.background_pixel = BlackPixel(display, DefaultScreen(display));          if (attribs.backing_store == NotUseful)
300          attribs.backing_store = Always;                  ownbackstore = True;
301    
302          if (fullscreen)          if (fullscreen)
303          {          {
304                  attribs.override_redirect = True;                  attribs.override_redirect = True;
305                  width = WidthOfScreen(DefaultScreenOfDisplay(display));                  width = WidthOfScreen(screen);
306                  height = HeightOfScreen(DefaultScreenOfDisplay(display));                  height = HeightOfScreen(screen);
                 XSetInputFocus(display, PointerRoot, RevertToPointerRoot,  
                                CurrentTime);  
307          }          }
308          else          else
309          {          {
310                  attribs.override_redirect = False;                  attribs.override_redirect = False;
311          }          }
312    
313          wnd = XCreateWindow(display, DefaultRootWindow(display),          width = (width + 3) & ~3; /* make width a multiple of 32 bits */
314    
315            wnd = XCreateWindow(display, RootWindowOfScreen(screen),
316                              0, 0, width, height, 0, CopyFromParent,                              0, 0, width, height, 0, CopyFromParent,
317                              InputOutput, CopyFromParent,                              InputOutput, CopyFromParent,
318                              CWBackingStore | CWBackPixel | CWOverrideRedirect,                              CWBackingStore | CWBackPixel | CWOverrideRedirect,
# Line 157  ui_create_window(char *title) Line 322  ui_create_window(char *title)
322    
323          classhints = XAllocClassHint();          classhints = XAllocClassHint();
324          if (classhints != NULL)          if (classhints != NULL)
   
325          {          {
326                  classhints->res_name = "rdesktop";                  classhints->res_name = classhints->res_class = "rdesktop";
                 classhints->res_class = "rdesktop";  
327                  XSetClassHint(display, wnd, classhints);                  XSetClassHint(display, wnd, classhints);
328                  XFree(classhints);                  XFree(classhints);
329          }          }
# Line 168  ui_create_window(char *title) Line 331  ui_create_window(char *title)
331          sizehints = XAllocSizeHints();          sizehints = XAllocSizeHints();
332          if (sizehints)          if (sizehints)
333          {          {
334                  sizehints->flags =                  sizehints->flags = PMinSize | PMaxSize;
335                          PPosition | PSize | PMinSize | PMaxSize | PBaseSize;                  sizehints->min_width = sizehints->max_width = width;
336                  sizehints->min_width = width;                  sizehints->min_height = sizehints->max_height = height;
                 sizehints->max_width = width;  
                 sizehints->min_height = height;  
                 sizehints->max_height = height;  
                 sizehints->base_width = width;  
                 sizehints->base_height = height;  
337                  XSetWMNormalHints(display, wnd, sizehints);                  XSetWMNormalHints(display, wnd, sizehints);
338                  XFree(sizehints);                  XFree(sizehints);
339          }          }
340    
341          input_mask = KeyPressMask | KeyReleaseMask;          xkeymap_init();
342          input_mask |= ButtonPressMask | ButtonReleaseMask;  
343          if (motion)          input_mask = KeyPressMask | KeyReleaseMask |
344                             ButtonPressMask | ButtonReleaseMask |
345                             EnterWindowMask | LeaveWindowMask;
346            if (sendmotion)
347                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
348          if (grab_keyboard)  
349                  input_mask |= EnterWindowMask | LeaveWindowMask;          if (ownbackstore)
350                    input_mask |= ExposureMask;
351    
352          XSelectInput(display, wnd, input_mask);          XSelectInput(display, wnd, input_mask);
353          gc = XCreateGC(display, wnd, 0, NULL);          gc = XCreateGC(display, wnd, 0, NULL);
354    
355            if (ownbackstore)
356                    backstore = XCreatePixmap(display, wnd, width, height, depth);
357    
358          XMapWindow(display, wnd);          XMapWindow(display, wnd);
359    
360            /* TODO: error texts... make them friendly. */
361            xkb = XkbGetKeyboard(display, XkbAllComponentsMask, XkbUseCoreKbd);
362            if ((int)xkb == BadAlloc || xkb == NULL)
363            {
364                            error( "XkbGetKeyboard failed.\n");
365                            exit(0);
366            }
367    
368            /* TODO: error texts... make them friendly. */
369            if( XkbSelectEvents(display, xkb->device_spec, XkbAllEventsMask, XkbAllEventsMask) == False )
370            {
371                            error( "XkbSelectEvents failed.\n");
372                            exit(0);
373            }
374            
375            xwin_get_numlock_mask();
376    
377          return True;          return True;
378  }  }
379    
380  void  void
381    xwin_get_numlock_mask()
382    {
383            KeyCode numlockcode;
384            KeyCode* keycode;
385            XModifierKeymap *modmap;
386            int i,j;
387    
388            /* Find out if numlock is already defined as a modifier key, and if so where */
389            numlockcode = XKeysymToKeycode(display, 0xFF7F);        /* XF_Num_Lock = 0xFF7F */
390            if (numlockcode) {
391                    modmap = XGetModifierMapping(display);
392                    if (modmap) {
393                            keycode = modmap->modifiermap;
394                            for (i = 0; i < 8; i++)
395                                    for (j = modmap->max_keypermod; j--;) {
396                                            if (*keycode == numlockcode) {
397                                                    numlock_modifier_mask = (1 << i);
398                                                    i = 8;
399                                                    break;
400                                            }
401                                            keycode++;
402                                    }
403                    if (!numlock_modifier_mask) {
404                                    modmap->modifiermap[7 * modmap->max_keypermod] = numlockcode;
405                                    if (XSetModifierMapping(display, modmap) == MappingSuccess)
406                                            numlock_modifier_mask = (1 << 7);
407                                    else
408                                            printf("XSetModifierMapping failed!\n");
409                            }
410                            XFreeModifiermap(modmap);
411                    }
412            }
413    
414            if (!numlock_modifier_mask)
415                    printf("WARNING: Failed to get a numlock modifier mapping.\n");
416                    
417    }
418    
419    void
420  ui_destroy_window()  ui_destroy_window()
421  {  {
422            if( xkb != NULL )
423                    XkbFreeKeyboard(xkb, XkbAllControlsMask, True);
424    
425            if (ownbackstore)
426                    XFreePixmap(display, backstore);
427    
428          XFreeGC(display, gc);          XFreeGC(display, gc);
429          XDestroyWindow(display, wnd);          XDestroyWindow(display, wnd);
430          XCloseDisplay(display);          XCloseDisplay(display);
431          display = NULL;          display = NULL;
432  }  }
433    
434  static uint8  static void
435  xwin_translate_key(unsigned long key)  xwin_process_events()
436  {  {
437          DEBUG("KEY(code=0x%lx)\n", key);          XEvent xevent;
   
         if ((key > 8) && (key <= 0x60))  
                 return (key - 8);  
   
         switch (key)  
         {  
                 case 0x61:      /* home */  
                         return 0x47 | 0x80;  
                 case 0x62:      /* up arrow */  
                         return 0x48 | 0x80;  
                 case 0x63:      /* page up */  
                         return 0x49 | 0x80;  
                 case 0x64:      /* left arrow */  
                         return 0x4b | 0x80;  
                 case 0x66:      /* right arrow */  
                         return 0x4d | 0x80;  
                 case 0x67:      /* end */  
                         return 0x4f | 0x80;  
                 case 0x68:      /* down arrow */  
                         return 0x50 | 0x80;  
                 case 0x69:      /* page down */  
                         return 0x51 | 0x80;  
                 case 0x6a:      /* insert */  
                         return 0x52 | 0x80;  
                 case 0x6b:      /* delete */  
                         return 0x53 | 0x80;  
                 case 0x6c:      /* keypad enter */  
                         return 0x1c | 0x80;  
                 case 0x6d:      /* right ctrl */  
                         return 0x1d | 0x80;  
                 case 0x6f:      /* ctrl - print screen */  
                         return 0x37 | 0x80;  
                 case 0x70:      /* keypad '/' */  
                         return 0x35 | 0x80;  
                 case 0x71:      /* right alt */  
                         return 0x38 | 0x80;  
                 case 0x72:      /* ctrl break */  
                         return 0x46 | 0x80;  
                 case 0x73:      /* left window key */  
                         return 0xff;    /* real scancode is 5b */  
                 case 0x74:      /* right window key */  
                         return 0xff;    /* real scancode is 5c */  
                 case 0x75:      /* menu key */  
                         return 0x5d | 0x80;  
         }  
   
         return 0;  
 }  
   
 static uint16  
 xwin_translate_mouse(unsigned long button)  
 {  
         switch (button)  
         {  
                 case Button1:   /* left */  
                         return MOUSE_FLAG_BUTTON1;  
                 case Button2:   /* middle */  
                         return MOUSE_FLAG_BUTTON3;  
                 case Button3:   /* right */  
                         return MOUSE_FLAG_BUTTON2;  
         }  
438    
439          return 0;          KeySym keysym;
 }  
   
 void  
 ui_process_events()  
 {  
         XEvent event;  
440          uint8 scancode;          uint8 scancode;
441          uint16 button;          uint16 button, flags;
442          uint32 ev_time;          uint32 ev_time;
443            uint32 tmpmods;
444    
445          if (display == NULL)          while (XCheckMaskEvent(display, ~0, &xevent))
                 return;  
   
         while (XCheckWindowEvent(display, wnd, ~0, &event))  
446          {          {
447                  ev_time = time(NULL);                  ev_time = time(NULL);
448                    flags = 0;
449    
450                  switch (event.type)                  switch (xevent.type)
451                  {                  {
452                            case KeyRelease:
453                                    flags = KBD_FLAG_DOWN | KBD_FLAG_UP;
454                                    /* fall through */
455                          case KeyPress:                          case KeyPress:
456                                  scancode = xwin_translate_key(event.xkey.keycode);                                  if( XkbTranslateKeyCode(xkb, xevent.xkey.keycode, xevent.xkey.state, &tmpmods, &keysym) == False )
                                 if (scancode == 0)  
457                                          break;                                          break;
458                                    scancode = xkeymap_translate_key(keysym, xevent.xkey.keycode, &flags);
459    
460                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, 0,                                  if (scancode == 0 )
                                                scancode, 0);  
                                 break;  
   
                         case KeyRelease:  
                                 scancode = xwin_translate_key(event.xkey.keycode);  
                                 if (scancode == 0)  
461                                          break;                                          break;
462    
463                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE,                                  /* keep track of the modifiers -- needed for stickykeys... */
464                                                 KBD_FLAG_DOWN | KBD_FLAG_UP,                                  if( xevent.type == KeyPress )
465                                                 scancode, 0);                                          xwin_mod_press( xevent.xkey.state, ev_time, scancode );
                                 break;  
466    
467                          case ButtonPress:                                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, flags, scancode, 0);
468                                  button = xwin_translate_mouse(event.xbutton.button);  
469                                  if (button == 0)                                  if( xevent.type == KeyRelease )
470                                          break;                                          xwin_mod_release( xevent.xkey.state, ev_time, scancode );
471    
                                 rdp_send_input(ev_time, RDP_INPUT_MOUSE,  
                                                button | MOUSE_FLAG_DOWN,  
                                                event.xbutton.x,  
                                                event.xbutton.y);  
472                                  break;                                  break;
473    
474                            case ButtonPress:
475                                    flags = MOUSE_FLAG_DOWN;
476                                    /* fall through */
477    
478                          case ButtonRelease:                          case ButtonRelease:
479                                  button = xwin_translate_mouse(event.xbutton.button);                                  button = xkeymap_translate_button(xevent.xbutton.button);
480                                  if (button == 0)                                  if (button == 0)
481                                          break;                                          break;
482    
483                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,
484                                                 button,                                                 flags | button,
485                                                 event.xbutton.x,                                                 xevent.xbutton.x,
486                                                 event.xbutton.y);                                                 xevent.xbutton.y);
487                                  break;                                  break;
488    
489                          case MotionNotify:                          case MotionNotify:
490                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,
491                                                 MOUSE_FLAG_MOVE,                                                 MOUSE_FLAG_MOVE,
492                                                 event.xmotion.x,                                                 xevent.xmotion.x,
493                                                 event.xmotion.y);                                                 xevent.xmotion.y);
494                                  break;                                  break;
495    
496                          case EnterNotify:                          case EnterNotify:
497                                  if (grab_keyboard)                                  XGrabKeyboard(display, wnd, True, GrabModeAsync,
498                                          xwin_grab_keyboard();                                                GrabModeAsync, CurrentTime);
499    
500                                     xwin_mod_update( xevent.xcrossing.state, ev_time );
501                                  break;                                  break;
502    
503                          case LeaveNotify:                          case LeaveNotify:
504                                  if (grab_keyboard)                                  XUngrabKeyboard(display, CurrentTime);
505                                          xwin_ungrab_keyboard();                                  break;
506    
507                            case Expose:
508                                    XCopyArea(display, backstore, wnd, gc,
509                                              xevent.xexpose.x, xevent.xexpose.y,
510                                              xevent.xexpose.width, xevent.xexpose.height,
511                                              xevent.xexpose.x, xevent.xexpose.y);
512                                  break;                                  break;
513                  }                  }
514          }          }
515  }  }
516    
517  void  void
518  ui_move_pointer(int x, int y)  xwin_mod_update(uint32 state, uint32 ev_time )
519  {  {
520          XWarpPointer(display, wnd, wnd, 0, 0, 0, 0, x, y);          xwin_mod_press(state, ev_time, 0);
521            xwin_mod_release(state, ev_time, 0);
522  }  }
523    
524  HBITMAP  void
525  ui_create_bitmap(int width, int height, uint8 *data)  xwin_mod_release(uint32 state, uint32 ev_time, uint32 scancode)
526  {  {
527          XImage *image;          switch (scancode) {
528          Pixmap bitmap;          case 0x2a:
529          uint8 *tdata;                  key_down_state &= ~DShift1Mask;
530          tdata = (private_colormap ? data : translate(width, height, data));                  break;
531          bitmap = XCreatePixmap(display, wnd, width, height, depth);          case 0x36:
532          image =                  key_down_state &= ~DShift2Mask;
533                  XCreateImage(display, visual,                  break;
534                               depth, ZPixmap,          case 0x1d:
535                               0, tdata, width, height, BitmapPad(display), 0);                  key_down_state &= ~DControl1Mask;
536                    break;
537            case 0x9d:
538                    key_down_state &= ~DControl2Mask;
539                    break;
540            case 0x38:
541                    key_down_state &= ~DMod1Mask;
542                    break;
543            case 0xb8:
544                    key_down_state &= ~DMod2Mask;
545                    break;
546            }
547    
548          xwin_set_function(ROP2_COPY);          if( !(numlock_modifier_mask & state) && (key_down_state & DNumLockMask) )
549          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          {
550                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, 0, 0x45, 0);
551                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN | KBD_FLAG_UP, 0x45, 0);
552                    key_down_state &= ~DNumLockMask;
553            }
554    
555          XFree(image);          if( !(LockMask & state) && (key_down_state & DLockMask))
556          if (!private_colormap)          {
557                  xfree(tdata);                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, 0, 0x3a, 0);
558          return (HBITMAP) bitmap;                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN | KBD_FLAG_UP, 0x3a, 0);
559                    key_down_state &= ~DLockMask;
560    
561            }
562    
563    
564            if( !(ShiftMask & state) && (key_down_state & DShift1Mask))
565            {
566                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_UP, 0x2a, 0);
567                    key_down_state &= ~DShift1Mask;
568    
569            }
570    
571            if( !(ControlMask & state) && (key_down_state & DControl1Mask))
572            {
573                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_UP, 0x1d, 0);
574                    key_down_state &= ~DControl1Mask;
575    
576            }
577    
578            if( !(Mod1Mask & state) && (key_down_state & DMod1Mask))
579            {
580                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_UP, 0x38, 0);
581                    key_down_state &= ~DMod1Mask;
582    
583            }
584    
585            if( !(Mod2Mask & state) && (key_down_state & DMod2Mask))
586            {
587                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_UP, 0xb8, 0);
588                    key_down_state &= ~DMod2Mask;
589            }
590  }  }
591    
592    
593  void  void
594  ui_paint_bitmap(int x, int y, int cx, int cy,  xwin_mod_press(uint32 state, uint32 ev_time, uint32 scancode)
                 int width, int height, uint8 *data)  
595  {  {
         XImage *image;  
         uint8 *tdata =  
                 (private_colormap ? data : translate(width, height, data));  
         image =  
                 XCreateImage(display, visual, depth, ZPixmap, 0, tdata, width,  
                              height, BitmapPad(display), 0);  
596    
597          xwin_set_function(ROP2_COPY);          switch (scancode) {
598            case 0x2a:
599                    key_down_state |= DShift1Mask;
600                    break;
601            case 0x36:
602                    key_down_state |= DShift2Mask;
603                    break;
604            case 0x1d:
605                    key_down_state |= DControl1Mask;
606                    break;
607            case 0x9d:
608                    key_down_state |= DControl2Mask;
609                    break;
610            case 0x3a:
611                    key_down_state ^= DLockMask;
612                    break;
613            case 0x45:
614                    key_down_state ^= DNumLockMask;
615                    break;
616            case 0x38:
617                    key_down_state |= DMod1Mask;
618                    break;
619            case 0xb8:
620                    key_down_state |= DMod2Mask;
621                    break;
622            }
623    
624          /* Window */          if( (numlock_modifier_mask && state) && !(key_down_state & DNumLockMask) )
625          XPutImage(display, wnd, gc, image, 0, 0, x, y, cx, cy);          {
626          XFree(image);                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, 0, 0x45, 0);
627          if (!private_colormap)                  rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN | KBD_FLAG_UP, 0x45, 0);
628                  xfree(tdata);                  key_down_state |= DNumLockMask;
629            }
630    
631            if( (LockMask & state) && !(key_down_state & DLockMask))
632            {
633                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, 0, 0x3a, 0);
634                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN | KBD_FLAG_UP, 0x3a, 0);
635                    key_down_state |= DLockMask;
636    
637            }
638    
639    
640            if( (ShiftMask & state) && !((key_down_state & DShift1Mask) || (key_down_state & DShift2Mask)))
641            {
642                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN, 0x2a, 0);
643                    key_down_state |= DShift1Mask;
644    
645            }
646    
647            if( (ControlMask & state) && !((key_down_state & DControl1Mask) || (key_down_state & DControl2Mask)))
648            {
649                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN, 0x1d, 0);
650                    key_down_state |= DControl1Mask;
651    
652            }
653    
654            if( (Mod1Mask & state) && !(key_down_state & DMod1Mask))
655            {
656                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN, 0x38, 0);
657                    key_down_state |= DMod1Mask;
658    
659            }
660    
661            if( (Mod2Mask & state) && !(key_down_state & DMod2Mask))
662            {
663                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE, KBD_FLAG_DOWN, 0xb8, 0);
664                    key_down_state |= DMod2Mask;
665    
666            }
667  }  }
668    
669  void  void
670  ui_destroy_bitmap(HBITMAP bmp)  ui_select(int rdp_socket)
671  {  {
672          XFreePixmap(display, (Pixmap) bmp);          int n = (rdp_socket > x_socket) ? rdp_socket+1 : x_socket+1;
673  }          fd_set rfds;
674    
675  HCURSOR          FD_ZERO(&rfds);
 ui_create_cursor(unsigned int x, unsigned int y, int width,  
                  int height, uint8 *mask, uint8 *data)  
 {  
         XImage *imagecursor;  
         XImage *imagemask;  
         Pixmap maskbitmap, cursorbitmap;  
         Cursor cursor;  
         XColor bg, fg;  
         GC lgc;  
         int i, x1, y1, scanlinelen;  
         uint8 *cdata, *cmask;  
         uint8 c;  
         cdata = (uint8 *) malloc(sizeof(uint8) * width * height);  
         if (!cdata)  
                 return NULL;  
         scanlinelen = (width + 7) >> 3;  
         cmask = (uint8 *) malloc(sizeof(uint8) * scanlinelen * height);  
         if (!cmask)  
         {  
                 free(cdata);  
                 return NULL;  
         }  
         i = (height - 1) * scanlinelen;  
676    
677          if (!screen_msbfirst)          while (True)
678          {          {
679                  while (i >= 0)                  FD_ZERO(&rfds);
680                    FD_SET(rdp_socket, &rfds);
681                    if (display != NULL)
682                  {                  {
683                          for (x1 = 0; x1 < scanlinelen; x1++)                          FD_SET(x_socket, &rfds);
684                          {                          XFlush(display);
                                 c = *(mask++);  
                                 cmask[i + x1] =  
                                         ((c & 0x1) << 7) | ((c & 0x2) << 5) |  
                                         ((c & 0x4) << 3) | ((c & 0x8) << 1) |  
                                         ((c & 0x10) >> 1) | ((c & 0x20) >> 3)  
                                         | ((c & 0x40) >> 5) | ((c & 0x80) >>  
                                                                7);  
                         }  
                         i -= scanlinelen;  
685                  }                  }
686          }  
687          else                  switch (select(n, &rfds, NULL, NULL, NULL))
         {  
                 while (i >= 0)  
688                  {                  {
689                          for (x1 = 0; x1 < scanlinelen; x1++)                          case -1:
690                          {                                  error("select: %s\n", strerror(errno));
691                                  cmask[i + x1] = *(mask++);  
692                          }                          case 0:
693                          i -= scanlinelen;                                  continue;
694                  }                  }
695    
696                    if (FD_ISSET(x_socket, &rfds))
697                            xwin_process_events();
698    
699                    if (FD_ISSET(rdp_socket, &rfds))
700                            return;
701          }          }
702    }
703    
704    void
705    ui_move_pointer(int x, int y)
706    {
707            XWarpPointer(display, wnd, wnd, 0, 0, 0, 0, x, y);
708    }
709    
710          fg.red = 0;  HBITMAP
711          fg.blue = 0;  ui_create_bitmap(int width, int height, uint8 *data)
712          fg.green = 0;  {
713          fg.flags = DoRed | DoBlue | DoGreen;          XImage *image;
714          bg.red = 65535;          Pixmap bitmap;
715          bg.blue = 65535;          uint8 *tdata;
         bg.green = 65535;  
         bg.flags = DoRed | DoBlue | DoGreen;  
         maskbitmap = XCreatePixmap(display, wnd, width, height, 1);  
         cursorbitmap = XCreatePixmap(display, wnd, width, height, 1);  
         lgc = XCreateGC(display, maskbitmap, 0, NULL);  
         XSetFunction(display, lgc, GXcopy);  
         imagemask =  
                 XCreateImage(display, visual, 1, XYBitmap, 0, cmask, width,  
                              height, 8, 0);  
         imagecursor =  
                 XCreateImage(display, visual, 1, XYBitmap, 0, cdata, width,  
                              height, 8, 0);  
         for (y1 = height - 1; y1 >= 0; y1--)  
                 for (x1 = 0; x1 < width; x1++)  
                 {  
                         if (data[0] >= 0x80 || data[1] >= 0x80  
                             || data[2] >= 0x80)  
                                 if (XGetPixel(imagemask, x1, y1))  
716    
717                                  {          tdata = (owncolmap ? data : translate_image(width, height, data));
718                                          XPutPixel(imagecursor, x1, y1, 0);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
719                                          XPutPixel(imagemask, x1, y1, 0);        /* mask is blank for text cursor! */          image = XCreateImage(display, visual, depth, ZPixmap,
720                                  }                               0, tdata, width, height, 8, 0);
721    
722                                  else          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
                                         XPutPixel(imagecursor, x1, y1, 1);  
723    
724                          else          XFree(image);
725                                  XPutPixel(imagecursor, x1, y1,          if (!owncolmap)
726                                            XGetPixel(imagemask, x1, y1));                  xfree(tdata);
727                          data += 3;          return (HBITMAP) bitmap;
                 }  
         XPutImage(display, maskbitmap, lgc, imagemask, 0, 0, 0, 0, width,  
                   height);  
         XPutImage(display, cursorbitmap, lgc, imagecursor, 0, 0, 0, 0, width,  
                   height); XFree(imagemask);  
         XFree(imagecursor);  
         free(cmask);  
         free(cdata);  
         XFreeGC(display, lgc);  
         cursor =  
                 XCreatePixmapCursor(display, cursorbitmap, maskbitmap, &fg,  
                                     &bg, x, y);  
         XFreePixmap(display, maskbitmap);  
         XFreePixmap(display, cursorbitmap);  
         return (HCURSOR) cursor;  
728  }  }
729    
730  void  void
731  ui_set_cursor(HCURSOR cursor)  ui_paint_bitmap(int x, int y, int cx, int cy,
732                    int width, int height, uint8 *data)
733  {  {
734          XDefineCursor(display, wnd, (Cursor) cursor);          XImage *image;
735            uint8 *tdata;
736    
737            tdata = (owncolmap ? data : translate_image(width, height, data));
738            image = XCreateImage(display, visual, depth, ZPixmap,
739                                 0, tdata, width, height, 8, 0);
740    
741            if (ownbackstore)
742            {
743                    XPutImage(display, backstore, gc, image, 0, 0, x, y, cx, cy);
744                    XCopyArea(display, backstore, wnd, gc, x, y, cx, cy, x, y);
745            }
746            else
747            {
748                    XPutImage(display, wnd, gc, image, 0, 0, x, y, cx, cy);
749            }
750    
751            XFree(image);
752            if (!owncolmap)
753                    xfree(tdata);
754  }  }
755    
756  void  void
757  ui_destroy_cursor(HCURSOR cursor)  ui_destroy_bitmap(HBITMAP bmp)
758  {  {
759          XFreeCursor(display, (Cursor) cursor);          XFreePixmap(display, (Pixmap)bmp);
760  }  }
761    
762  HGLYPH  HGLYPH
# Line 544  ui_create_glyph(int width, int height, u Line 778  ui_create_glyph(int width, int height, u
778          image->bitmap_bit_order = MSBFirst;          image->bitmap_bit_order = MSBFirst;
779          XInitImage(image);          XInitImage(image);
780    
         XSetFunction(display, gc, GXcopy);  
781          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
782    
783          XFree(image);          XFree(image);
784          XFreeGC(display, gc);          XFreeGC(display, gc);
785            return (HGLYPH)bitmap;
         return (HGLYPH) bitmap;  
786  }  }
787    
788  void  void
789  ui_destroy_glyph(HGLYPH glyph)  ui_destroy_glyph(HGLYPH glyph)
790  {  {
791          XFreePixmap(display, (Pixmap) glyph);          XFreePixmap(display, (Pixmap)glyph);
792  }  }
793    
794  HCOLOURMAP  HCURSOR
795  ui_create_colourmap(COLOURMAP *colours)  ui_create_cursor(unsigned int x, unsigned int y, int width,
796                     int height, uint8 *andmask, uint8 *xormask)
797  {  {
798          if (!private_colormap)          HGLYPH maskglyph, cursorglyph;
799            XColor bg, fg;
800            Cursor xcursor;
801            uint8 *cursor, *pcursor;
802            uint8 *mask, *pmask;
803            uint8 nextbit;
804            int scanline, offset;
805            int i, j;
806    
807            scanline = (width + 7) / 8;
808            offset = scanline * height;
809    
810            cursor = xmalloc(offset);
811            memset(cursor, 0, offset);
812    
813            mask = xmalloc(offset);
814            memset(mask, 0, offset);
815    
816            /* approximate AND and XOR masks with a monochrome X pointer */
817            for (i = 0; i < height; i++)
818          {          {
819                  COLOURENTRY *entry;                  offset -= scanline;
820                  int i, ncolours = colours->ncolours;                  pcursor = &cursor[offset];
821                  uint32 *nc = xmalloc(sizeof(*colmap) * ncolours);                  pmask = &mask[offset];
822                  for (i = 0; i < ncolours; i++)  
823                    for (j = 0; j < scanline; j++)
824                  {                  {
825                          XColor xc;                          for (nextbit = 0x80; nextbit != 0; nextbit >>= 1)
826                          entry = &colours->colours[i];                          {
827                          xc.red = entry->red << 8;                                  if (xormask[0] || xormask[1] || xormask[2])
828                          xc.green = entry->green << 8;                                  {
829                          xc.blue = entry->blue << 8;                                          *pcursor |= (~(*andmask) & nextbit);
830                          XAllocColor(display,                                          *pmask |= nextbit;
831                                      DefaultColormap(display,                                  }
832                                                      DefaultScreen(display)),                                  else
833                                      &xc);                                  {
834                          /* XXX Check return value */                                          *pcursor |= ((*andmask) & nextbit);
835                          nc[i] = xc.pixel;                                          *pmask |= (~(*andmask) & nextbit);
836                                    }
837    
838                                    xormask += 3;
839                            }
840    
841                            andmask++;
842                            pcursor++;
843                            pmask++;
844                  }                  }
                 return nc;  
845          }          }
846          else  
847            fg.red = fg.blue = fg.green = 0xffff;
848            bg.red = bg.blue = bg.green = 0x0000;
849            fg.flags = bg.flags = DoRed | DoBlue | DoGreen;
850    
851            cursorglyph = ui_create_glyph(width, height, cursor);
852            maskglyph = ui_create_glyph(width, height, mask);
853            
854            xcursor = XCreatePixmapCursor(display, (Pixmap)cursorglyph,
855                                    (Pixmap)maskglyph, &fg, &bg, x, y);
856    
857            ui_destroy_glyph(maskglyph);
858            ui_destroy_glyph(cursorglyph);
859            xfree(mask);
860            xfree(cursor);
861            return (HCURSOR)xcursor;
862    }
863    
864    void
865    ui_set_cursor(HCURSOR cursor)
866    {
867            XDefineCursor(display, wnd, (Cursor)cursor);
868    }
869    
870    void
871    ui_destroy_cursor(HCURSOR cursor)
872    {
873            XFreeCursor(display, (Cursor)cursor);
874    }
875    
876    #define MAKE_XCOLOR(xc,c) \
877                    (xc)->red   = ((c)->red   << 8) | (c)->red; \
878                    (xc)->green = ((c)->green << 8) | (c)->green; \
879                    (xc)->blue  = ((c)->blue  << 8) | (c)->blue; \
880                    (xc)->flags = DoRed | DoGreen | DoBlue;
881    
882    HCOLOURMAP
883    ui_create_colourmap(COLOURMAP *colours)
884    {
885            COLOURENTRY *entry;
886            int i, ncolours = colours->ncolours;
887    
888            if (owncolmap)
889          {          {
                 COLOURENTRY *entry;  
890                  XColor *xcolours, *xentry;                  XColor *xcolours, *xentry;
891                  Colormap map;                  Colormap map;
892                  int i, ncolours = colours->ncolours;  
893                  xcolours = xmalloc(sizeof(XColor) * ncolours);                  xcolours = xmalloc(sizeof(XColor) * ncolours);
894                  for (i = 0; i < ncolours; i++)                  for (i = 0; i < ncolours; i++)
895                  {                  {
896                          entry = &colours->colours[i];                          entry = &colours->colours[i];
897                          xentry = &xcolours[i];                          xentry = &xcolours[i];
   
898                          xentry->pixel = i;                          xentry->pixel = i;
899                          xentry->red = entry->red << 8;                          MAKE_XCOLOR(xentry, entry);
                         xentry->blue = entry->blue << 8;  
                         xentry->green = entry->green << 8;  
                         xentry->flags = DoRed | DoBlue | DoGreen;  
900                  }                  }
901    
902                  map = XCreateColormap(display, wnd, visual, AllocAll);                  map = XCreateColormap(display, wnd, visual, AllocAll);
903                  XStoreColors(display, map, xcolours, ncolours);                  XStoreColors(display, map, xcolours, ncolours);
904    
905                  xfree(xcolours);                  xfree(xcolours);
906                  return (HCOLOURMAP) map;                  return (HCOLOURMAP)map;
907            }
908            else
909            {
910                    uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
911                    XColor xentry;
912                    uint32 colour;
913    
914                    for (i = 0; i < ncolours; i++)
915                    {
916                            entry = &colours->colours[i];
917                            MAKE_XCOLOR(&xentry, entry);
918    
919                            if (XAllocColor(display, xcolmap, &xentry) != 0)
920                                    colour = xentry.pixel;
921                            else
922                                    colour = white;
923    
924                            /* byte swap here to make translate_image faster */
925                            map[i] = translate_colour(colour);
926                    }
927    
928                    return map;
929          }          }
930  }  }
931    
932  void  void
933  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
934  {  {
935          XFreeColormap(display, (Colormap) map);          if (owncolmap)
936                    XFreeColormap(display, (Colormap)map);
937            else
938                    xfree(map);
939  }  }
940    
941  void  void
942  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
943  {  {
944            if (owncolmap)
945          /* XXX, change values of all pixels on the screen if the new colmap                  XSetWindowColormap(display, wnd, (Colormap)map);
          * doesn't have the same values as the old one? */  
         if (!private_colormap)  
                 colmap = map;  
946          else          else
947          {                  colmap = map;
                 XSetWindowColormap(display, wnd, (Colormap) map);  
                 if (fullscreen)  
                         XInstallColormap(display, (Colormap) map);  
         }  
948  }  }
949    
950  void  void
# Line 665  void Line 981  void
981  ui_destblt(uint8 opcode,  ui_destblt(uint8 opcode,
982             /* dest */ int x, int y, int cx, int cy)             /* dest */ int x, int y, int cx, int cy)
983  {  {
984          xwin_set_function(opcode);          SET_FUNCTION(opcode);
985            FILL_RECTANGLE(x, y, cx, cy);
986          XFillRectangle(display, wnd, gc, x, y, cx, cy);          RESET_FUNCTION(opcode);
987  }  }
988    
989  void  void
# Line 675  ui_patblt(uint8 opcode, Line 991  ui_patblt(uint8 opcode,
991            /* dest */ int x, int y, int cx, int cy,            /* dest */ int x, int y, int cx, int cy,
992            /* brush */ BRUSH *brush, int bgcolour, int fgcolour)            /* brush */ BRUSH *brush, int bgcolour, int fgcolour)
993  {  {
         Display *dpy = display;  
994          Pixmap fill;          Pixmap fill;
995          uint8 i, ipattern[8];          uint8 i, ipattern[8];
996    
997          xwin_set_function(opcode);          SET_FUNCTION(opcode);
998    
999          switch (brush->style)          switch (brush->style)
1000          {          {
1001                  case 0: /* Solid */                  case 0: /* Solid */
1002                          XSetForeground(dpy, gc, Ctrans(fgcolour));                          SET_FOREGROUND(fgcolour);
1003                          XFillRectangle(dpy, wnd, gc, x, y, cx, cy);                          FILL_RECTANGLE(x, y, cx, cy);
1004                          break;                          break;
1005    
1006                  case 3: /* Pattern */                  case 3: /* Pattern */
1007                          for (i = 0; i != 8; i++)                          for (i = 0; i != 8; i++)
1008                                  ipattern[i] = ~brush->pattern[i];                                  ipattern[7 - i] = brush->pattern[i];
1009                          fill = (Pixmap) ui_create_glyph(8, 8, ipattern);                          fill = (Pixmap) ui_create_glyph(8, 8, ipattern);
1010    
1011                          XSetForeground(dpy, gc, Ctrans(fgcolour));                          SET_FOREGROUND(bgcolour);
1012                          XSetBackground(dpy, gc, Ctrans(bgcolour));                          SET_BACKGROUND(fgcolour);
1013                          XSetFillStyle(dpy, gc, FillOpaqueStippled);                          XSetFillStyle(display, gc, FillOpaqueStippled);
1014                          XSetStipple(dpy, gc, fill);                          XSetStipple(display, gc, fill);
1015                            XSetTSOrigin(display, gc, brush->xorigin, brush->yorigin);
1016    
1017                          XFillRectangle(dpy, wnd, gc, x, y, cx, cy);                          FILL_RECTANGLE(x, y, cx, cy);
1018    
1019                          XSetFillStyle(dpy, gc, FillSolid);                          XSetFillStyle(display, gc, FillSolid);
1020                          ui_destroy_glyph((HGLYPH) fill);                          ui_destroy_glyph((HGLYPH)fill);
1021                          break;                          break;
1022    
1023                  default:                  default:
1024                          NOTIMP("brush %d\n", brush->style);                          unimpl("brush %d\n", brush->style);
1025          }          }
1026    
1027            RESET_FUNCTION(opcode);
1028  }  }
1029    
1030  void  void
# Line 714  ui_screenblt(uint8 opcode, Line 1032  ui_screenblt(uint8 opcode,
1032               /* dest */ int x, int y, int cx, int cy,               /* dest */ int x, int y, int cx, int cy,
1033               /* src */ int srcx, int srcy)               /* src */ int srcx, int srcy)
1034  {  {
1035          xwin_set_function(opcode);          SET_FUNCTION(opcode);
   
1036          XCopyArea(display, wnd, wnd, gc, srcx, srcy, cx, cy, x, y);          XCopyArea(display, wnd, wnd, gc, srcx, srcy, cx, cy, x, y);
1037            if (ownbackstore)
1038                    XCopyArea(display, backstore, backstore, gc, srcx, srcy,
1039                              cx, cy, x, y);
1040            RESET_FUNCTION(opcode);
1041  }  }
1042    
1043  void  void
# Line 724  ui_memblt(uint8 opcode, Line 1045  ui_memblt(uint8 opcode,
1045            /* dest */ int x, int y, int cx, int cy,            /* dest */ int x, int y, int cx, int cy,
1046            /* src */ HBITMAP src, int srcx, int srcy)            /* src */ HBITMAP src, int srcx, int srcy)
1047  {  {
1048          xwin_set_function(opcode);          SET_FUNCTION(opcode);
1049            XCopyArea(display, (Pixmap)src, wnd, gc, srcx, srcy, cx, cy, x, y);
1050          XCopyArea(display, (Pixmap) src, wnd, gc, srcx, srcy, cx, cy, x, y);          if (ownbackstore)
1051                    XCopyArea(display, (Pixmap)src, backstore, gc, srcx, srcy,
1052                              cx, cy, x, y);
1053            RESET_FUNCTION(opcode);
1054  }  }
1055    
1056  void  void
# Line 754  ui_triblt(uint8 opcode, Line 1078  ui_triblt(uint8 opcode,
1078                                    brush, bgcolour, fgcolour);                                    brush, bgcolour, fgcolour);
1079                          break;                          break;
1080    
1081                  case 0xc0:                  case 0xc0:      /* PSa */
1082                          ui_memblt(ROP2_COPY, x, y, cx, cy, src, srcx, srcy);                          ui_memblt(ROP2_COPY, x, y, cx, cy, src, srcx, srcy);
1083                          ui_patblt(ROP2_AND, x, y, cx, cy, brush, bgcolour,                          ui_patblt(ROP2_AND, x, y, cx, cy, brush, bgcolour,
1084                                    fgcolour);                                    fgcolour);
1085                          break;                          break;
1086    
1087                  default:                  default:
1088                          NOTIMP("triblt 0x%x\n", opcode);                          unimpl("triblt 0x%x\n", opcode);
1089                          ui_memblt(ROP2_COPY, x, y, cx, cy, src, srcx, srcy);                          ui_memblt(ROP2_COPY, x, y, cx, cy, src, srcx, srcy);
1090          }          }
1091  }  }
# Line 771  ui_line(uint8 opcode, Line 1095  ui_line(uint8 opcode,
1095          /* dest */ int startx, int starty, int endx, int endy,          /* dest */ int startx, int starty, int endx, int endy,
1096          /* pen */ PEN *pen)          /* pen */ PEN *pen)
1097  {  {
1098          xwin_set_function(opcode);          SET_FUNCTION(opcode);
1099            SET_FOREGROUND(pen->colour);
         XSetForeground(display, gc, Ctrans(pen->colour));  
1100          XDrawLine(display, wnd, gc, startx, starty, endx, endy);          XDrawLine(display, wnd, gc, startx, starty, endx, endy);
1101            if (ownbackstore)
1102                    XDrawLine(display, backstore, gc, startx, starty, endx, endy);
1103            RESET_FUNCTION(opcode);
1104  }  }
1105    
1106  void  void
# Line 782  ui_rect( Line 1108  ui_rect(
1108                 /* dest */ int x, int y, int cx, int cy,                 /* dest */ int x, int y, int cx, int cy,
1109                 /* brush */ int colour)                 /* brush */ int colour)
1110  {  {
1111          xwin_set_function(ROP2_COPY);          SET_FOREGROUND(colour);
1112            FILL_RECTANGLE(x, y, cx, cy);
         XSetForeground(display, gc, Ctrans(colour));  
         XFillRectangle(display, wnd, gc, x, y, cx, cy);  
1113  }  }
1114    
1115  void  void
# Line 794  ui_draw_glyph(int mixmode, Line 1118  ui_draw_glyph(int mixmode,
1118                /* src */ HGLYPH glyph, int srcx, int srcy, int bgcolour,                /* src */ HGLYPH glyph, int srcx, int srcy, int bgcolour,
1119                int fgcolour)                int fgcolour)
1120  {  {
1121          Pixmap pixmap = (Pixmap) glyph;          SET_FOREGROUND(fgcolour);
1122            SET_BACKGROUND(bgcolour);
         xwin_set_function(ROP2_COPY);  
   
   
         XSetForeground(display, gc, Ctrans(fgcolour));  
         switch (mixmode)  
         {  
                 case MIX_TRANSPARENT:  
                         XSetStipple(display, gc, pixmap);  
                         XSetFillStyle(display, gc, FillStippled);  
                         XSetTSOrigin(display, gc, x, y);  
                         XFillRectangle(display, wnd, gc, x, y, cx, cy);  
                         XSetFillStyle(display, gc, FillSolid);  
                         break;  
1123    
1124                  case MIX_OPAQUE:          XSetFillStyle(display, gc, (mixmode == MIX_TRANSPARENT)
1125                          XSetBackground(display, gc, Ctrans(bgcolour));                        ? FillStippled : FillOpaqueStippled);
1126  /*      XCopyPlane (display, pixmap, back_pixmap, back_gc, srcx, srcy, cx, cy, x, y, 1); */          XSetStipple(display, gc, (Pixmap)glyph);
1127                          XSetStipple(display, gc, pixmap);          XSetTSOrigin(display, gc, x, y);
1128                          XSetFillStyle(display, gc, FillOpaqueStippled);  
1129                          XSetTSOrigin(display, gc, x, y);          FILL_RECTANGLE(x, y, cx, cy);
1130                          XFillRectangle(display, wnd, gc, x, y, cx, cy);  
1131                          XSetFillStyle(display, gc, FillSolid);          XSetFillStyle(display, gc, FillSolid);
1132                          break;  }
1133    
1134                  default:  #define DO_GLYPH(ttext,idx) \
1135                          NOTIMP("mix %d\n", mixmode);  {\
1136          }    glyph = cache_get_font (font, ttext[idx]);\
1137      if (!(flags & TEXT2_IMPLICIT_X))\
1138        {\
1139          xyoffset = ttext[++idx];\
1140          if ((xyoffset & 0x80))\
1141            {\
1142              if (flags & TEXT2_VERTICAL) \
1143                y += ttext[++idx] | (ttext[++idx] << 8);\
1144              else\
1145                x += ttext[++idx] | (ttext[++idx] << 8);\
1146            }\
1147          else\
1148            {\
1149              if (flags & TEXT2_VERTICAL) \
1150                y += xyoffset;\
1151              else\
1152                x += xyoffset;\
1153            }\
1154        }\
1155      if (glyph != NULL)\
1156        {\
1157          ui_draw_glyph (mixmode, x + (short) glyph->offset,\
1158                         y + (short) glyph->baseline,\
1159                         glyph->width, glyph->height,\
1160                         glyph->pixmap, 0, 0, bgcolour, fgcolour);\
1161          if (flags & TEXT2_IMPLICIT_X)\
1162            x += glyph->width;\
1163        }\
1164  }  }
1165    
1166  void  void
1167  ui_draw_text(uint8 font, uint8 flags, int mixmode, int x, int y,  ui_draw_text(uint8 font, uint8 flags, int mixmode, int x, int y,
1168               int clipx, int clipy, int clipcx, int clipcy,               int clipx, int clipy, int clipcx, int clipcy, int boxx,
1169               int boxx, int boxy, int boxcx, int boxcy,               int boxy, int boxcx, int boxcy, int bgcolour,
1170               int bgcolour, int fgcolour, uint8 *text, uint8 length)               int fgcolour, uint8 * text, uint8 length)
1171  {  {
1172          FONTGLYPH *glyph;          FONTGLYPH *glyph;
1173          int i, xyoffset;          int i, j, xyoffset;
1174            DATABLOB *entry;
1175    
1176          xwin_set_function(ROP2_COPY);          SET_FOREGROUND(bgcolour);
         XSetForeground(display, gc, Ctrans(bgcolour));  
1177    
1178          if (boxcx > 1)          if (boxcx > 1)
1179                  XFillRectangle(display, wnd, gc, boxx, boxy, boxcx, boxcy);          {
1180                    FILL_RECTANGLE(boxx, boxy, boxcx, boxcy);
1181            }
1182          else if (mixmode == MIX_OPAQUE)          else if (mixmode == MIX_OPAQUE)
                 XFillRectangle(display, wnd, gc, clipx, clipy, clipcx, clipcy);  
   
         /* Paint text, character by character */  
         for (i = 0; i < length; i++)  
1183          {          {
1184                  glyph = cache_get_font(font, text[i]);                  FILL_RECTANGLE(clipx, clipy, clipcx, clipcy);
1185            }
                 if (!(flags & TEXT2_IMPLICIT_X))  
1186    
1187                  {          /* Paint text, character by character */
1188                          xyoffset = text[++i];          for (i = 0; i < length;) {
1189                          if ((xyoffset & 0x80))                  switch (text[i]) {
1190                          {                  case 0xff:
1191                                  if (flags & 0x04)       /* vertical text */                          if (i + 2 < length)
1192                                          y += text[++i] | (text[++i] << 8);                                  cache_put_text(text[i + 1], text, text[i + 2]);
1193                                  else                          else {
1194                                          x += text[++i] | (text[++i] << 8);                                  error("this shouldn't be happening\n");
1195                                    break;
1196                          }                          }
1197                          else                          /* this will move pointer from start to first character after FF command */
1198                          {                          length -= i + 3;
1199                                  if (flags & 0x04)       /* vertical text */                          text = &(text[i + 3]);
1200                                          y += xyoffset;                          i = 0;
1201                            break;
1202    
1203                    case 0xfe:
1204                            entry = cache_get_text(text[i + 1]);
1205                            if (entry != NULL) {
1206                                    if ((((uint8 *) (entry->data))[1] == 0)
1207                                        && (!(flags & TEXT2_IMPLICIT_X))) {
1208                                            if (flags & TEXT2_VERTICAL)
1209                                                    y += text[i + 2];
1210                                            else
1211                                                    x += text[i + 2];
1212                                    }
1213                                    if (i + 2 < length)
1214                                            i += 3;
1215                                  else                                  else
1216                                          x += xyoffset;                                          i += 2;
1217                                    length -= i;
1218                                    /* this will move pointer from start to first character after FE command */
1219                                    text = &(text[i]);
1220                                    i = 0;
1221                                    for (j = 0; j < entry->size; j++)
1222                                            DO_GLYPH(((uint8 *) (entry->data)), j);
1223                          }                          }
1224                            break;
1225    
1226                  }                  default:
1227                  if (glyph != NULL)                          DO_GLYPH(text, i);
1228                  {                          i++;
1229                          ui_draw_glyph(mixmode, x + (short) glyph->offset,                          break;
                                       y + (short) glyph->baseline,  
                                       glyph->width, glyph->height,  
                                       glyph->pixmap, 0, 0,  
                                       bgcolour, fgcolour);  
   
                         if (flags & TEXT2_IMPLICIT_X)  
                                 x += glyph->width;  
1230                  }                  }
1231          }          }
1232    
1233    
1234  }  }
1235    
1236  void  void
# Line 887  ui_desktop_save(uint32 offset, int x, in Line 1239  ui_desktop_save(uint32 offset, int x, in
1239          Pixmap pix;          Pixmap pix;
1240          XImage *image;          XImage *image;
1241    
1242          pix = XCreatePixmap(display, wnd, cx, cy, depth);          if (ownbackstore)
1243          xwin_set_function(ROP2_COPY);          {
1244                    image = XGetImage(display, backstore, x, y, cx, cy, AllPlanes,
1245          XCopyArea(display, wnd, pix, gc, x, y, cx, cy, 0, 0);                                    ZPixmap);
1246          image = XGetImage(display, pix, 0, 0, cx, cy, AllPlanes, ZPixmap);          }
1247            else
1248            {
1249                    pix = XCreatePixmap(display, wnd, cx, cy, depth);
1250                    XCopyArea(display, wnd, pix, gc, x, y, cx, cy, 0, 0);
1251                    image = XGetImage(display, pix, 0, 0, cx, cy, AllPlanes,
1252                                      ZPixmap);
1253                    XFreePixmap(display, pix);
1254            }
1255    
1256          offset *= bpp/8;          offset *= bpp/8;
1257          cache_put_desktop(offset, cx, cy, image->bytes_per_line,          cache_put_desktop(offset, cx, cy, image->bytes_per_line,
1258                            bpp/8, image->data);                            bpp/8, (uint8 *)image->data);
1259    
1260          XDestroyImage(image);          XDestroyImage(image);
         XFreePixmap(display, pix);  
1261  }  }
1262    
1263  void  void
# Line 911  ui_desktop_restore(uint32 offset, int x, Line 1270  ui_desktop_restore(uint32 offset, int x,
1270          data = cache_get_desktop(offset, cx, cy, bpp/8);          data = cache_get_desktop(offset, cx, cy, bpp/8);
1271          if (data == NULL)          if (data == NULL)
1272                  return;                  return;
1273          image =  
1274                  XCreateImage(display, visual,          image = XCreateImage(display, visual, depth, ZPixmap,
                              depth, ZPixmap,  
1275                               0, data, cx, cy, BitmapPad(display),                               0, data, cx, cy, BitmapPad(display),
1276                               cx * bpp/8);                               cx * bpp/8);
         xwin_set_function(ROP2_COPY);  
         XPutImage(display, wnd, gc, image, 0, 0, x, y, cx, cy);  
         XFree(image);  
 }  
   
 /* unroll defines, used to make the loops a bit more readable... */  
 #define unroll8Expr(uexp) uexp uexp uexp uexp uexp uexp uexp uexp  
 #define unroll8Lefts(uexp) case 7: uexp \  
         case 6: uexp \  
         case 5: uexp \  
         case 4: uexp \  
         case 3: uexp \  
         case 2: uexp \  
         case 1: uexp  
   
 static uint8 *  
 translate(int width, int height, uint8 *data)  
 {  
         uint32 i;  
         uint32 size = width * height;  
         uint8 *d2 = xmalloc(size * bpp/8);  
         uint8 *d3 = d2;  
         uint32 pix;  
         i = (size & ~0x7);  
   
         /* XXX: where are the bits swapped??? */  
 #ifdef L_ENDIAN                 /* little-endian */  
         /* big-endian screen */  
         if (screen_msbfirst)  
         {  
                 switch (bpp)  
                 {  
                         case 32:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix >> 24;  
                                                     *d3++ = pix >> 16;  
                                                     *d3++ = pix >> 8;  
                                                     *d3++ = pix;) i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      24;  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      16;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                                                      *d3++ =  
                                                                      pix;)}  
                                 break;  
                         case 24:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix >> 16;  
                                                     *d3++ = pix >> 8;  
                                                     *d3++ = pix;) i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      16;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                                                      *d3++ =  
                                                                      pix;)}  
                                 break;  
                         case 16:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix >> 8;  
                                                     *d3++ = pix;) i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                                                      *d3++ =  
                                                                      pix;)}  
                                 break;  
                         case 8:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;)}  
                                 break;  
                 }  
         }  
         else  
         {                       /* little-endian screen */  
                 switch (bpp)  
                 {  
                         case 32:  
                                 while (i)  
                                 {  
                                         unroll8Expr(*((uint32 *) d3) =  
                                                     colmap[*data++];  
                                                     d3 += sizeof(uint32);  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(*  
                                                                      ((uint32  
                                                                        *) d3)  
 = colmap[*data++];  
 d3 += sizeof(uint32);  
                                         )}  
                                 break;  
                         case 24:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                     *d3++ = pix >> 8;  
                                                     *d3++ = pix >> 16;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      16;)}  
                                 break;  
                         case 16:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                     *d3++ = pix >> 8;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                         )}  
                                 break;  
                         case 8:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;)}  
                 }  
         }  
1277    
1278  #else /* bigendian-compiled */          if (ownbackstore)
         if (screen_msbfirst)  
1279          {          {
1280                  /* big-endian screen */                  XPutImage(display, backstore, gc, image, 0, 0, x, y, cx, cy);
1281                  switch (bpp)                  XCopyArea(display, backstore, wnd, gc, x, y, cx, cy, x, y);
                 {  
                         case 32:  
                                 while (i)  
                                 {  
                                         unroll8Expr(*((uint32 *) d3) =  
                                                     colmap[*data++];  
                                                     d3 += sizeof(uint32);  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(*  
                                                                      ((uint32  
                                                                        *) d3)  
 = colmap[*data++];  
 d3 += sizeof(uint32);  
                                         )}  
                                 break;  
                         case 24:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                     *d3++ = pix >> 8;  
                                                     *d3++ = pix >> 16;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      16;)}  
                                 break;  
                         case 16:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                     *d3++ = pix >> 8;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                         )}  
                                 break;  
                         case 8:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;)}  
                 }  
1282          }          }
1283          else          else
1284          {          {
1285                  /* little-endian screen */                  XPutImage(display, wnd, gc, image, 0, 0, x, y, cx, cy);
                 switch (bpp)  
                 {  
                         case 32:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                     *d3++ = pix >> 8;  
                                                     *d3++ = pix >> 16;  
                                                     *d3++ = pix >> 24;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      16;  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      24;)}  
                                 break;  
                         case 24:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                     *d3++ = pix >> 8;  
                                                     *d3++ = pix >> 16;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                                                      *d3++ =  
                                                                      pix >>  
                                                                      16;)}  
                                 break;  
                         case 16:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                     *d3++ = pix >> 8;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;  
                                                                      *d3++ =  
                                                                      pix >> 8;  
                                         )}  
                                 break;  
                         case 8:  
                                 while (i)  
                                 {  
                                         unroll8Expr(pix = colmap[*data++];  
                                                     *d3++ = pix;  
                                                 )i -= 8;  
                                 }  
                                 i = (size & 0x7);  
                                 if (i != 0)  
                                         switch (i)  
                                         {  
                                                         unroll8Lefts(pix =  
                                                                      colmap  
                                                                      [*data++];  
                                                                      *d3++ =  
                                                                      pix;)}  
                 }  
1286          }          }
 #endif  
1287    
1288          return d2;          XFree(image);
1289  }  }

Legend:
Removed from v.28  
changed lines
  Added in v.59

  ViewVC Help
Powered by ViewVC 1.1.26