set _NET_WM_USER_TIME on the window
[dana/urxvt.git] / src / rxvttoolkit.C
1 /*----------------------------------------------------------------------*
2  * File:        rxvttoolkit.C
3  *----------------------------------------------------------------------*
4  *
5  * All portions of code are copyright by their respective author/s.
6  * Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *----------------------------------------------------------------------*/
22
23 #include "../config.h"
24 #include <rxvt.h>
25 #include <rxvttoolkit.h>
26
27 #include <unistd.h>
28 #include <fcntl.h>
29
30 #include <sys/utsname.h>
31 #include <sys/socket.h>
32 #include <sys/un.h>
33
34 #if XFT
35 # include <X11/extensions/Xrender.h>
36 #endif
37
38 const char *const xa_names[] =
39 {
40   "TEXT",
41   "COMPOUND_TEXT",
42   "UTF8_STRING",
43   "MULTIPLE",
44   "TARGETS",
45   "TIMESTAMP",
46   "VT_SELECTION",
47   "INCR",
48   "WM_PROTOCOLS",
49   "WM_DELETE_WINDOW",
50   "CLIPBOARD",
51   "AVERAGE_WIDTH",
52   "WEIGHT_NAME",
53   "SLANT",
54   "CHARSET_REGISTRY",
55   "CHARSET_ENCODING",
56 #if ENABLE_FRILLS
57   "_MOTIF_WM_HINTS",
58 #endif
59 #if ENABLE_EWMH
60   "_NET_WM_PID",
61   "_NET_WM_NAME",
62   "_NET_WM_ICON_NAME",
63   "_NET_WM_PING",
64   "_NET_WM_ICON",
65   "_NET_WM_USER_TIME",
66 #endif
67 #if USE_XIM
68   "WM_LOCALE_NAME",
69   "XIM_SERVERS",
70 #endif
71 #ifdef ENABLE_TRANSPARENCY
72   "_XROOTPMAP_ID",
73   "ESETROOT_PMAP_ID",
74 #endif
75 #if ENABLE_XEMBED
76   "_XEMBED",
77   "_XEMBED_INFO",
78 #endif
79 #if !ENABLE_MINIMAL
80   "SCREEN_RESOURCES",
81   "XDCCC_LINEAR_RGB_CORRECTION",
82   "XDCCC_LINEAR_RGB_MATRICES",
83   "WM_COLORMAP_WINDOWS",
84   "WM_STATE",
85   "cursor",
86 # if USE_XIM
87   "TRANSPORT",
88   "LOCALES",
89   "_XIM_PROTOCOL",
90   "_XIM_XCONNECT",
91   "_XIM_MOREDATA",
92 # endif
93 #endif
94 };
95
96 /////////////////////////////////////////////////////////////////////////////
97
98 refcounted::refcounted (const char *id)
99 {
100   this->id = strdup (id);
101 }
102
103 refcounted::~refcounted ()
104 {
105   free (id);
106 }
107
108 template<class T>
109 T *refcache<T>::get (const char *id)
110 {
111   for (T **i = this->begin (); i < this->end (); ++i)
112     {
113       if (!strcmp (id, (*i)->id))
114         {
115           ++(*i)->referenced;
116           (*i)->ref_next ();
117           return *i;
118         }
119     }
120
121   T *obj = new T (id);
122
123   if (obj && obj->ref_init ())
124     {
125       obj->referenced = 1;
126       this->push_back (obj);
127       return obj;
128     }
129   else
130     {
131       delete obj;
132       return 0;
133     }
134 }
135
136 template<class T>
137 void refcache<T>::put (T *obj)
138 {
139   if (!obj)
140     return;
141
142   if (!--obj->referenced)
143     {
144       this->erase (find (this->begin (), this->end (), obj));
145       delete obj;
146     }
147 }
148
149 template<class T>
150 void refcache<T>::clear ()
151 {
152   while (this->size ())
153     put (*this->begin ());
154 }
155
156 /////////////////////////////////////////////////////////////////////////////
157
158 #ifdef USE_XIM
159
160 static void
161 #if XIMCB_PROTO_BROKEN
162 im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3)
163 #else
164 im_destroy_cb (XIM unused1, XPointer client_data, XPointer unused3)
165 #endif
166 {
167   rxvt_xim *xim = (rxvt_xim *)client_data;
168   rxvt_display *display = xim->display;
169
170   xim->xim = 0;
171
172   display->xims.erase (find (display->xims.begin (), display->xims.end (), xim));
173   display->im_change_cb ();
174 }
175
176 bool
177 rxvt_xim::ref_init ()
178 {
179   display = GET_R->display; //HACK: TODO
180
181   xim = XOpenIM (display->dpy, 0, 0, 0);
182
183   if (!xim)
184     return false;
185
186   XIMCallback ximcallback;
187   ximcallback.client_data = (XPointer)this;
188   ximcallback.callback = im_destroy_cb;
189
190   XSetIMValues (xim, XNDestroyCallback, &ximcallback, (char *)0);
191
192   return true;
193 }
194
195 rxvt_xim::~rxvt_xim ()
196 {
197   if (xim)
198     XCloseIM (xim);
199 }
200
201 #endif
202
203 /////////////////////////////////////////////////////////////////////////////
204
205 #if XFT
206 rxvt_drawable::~rxvt_drawable ()
207 {
208   if (xftdrawable)
209     XftDrawDestroy (xftdrawable);
210 }
211
212 rxvt_drawable::operator XftDraw *()
213 {
214   if (!xftdrawable)
215     xftdrawable = XftDrawCreate (screen->dpy, drawable, screen->visual, screen->cmap);
216
217   return xftdrawable;
218 }
219 #endif
220
221 /////////////////////////////////////////////////////////////////////////////
222
223 #if XFT
224
225 // not strictly necessary as it is only used with superclass of zero_initialised
226 rxvt_screen::rxvt_screen ()
227 : scratch_area (0)
228 {
229 }
230
231 rxvt_drawable &rxvt_screen::scratch_drawable (int w, int h)
232 {
233   // it's actually faster to re-allocate every time. don't ask me
234   // why, but its likely no big deal there are no roundtrips
235   // (I think/hope).
236   if (!scratch_area || w > scratch_w || h > scratch_h || 1/*D*/)
237     {
238       if (scratch_area)
239         {
240           XFreePixmap (dpy, scratch_area->drawable);
241           delete scratch_area;
242         }
243
244       Pixmap pm = XCreatePixmap (dpy, RootWindowOfScreen (ScreenOfDisplay (dpy, display->screen)),
245                                  scratch_w = w, scratch_h = h, depth);
246
247       scratch_area = new rxvt_drawable (this, pm);
248     }
249
250   return *scratch_area;
251 }
252
253 #endif
254
255 void
256 rxvt_screen::set (rxvt_display *disp)
257 {
258   display = disp;
259   dpy     = disp->dpy;
260
261   Screen *screen = ScreenOfDisplay (dpy, disp->screen);
262
263   depth   = DefaultDepthOfScreen    (screen);
264   visual  = DefaultVisualOfScreen   (screen);
265   cmap    = DefaultColormapOfScreen (screen);
266 }
267
268 void
269 rxvt_screen::select_visual (int bitdepth)
270 {
271 #if XFT
272   XVisualInfo vinfo;
273
274   if (XMatchVisualInfo (dpy, display->screen, bitdepth, TrueColor, &vinfo))
275     {
276       depth  = bitdepth;
277       visual = vinfo.visual;
278       cmap   = XCreateColormap (dpy, display->root, visual, AllocNone);
279     }
280 #endif
281 }
282
283 void
284 rxvt_screen::clear ()
285 {
286 #if XFT
287   if (scratch_area)
288     {
289       XFreePixmap (dpy, scratch_area->drawable);
290       delete scratch_area;
291     }
292 #endif
293
294   if (cmap != DefaultColormapOfScreen (ScreenOfDisplay (dpy, display->screen)))
295     XFreeColormap (dpy, cmap);
296 }
297
298 /////////////////////////////////////////////////////////////////////////////
299
300 rxvt_display::rxvt_display (const char *id)
301 : refcounted (id)
302 , selection_owner (0)
303 , clipboard_owner (0)
304 {
305   x_ev    .set<rxvt_display, &rxvt_display::x_cb    > (this);
306   flush_ev.set<rxvt_display, &rxvt_display::flush_cb> (this);
307 }
308
309 XrmDatabase
310 rxvt_display::get_resources (bool refresh)
311 {
312   char *homedir = getenv ("HOME");
313   char fname[1024];
314
315   /*
316    * get resources using the X library function
317    */
318   char *displayResource, *xe;
319   XrmDatabase rdb1, database = 0;
320
321   // for ordering, see for example http://www.faqs.org/faqs/Xt-FAQ/ Subject: 20
322   // as opposed to "standard practise", we always read in ~/.Xdefaults
323
324   // 6. System wide per application default file.
325
326   /* Add in $XAPPLRESDIR/Rxvt only; not bothering with XUSERFILESEARCHPATH */
327   if ((xe = getenv ("XAPPLRESDIR")))
328     {
329       snprintf (fname, sizeof (fname), "%s/%s", xe, RESCLASS);
330
331       if ((rdb1 = XrmGetFileDatabase (fname)))
332         XrmMergeDatabases (rdb1, &database);
333     }
334
335   // 5. User's per application default file.
336   // none
337
338   // 4. User's defaults file.
339   if (homedir)
340     {
341       snprintf (fname, sizeof (fname), "%s/.Xdefaults", homedir);
342
343       if ((rdb1 = XrmGetFileDatabase (fname)))
344         XrmMergeDatabases (rdb1, &database);
345     }
346
347   /* Get any Xserver defaults */
348   if (refresh)
349     {
350       // fucking xlib keeps a copy of the rm string
351       Atom actual_type;
352       int actual_format;
353       unsigned long nitems, nremaining;
354       char *val = 0;
355
356 #if XLIB_ILLEGAL_ACCESS
357       if (dpy->xdefaults)
358         XFree (dpy->xdefaults);
359 #endif
360
361       if (XGetWindowProperty (dpy, RootWindow (dpy, 0), XA_RESOURCE_MANAGER,
362                               0L, 100000000L, False,
363                               XA_STRING, &actual_type, &actual_format,
364                               &nitems, &nremaining,
365                               (unsigned char **)&val) == Success
366           && actual_type == XA_STRING
367           && actual_format == 8)
368          displayResource = val;
369        else
370          {
371            displayResource = 0;
372
373            if (val)
374              XFree(val);
375          }
376
377 #if XLIB_ILLEGAL_ACCESS
378       dpy->xdefaults = displayResource;
379 #endif
380     }
381   else
382     displayResource = XResourceManagerString (dpy);
383
384   if (displayResource)
385     {
386       if ((rdb1 = XrmGetStringDatabase (displayResource)))
387         XrmMergeDatabases (rdb1, &database);
388     }
389
390 #if !XLIB_ILLEGAL_ACCESS
391   if (refresh && displayResource)
392     XFree (displayResource);
393 #endif
394
395   /* Get screen specific resources */
396   displayResource = XScreenResourceString (ScreenOfDisplay (dpy, screen));
397
398   if (displayResource)
399     {
400       if ((rdb1 = XrmGetStringDatabase (displayResource)))
401         /* Merge with screen-independent resources */
402         XrmMergeDatabases (rdb1, &database);
403
404       XFree (displayResource);
405     }
406
407   // 3. User's per host defaults file
408   /* Add in XENVIRONMENT file */
409   if ((xe = getenv ("XENVIRONMENT"))
410       && (rdb1 = XrmGetFileDatabase (xe)))
411     XrmMergeDatabases (rdb1, &database);
412   else if (homedir)
413     {
414       struct utsname un;
415
416       if (!uname (&un))
417         {
418           snprintf (fname, sizeof (fname), "%s/.Xdefaults-%s", homedir, un.nodename);
419
420           if ((rdb1 = XrmGetFileDatabase (fname)))
421             XrmMergeDatabases (rdb1, &database);
422         }
423     }
424
425   return database;
426 }
427
428 bool rxvt_display::ref_init ()
429 {
430 #ifdef LOCAL_X_IS_UNIX
431   if (id[0] == ':')
432     {
433       if (!(val = rxvt_temp_buf<char> (5 + strlen (id) + 1)))
434         return false;
435       strcpy (val, "unix/");
436       strcat (val, id);
437       dpy = XOpenDisplay (val);
438     }
439   else
440 #endif
441     dpy = 0;
442
443   if (!dpy)
444     dpy = XOpenDisplay (id);
445
446   if (!dpy)
447     return false;
448
449   screen = DefaultScreen     (dpy);
450   root   = DefaultRootWindow (dpy);
451
452   assert (sizeof (xa_names) / sizeof (char *) == NUM_XA);
453   XInternAtoms (dpy, (char **)xa_names, NUM_XA, False, xa);
454
455   XrmSetDatabase (dpy, get_resources (false));
456
457 #ifdef POINTER_BLANK
458   XColor blackcolour;
459   blackcolour.red   = 0;
460   blackcolour.green = 0;
461   blackcolour.blue  = 0;
462   Font f = XLoadFont (dpy, "fixed");
463   blank_cursor = XCreateGlyphCursor (dpy, f, f, ' ', ' ',
464                                      &blackcolour, &blackcolour);
465   XUnloadFont (dpy, f);
466 #endif
467
468   int fd = XConnectionNumber (dpy);
469
470   // try to detect whether we have a local connection.
471   // assume unix domain socket == local, everything else not
472   // TODO: might want to check for inet/127.0.0.1
473   is_local = 0;
474   sockaddr_un sa;
475   socklen_t sl = sizeof (sa);
476
477   if (!getsockname (fd, (sockaddr *)&sa, &sl))
478     is_local = sa.sun_family == AF_UNIX;
479
480   flush_ev.start ();
481   x_ev.start (fd, ev::READ);
482   fcntl (fd, F_SETFD, FD_CLOEXEC);
483
484   XSelectInput (dpy, root, PropertyChangeMask);
485
486   flush ();
487
488   return true;
489 }
490
491 void
492 rxvt_display::ref_next ()
493 {
494   // TODO: somehow check whether the database files/resources changed
495   // before affording re-loading/parsing
496   XrmDestroyDatabase (XrmGetDatabase (dpy));
497   XrmSetDatabase (dpy, get_resources (true));
498 }
499
500 rxvt_display::~rxvt_display ()
501 {
502   if (!dpy)
503     return;
504
505 #ifdef POINTER_BLANK
506   XFreeCursor (dpy, blank_cursor);
507 #endif
508   x_ev.stop ();
509   flush_ev.stop ();
510 #ifdef USE_XIM
511   xims.clear ();
512 #endif
513   XCloseDisplay (dpy);
514 }
515
516 #ifdef USE_XIM
517 void rxvt_display::im_change_cb ()
518 {
519   for (im_watcher **i = imw.begin (); i != imw.end (); ++i)
520     (*i)->call ();
521 }
522
523 void rxvt_display::im_change_check ()
524 {
525   // try to only call im_change_cb when a new input method
526   // registers, as xlib crashes due to a race otherwise.
527   Atom actual_type, *atoms;
528   int actual_format;
529   unsigned long nitems, bytes_after;
530
531   if (XGetWindowProperty (dpy, root, xa[XA_XIM_SERVERS], 0L, 1000000L,
532                           False, XA_ATOM, &actual_type, &actual_format,
533                           &nitems, &bytes_after, (unsigned char **)&atoms)
534       != Success )
535     return;
536
537   if (actual_type == XA_ATOM  && actual_format == 32)
538     for (int i = 0; i < nitems; i++)
539       if (XGetSelectionOwner (dpy, atoms[i]))
540         {
541           im_change_cb ();
542           break;
543         }
544
545   XFree (atoms);
546 }
547 #endif
548
549 void rxvt_display::x_cb (ev::io &w, int revents)
550 {
551   flush_ev.start ();
552 }
553
554 void rxvt_display::flush_cb (ev::prepare &w, int revents)
555 {
556   while (XEventsQueued (dpy, QueuedAfterFlush))
557     do
558       {
559         XEvent xev;
560         XNextEvent (dpy, &xev);
561
562 #ifdef USE_XIM
563         if (!XFilterEvent (&xev, None))
564           {
565             if (xev.type == PropertyNotify
566                 && xev.xany.window == root
567                 && xev.xproperty.atom == xa[XA_XIM_SERVERS])
568               im_change_check ();
569 #endif
570             if (xev.type == MappingNotify)
571               XRefreshKeyboardMapping (&xev.xmapping);
572
573             for (int i = xw.size (); i--; )
574               {
575                 if (!xw[i])
576                   xw.erase_unordered (i);
577                 else if (xw[i]->window == xev.xany.window)
578                   xw[i]->call (xev);
579               }
580 #ifdef USE_XIM
581           }
582 #endif
583       }
584     while (XEventsQueued (dpy, QueuedAlready));
585
586   w.stop ();
587 }
588
589 void rxvt_display::reg (xevent_watcher *w)
590 {
591   if (!w->active)
592     {
593       xw.push_back (w);
594       w->active = xw.size ();
595     }
596 }
597
598 void rxvt_display::unreg (xevent_watcher *w)
599 {
600   if (w->active)
601     {
602       xw[w->active - 1] = 0;
603       w->active = 0;
604     }
605 }
606
607 void rxvt_display::set_selection_owner (rxvt_term *owner, bool clipboard)
608 {
609   rxvt_term * &cur_owner = !clipboard ? selection_owner : clipboard_owner;
610
611   if (cur_owner && cur_owner != owner)
612     {
613       rxvt_term *term = cur_owner;
614       term->selection_clear (clipboard);
615       term->flush ();
616     }
617
618   cur_owner = owner;
619 }
620
621 #ifdef USE_XIM
622
623 void rxvt_display::reg (im_watcher *w)
624 {
625   imw.push_back (w);
626 }
627
628 void rxvt_display::unreg (im_watcher *w)
629 {
630   imw.erase (find (imw.begin (), imw.end (), w));
631 }
632
633 rxvt_xim *rxvt_display::get_xim (const char *locale, const char *modifiers)
634 {
635   char *id;
636   int l, m;
637
638   l = strlen (locale);
639   m = strlen (modifiers);
640
641   if (!(id = rxvt_temp_buf<char> (l + m + 2)))
642     return 0;
643
644   memcpy (id, locale, l); id[l] = '\n';
645   memcpy (id + l + 1, modifiers, m); id[l + m + 1] = 0;
646
647   rxvt_xim *xim = xims.get (id);
648
649   return xim;
650 }
651
652 void rxvt_display::put_xim (rxvt_xim *xim)
653 {
654 # if XLIB_IS_RACEFREE
655   xims.put (xim);
656 # endif
657 }
658
659 #endif
660
661 Atom rxvt_display::atom (const char *name)
662 {
663   return XInternAtom (dpy, name, False);
664 }
665
666 /////////////////////////////////////////////////////////////////////////////
667
668 template class refcache<rxvt_display>;
669 refcache<rxvt_display> displays;
670
671 /////////////////////////////////////////////////////////////////////////////
672 //
673
674 static unsigned int
675 insert_component (unsigned int value, unsigned int mask, unsigned int shift)
676 {
677   return (value * (mask + 1) >> 16) << shift;
678 }
679
680 bool
681 rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
682 {
683   //TODO: only supports 24 bit
684   int alpha = color.a >= 0xff00 ? 0xffff : color.a;
685
686 #if XFT
687   XRenderPictFormat *format;
688
689   // FUCKING Xft gets it wrong, of course, so work around it.
690   // Transparency users should eat shit and die, and then
691   // XRenderQueryPictIndexValues themselves plenty.
692   if ((screen->visual->c_class == TrueColor)
693       && (format = XRenderFindVisualFormat (screen->dpy, screen->visual)))
694     {
695       // the fun lies in doing everything manually...
696       c.color.red   = color.r;
697       c.color.green = color.g;
698       c.color.blue  = color.b;
699       c.color.alpha = alpha;
700
701       c.pixel = insert_component (color.r, format->direct.redMask  , format->direct.red  )
702               | insert_component (color.g, format->direct.greenMask, format->direct.green)
703               | insert_component (color.b, format->direct.blueMask , format->direct.blue )
704               | insert_component (alpha  , format->direct.alphaMask, format->direct.alpha);
705
706       return true;
707     }
708   else
709     {
710       XRenderColor d;
711
712       d.red   = color.r;
713       d.green = color.g;
714       d.blue  = color.b;
715       d.alpha = alpha;
716
717       return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c);
718     }
719 #else
720   c.red   = color.r;
721   c.green = color.g;
722   c.blue  = color.b;
723
724   if (screen->visual->c_class == TrueColor)
725     {
726       c.pixel = (color.r >> (16 - rxvt_popcount (screen->visual->red_mask  )) << rxvt_ctz (screen->visual->red_mask  ))
727               | (color.g >> (16 - rxvt_popcount (screen->visual->green_mask)) << rxvt_ctz (screen->visual->green_mask))
728               | (color.b >> (16 - rxvt_popcount (screen->visual->blue_mask )) << rxvt_ctz (screen->visual->blue_mask ));
729
730       return true;
731     }
732   else if (XAllocColor (screen->dpy, screen->cmap, &c))
733     return true;
734   else
735     c.pixel = (color.r + color.g + color.b) > 128*3
736             ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy))
737             : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy));
738 #endif
739
740   return false;
741 }
742
743 bool
744 rxvt_color::set (rxvt_screen *screen, const char *name)
745 {
746   rgba c;
747   char eos;
748   int skip;
749
750   c.a = rgba::MAX_CC;
751
752   // parse the nonstandard "[alphapercent]" prefix
753   if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip))
754     {
755       c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a);
756       name += skip;
757     }
758
759   // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format
760   if (strlen (name) != 4+5*4 || 4 != sscanf (name, "rgba:%4hx/%4hx/%4hx/%4hx%c", &c.r, &c.g, &c.b, &c.a, &eos))
761     {
762       XColor xc;
763
764       if (XParseColor (screen->dpy, screen->cmap, name, &xc))
765         {
766           c.r = xc.red;
767           c.g = xc.green;
768           c.b = xc.blue;
769         }
770       else
771         {
772           c.r = 0xffff;
773           c.g = 0x6969;
774           c.b = 0xb4b4;
775
776           rxvt_warn ("unable to parse color '%s', using pink instead.\n", name);
777         }
778     }
779
780   return set (screen, c);
781 }
782
783 bool
784 rxvt_color::set (rxvt_screen *screen, const rgba &color)
785 {
786   bool got = alloc (screen, color);
787
788 #if !ENABLE_MINIMAL
789   int cmap_size = screen->visual->map_entries;
790
791   if (!got
792       && screen->visual->c_class == PseudoColor
793       && cmap_size < 4096)
794     {
795       XColor *colors = new XColor [screen->visual->map_entries];
796
797       for (int i = 0; i < cmap_size; i++)
798         colors [i].pixel = i;
799
800       // many kilobytes transfer per colour, but pseudocolor isn't worth
801       // many extra optimisations.
802       XQueryColors (screen->dpy, screen->cmap, colors, cmap_size);
803
804       int diff = 0x7fffffffUL;
805       XColor *best = colors;
806
807       for (int i = 0; i < cmap_size; i++)
808         {
809           int d = (squared_diff<int> (color.r >> 2, colors [i].red   >> 2))
810                 + (squared_diff<int> (color.g >> 2, colors [i].green >> 2))
811                 + (squared_diff<int> (color.b >> 2, colors [i].blue  >> 2));
812
813           if (d < diff)
814             {
815               diff = d;
816               best = colors + i;
817             }
818         }
819
820       //rxvt_warn ("could not allocate %04x %04x %04x, getting %04x %04x %04x instead (%d)\n",
821       //    color.r, color.g, color.b, best->red, best->green, best->blue, diff);
822
823       got = alloc (screen, rgba (best->red, best->green, best->blue));
824
825       delete [] colors;
826     }
827 #endif
828
829   return got;
830 }
831
832 void
833 rxvt_color::get (rgba &color)
834 {
835 #if XFT
836   color.r = c.color.red;
837   color.g = c.color.green;
838   color.b = c.color.blue;
839   color.a = c.color.alpha;
840 #else
841   color.r = c.red;
842   color.g = c.green;
843   color.b = c.blue;
844   color.a = rgba::MAX_CC;
845 #endif
846 }
847
848 void
849 rxvt_color::get (XColor &color)
850 {
851   rgba c;
852   get (c);
853
854   color.red   = c.r;
855   color.green = c.g;
856   color.blue  = c.b;
857   color.pixel = (Pixel)*this;
858 }
859
860 void
861 rxvt_color::free (rxvt_screen *screen)
862 {
863   if (screen->visual->c_class == TrueColor)
864     return; // nothing to do
865
866 #if XFT
867   XftColorFree (screen->dpy, screen->visual, screen->cmap, &c);
868 #else
869   XFreeColors (screen->dpy, screen->cmap, &c.pixel, 1, AllPlanes);
870 #endif
871 }
872
873 void
874 rxvt_color::fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to)
875 {
876   rgba c;
877   get (c);
878
879   result.set (
880     screen,
881     rgba (
882       lerp (c.r, to.r, percent),
883       lerp (c.g, to.g, percent),
884       lerp (c.b, to.b, percent),
885       lerp (c.a, to.a, percent)
886     )
887   );
888 }
889
890 #if TRACE_PIXMAPS
891 # undef XCreatePixmap
892 # undef XFreePixmap
893 Pixmap trace_XCreatePixmap (const char *file, int line, Display *dpy, Window r, unsigned int w, unsigned int h, unsigned int d)
894 {
895   Pixmap res = XCreatePixmap (dpy, r, w, h, d);
896   fprintf (stderr, "%s:%d: XCreatePixmap (%p,%lX,%u,%u,%u) returned %lX\n", file, line, dpy, r, w, h, d, res);
897   return res;
898 }
899
900 void trace_XFreePixmap (const char *file, int line, Display *dpy, Pixmap p)
901 {
902   fprintf (stderr, "%s:%d: XFreePixmap (%p,%lX)\n", file, line, dpy, p);
903   XFreePixmap (dpy,p);
904 }
905 #endif