/[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 118 by astrand, Wed Sep 11 11:45:20 2002 UTC revision 194 by matthewc, Tue Sep 24 12:25:21 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    
 static unsigned long  
 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;  
                 }  
         }  
 }  
   
185  BOOL  BOOL
186  get_key_state(int keysym)  get_key_state(int keysym)
187  {  {
# 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 = XCreatePixmap(display, RootWindowOfScreen(screen), width, height, depth);
282    
283                    /* clear to prevent rubbish being exposed at startup */
284                    XSetForeground(display, gc, BlackPixelOfScreen(screen));
285                    XFillRectangle(display, backstore, gc, 0, 0, width, height);
286            }
287    
288            if (enable_compose)
289                    IM = XOpenIM(display, NULL, NULL, NULL);
290    
291            xkeymap_init();
292            return True;
293    }
294    
295    void
296    ui_deinit(void)
297    {
298            if (IM != NULL)
299                    XCloseIM(IM);
300    
301            if (ownbackstore)
302                    XFreePixmap(display, backstore);
303    
304            XFreeGC(display, gc);
305            XCloseDisplay(display);
306            display = NULL;
307    }
308    
309    BOOL
310    ui_create_window(void)
311    {
312            XSetWindowAttributes attribs;
313            XClassHint *classhints;
314            XSizeHints *sizehints;
315            int wndwidth, wndheight;
316            long input_mask, ic_input_mask;
317            XEvent xevent;
318    
319            wndwidth  = fullscreen ? WidthOfScreen(screen)  : width;
320            wndheight = fullscreen ? HeightOfScreen(screen) : height;
321    
322          attribs.background_pixel = BlackPixelOfScreen(screen);          attribs.background_pixel = BlackPixelOfScreen(screen);
323          attribs.backing_store = DoesBackingStore(screen);          attribs.backing_store = ownbackstore ? NotUseful : Always;
324            attribs.override_redirect = fullscreen;
325    
326          if (attribs.backing_store == NotUseful)          wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, wndwidth, wndheight,
327                  ownbackstore = True;                              0, CopyFromParent, InputOutput, CopyFromParent,
328                                CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);
329    
330          dpy_width = WidthOfScreen(screen);          XStoreName(display, wnd, title);
         dpy_height = HeightOfScreen(screen);  
331    
332          if (fullscreen)          classhints = XAllocClassHint();
333            if (classhints != NULL)
334          {          {
335                  attribs.override_redirect = True;                  classhints->res_name = classhints->res_class = "rdesktop";
336                  width = dpy_width;                  XSetClassHint(display, wnd, classhints);
337                  height = dpy_height;                  XFree(classhints);
338          }          }
339          else  
340            sizehints = XAllocSizeHints();
341            if (sizehints)
342          {          {
343                  attribs.override_redirect = False;                  sizehints->flags = PMinSize | PMaxSize;
344                    sizehints->min_width = sizehints->max_width = width;
345                    sizehints->min_height = sizehints->max_height = height;
346                    XSetWMNormalHints(display, wnd, sizehints);
347                    XFree(sizehints);
348          }          }
349    
350          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
351                  VisibilityChangeMask | FocusChangeMask;                  StructureNotifyMask | FocusChangeMask;
352    
         if (grab_keyboard)  
                 input_mask |= EnterWindowMask | LeaveWindowMask;  
353          if (sendmotion)          if (sendmotion)
354                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
   
355          if (ownbackstore)          if (ownbackstore)
356                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
357    
358          if (fullscreen)          if (IM != NULL)
359                  ui_create_window_obj(0, 0, width, height,          {
360                                       CWBackingStore | CWBackPixel | CWOverrideRedirect);                  IC = XCreateIC(IM, XNInputStyle, (XIMPreeditNothing | XIMStatusNothing),
361          else                                 XNClientWindow, wnd, XNFocusWindow, wnd, NULL);
362                  ui_create_window_obj(0, 0, width, height, CWBackingStore | CWBackPixel);  
363                    if ((IC != NULL) && (XGetICValues(IC, XNFilterEvents, &ic_input_mask, NULL) == NULL))
364                            input_mask |= ic_input_mask;
365            }
366    
367            XSelectInput(display, wnd, input_mask);
368            XMapWindow(display, wnd);
369    
370          xkeymap_init2();          /* wait for MapNotify */
371            do {
372                    XMaskEvent(display, StructureNotifyMask, &xevent);
373            } while (xevent.type != MapNotify);
374    
375            if (fullscreen)
376                    XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);
377    
378          return True;          return True;
379  }  }
380    
381  void  void
382  ui_destroy_window()  ui_destroy_window(void)
383  {  {
384          if (ownbackstore)          if (IC != NULL)
385                  XFreePixmap(display, backstore);                  XDestroyIC(IC);
   
         XFreeGC(display, gc);  
   
         close_inputmethod();  
386    
387          XDestroyWindow(display, wnd);          XDestroyWindow(display, wnd);
         XCloseDisplay(display);  
         display = NULL;  
388  }  }
389    
390  void  void
391  reset_keys()  xwin_toggle_fullscreen(void)
392  {  {
393          /* 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);  
 }  
394    
395  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)  
396          {          {
397                  attribs.override_redirect = True;                  /* need to save contents of window */
398                  ui_create_window_obj(0, 0, dpy_width, dpy_height,                  contents = XCreatePixmap(display, wnd, width, height, depth);
399                                       CWBackingStore | CWBackPixel | CWOverrideRedirect);                  XCopyArea(display, wnd, contents, gc, 0, 0, width, height, 0, 0);
400          }          }
401          else  
402            ui_destroy_window();
403            fullscreen = !fullscreen;
404            ui_create_window();
405    
406            XDefineCursor(display, wnd, current_cursor);
407    
408            if (!ownbackstore)
409          {          {
410                  attribs.override_redirect = False;                  XCopyArea(display, contents, wnd, gc, 0, 0, width, height, 0, 0);
411                  ui_create_window_obj(0, 0, width, height, CWBackingStore | CWBackPixel);                  XFreePixmap(display, contents);
412          }          }
         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);  
413  }  }
414    
415    /* Process all events in Xlib queue */
416  static void  static void
417  xwin_process_events()  xwin_process_events(void)
418  {  {
419          XEvent xevent;          XEvent xevent;
   
420          KeySym keysym;          KeySym keysym;
421          uint16 button, flags;          uint16 button, flags;
422          uint32 ev_time;          uint32 ev_time;
# Line 530  xwin_process_events() Line 425  xwin_process_events()
425          char str[256];          char str[256];
426          Status status;          Status status;
427    
428          /* 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))  
429          {          {
430                  if (xevent.xmapping.request == MappingKeyboard                  XNextEvent(display, &xevent);
                     || xevent.xmapping.request == MappingModifier)  
                         XRefreshKeyboardMapping(&xevent.xmapping);  
         }  
431    
432          while (XCheckMaskEvent(display, ~0, &xevent))                  if ((IC != NULL) && (XFilterEvent(&xevent, None) == True))
         {  
                 if (enable_compose && (XFilterEvent(&xevent, None) == True))  
433                  {                  {
434                          DEBUG_KBD(("Filtering event\n"));                          DEBUG_KBD(("Filtering event\n"));
435                          continue;                          continue;
# Line 569  xwin_process_events() Line 457  xwin_process_events()
457                                  else                                  else
458                                  {                                  {
459                                          /* Plain old XLookupString */                                          /* Plain old XLookupString */
460                                          DEBUG_KBD(("No input context, using XLookupString\n"));                                          DEBUG_KBD(("\nNo input context, using XLookupString\n"));
461                                          XLookupString((XKeyEvent *) & xevent,                                          XLookupString((XKeyEvent *) & xevent,
462                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
463                                  }                                  }
464    
465                                  ksname = get_ksname(keysym);                                  ksname = get_ksname(keysym);
466                                  DEBUG_KBD(("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));
467    
468                                  if (handle_special_keys(keysym, ev_time, True))                                  if (handle_special_keys(keysym, ev_time, True))
469                                          break;                                          break;
# Line 629  xwin_process_events() Line 517  xwin_process_events()
517                                  break;                                  break;
518    
519                          case FocusIn:                          case FocusIn:
520                                  /* fall through */                                  reset_modifier_keys();
                         case EnterNotify:  
521                                  if (grab_keyboard)                                  if (grab_keyboard)
522                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
523                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
524                                  break;                                  break;
525    
526                          case FocusOut:                          case FocusOut:
                                 reset_keys();  
                                 /* fall through */  
                         case LeaveNotify:  
527                                  if (grab_keyboard)                                  if (grab_keyboard)
528                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
529                                  break;                                  break;
# Line 651  xwin_process_events() Line 535  xwin_process_events()
535                                            xevent.xexpose.height,                                            xevent.xexpose.height,
536                                            xevent.xexpose.x, xevent.xexpose.y);                                            xevent.xexpose.x, xevent.xexpose.y);
537                                  break;                                  break;
538    
539                            case MappingNotify:
540                                    /* Refresh keyboard mapping if it has changed. This is important for
541                                       Xvnc, since it allocates keycodes dynamically */
542                                    if (xevent.xmapping.request == MappingKeyboard
543                                        || xevent.xmapping.request == MappingModifier)
544                                            XRefreshKeyboardMapping(&xevent.xmapping);
545                                    break;
546    
547                  }                  }
548          }          }
549  }  }
# Line 665  ui_select(int rdp_socket) Line 558  ui_select(int rdp_socket)
558    
559          while (True)          while (True)
560          {          {
561                    /* Process any events already waiting */
562                    xwin_process_events();
563    
564                  FD_ZERO(&rfds);                  FD_ZERO(&rfds);
565                  FD_SET(rdp_socket, &rfds);                  FD_SET(rdp_socket, &rfds);
566                  if (display != NULL)                  FD_SET(x_socket, &rfds);
                 {  
                         FD_SET(x_socket, &rfds);  
                         XFlush(display);  
                 }  
567    
568                  switch (select(n, &rfds, NULL, NULL, NULL))                  switch (select(n, &rfds, NULL, NULL, NULL))
569                  {                  {
# Line 682  ui_select(int rdp_socket) Line 574  ui_select(int rdp_socket)
574                                  continue;                                  continue;
575                  }                  }
576    
                 if (FD_ISSET(x_socket, &rfds))  
                         xwin_process_events();  
   
577                  if (FD_ISSET(rdp_socket, &rfds))                  if (FD_ISSET(rdp_socket, &rfds))
578                          return;                          return;
579          }          }
# Line 703  ui_create_bitmap(int width, int height, Line 592  ui_create_bitmap(int width, int height,
592          Pixmap bitmap;          Pixmap bitmap;
593          uint8 *tdata;          uint8 *tdata;
594    
595          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
596          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
597          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
598                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
# Line 711  ui_create_bitmap(int width, int height, Line 600  ui_create_bitmap(int width, int height,
600          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
601    
602          XFree(image);          XFree(image);
603          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
604          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
605  }  }
606    
# Line 722  ui_paint_bitmap(int x, int y, int cx, in Line 610  ui_paint_bitmap(int x, int y, int cx, in
610          XImage *image;          XImage *image;
611          uint8 *tdata;          uint8 *tdata;
612    
613          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
614          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
615                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
616    
# Line 737  ui_paint_bitmap(int x, int y, int cx, in Line 625  ui_paint_bitmap(int x, int y, int cx, in
625          }          }
626    
627          XFree(image);          XFree(image);
628          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
629  }  }
630    
631  void  void
# Line 853  ui_create_cursor(unsigned int x, unsigne Line 740  ui_create_cursor(unsigned int x, unsigne
740  void  void
741  ui_set_cursor(HCURSOR cursor)  ui_set_cursor(HCURSOR cursor)
742  {  {
743          XDefineCursor(display, wnd, (Cursor) cursor);          current_cursor = (Cursor) cursor;
744            XDefineCursor(display, wnd, current_cursor);
745  }  }
746    
747  void  void
# Line 873  ui_create_colourmap(COLOURMAP * colours) Line 761  ui_create_colourmap(COLOURMAP * colours)
761  {  {
762          COLOURENTRY *entry;          COLOURENTRY *entry;
763          int i, ncolours = colours->ncolours;          int i, ncolours = colours->ncolours;
764            uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
765            XColor xentry;
766            XColor xc_cache[256];
767            uint32 colour;
768            int colLookup = 256;
769            for (i = 0; i < ncolours; i++)
770            {
771                    entry = &colours->colours[i];
772                    MAKE_XCOLOR(&xentry, entry);
773    
774                    if (XAllocColor(display, xcolmap, &xentry) == 0)
775                    {
776                            /* Allocation failed, find closest match. */
777                            int j = 256;
778                            int nMinDist = 3 * 256 * 256;
779                            long nDist = nMinDist;
780    
781                            /* only get the colors once */
782                            while( colLookup-- ){
783                                    xc_cache[colLookup].pixel = colLookup;
784                                    xc_cache[colLookup].red = xc_cache[colLookup].green = xc_cache[colLookup].blue = 0;
785                                    xc_cache[colLookup].flags = 0;
786                                    XQueryColor(display, DefaultColormap(display, DefaultScreen(display)), &xc_cache[colLookup]);
787                            }
788                            colLookup = 0;
789    
790          if (owncolmap)                          /* approximate the pixel */
791          {                          while( j-- ){
792                  XColor *xcolours, *xentry;                                  if( xc_cache[j].flags ){
793                  Colormap map;                                          nDist =
794                                            ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) *
795                  xcolours = xmalloc(sizeof(XColor) * ncolours);                                          ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) +
796                  for (i = 0; i < ncolours; i++)                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) *
797                  {                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) +
798                          entry = &colours->colours[i];                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8)) *
799                          xentry = &xcolours[i];                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8));
800                          xentry->pixel = i;                                  }
801                          MAKE_XCOLOR(xentry, entry);                                  if( nDist < nMinDist ){
802                                            nMinDist = nDist;
803                                            xentry.pixel = j;
804                                    }
805                            }
806                  }                  }
807                    colour = xentry.pixel;
808    
809                  map = XCreateColormap(display, wnd, visual, AllocAll);                  /* update our cache */
810                  XStoreColors(display, map, xcolours, ncolours);                  if( xentry.pixel < 256 ){
811                            xc_cache[xentry.pixel].red = xentry.red;
812                            xc_cache[xentry.pixel].green = xentry.green;
813                            xc_cache[xentry.pixel].blue = xentry.blue;
814    
                 xfree(xcolours);  
                 return (HCOLOURMAP) map;  
         }  
         else  
         {  
                 uint32 *map = xmalloc(sizeof(*colmap) * ncolours);  
                 XColor xentry;  
                 uint32 colour;  
   
                 for (i = 0; i < ncolours; i++)  
                 {  
                         entry = &colours->colours[i];  
                         MAKE_XCOLOR(&xentry, entry);  
   
                         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);  
815                  }                  }
816    
817                  return map;  
818                    /* byte swap here to make translate_image faster */
819                    map[i] = translate_colour(colour);
820          }          }
821    
822            return map;
823  }  }
824    
825  void  void
826  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
827  {  {
828          if (owncolmap)          xfree(map);
                 XFreeColormap(display, (Colormap) map);  
         else  
                 xfree(map);  
829  }  }
830    
831  void  void
832  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
833  {  {
834          if (owncolmap)          colmap = map;
                 XSetWindowColormap(display, wnd, (Colormap) map);  
         else  
                 colmap = map;  
835  }  }
836    
837  void  void
# Line 949  ui_set_clip(int x, int y, int cx, int cy Line 847  ui_set_clip(int x, int y, int cx, int cy
847  }  }
848    
849  void  void
850  ui_reset_clip()  ui_reset_clip(void)
851  {  {
852          XRectangle rect;          XRectangle rect;
853    
# Line 961  ui_reset_clip() Line 859  ui_reset_clip()
859  }  }
860    
861  void  void
862  ui_bell()  ui_bell(void)
863  {  {
864          XBell(display, 0);          XBell(display, 0);
865  }  }

Legend:
Removed from v.118  
changed lines
  Added in v.194

  ViewVC Help
Powered by ViewVC 1.1.26