/[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 157 by matthewc, Sun Sep 15 11:39:16 2002 UTC revision 257 by jsorg71, Mon Nov 11 23:15:27 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 Window System     User interface services - X Window System
4     Copyright (C) Matthew Chapman 1999-2001     Copyright (C) Matthew Chapman 1999-2002
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
# 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    BOOL focused;
35    BOOL mouse_in_wnd;
36    
37  Display *display;  Display *display;
38  static int x_socket;  static int x_socket;
# Line 42  static GC gc; Line 42  static GC gc;
42  static Visual *visual;  static Visual *visual;
43  static int depth;  static int depth;
44  static int bpp;  static int bpp;
45    static XIM IM;
46    static XIC IC;
47    static XModifierKeymap *mod_map;
48    static Cursor current_cursor;
49    
50  /* endianness */  /* endianness */
51  static BOOL host_be;  static BOOL host_be;
# Line 59  static Pixmap backstore; Line 63  static Pixmap backstore;
63  }  }
64    
65  /* colour maps */  /* colour maps */
 static BOOL owncolmap;  
66  static Colormap xcolmap;  static Colormap xcolmap;
67  static uint32 *colmap;  static uint32 *colmap;
68    
69  /* Compose support */  #define SET_FOREGROUND(col)     XSetForeground(display, gc, translate_colour(colmap[col]));
70  BOOL enable_compose = False;  #define SET_BACKGROUND(col)     XSetBackground(display, gc, translate_colour(colmap[col]));
 static XIM IM = NULL;  
 static XIC IC = NULL;  
   
 /* toggle fullscreen globals */  
 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));  
71    
72  static int rop2_map[] = {  static int rop2_map[] = {
73          GXclear,                /* 0 */          GXclear,                /* 0 */
# Line 191  translate_colour(uint32 colour) Line 185  translate_colour(uint32 colour)
185          return colour;          return colour;
186  }  }
187    
 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;  
                 }  
         }  
 }  
   
188  BOOL  BOOL
189  get_key_state(int keysym)  get_key_state(unsigned int state, uint32 keysym)
190  {  {
191          int keysymMask = 0, modifierpos, key;          int modifierpos, key, keysymMask = 0;
         Window wDummy1, wDummy2;  
         int iDummy3, iDummy4, iDummy5, iDummy6;  
         unsigned int current_state;  
192          int offset;          int offset;
193    
         XModifierKeymap *map = XGetModifierMapping(display);  
194          KeyCode keycode = XKeysymToKeycode(display, keysym);          KeyCode keycode = XKeysymToKeycode(display, keysym);
195    
196          if (keycode == NoSymbol)          if (keycode == NoSymbol)
# Line 261  get_key_state(int keysym) Line 198  get_key_state(int keysym)
198    
199          for (modifierpos = 0; modifierpos < 8; modifierpos++)          for (modifierpos = 0; modifierpos < 8; modifierpos++)
200          {          {
201                  offset = map->max_keypermod * modifierpos;                  offset = mod_map->max_keypermod * modifierpos;
202    
203                  for (key = 0; key < map->max_keypermod; key++)                  for (key = 0; key < mod_map->max_keypermod; key++)
204                  {                  {
205                          if (map->modifiermap[offset + key] == keycode)                          if (mod_map->modifiermap[offset + key] == keycode)
206                                  keysymMask = 1 << modifierpos;                                  keysymMask |= 1 << modifierpos;
207                  }                  }
208          }          }
209    
210          XQueryPointer(display, DefaultRootWindow(display), &wDummy1,          return (state & keysymMask) ? True : False;
                       &wDummy2, &iDummy3, &iDummy4, &iDummy5, &iDummy6, &current_state);  
   
         XFreeModifiermap(map);  
   
         return (current_state & keysymMask) ? True : False;  
 }  
   
 static void  
 xwin_map_window()  
 {  
         XEvent xevent;  
   
         XMapWindow(display, wnd);  
   
         /* wait for VisibilityChange */  
         XMaskEvent(display, VisibilityChangeMask, &xevent);  
   
         if (fullscreen)  
                 XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);  
211  }  }
212    
213  BOOL  BOOL
214  ui_init()  ui_init(void)
215  {  {
216          XPixmapFormatValues *pfm;          XPixmapFormatValues *pfm;
217          uint16 test;          uint16 test;
# Line 302  ui_init() Line 220  ui_init()
220          display = XOpenDisplay(NULL);          display = XOpenDisplay(NULL);
221          if (display == NULL)          if (display == NULL)
222          {          {
223                  error("Failed to open display\n");                  error("Failed to open display: %s\n", XDisplayName(NULL));
224                  return False;                  return False;
225          }          }
226    
# Line 333  ui_init() Line 251  ui_init()
251                  return False;                  return False;
252          }          }
253    
254          if (depth <= 8)          xcolmap = DefaultColormapOfScreen(screen);
255                  owncolmap = True;          gc = XCreateGC(display, RootWindowOfScreen(screen), 0, NULL);
         else  
                 xcolmap = DefaultColormapOfScreen(screen);  
256    
257          if (DoesBackingStore(screen) == NotUseful)          if (DoesBackingStore(screen) != Always)
258                  ownbackstore = True;                  ownbackstore = True;
259    
260          test = 1;          test = 1;
# Line 351  ui_init() Line 267  ui_init()
267                  height = HeightOfScreen(screen);                  height = HeightOfScreen(screen);
268          }          }
269    
270            /* make sure width is a multiple of 4 */
271            width = (width + 3) & ~3;
272    
273            if (ownbackstore)
274            {
275                    backstore =
276                            XCreatePixmap(display, RootWindowOfScreen(screen), width, height, depth);
277    
278                    /* clear to prevent rubbish being exposed at startup */
279                    XSetForeground(display, gc, BlackPixelOfScreen(screen));
280                    XFillRectangle(display, backstore, gc, 0, 0, width, height);
281            }
282    
283            mod_map = XGetModifierMapping(display);
284    
285            if (enable_compose)
286                    IM = XOpenIM(display, NULL, NULL, NULL);
287    
288          xkeymap_init();          xkeymap_init();
289          return True;          return True;
290  }  }
291    
292    void
293    ui_deinit(void)
294    {
295            if (IM != NULL)
296                    XCloseIM(IM);
297    
298            XFreeModifiermap(mod_map);
299    
300            if (ownbackstore)
301                    XFreePixmap(display, backstore);
302    
303            XFreeGC(display, gc);
304            XCloseDisplay(display);
305            display = NULL;
306    }
307    
308  BOOL  BOOL
309  ui_create_window()  ui_create_window(void)
310  {  {
311          XSetWindowAttributes attribs;          XSetWindowAttributes attribs;
312          XClassHint *classhints;          XClassHint *classhints;
313          XSizeHints *sizehints;          XSizeHints *sizehints;
314            int wndwidth, wndheight;
315            long input_mask, ic_input_mask;
316          XEvent xevent;          XEvent xevent;
317    
318            wndwidth = fullscreen ? WidthOfScreen(screen) : width;
319            wndheight = fullscreen ? HeightOfScreen(screen) : height;
320    
321          attribs.background_pixel = BlackPixelOfScreen(screen);          attribs.background_pixel = BlackPixelOfScreen(screen);
322          attribs.backing_store = ownbackstore ? NotUseful : Always;          attribs.backing_store = ownbackstore ? NotUseful : Always;
323          attribs.override_redirect = fullscreen;          attribs.override_redirect = fullscreen;
324          wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, width, height,  
325            wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, wndwidth, wndheight,
326                              0, CopyFromParent, InputOutput, CopyFromParent,                              0, CopyFromParent, InputOutput, CopyFromParent,
327                              CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);                              CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);
328    
         if (ownbackstore)  
                 backstore = XCreatePixmap(display, wnd, width, height, depth);  
   
329          XStoreName(display, wnd, title);          XStoreName(display, wnd, title);
330    
331          classhints = XAllocClassHint();          classhints = XAllocClassHint();
# Line 396  ui_create_window() Line 349  ui_create_window()
349          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
350                  VisibilityChangeMask | FocusChangeMask;                  VisibilityChangeMask | FocusChangeMask;
351    
         if (grab_keyboard)  
                 input_mask |= EnterWindowMask | LeaveWindowMask;  
352          if (sendmotion)          if (sendmotion)
353                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
354          if (ownbackstore)          if (ownbackstore)
355                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
356          if (enable_compose)          if (fullscreen || grab_keyboard)
357                  input_mask |= init_inputmethod();                  input_mask |= EnterWindowMask;
358            if (grab_keyboard)
359                    input_mask |= LeaveWindowMask;
360    
361            if (IM != NULL)
362            {
363                    IC = XCreateIC(IM, XNInputStyle, (XIMPreeditNothing | XIMStatusNothing),
364                                   XNClientWindow, wnd, XNFocusWindow, wnd, NULL);
365    
366                    if ((IC != NULL)
367                        && (XGetICValues(IC, XNFilterEvents, &ic_input_mask, NULL) == NULL))
368                            input_mask |= ic_input_mask;
369            }
370    
371          XSelectInput(display, wnd, input_mask);          XSelectInput(display, wnd, input_mask);
372            XMapWindow(display, wnd);
373    
374          xwin_map_window();          /* wait for VisibilityNotify */
375            do
376            {
377                    XMaskEvent(display, VisibilityChangeMask, &xevent);
378            }
379            while (xevent.type != VisibilityNotify);
380    
381          /* clear the window so that cached data is not seen */          focused = False;
382          gc = XCreateGC(display, wnd, 0, NULL);          mouse_in_wnd = False;
         XSetForeground(display, gc, 0);  
         FILL_RECTANGLE(0, 0, width, height);  
383    
384          return True;          return True;
385  }  }
386    
387  void  void
388  ui_destroy_window()  ui_destroy_window(void)
389  {  {
390          if (ownbackstore)          if (IC != NULL)
391                  XFreePixmap(display, backstore);                  XDestroyIC(IC);
   
         XFreeGC(display, gc);  
   
         close_inputmethod();  
392    
393          XDestroyWindow(display, wnd);          XDestroyWindow(display, wnd);
         XCloseDisplay(display);  
         display = NULL;  
 }  
   
 static void  
 xwin_reset_keys()  
 {  
         /* reset keys */  
         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    
396  void  void
397  xwin_toggle_fullscreen()  xwin_toggle_fullscreen(void)
398  {  {
399          XEvent xevent;          Pixmap contents = 0;
400          XSetWindowAttributes attribs;  
401          int newwidth, newheight;          if (!ownbackstore)
402            {
403                    /* need to save contents of window */
404                    contents = XCreatePixmap(display, wnd, width, height, depth);
405                    XCopyArea(display, wnd, contents, gc, 0, 0, width, height, 0, 0);
406            }
407    
408            ui_destroy_window();
409          fullscreen = !fullscreen;          fullscreen = !fullscreen;
410          newwidth  = fullscreen ? WidthOfScreen(screen) : width;          ui_create_window();
         newheight = fullscreen ? HeightOfScreen(screen) : height;  
411    
412          XUnmapWindow(display, wnd);          XDefineCursor(display, wnd, current_cursor);
413          attribs.override_redirect = fullscreen;  
414          XMoveResizeWindow(display, wnd, 0, 0, newwidth, newheight);          if (!ownbackstore)
415          XChangeWindowAttributes(display, wnd, CWOverrideRedirect, &attribs);          {
416          xwin_map_window();                  XCopyArea(display, contents, wnd, gc, 0, 0, width, height, 0, 0);
417                    XFreePixmap(display, contents);
418            }
419  }  }
420    
421  /* Process all events in Xlib queue */  /* Process all events in Xlib queue */
422  static void  static void
423  xwin_process_events()  xwin_process_events(void)
424  {  {
425          XEvent xevent;          XEvent xevent;
426          KeySym keysym;          KeySym keysym;
427          uint16 button, flags;          uint16 button, flags;
428          uint32 ev_time;          uint32 ev_time;
429          key_translation tr;          key_translation tr;
         char *ksname = NULL;  
430          char str[256];          char str[256];
431          Status status;          Status status;
432            unsigned int state;
433            Window wdummy;
434            int dummy;
435    
436          while (XPending(display) > 0)          while (XPending(display) > 0)
437          {          {
438                  XNextEvent(display, &xevent);                  XNextEvent(display, &xevent);
439    
440                  if (enable_compose && (XFilterEvent(&xevent, None) == True))                  if ((IC != NULL) && (XFilterEvent(&xevent, None) == True))
441                  {                  {
442                          DEBUG_KBD(("Filtering event\n"));                          DEBUG_KBD(("Filtering event\n"));
443                          continue;                          continue;
444                  }                  }
445    
                 ev_time = time(NULL);  
446                  flags = 0;                  flags = 0;
447    
448                  switch (xevent.type)                  switch (xevent.type)
# Line 509  xwin_process_events() Line 464  xwin_process_events()
464                                  else                                  else
465                                  {                                  {
466                                          /* Plain old XLookupString */                                          /* Plain old XLookupString */
467                                          DEBUG_KBD(("No input context, using XLookupString\n"));                                          DEBUG_KBD(("\nNo input context, using XLookupString\n"));
468                                          XLookupString((XKeyEvent *) & xevent,                                          XLookupString((XKeyEvent *) & xevent,
469                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
470                                  }                                  }
471    
472                                  ksname = get_ksname(keysym);                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym)));
                                 DEBUG_KBD(("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));  
473    
474                                  if (handle_special_keys(keysym, ev_time, True))                                  ev_time = time(NULL);
475                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, True))
476                                          break;                                          break;
477    
478                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 530  xwin_process_events() Line 485  xwin_process_events()
485    
486                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);
487                                  break;                                  break;
488    
489                          case KeyRelease:                          case KeyRelease:
490                                  XLookupString((XKeyEvent *) & xevent, str,                                  XLookupString((XKeyEvent *) & xevent, str,
491                                                sizeof(str), &keysym, NULL);                                                sizeof(str), &keysym, NULL);
492    
                                 ksname = get_ksname(keysym);  
493                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,
494                                             ksname));                                             get_ksname(keysym)));
495    
496                                  if (handle_special_keys(keysym, ev_time, False))                                  ev_time = time(NULL);
497                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, False))
498                                          break;                                          break;
499    
500                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 559  xwin_process_events() Line 515  xwin_process_events()
515                                  if (button == 0)                                  if (button == 0)
516                                          break;                                          break;
517    
518                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
519                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);
520                                  break;                                  break;
521    
522                          case MotionNotify:                          case MotionNotify:
523                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
524                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);
525                                  break;                                  break;
526    
527                          case FocusIn:                          case FocusIn:
528                                  /* fall through */                                  if (xevent.xfocus.mode == NotifyGrab)
529                          case EnterNotify:                                          break;
530                                  if (grab_keyboard)                                  focused = True;
531                                    XQueryPointer(display, wnd, &wdummy, &wdummy, &dummy, &dummy, &dummy, &dummy, &state);
532                                    reset_modifier_keys(state);
533                                    if (grab_keyboard && mouse_in_wnd)
534                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
535                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
536                                  break;                                  break;
537    
538                          case FocusOut:                          case FocusOut:
539                                  xwin_reset_keys();                                  if (xevent.xfocus.mode == NotifyUngrab)
540                                  /* fall through */                                          break;
541                          case LeaveNotify:                                  focused = False;
542                                  if (grab_keyboard)                                  if (xevent.xfocus.mode == NotifyWhileGrabbed)
543                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
544                                  break;                                  break;
545    
546                            case EnterNotify:
547                                    /* we only register for this event when in fullscreen mode */
548                                    /* or grab_keyboard */
549                                    mouse_in_wnd = True;
550                                    if (fullscreen)
551                                    {
552                                            XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);
553                                            break;
554                                    }
555                                    if (focused)
556                                            XGrabKeyboard(display, wnd, True,
557                                                          GrabModeAsync, GrabModeAsync, CurrentTime);
558                                    break;
559    
560                            case LeaveNotify:
561                                    /* we only register for this event when grab_keyboard */
562                                    mouse_in_wnd = False;
563                                    XUngrabKeyboard(display, CurrentTime);
564                                    break;
565    
566                          case Expose:                          case Expose:
567                                  XCopyArea(display, backstore, wnd, gc,                                  XCopyArea(display, backstore, wnd, gc,
568                                            xevent.xexpose.x, xevent.xexpose.y,                                            xevent.xexpose.x, xevent.xexpose.y,
# Line 598  xwin_process_events() Line 577  xwin_process_events()
577                                  if (xevent.xmapping.request == MappingKeyboard                                  if (xevent.xmapping.request == MappingKeyboard
578                                      || xevent.xmapping.request == MappingModifier)                                      || xevent.xmapping.request == MappingModifier)
579                                          XRefreshKeyboardMapping(&xevent.xmapping);                                          XRefreshKeyboardMapping(&xevent.xmapping);
580    
581                                    if (xevent.xmapping.request == MappingModifier)
582                                    {
583                                            XFreeModifiermap(mod_map);
584                                            mod_map = XGetModifierMapping(display);
585                                    }
586                                  break;                                  break;
587    
588                  }                  }
# Line 648  ui_create_bitmap(int width, int height, Line 633  ui_create_bitmap(int width, int height,
633          Pixmap bitmap;          Pixmap bitmap;
634          uint8 *tdata;          uint8 *tdata;
635    
636          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
637          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
638          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
639                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
# Line 656  ui_create_bitmap(int width, int height, Line 641  ui_create_bitmap(int width, int height,
641          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
642    
643          XFree(image);          XFree(image);
644          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
645          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
646  }  }
647    
# Line 667  ui_paint_bitmap(int x, int y, int cx, in Line 651  ui_paint_bitmap(int x, int y, int cx, in
651          XImage *image;          XImage *image;
652          uint8 *tdata;          uint8 *tdata;
653    
654          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
655          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
656                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
657    
# Line 682  ui_paint_bitmap(int x, int y, int cx, in Line 666  ui_paint_bitmap(int x, int y, int cx, in
666          }          }
667    
668          XFree(image);          XFree(image);
669          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
670  }  }
671    
672  void  void
# Line 798  ui_create_cursor(unsigned int x, unsigne Line 781  ui_create_cursor(unsigned int x, unsigne
781  void  void
782  ui_set_cursor(HCURSOR cursor)  ui_set_cursor(HCURSOR cursor)
783  {  {
784          XDefineCursor(display, wnd, (Cursor) cursor);          current_cursor = (Cursor) cursor;
785            XDefineCursor(display, wnd, current_cursor);
786  }  }
787    
788  void  void
# Line 818  ui_create_colourmap(COLOURMAP * colours) Line 802  ui_create_colourmap(COLOURMAP * colours)
802  {  {
803          COLOURENTRY *entry;          COLOURENTRY *entry;
804          int i, ncolours = colours->ncolours;          int i, ncolours = colours->ncolours;
805            uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
806            XColor xentry;
807            XColor xc_cache[256];
808            uint32 colour;
809            int colLookup = 256;
810            for (i = 0; i < ncolours; i++)
811            {
812                    entry = &colours->colours[i];
813                    MAKE_XCOLOR(&xentry, entry);
814    
815                    if (XAllocColor(display, xcolmap, &xentry) == 0)
816                    {
817                            /* Allocation failed, find closest match. */
818                            int j = 256;
819                            int nMinDist = 3 * 256 * 256;
820                            long nDist = nMinDist;
821    
822          if (owncolmap)                          /* only get the colors once */
823          {                          while (colLookup--)
824                  XColor *xcolours, *xentry;                          {
825                  Colormap map;                                  xc_cache[colLookup].pixel = colLookup;
826                                    xc_cache[colLookup].red = xc_cache[colLookup].green =
827                                            xc_cache[colLookup].blue = 0;
828                                    xc_cache[colLookup].flags = 0;
829                                    XQueryColor(display,
830                                                DefaultColormap(display, DefaultScreen(display)),
831                                                &xc_cache[colLookup]);
832                            }
833                            colLookup = 0;
834    
835                  xcolours = xmalloc(sizeof(XColor) * ncolours);                          /* approximate the pixel */
836                  for (i = 0; i < ncolours; i++)                          while (j--)
837                  {                          {
838                          entry = &colours->colours[i];                                  if (xc_cache[j].flags)
839                          xentry = &xcolours[i];                                  {
840                          xentry->pixel = i;                                          nDist = ((long) (xc_cache[j].red >> 8) -
841                          MAKE_XCOLOR(xentry, entry);                                                   (long) (xentry.red >> 8)) *
842                                                    ((long) (xc_cache[j].red >> 8) -
843                                                     (long) (xentry.red >> 8)) +
844                                                    ((long) (xc_cache[j].green >> 8) -
845                                                     (long) (xentry.green >> 8)) *
846                                                    ((long) (xc_cache[j].green >> 8) -
847                                                     (long) (xentry.green >> 8)) +
848                                                    ((long) (xc_cache[j].blue >> 8) -
849                                                     (long) (xentry.blue >> 8)) *
850                                                    ((long) (xc_cache[j].blue >> 8) -
851                                                     (long) (xentry.blue >> 8));
852                                    }
853                                    if (nDist < nMinDist)
854                                    {
855                                            nMinDist = nDist;
856                                            xentry.pixel = j;
857                                    }
858                            }
859                  }                  }
860                    colour = xentry.pixel;
861    
862                  map = XCreateColormap(display, wnd, visual, AllocAll);                  /* update our cache */
863                  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++)  
864                  {                  {
865                          entry = &colours->colours[i];                          xc_cache[xentry.pixel].red = xentry.red;
866                          MAKE_XCOLOR(&xentry, entry);                          xc_cache[xentry.pixel].green = xentry.green;
867                            xc_cache[xentry.pixel].blue = xentry.blue;
                         if (XAllocColor(display, xcolmap, &xentry) != 0)  
                                 colour = xentry.pixel;  
                         else  
                                 colour = WhitePixelOfScreen(screen);  
868    
                         /* byte swap here to make translate_image faster */  
                         map[i] = translate_colour(colour);  
869                  }                  }
870    
871                  return map;  
872                    /* byte swap here to make translate_image faster */
873                    map[i] = translate_colour(colour);
874          }          }
875    
876            return map;
877  }  }
878    
879  void  void
880  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
881  {  {
882          if (owncolmap)          xfree(map);
                 XFreeColormap(display, (Colormap) map);  
         else  
                 xfree(map);  
883  }  }
884    
885  void  void
886  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
887  {  {
888          if (owncolmap)          colmap = map;
                 XSetWindowColormap(display, wnd, (Colormap) map);  
         else  
                 colmap = map;  
889  }  }
890    
891  void  void
# Line 894  ui_set_clip(int x, int y, int cx, int cy Line 901  ui_set_clip(int x, int y, int cx, int cy
901  }  }
902    
903  void  void
904  ui_reset_clip()  ui_reset_clip(void)
905  {  {
906          XRectangle rect;          XRectangle rect;
907    
# Line 906  ui_reset_clip() Line 913  ui_reset_clip()
913  }  }
914    
915  void  void
916  ui_bell()  ui_bell(void)
917  {  {
918          XBell(display, 0);          XBell(display, 0);
919  }  }

Legend:
Removed from v.157  
changed lines
  Added in v.257

  ViewVC Help
Powered by ViewVC 1.1.26