ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvttoolkit.C
(Generate patch)

Comparing rxvt-unicode/src/rxvttoolkit.C (file contents):
Revision 1.23 by root, Wed Jan 11 00:59:58 2006 UTC vs.
Revision 1.50 by root, Thu Feb 2 18:04:46 2006 UTC

32#ifndef NO_SLOW_LINK_SUPPORT 32#ifndef NO_SLOW_LINK_SUPPORT
33# include <sys/socket.h> 33# include <sys/socket.h>
34# include <sys/un.h> 34# include <sys/un.h>
35#endif 35#endif
36 36
37#if XFT
38# include <X11/extensions/Xrender.h>
39#endif
40
41const char *const xa_names[] =
42{
43 "TEXT",
44 "COMPOUND_TEXT",
45 "UTF8_STRING",
46 "MULTIPLE",
47 "TARGETS",
48 "TIMESTAMP",
49 "VT_SELECTION",
50 "INCR",
51 "WM_PROTOCOLS",
52 "WM_DELETE_WINDOW",
53 "CLIPBOARD",
54 "AVERAGE_WIDTH",
55 "WEIGHT_NAME",
56 "SLANT",
57 "CHARSET_REGISTRY",
58 "CHARSET_ENCODING",
59#if ENABLE_FRILLS
60 "_MOTIF_WM_HINTS",
61#endif
62#if ENABLE_EWMH
63 "_NET_WM_PID",
64 "_NET_WM_NAME",
65 "_NET_WM_ICON_NAME",
66 "_NET_WM_PING",
67#endif
68#if USE_XIM
69 "WM_LOCALE_NAME",
70 "XIM_SERVERS",
71#endif
72#ifdef TRANSPARENT
73 "_XROOTPMAP_ID",
74 "ESETROOT_PMAP_ID",
75#endif
76#if ENABLE_XEMBED
77 "_XEMBED",
78 "_XEMBED_INFO",
79#endif
80#if !ENABLE_MINIMAL
81 "SCREEN_RESOURCES",
82 "XDCCC_LINEAR_RGB_CORRECTION",
83 "XDCCC_LINEAR_RGB_MATRICES",
84 "WM_COLORMAP_WINDOWS",
85 "WM_STATE",
86 "cursor",
87# if USE_XIM
88 "TRANSPORT",
89 "LOCALES",
90 "_XIM_PROTOCOL",
91 "_XIM_XCONNECT",
92 "_XIM_MOREDATA",
93# endif
94#endif
95};
96
97/////////////////////////////////////////////////////////////////////////////
98
37refcounted::refcounted (const char *id) 99refcounted::refcounted (const char *id)
38{ 100{
39 this->id = strdup (id); 101 this->id = strdup (id);
40} 102}
41 103
93} 155}
94 156
95///////////////////////////////////////////////////////////////////////////// 157/////////////////////////////////////////////////////////////////////////////
96 158
97#ifdef USE_XIM 159#ifdef USE_XIM
160
98static void 161static void
99#if XIMCB_PROTO_BROKEN 162#if XIMCB_PROTO_BROKEN
100im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3) 163im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3)
101#else 164#else
102im_destroy_cb (XIM unused1, XPointer client_data, XPointer unused3) 165im_destroy_cb (XIM unused1, XPointer client_data, XPointer unused3)
114bool 177bool
115rxvt_xim::ref_init () 178rxvt_xim::ref_init ()
116{ 179{
117 display = GET_R->display; //HACK: TODO 180 display = GET_R->display; //HACK: TODO
118 181
119 xim = XOpenIM (display->display, NULL, NULL, NULL); 182 xim = XOpenIM (display->dpy, 0, 0, 0);
120 183
121 if (!xim) 184 if (!xim)
122 return false; 185 return false;
123 186
124 XIMCallback ximcallback; 187 XIMCallback ximcallback;
125 ximcallback.client_data = (XPointer)this; 188 ximcallback.client_data = (XPointer)this;
126 ximcallback.callback = im_destroy_cb; 189 ximcallback.callback = im_destroy_cb;
127 190
128 XSetIMValues (xim, XNDestroyCallback, &ximcallback, NULL); 191 XSetIMValues (xim, XNDestroyCallback, &ximcallback, 0);
129 192
130 return true; 193 return true;
131} 194}
132 195
133rxvt_xim::~rxvt_xim () 196rxvt_xim::~rxvt_xim ()
134{ 197{
135 if (xim) 198 if (xim)
136 XCloseIM (xim); 199 XCloseIM (xim);
137} 200}
201
138#endif 202#endif
203
204/////////////////////////////////////////////////////////////////////////////
205
206void
207rxvt_screen::set (rxvt_display *disp)
208{
209 display = disp;
210 dpy = disp->dpy;
211
212 Screen *screen = ScreenOfDisplay (dpy, disp->screen);
213
214 depth = DefaultDepthOfScreen (screen);
215 visual = DefaultVisualOfScreen (screen);
216 cmap = DefaultColormapOfScreen (screen);
217}
218
219void
220rxvt_screen::set (rxvt_display *disp, int bitdepth)
221{
222 set (disp);
223
224#if XFT
225 XVisualInfo vinfo;
226
227 if (XMatchVisualInfo (dpy, display->screen, bitdepth, TrueColor, &vinfo))
228 {
229 depth = bitdepth;
230 visual = vinfo.visual;
231 cmap = XCreateColormap (dpy, disp->root, visual, AllocNone);
232 }
233#endif
234}
235
236void
237rxvt_screen::clear ()
238{
239 if (cmap != DefaultColormapOfScreen (ScreenOfDisplay (dpy, display->screen)))
240 XFreeColormap (dpy, cmap);
241}
139 242
140///////////////////////////////////////////////////////////////////////////// 243/////////////////////////////////////////////////////////////////////////////
141 244
142rxvt_display::rxvt_display (const char *id) 245rxvt_display::rxvt_display (const char *id)
143: refcounted (id) 246: refcounted (id)
145, selection_owner (0) 248, selection_owner (0)
146{ 249{
147} 250}
148 251
149XrmDatabase 252XrmDatabase
150rxvt_display::get_resources () 253rxvt_display::get_resources (bool refresh)
151{ 254{
152 char *homedir = (char *)getenv ("HOME"); 255 char *homedir = (char *)getenv ("HOME");
153 char fname[1024]; 256 char fname[1024];
154 257
155 /* 258 /*
156 * get resources using the X library function 259 * get resources using the X library function
157 */ 260 */
158 char *displayResource, *xe; 261 char *displayResource, *xe;
159 XrmDatabase database, rdb1; 262 XrmDatabase rdb1, database = 0;
160
161 database = NULL;
162 263
163 // for ordering, see for example http://www.faqs.org/faqs/Xt-FAQ/ Subject: 20 264 // for ordering, see for example http://www.faqs.org/faqs/Xt-FAQ/ Subject: 20
164 265
165 // 6. System wide per application default file. 266 // 6. System wide per application default file.
166 267
176 // 5. User's per application default file. 277 // 5. User's per application default file.
177 // none 278 // none
178 279
179 // 4. User's defaults file. 280 // 4. User's defaults file.
180 /* Get any Xserver defaults */ 281 /* Get any Xserver defaults */
282 if (refresh)
283 {
284 // fucking xlib keeps a copy of the rm string
285 Atom actual_type;
286 int actual_format;
287 unsigned long nitems, nremaining;
288 char *val = 0;
289
290#if XLIB_ILLEGAL_ACCESS
291 if (dpy->xdefaults)
292 XFree (dpy->xdefaults);
293#endif
294
295 if (XGetWindowProperty (dpy, root, XA_RESOURCE_MANAGER,
296 0L, 100000000L, False,
297 XA_STRING, &actual_type, &actual_format,
298 &nitems, &nremaining,
299 (unsigned char **)&val) == Success
300 && actual_type == XA_STRING
301 && actual_format == 8)
302 displayResource = val;
303 else
304 {
305 displayResource = 0;
306 if (val)
307 XFree(val);
308 }
309
310#if XLIB_ILLEGAL_ACCESS
311 dpy->xdefaults = displayResource;
312#endif
313 }
314 else
181 displayResource = XResourceManagerString (display); 315 displayResource = XResourceManagerString (dpy);
182 316
183 if (displayResource != NULL) 317 if (displayResource)
184 { 318 {
185 if ((rdb1 = XrmGetStringDatabase (displayResource))) 319 if ((rdb1 = XrmGetStringDatabase (displayResource)))
186 XrmMergeDatabases (rdb1, &database); 320 XrmMergeDatabases (rdb1, &database);
187 } 321 }
188 else if (homedir) 322 else if (homedir)
191 325
192 if ((rdb1 = XrmGetFileDatabase (fname))) 326 if ((rdb1 = XrmGetFileDatabase (fname)))
193 XrmMergeDatabases (rdb1, &database); 327 XrmMergeDatabases (rdb1, &database);
194 } 328 }
195 329
330#if !XLIB_ILLEGAL_ACCESS
331 if (refresh && displayResource)
332 XFree (displayResource);
333#endif
334
196 /* Get screen specific resources */ 335 /* Get screen specific resources */
197 displayResource = XScreenResourceString (ScreenOfDisplay (display, screen)); 336 displayResource = XScreenResourceString (ScreenOfDisplay (dpy, screen));
198 337
199 if (displayResource != NULL) 338 if (displayResource)
200 { 339 {
201 if ((rdb1 = XrmGetStringDatabase (displayResource))) 340 if ((rdb1 = XrmGetStringDatabase (displayResource)))
202 /* Merge with screen-independent resources */ 341 /* Merge with screen-independent resources */
203 XrmMergeDatabases (rdb1, &database); 342 XrmMergeDatabases (rdb1, &database);
204 343
232 if (id[0] == ':') 371 if (id[0] == ':')
233 { 372 {
234 val = rxvt_malloc (5 + strlen (id) + 1); 373 val = rxvt_malloc (5 + strlen (id) + 1);
235 strcpy (val, "unix/"); 374 strcpy (val, "unix/");
236 strcat (val, id); 375 strcat (val, id);
237 display = XOpenDisplay (val); 376 dpy = XOpenDisplay (val);
238 free (val); 377 free (val);
239 } 378 }
240 else 379 else
241#endif 380#endif
242 display = 0; 381 dpy = 0;
243 382
244 if (!display) 383 if (!dpy)
245 display = XOpenDisplay (id); 384 dpy = XOpenDisplay (id);
246 385
247 if (!display) 386 if (!dpy)
248 return false; 387 return false;
249 388
250 screen = DefaultScreen (display); 389 screen = DefaultScreen (dpy);
251 root = DefaultRootWindow (display); 390 root = DefaultRootWindow (dpy);
252 visual = DefaultVisual (display, screen);
253 cmap = DefaultColormap (display, screen);
254 depth = DefaultDepth (display, screen);
255 391
392 assert (sizeof (xa_names) / sizeof (char *) == NUM_XA);
393 XInternAtoms (dpy, (char **)xa_names, NUM_XA, False, xa);
394
256 XrmSetDatabase (display, get_resources ()); 395 XrmSetDatabase (dpy, get_resources (false));
257 396
258#ifdef POINTER_BLANK 397#ifdef POINTER_BLANK
259 XColor blackcolour; 398 XColor blackcolour;
260 blackcolour.red = 0; 399 blackcolour.red = 0;
261 blackcolour.green = 0; 400 blackcolour.green = 0;
262 blackcolour.blue = 0; 401 blackcolour.blue = 0;
263 Font f = XLoadFont (display, "fixed"); 402 Font f = XLoadFont (dpy, "fixed");
264 blank_cursor = XCreateGlyphCursor (display, f, f, ' ', ' ', 403 blank_cursor = XCreateGlyphCursor (dpy, f, f, ' ', ' ',
265 &blackcolour, &blackcolour); 404 &blackcolour, &blackcolour);
266 XUnloadFont (display, f); 405 XUnloadFont (dpy, f);
267#endif 406#endif
268 407
269#ifdef PREFER_24BIT
270 /*
271 * If depth is not 24, look for a 24bit visual.
272 */
273 if (depth != 24)
274 {
275 XVisualInfo vinfo;
276
277 if (XMatchVisualInfo (display, screen, 24, TrueColor, &vinfo))
278 {
279 depth = 24;
280 visual = vinfo.visual;
281 cmap = XCreateColormap (display,
282 RootWindow (display, screen),
283 visual, AllocNone);
284 }
285 }
286#endif
287
288 int fd = XConnectionNumber (display); 408 int fd = XConnectionNumber (dpy);
289 409
290#ifndef NO_SLOW_LINK_SUPPORT 410#ifndef NO_SLOW_LINK_SUPPORT
291 // try to detect wether we have a local connection. 411 // try to detect wether we have a local connection.
292 // assume unix domains socket == local, everything else not 412 // assume unix domains socket == local, everything else not
293 // TODO: might want to check for inet/127.0.0.1 413 // TODO: might want to check for inet/127.0.0.1
300#endif 420#endif
301 421
302 x_ev.start (fd, EVENT_READ); 422 x_ev.start (fd, EVENT_READ);
303 fcntl (fd, F_SETFD, FD_CLOEXEC); 423 fcntl (fd, F_SETFD, FD_CLOEXEC);
304 424
305 XSelectInput (display, root, PropertyChangeMask); 425 XSelectInput (dpy, root, PropertyChangeMask);
306#ifdef USE_XIM
307 xa_xim_servers = XInternAtom (display, "XIM_SERVERS", 0);
308#endif
309 426
310 flush (); 427 flush ();
311 428
312 return true; 429 return true;
313} 430}
314 431
315void 432void
316rxvt_display::ref_next () 433rxvt_display::ref_next ()
317{ 434{
318 // TODO: somehow check wether the database files/resources changed 435 // TODO: somehow check wether the database files/resources changed
319 // before re-loading/parsing 436 // before affording re-loading/parsing
320 XrmDestroyDatabase (XrmGetDatabase (display)); 437 XrmDestroyDatabase (XrmGetDatabase (dpy));
321 XrmSetDatabase (display, get_resources ()); 438 XrmSetDatabase (dpy, get_resources (true));
322} 439}
323 440
324rxvt_display::~rxvt_display () 441rxvt_display::~rxvt_display ()
325{ 442{
326 if (!display) 443 if (!dpy)
327 return; 444 return;
328 445
329#ifdef POINTER_BLANK 446#ifdef POINTER_BLANK
330 XFreeCursor (display, blank_cursor); 447 XFreeCursor (dpy, blank_cursor);
331#endif 448#endif
332 x_ev.stop (); 449 x_ev.stop ();
333#ifdef USE_XIM 450#ifdef USE_XIM
334 xims.clear (); 451 xims.clear ();
335#endif 452#endif
336 XCloseDisplay (display); 453 XCloseDisplay (dpy);
337} 454}
338 455
339#ifdef USE_XIM 456#ifdef USE_XIM
340void rxvt_display::im_change_cb () 457void rxvt_display::im_change_cb ()
341{ 458{
349 // registers, as xlib crashes due to a race otherwise. 466 // registers, as xlib crashes due to a race otherwise.
350 Atom actual_type, *atoms; 467 Atom actual_type, *atoms;
351 int actual_format; 468 int actual_format;
352 unsigned long nitems, bytes_after; 469 unsigned long nitems, bytes_after;
353 470
354 if (XGetWindowProperty (display, root, xa_xim_servers, 0L, 1000000L, 471 if (XGetWindowProperty (dpy, root, xa[XA_XIM_SERVERS], 0L, 1000000L,
355 False, XA_ATOM, &actual_type, &actual_format, 472 False, XA_ATOM, &actual_type, &actual_format,
356 &nitems, &bytes_after, (unsigned char **)&atoms) 473 &nitems, &bytes_after, (unsigned char **)&atoms)
357 != Success ) 474 != Success )
358 return; 475 return;
359 476
360 if (actual_type == XA_ATOM && actual_format == 32) 477 if (actual_type == XA_ATOM && actual_format == 32)
361 for (int i = 0; i < nitems; i++) 478 for (int i = 0; i < nitems; i++)
362 if (XGetSelectionOwner (display, atoms[i])) 479 if (XGetSelectionOwner (dpy, atoms[i]))
363 { 480 {
364 im_change_cb (); 481 im_change_cb ();
365 break; 482 break;
366 } 483 }
367 484
372void rxvt_display::x_cb (io_watcher &w, short revents) 489void rxvt_display::x_cb (io_watcher &w, short revents)
373{ 490{
374 do 491 do
375 { 492 {
376 XEvent xev; 493 XEvent xev;
377 XNextEvent (display, &xev); 494 XNextEvent (dpy, &xev);
378 495
379#ifdef USE_XIM 496#ifdef USE_XIM
380 if (!XFilterEvent (&xev, None)) 497 if (!XFilterEvent (&xev, None))
381 { 498 {
382 if (xev.type == PropertyNotify 499 if (xev.type == PropertyNotify
383 && xev.xany.window == root 500 && xev.xany.window == root
384 && xev.xproperty.atom == xa_xim_servers) 501 && xev.xproperty.atom == xa[XA_XIM_SERVERS])
385 im_change_check (); 502 im_change_check ();
386#endif 503#endif
387 for (int i = xw.size (); i--; ) 504 for (int i = xw.size (); i--; )
388 { 505 {
389 if (!xw[i]) 506 if (!xw[i])
393 } 510 }
394#ifdef USE_XIM 511#ifdef USE_XIM
395 } 512 }
396#endif 513#endif
397 } 514 }
398 while (XEventsQueued (display, QueuedAlready)); 515 while (XEventsQueued (dpy, QueuedAlready));
399 516
400 XFlush (display); 517 XFlush (dpy);
401} 518}
402 519
403void rxvt_display::flush () 520void rxvt_display::flush ()
404{ 521{
405 if (XEventsQueued (display, QueuedAlready)) 522 if (XEventsQueued (dpy, QueuedAlready))
406 x_cb (x_ev, EVENT_READ); 523 x_cb (x_ev, EVENT_READ);
407 524
408 XFlush (display); 525 XFlush (dpy);
409} 526}
410 527
411void rxvt_display::reg (xevent_watcher *w) 528void rxvt_display::reg (xevent_watcher *w)
412{ 529{
413 xw.push_back (w); 530 xw.push_back (w);
427 544
428 selection_owner = owner; 545 selection_owner = owner;
429} 546}
430 547
431#ifdef USE_XIM 548#ifdef USE_XIM
549
432void rxvt_display::reg (im_watcher *w) 550void rxvt_display::reg (im_watcher *w)
433{ 551{
434 imw.push_back (w); 552 imw.push_back (w);
435} 553}
436 554
460 return xim; 578 return xim;
461} 579}
462 580
463void rxvt_display::put_xim (rxvt_xim *xim) 581void rxvt_display::put_xim (rxvt_xim *xim)
464{ 582{
465#if XLIB_IS_RACEFREE 583# if XLIB_IS_RACEFREE
466 xims.put (xim); 584 xims.put (xim);
467#endif 585# endif
468} 586}
587
469#endif 588#endif
470 589
471Atom rxvt_display::atom (const char *name) 590Atom rxvt_display::atom (const char *name)
472{ 591{
473 return XInternAtom (display, name, False); 592 return XInternAtom (dpy, name, False);
474} 593}
475 594
476///////////////////////////////////////////////////////////////////////////// 595/////////////////////////////////////////////////////////////////////////////
477 596
478template class refcache<rxvt_display>; 597template class refcache<rxvt_display>;
479refcache<rxvt_display> displays; 598refcache<rxvt_display> displays;
480 599
481///////////////////////////////////////////////////////////////////////////// 600/////////////////////////////////////////////////////////////////////////////
482 601
483bool 602bool
484rxvt_color::set (rxvt_display *display, Pixel p) 603rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
485{ 604{
486#if XFT 605#if XFT
487 XColor xc; 606 XRenderPictFormat *format;
488 607
489 xc.pixel = p; 608 // FUCKING Xft gets it wrong, of course, so work around it.
490 if (!XQueryColor (display->display, display->cmap, &xc)) 609 // Transparency users should eat shit and die, and then
491 return false; 610 // XRenderQueryPictIndexValues themselves plenty.
611 if ((screen->visual->c_class == TrueColor)
612 && (format = XRenderFindVisualFormat (screen->dpy, screen->visual)))
613 {
614 // the fun lies in doing everything manually...
615 c.color.red = color.r;
616 c.color.green = color.g;
617 c.color.blue = color.b;
618 c.color.alpha = color.a;
492 619
620 c.pixel = ((color.r * format->direct.redMask / rgba::MAX_CC) << format->direct.red )
621 | ((color.g * format->direct.greenMask / rgba::MAX_CC) << format->direct.green)
622 | ((color.b * format->direct.blueMask / rgba::MAX_CC) << format->direct.blue )
623 | ((color.a * format->direct.alphaMask / rgba::MAX_CC) << format->direct.alpha);
624
625 return true;
626 }
627 else
628 {
493 XRenderColor d; 629 XRenderColor d;
494 630
495 d.red = xc.red; 631 d.red = color.r;
496 d.green = xc.green; 632 d.green = color.g;
497 d.blue = xc.blue; 633 d.blue = color.b;
498 d.alpha = 0xffff; 634 d.alpha = color.a;
499 635
500 return 636 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c);
501 XftColorAllocValue (display->display, 637 }
502 display->visual,
503 display->cmap,
504 &d, &c);
505#else 638#else
506 this->p = p; 639 c.red = color.r;
507#endif 640 c.green = color.g;
641 c.blue = color.b;
508 642
643 if (screen->visual->c_class == TrueColor)
644 {
645 c.pixel = (color.r * (screen->visual->red_mask >> ctz (screen->visual->red_mask ))
646 / rgba::MAX_CC) << ctz (screen->visual->red_mask )
647 | (color.g * (screen->visual->green_mask >> ctz (screen->visual->green_mask))
648 / rgba::MAX_CC) << ctz (screen->visual->green_mask)
649 | (color.b * (screen->visual->blue_mask >> ctz (screen->visual->blue_mask ))
650 / rgba::MAX_CC) << ctz (screen->visual->blue_mask );
651
652 return true;
653 }
654 else if (XAllocColor (screen->dpy, screen->cmap, &c))
509 return true; 655 return true;
656 else
657 c.pixel = (color.r + color.g + color.b) > 128*3
658 ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy))
659 : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy));
660#endif
661
662 return false;
510} 663}
511 664
512bool 665bool
513rxvt_color::set (rxvt_display *display, const char *name) 666rxvt_color::set (rxvt_screen *screen, const char *name)
667{
668 rgba c;
669 char eos;
670 int skip;
671
672 // parse the nonstandard "[alphapercent]" prefix
673 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip))
674 {
675 c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a);
676 name += skip;
677 }
678 else
679 c.a = rgba::MAX_CC;
680
681 // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format
682 if (strlen (name) != 4+5*4 || 4 != sscanf (name, "rgba:%4hx/%4hx/%4hx/%4hx%c", &c.r, &c.g, &c.b, &c.a, &eos))
683 {
684 XColor xc, xc_exact;
685
686 if (XParseColor (screen->dpy, screen->cmap, name, &xc))
687 {
688 c.r = xc.red;
689 c.g = xc.green;
690 c.b = xc.blue;
691 }
692 else
693 {
694 c.r = 0xffff;
695 c.g = 0x6969;
696 c.b = 0xb4b4;
697
698 rxvt_warn ("unable to parse color '%s', using pink instead.\n", name);
699 }
700 }
701
702 return set (screen, c);
703}
704
705bool
706rxvt_color::set (rxvt_screen *screen, const rgba &color)
707{
708 bool got = alloc (screen, color);
709
710#if !ENABLE_MINIMAL
711 int cmap_size = screen->visual->map_entries;
712
713 if (!got
714 && screen->visual->c_class == PseudoColor
715 && cmap_size < 4096)
716 {
717 XColor *colors = new XColor [screen->visual->map_entries];
718
719 for (int i = 0; i < cmap_size; i++)
720 colors [i].pixel = i;
721
722 // many kilobytes transfer per colour, but pseudocolor isn't worth
723 // many extra optimisations.
724 XQueryColors (screen->dpy, screen->cmap, colors, cmap_size);
725
726 int diff = 0x7fffffffUL;
727 XColor *best = colors;
728
729 for (int i = 0; i < cmap_size; i++)
730 {
731 int d = (squared_diff<int> (color.r >> 2, colors [i].red >> 2))
732 + (squared_diff<int> (color.g >> 2, colors [i].green >> 2))
733 + (squared_diff<int> (color.b >> 2, colors [i].blue >> 2));
734
735 if (d < diff)
736 {
737 diff = d;
738 best = colors + i;
739 }
740 }
741
742 //rxvt_warn ("could not allocate %04x %04x %04x, getting %04x %04x %04x instead (%d)\n",
743 // color.r, color.g, color.b, best->red, best->green, best->blue, diff);
744
745 got = alloc (screen, rgba (best->red, best->green, best->blue));
746
747 delete colors;
748 }
749#endif
750
751 return got;
752}
753
754void
755rxvt_color::get (rgba &color)
514{ 756{
515#if XFT 757#if XFT
516 return XftColorAllocName (display->display, display->visual, display->cmap, 758 color.r = c.color.red;
517 name, &c); 759 color.g = c.color.green;
760 color.b = c.color.blue;
761 color.a = c.color.alpha;
518#else 762#else
519 XColor xc; 763 color.r = c.red;
520 764 color.g = c.green;
521 if (XParseColor (display->display, display->cmap, name, &xc)) 765 color.b = c.blue;
522 return set (display, xc.red, xc.green, xc.blue); 766 color.a = rgba::MAX_CC;
523
524 return false;
525#endif 767#endif
526} 768}
527 769
528bool 770void
529rxvt_color::set (rxvt_display *display, unsigned short cr, unsigned short cg, unsigned short cb) 771rxvt_color::get (XColor &color)
530{ 772{
531 XColor xc; 773 rgba c;
774 get (c);
532 775
533 xc.red = cr; 776 color.red = c.r;
534 xc.green = cg; 777 color.green = c.g;
535 xc.blue = cb; 778 color.blue = c.b;
536 xc.flags = DoRed | DoGreen | DoBlue; 779 color.pixel = (Pixel)*this;
537
538 if (XAllocColor (display->display, display->cmap, &xc))
539 return set (display, xc.pixel);
540
541 return false;
542} 780}
543 781
544void 782void
545rxvt_color::get (rxvt_display *display, unsigned short &cr, unsigned short &cg, unsigned short &cb) 783rxvt_color::free (rxvt_screen *screen)
546{ 784{
547#if XFT 785#if XFT
548 cr = c.color.red; 786 XftColorFree (screen->dpy, screen->visual, screen->cmap, &c);
549 cg = c.color.green;
550 cb = c.color.blue;
551#else 787#else
552 XColor c; 788 XFreeColors (screen->dpy, screen->cmap, &c.pixel, 1, AllPlanes);
553
554 c.pixel = p;
555 XQueryColor (display->display, display->cmap, &c);
556
557 cr = c.red;
558 cg = c.green;
559 cb = c.blue;
560#endif 789#endif
561} 790}
562 791
563void 792void
564rxvt_color::free (rxvt_display *display) 793rxvt_color::fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to)
565{ 794{
566#if XFT 795 rgba c;
567 XftColorFree (display->display, display->visual, display->cmap, &c); 796 get (c);
568#else
569 XFreeColors (display->display, display->cmap, &p, 1, AllPlanes);
570#endif
571}
572 797
573rxvt_color 798 result.set (
574rxvt_color::fade (rxvt_display *display, int percent) 799 screen,
575{ 800 rgba (
576 percent = 100 - percent; 801 lerp (c.r, to.r, percent),
577 802 lerp (c.g, to.g, percent),
578 unsigned short cr, cg, cb; 803 lerp (c.b, to.b, percent),
579 rxvt_color faded; 804 lerp (c.a, to.a, percent)
580 805 )
581 get (display, cr, cg, cb);
582
583 faded.set (
584 display,
585 cr * percent / 100,
586 cg * percent / 100,
587 cb * percent / 100
588 ); 806 );
589
590 return faded;
591} 807}
592 808
593#define LERP(a,b,p) (a * p + b * (100 - p)) / 100
594
595rxvt_color
596rxvt_color::fade (rxvt_display *display, int percent, rxvt_color &fadeto)
597{
598 percent = 100 - percent;
599
600 unsigned short cr, cg, cb;
601 unsigned short fcr, fcg, fcb;
602 rxvt_color faded;
603
604 get (display, cr, cg, cb);
605 fadeto.get(display, fcr, fcg, fcb);
606
607 faded.set (
608 display,
609 LERP (cr, fcr, percent),
610 LERP (cg, fcg, percent),
611 LERP (cb, fcb, percent)
612 );
613
614 return faded;
615}
616

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines