/[rdesktop]/sourceforge.net/trunk/rdesktop/xwin.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/xwin.c

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

revision 103 by matthewc, Thu Aug 29 14:18:24 2002 UTC revision 196 by astrand, Wed Sep 25 11:07:12 2002 UTC
# Line 22  Line 22 
22  #include <X11/Xutil.h>  #include <X11/Xutil.h>
23  #include <time.h>  #include <time.h>
24  #include <errno.h>  #include <errno.h>
 #define XK_MISCELLANY  
 #include <X11/keysymdef.h>  
25  #include "rdesktop.h"  #include "rdesktop.h"
 #include "scancodes.h"  
26    
27  extern int width;  extern int width;
28  extern int height;  extern int height;
# Line 33  extern BOOL sendmotion; Line 30  extern BOOL sendmotion;
30  extern BOOL fullscreen;  extern BOOL fullscreen;
31  extern BOOL grab_keyboard;  extern BOOL grab_keyboard;
32  extern char title[];  extern char title[];
33    BOOL enable_compose = False;
34    
35  Display *display = NULL;  Display *display;
36  static int x_socket;  static int x_socket;
37    static Screen *screen;
38  static Window wnd;  static Window wnd;
39  static GC gc;  static GC gc;
40  static Visual *visual;  static Visual *visual;
41  static int depth;  static int depth;
42  static int bpp;  static int bpp;
43  static int dpy_width;  static XIM IM;
44  static int dpy_height;  static XIC IC;
45    static Cursor current_cursor;
46    
47  /* endianness */  /* endianness */
48  static BOOL host_be;  static BOOL host_be;
# Line 60  static Pixmap backstore; Line 60  static Pixmap backstore;
60  }  }
61    
62  /* colour maps */  /* colour maps */
 static BOOL owncolmap;  
63  static Colormap xcolmap;  static Colormap xcolmap;
 static uint32 white;  
64  static uint32 *colmap;  static uint32 *colmap;
 static XIM IM = NULL;  
 static XIC IC = NULL;  
   
 /* Compose support */  
 BOOL enable_compose = False;  
65    
66  /* toggle fullscreen globals */  #define SET_FOREGROUND(col)     XSetForeground(display, gc, translate_colour(colmap[col]));
67  static XSetWindowAttributes attribs;  #define SET_BACKGROUND(col)     XSetBackground(display, gc, translate_colour(colmap[col]));
 static unsigned long input_mask;  
   
 #define TRANSLATE(col)          ( owncolmap ? col : translate_colour(colmap[col]) )  
 #define SET_FOREGROUND(col)     XSetForeground(display, gc, TRANSLATE(col));  
 #define SET_BACKGROUND(col)     XSetBackground(display, gc, TRANSLATE(col));  
68    
69  static int rop2_map[] = {  static int rop2_map[] = {
70          GXclear,                /* 0 */          GXclear,                /* 0 */
# Line 194  translate_colour(uint32 colour) Line 182  translate_colour(uint32 colour)
182          return colour;          return colour;
183  }  }
184    
185  static unsigned long  BOOL
 init_inputmethod(void)  
 {  
         unsigned long filtered_events = 0;  
   
         IM = XOpenIM(display, NULL, NULL, NULL);  
         if (IM == NULL)  
         {  
                 error("Failed to open input method\n");  
         }  
   
         if (IM != NULL)  
         {  
                 /* Must be done after XCreateWindow */  
                 IC = XCreateIC(IM, XNInputStyle,  
                                (XIMPreeditNothing | XIMStatusNothing),  
                                XNClientWindow, wnd, XNFocusWindow, wnd, NULL);  
   
                 if (IC == NULL)  
                 {  
                         error("Failed to create input context\n");  
                         XCloseIM(IM);  
                         IM = NULL;  
                 }  
         }  
   
         /* For correct Multi_key/Compose processing, I guess.  
            It seems to work alright anyway, though. */  
         if (IC != NULL)  
         {  
                 if (XGetICValues(IC, XNFilterEvents, &filtered_events, NULL) != NULL)  
                 {  
                         error("Failed to obtain XNFilterEvents value from IC\n");  
                         filtered_events = 0;  
                 }  
         }  
         return filtered_events;  
 }  
   
 static void  
 close_inputmethod(void)  
 {  
         if (IC != NULL)  
         {  
                 XDestroyIC(IC);  
                 if (IM != NULL)  
                 {  
                         XCloseIM(IM);  
                         IM = NULL;  
                 }  
         }  
 }  
   
 static BOOL  
186  get_key_state(int keysym)  get_key_state(int keysym)
187  {  {
188          int keysymMask = 0, modifierpos, key;          int keysymMask = 0, modifierpos, key;
# Line 281  get_key_state(int keysym) Line 216  get_key_state(int keysym)
216          return (current_state & keysymMask) ? True : False;          return (current_state & keysymMask) ? True : False;
217  }  }
218    
   
219  BOOL  BOOL
220  ui_init()  ui_init(void)
221  {  {
222          Screen *screen;          XPixmapFormatValues *pfm;
223            uint16 test;
224            int i;
225    
226          display = XOpenDisplay(NULL);          display = XOpenDisplay(NULL);
227          if (display == NULL)          if (display == NULL)
228          {          {
229                  error("Failed to open display\n");                  error("Failed to open display\n");
230                  return False;                  return False;
231          }          }
         if (fullscreen)  
         {  
                 screen = DefaultScreenOfDisplay(display);  
                 width = WidthOfScreen(screen);  
                 height = HeightOfScreen(screen);  
         }  
         return True;  
 }  
   
 void  
 ui_create_window_obj(int xpos, int ypos, int width, int height, int valuemask)  
 {  
         XClassHint *classhints;  
         XSizeHints *sizehints;  
         XEvent xevent;  
         Screen *screen;  
   
         screen = DefaultScreenOfDisplay(display);  
   
         wnd = XCreateWindow(display, RootWindowOfScreen(screen), xpos,  
                             ypos, width, height, 0, CopyFromParent,  
                             InputOutput, CopyFromParent, valuemask, &attribs);  
   
   
         XStoreName(display, wnd, title);  
   
         classhints = XAllocClassHint();  
         if (classhints != NULL)  
         {  
                 classhints->res_name = classhints->res_class = "rdesktop";  
                 XSetClassHint(display, wnd, classhints);  
                 XFree(classhints);  
         }  
   
         sizehints = XAllocSizeHints();  
         if (sizehints)  
         {  
                 sizehints->flags = PMinSize | PMaxSize;  
                 sizehints->min_width = sizehints->max_width = width;  
                 sizehints->min_height = sizehints->max_height = height;  
                 XSetWMNormalHints(display, wnd, sizehints);  
                 XFree(sizehints);  
         }  
   
         if (enable_compose)  
                 input_mask |= init_inputmethod();  
   
         XSelectInput(display, wnd, input_mask);  
   
         gc = XCreateGC(display, wnd, 0, NULL);  
   
         XMapWindow(display, wnd);  
   
         /* Wait for VisibilityNotify Event */  
         for (;;)  
         {  
                 XNextEvent(display, &xevent);  
                 if (xevent.type == VisibilityNotify)  
                         break;  
         }  
   
         if (ownbackstore)  
                 backstore = XCreatePixmap(display, wnd, width, height, depth);  
   
         /* clear the window so that cached data is not viewed upon start... */  
         XSetBackground(display, gc, 0);  
         XSetForeground(display, gc, 0);  
         FILL_RECTANGLE(0, 0, width, height);  
         /* make sure the window is focused */  
         XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);  
 }  
   
 BOOL  
 ui_create_window()  
 {  
         XPixmapFormatValues *pfm;  
         Screen *screen;  
         uint16 test;  
         int i;  
232    
233          x_socket = ConnectionNumber(display);          x_socket = ConnectionNumber(display);
234          screen = DefaultScreenOfDisplay(display);          screen = DefaultScreenOfDisplay(display);
# Line 399  ui_create_window() Line 257  ui_create_window()
257                  return False;                  return False;
258          }          }
259    
260          if (depth <= 8)          xcolmap = DefaultColormapOfScreen(screen);
261                  owncolmap = True;          gc = XCreateGC(display, RootWindowOfScreen(screen), 0, NULL);
262          else  
263                  xcolmap = DefaultColormapOfScreen(screen);          if (DoesBackingStore(screen) != Always)
264                    ownbackstore = True;
265    
266          test = 1;          test = 1;
267          host_be = !(BOOL) (*(uint8 *) (&test));          host_be = !(BOOL) (*(uint8 *) (&test));
268          xserver_be = (ImageByteOrder(display) == MSBFirst);          xserver_be = (ImageByteOrder(display) == MSBFirst);
269    
270          white = WhitePixelOfScreen(screen);          if (fullscreen)
271            {
272                    width = WidthOfScreen(screen);
273                    height = HeightOfScreen(screen);
274            }
275    
276            /* make sure width is a multiple of 4 */
277            width = (width + 3) & ~3;
278    
279            if (ownbackstore)
280            {
281                    backstore =
282                            XCreatePixmap(display, RootWindowOfScreen(screen), width, height, depth);
283    
284                    /* clear to prevent rubbish being exposed at startup */
285                    XSetForeground(display, gc, BlackPixelOfScreen(screen));
286                    XFillRectangle(display, backstore, gc, 0, 0, width, height);
287            }
288    
289            if (enable_compose)
290                    IM = XOpenIM(display, NULL, NULL, NULL);
291    
292            xkeymap_init();
293            return True;
294    }
295    
296    void
297    ui_deinit(void)
298    {
299            if (IM != NULL)
300                    XCloseIM(IM);
301    
302            if (ownbackstore)
303                    XFreePixmap(display, backstore);
304    
305            XFreeGC(display, gc);
306            XCloseDisplay(display);
307            display = NULL;
308    }
309    
310    BOOL
311    ui_create_window(void)
312    {
313            XSetWindowAttributes attribs;
314            XClassHint *classhints;
315            XSizeHints *sizehints;
316            int wndwidth, wndheight;
317            long input_mask, ic_input_mask;
318            XEvent xevent;
319    
320            wndwidth = fullscreen ? WidthOfScreen(screen) : width;
321            wndheight = fullscreen ? HeightOfScreen(screen) : height;
322    
323          attribs.background_pixel = BlackPixelOfScreen(screen);          attribs.background_pixel = BlackPixelOfScreen(screen);
324          attribs.backing_store = DoesBackingStore(screen);          attribs.backing_store = ownbackstore ? NotUseful : Always;
325            attribs.override_redirect = fullscreen;
326    
327          if (attribs.backing_store == NotUseful)          wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, wndwidth, wndheight,
328                  ownbackstore = True;                              0, CopyFromParent, InputOutput, CopyFromParent,
329                                CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);
330    
331          dpy_width = WidthOfScreen(screen);          XStoreName(display, wnd, title);
         dpy_height = HeightOfScreen(screen);  
332    
333          if (fullscreen)          classhints = XAllocClassHint();
334            if (classhints != NULL)
335          {          {
336                  attribs.override_redirect = True;                  classhints->res_name = classhints->res_class = "rdesktop";
337                  width = dpy_width;                  XSetClassHint(display, wnd, classhints);
338                  height = dpy_height;                  XFree(classhints);
339          }          }
340          else  
341            sizehints = XAllocSizeHints();
342            if (sizehints)
343          {          {
344                  attribs.override_redirect = False;                  sizehints->flags = PMinSize | PMaxSize;
345                    sizehints->min_width = sizehints->max_width = width;
346                    sizehints->min_height = sizehints->max_height = height;
347                    XSetWMNormalHints(display, wnd, sizehints);
348                    XFree(sizehints);
349          }          }
350    
351          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
352                  VisibilityChangeMask | FocusChangeMask;                  StructureNotifyMask | FocusChangeMask;
353    
         if (grab_keyboard)  
                 input_mask |= EnterWindowMask | LeaveWindowMask;  
354          if (sendmotion)          if (sendmotion)
355                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
   
356          if (ownbackstore)          if (ownbackstore)
357                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
358    
359          if (fullscreen)          if (IM != NULL)
360                  ui_create_window_obj(0, 0, width, height,          {
361                                       CWBackingStore | CWBackPixel | CWOverrideRedirect);                  IC = XCreateIC(IM, XNInputStyle, (XIMPreeditNothing | XIMStatusNothing),
362          else                                 XNClientWindow, wnd, XNFocusWindow, wnd, NULL);
363                  ui_create_window_obj(0, 0, width, height, CWBackingStore | CWBackPixel);  
364                    if ((IC != NULL)
365                        && (XGetICValues(IC, XNFilterEvents, &ic_input_mask, NULL) == NULL))
366                            input_mask |= ic_input_mask;
367            }
368    
369            XSelectInput(display, wnd, input_mask);
370            XMapWindow(display, wnd);
371    
372          xkeymap_init2();          /* wait for MapNotify */
373            do
374            {
375                    XMaskEvent(display, StructureNotifyMask, &xevent);
376            }
377            while (xevent.type != MapNotify);
378    
379            if (fullscreen)
380                    XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);
381    
382          return True;          return True;
383  }  }
384    
385  void  void
386  ui_destroy_window()  ui_destroy_window(void)
387  {  {
388          if (ownbackstore)          if (IC != NULL)
389                  XFreePixmap(display, backstore);                  XDestroyIC(IC);
   
         XFreeGC(display, gc);  
   
         close_inputmethod();  
390    
391          XDestroyWindow(display, wnd);          XDestroyWindow(display, wnd);
         XCloseDisplay(display);  
         display = NULL;  
392  }  }
393    
394  void  void
395  reset_keys()  xwin_toggle_fullscreen(void)
396  {  {
397          /* reset keys */          Pixmap contents = 0;
         uint32 ev_time;  
         ev_time = time(NULL);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);  
 }  
398    
399  void          if (!ownbackstore)
 toggle_fullscreen()  
 {  
         /* save window contents */  
         Pixmap pixmap;  
         pixmap = XCreatePixmap(display, wnd, width, height, depth);  
         if (ownbackstore)  
                 XCopyArea(display, backstore, pixmap, gc, 0, 0, width, height, 0, 0);  
         else  
                 XCopyArea(display, wnd, pixmap, gc, 0, 0, width, height, 0, 0);  
         fullscreen = fullscreen ? False : True;  
         close_inputmethod();  
         if (ownbackstore)  
                 XFreePixmap(display, backstore);  
         XFreeGC(display, gc);  
         XDestroyWindow(display, wnd);  
         if (fullscreen)  
400          {          {
401                  attribs.override_redirect = True;                  /* need to save contents of window */
402                  ui_create_window_obj(0, 0, dpy_width, dpy_height,                  contents = XCreatePixmap(display, wnd, width, height, depth);
403                                       CWBackingStore | CWBackPixel | CWOverrideRedirect);                  XCopyArea(display, wnd, contents, gc, 0, 0, width, height, 0, 0);
404          }          }
405          else  
406            ui_destroy_window();
407            fullscreen = !fullscreen;
408            ui_create_window();
409    
410            XDefineCursor(display, wnd, current_cursor);
411    
412            if (!ownbackstore)
413          {          {
414                  attribs.override_redirect = False;                  XCopyArea(display, contents, wnd, gc, 0, 0, width, height, 0, 0);
415                  ui_create_window_obj(0, 0, width, height, CWBackingStore | CWBackPixel);                  XFreePixmap(display, contents);
416          }          }
         ui_set_cursor(cache_get_cursor(0));  
         ui_move_pointer(width / 2, height / 2);  
         reset_keys();  
         /* restore window contents */  
         if (ownbackstore)  
                 XCopyArea(display, pixmap, backstore, gc, 0, 0, width, height, 0, 0);  
         XCopyArea(display, pixmap, wnd, gc, 0, 0, width, height, 0, 0);  
         XFreePixmap(display, pixmap);  
417  }  }
418    
419    /* Process all events in Xlib queue */
420  static void  static void
421  xwin_process_events()  xwin_process_events(void)
422  {  {
423          XEvent xevent;          XEvent xevent;
   
424          KeySym keysym;          KeySym keysym;
425          uint16 button, flags;          uint16 button, flags;
426          uint32 ev_time;          uint32 ev_time;
# Line 530  xwin_process_events() Line 429  xwin_process_events()
429          char str[256];          char str[256];
430          Status status;          Status status;
431    
432          /* Refresh keyboard mapping if it has changed. This is important for          while (XPending(display) > 0)
            Xvnc, since it allocates keycodes dynamically */  
         if (XCheckTypedEvent(display, MappingNotify, &xevent))  
433          {          {
434                  if (xevent.xmapping.request == MappingKeyboard                  XNextEvent(display, &xevent);
                     || xevent.xmapping.request == MappingModifier)  
                         XRefreshKeyboardMapping(&xevent.xmapping);  
         }  
435    
436          while (XCheckMaskEvent(display, ~0, &xevent))                  if ((IC != NULL) && (XFilterEvent(&xevent, None) == True))
         {  
                 if (enable_compose && (XFilterEvent(&xevent, None) == True))  
437                  {                  {
438                          DEBUG_KBD(("Filtering event\n"));                          DEBUG_KBD(("Filtering event\n"));
439                          continue;                          continue;
# Line 569  xwin_process_events() Line 461  xwin_process_events()
461                                  else                                  else
462                                  {                                  {
463                                          /* Plain old XLookupString */                                          /* Plain old XLookupString */
464                                          DEBUG_KBD(("No input context, using XLookupString\n"));                                          DEBUG_KBD(("\nNo input context, using XLookupString\n"));
465                                          XLookupString((XKeyEvent *) & xevent,                                          XLookupString((XKeyEvent *) & xevent,
466                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
467                                  }                                  }
468    
                                 if (keysym == XK_Break) /* toggle full screen */  
                                 {  
                                         if (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R))  
                                         {  
                                                 toggle_fullscreen();  
                                                 break;  
                                         }  
                                 }  
   
469                                  ksname = get_ksname(keysym);                                  ksname = get_ksname(keysym);
470                                  DEBUG_KBD(("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));
471    
472                                  if (inhibit_key(keysym))                                  if (handle_special_keys(keysym, ev_time, True))
                                 {  
                                         DEBUG_KBD(("Inhibiting key\n"));  
473                                          break;                                          break;
                                 }  
474    
475                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
476                                                             xevent.xkey.keycode, xevent.xkey.state);                                                             xevent.xkey.keycode, xevent.xkey.state);
477    
                                 ensure_remote_modifiers(ev_time, tr);  
   
478                                  if (tr.scancode == 0)                                  if (tr.scancode == 0)
479                                          break;                                          break;
480    
481                                    ensure_remote_modifiers(ev_time, tr);
482    
483                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);
484                                  break;                                  break;
485                          case KeyRelease:                          case KeyRelease:
# Line 610  xwin_process_events() Line 490  xwin_process_events()
490                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,
491                                             ksname));                                             ksname));
492    
493                                  if (inhibit_key(keysym))                                  if (handle_special_keys(keysym, ev_time, False))
494                                          break;                                          break;
495    
496                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 641  xwin_process_events() Line 521  xwin_process_events()
521                                  break;                                  break;
522    
523                          case FocusIn:                          case FocusIn:
524                                  /* fall through */                                  reset_modifier_keys();
                         case EnterNotify:  
525                                  if (grab_keyboard)                                  if (grab_keyboard)
526                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
527                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
528                                  break;                                  break;
529    
530                          case FocusOut:                          case FocusOut:
                                 reset_keys();  
                                 /* fall through */  
                         case LeaveNotify:  
531                                  if (grab_keyboard)                                  if (grab_keyboard)
532                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
533                                  break;                                  break;
# Line 663  xwin_process_events() Line 539  xwin_process_events()
539                                            xevent.xexpose.height,                                            xevent.xexpose.height,
540                                            xevent.xexpose.x, xevent.xexpose.y);                                            xevent.xexpose.x, xevent.xexpose.y);
541                                  break;                                  break;
542    
543                            case MappingNotify:
544                                    /* Refresh keyboard mapping if it has changed. This is important for
545                                       Xvnc, since it allocates keycodes dynamically */
546                                    if (xevent.xmapping.request == MappingKeyboard
547                                        || xevent.xmapping.request == MappingModifier)
548                                            XRefreshKeyboardMapping(&xevent.xmapping);
549                                    break;
550    
551                  }                  }
552          }          }
553  }  }
# Line 677  ui_select(int rdp_socket) Line 562  ui_select(int rdp_socket)
562    
563          while (True)          while (True)
564          {          {
565                    /* Process any events already waiting */
566                    xwin_process_events();
567    
568                  FD_ZERO(&rfds);                  FD_ZERO(&rfds);
569                  FD_SET(rdp_socket, &rfds);                  FD_SET(rdp_socket, &rfds);
570                  if (display != NULL)                  FD_SET(x_socket, &rfds);
                 {  
                         FD_SET(x_socket, &rfds);  
                         XFlush(display);  
                 }  
571    
572                  switch (select(n, &rfds, NULL, NULL, NULL))                  switch (select(n, &rfds, NULL, NULL, NULL))
573                  {                  {
# Line 694  ui_select(int rdp_socket) Line 578  ui_select(int rdp_socket)
578                                  continue;                                  continue;
579                  }                  }
580    
                 if (FD_ISSET(x_socket, &rfds))  
                         xwin_process_events();  
   
581                  if (FD_ISSET(rdp_socket, &rfds))                  if (FD_ISSET(rdp_socket, &rfds))
582                          return;                          return;
583          }          }
# Line 715  ui_create_bitmap(int width, int height, Line 596  ui_create_bitmap(int width, int height,
596          Pixmap bitmap;          Pixmap bitmap;
597          uint8 *tdata;          uint8 *tdata;
598    
599          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
600          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
601          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
602                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
# Line 723  ui_create_bitmap(int width, int height, Line 604  ui_create_bitmap(int width, int height,
604          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
605    
606          XFree(image);          XFree(image);
607          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
608          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
609  }  }
610    
# Line 734  ui_paint_bitmap(int x, int y, int cx, in Line 614  ui_paint_bitmap(int x, int y, int cx, in
614          XImage *image;          XImage *image;
615          uint8 *tdata;          uint8 *tdata;
616    
617          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
618          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
619                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
620    
# Line 749  ui_paint_bitmap(int x, int y, int cx, in Line 629  ui_paint_bitmap(int x, int y, int cx, in
629          }          }
630    
631          XFree(image);          XFree(image);
632          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
633  }  }
634    
635  void  void
# Line 865  ui_create_cursor(unsigned int x, unsigne Line 744  ui_create_cursor(unsigned int x, unsigne
744  void  void
745  ui_set_cursor(HCURSOR cursor)  ui_set_cursor(HCURSOR cursor)
746  {  {
747          XDefineCursor(display, wnd, (Cursor) cursor);          current_cursor = (Cursor) cursor;
748            XDefineCursor(display, wnd, current_cursor);
749  }  }
750    
751  void  void
# Line 885  ui_create_colourmap(COLOURMAP * colours) Line 765  ui_create_colourmap(COLOURMAP * colours)
765  {  {
766          COLOURENTRY *entry;          COLOURENTRY *entry;
767          int i, ncolours = colours->ncolours;          int i, ncolours = colours->ncolours;
768            uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
769            XColor xentry;
770            XColor xc_cache[256];
771            uint32 colour;
772            int colLookup = 256;
773            for (i = 0; i < ncolours; i++)
774            {
775                    entry = &colours->colours[i];
776                    MAKE_XCOLOR(&xentry, entry);
777    
778                    if (XAllocColor(display, xcolmap, &xentry) == 0)
779                    {
780                            /* Allocation failed, find closest match. */
781                            int j = 256;
782                            int nMinDist = 3 * 256 * 256;
783                            long nDist = nMinDist;
784    
785          if (owncolmap)                          /* only get the colors once */
786          {                          while (colLookup--)
787                  XColor *xcolours, *xentry;                          {
788                  Colormap map;                                  xc_cache[colLookup].pixel = colLookup;
789                                    xc_cache[colLookup].red = xc_cache[colLookup].green =
790                                            xc_cache[colLookup].blue = 0;
791                                    xc_cache[colLookup].flags = 0;
792                                    XQueryColor(display,
793                                                DefaultColormap(display, DefaultScreen(display)),
794                                                &xc_cache[colLookup]);
795                            }
796                            colLookup = 0;
797    
798                  xcolours = xmalloc(sizeof(XColor) * ncolours);                          /* approximate the pixel */
799                  for (i = 0; i < ncolours; i++)                          while (j--)
800                  {                          {
801                          entry = &colours->colours[i];                                  if (xc_cache[j].flags)
802                          xentry = &xcolours[i];                                  {
803                          xentry->pixel = i;                                          nDist = ((long) (xc_cache[j].red >> 8) -
804                          MAKE_XCOLOR(xentry, entry);                                                   (long) (xentry.red >> 8)) *
805                                                    ((long) (xc_cache[j].red >> 8) -
806                                                     (long) (xentry.red >> 8)) +
807                                                    ((long) (xc_cache[j].green >> 8) -
808                                                     (long) (xentry.green >> 8)) *
809                                                    ((long) (xc_cache[j].green >> 8) -
810                                                     (long) (xentry.green >> 8)) +
811                                                    ((long) (xc_cache[j].blue >> 8) -
812                                                     (long) (xentry.blue >> 8)) *
813                                                    ((long) (xc_cache[j].blue >> 8) -
814                                                     (long) (xentry.blue >> 8));
815                                    }
816                                    if (nDist < nMinDist)
817                                    {
818                                            nMinDist = nDist;
819                                            xentry.pixel = j;
820                                    }
821                            }
822                  }                  }
823                    colour = xentry.pixel;
824    
825                  map = XCreateColormap(display, wnd, visual, AllocAll);                  /* update our cache */
826                  XStoreColors(display, map, xcolours, ncolours);                  if (xentry.pixel < 256)
   
                 xfree(xcolours);  
                 return (HCOLOURMAP) map;  
         }  
         else  
         {  
                 uint32 *map = xmalloc(sizeof(*colmap) * ncolours);  
                 XColor xentry;  
                 uint32 colour;  
   
                 for (i = 0; i < ncolours; i++)  
827                  {                  {
828                          entry = &colours->colours[i];                          xc_cache[xentry.pixel].red = xentry.red;
829                          MAKE_XCOLOR(&xentry, entry);                          xc_cache[xentry.pixel].green = xentry.green;
830                            xc_cache[xentry.pixel].blue = xentry.blue;
831    
                         if (XAllocColor(display, xcolmap, &xentry) != 0)  
                                 colour = xentry.pixel;  
                         else  
                                 colour = white;  
   
                         /* byte swap here to make translate_image faster */  
                         map[i] = translate_colour(colour);  
832                  }                  }
833    
834                  return map;  
835                    /* byte swap here to make translate_image faster */
836                    map[i] = translate_colour(colour);
837          }          }
838    
839            return map;
840  }  }
841    
842  void  void
843  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
844  {  {
845          if (owncolmap)          xfree(map);
                 XFreeColormap(display, (Colormap) map);  
         else  
                 xfree(map);  
846  }  }
847    
848  void  void
849  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
850  {  {
851          if (owncolmap)          colmap = map;
                 XSetWindowColormap(display, wnd, (Colormap) map);  
         else  
                 colmap = map;  
852  }  }
853    
854  void  void
# Line 961  ui_set_clip(int x, int y, int cx, int cy Line 864  ui_set_clip(int x, int y, int cx, int cy
864  }  }
865    
866  void  void
867  ui_reset_clip()  ui_reset_clip(void)
868  {  {
869          XRectangle rect;          XRectangle rect;
870    
# Line 973  ui_reset_clip() Line 876  ui_reset_clip()
876  }  }
877    
878  void  void
879  ui_bell()  ui_bell(void)
880  {  {
881          XBell(display, 0);          XBell(display, 0);
882  }  }

Legend:
Removed from v.103  
changed lines
  Added in v.196

  ViewVC Help
Powered by ViewVC 1.1.26