ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/xpm.C
Revision: 1.52
Committed: Fri Jul 27 22:52:08 2007 UTC (16 years, 10 months ago) by sasha
Content type: text/plain
Branch: MAIN
Changes since 1.51: +196 -200 lines
Log Message:
reimplemented transparency handling based on performance analysis - want to use server-side tinting even with afterimage where possible, also optimized afterimage code for better performance in many cases

File Contents

# User Rev Content
1 root 1.34 /*----------------------------------------------------------------------*
2 pcg 1.12 * File: xpm.C
3 pcg 1.1 *----------------------------------------------------------------------*
4     *
5     * All portions of code are copyright by their respective author/s.
6     * Copyright (c) 1997 Carsten Haitzler <raster@zip.com.au>
7     * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
8     * Copyright (c) 1998-2001 Geoff Wing <gcw@pobox.com>
9 root 1.33 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
10 pcg 1.1 *
11     * This program is free software; you can redistribute it and/or modify
12     * it under the terms of the GNU General Public License as published by
13     * the Free Software Foundation; either version 2 of the License, or
14     * (at your option) any later version.
15     *
16     * This program is distributed in the hope that it will be useful,
17     * but WITHOUT ANY WARRANTY; without even the implied warranty of
18     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19     * GNU General Public License for more details.
20     *
21     * You should have received a copy of the GNU General Public License
22     * along with this program; if not, write to the Free Software
23     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24     *---------------------------------------------------------------------*/
25    
26     #include "../config.h" /* NECESSARY */
27     #include "rxvt.h" /* NECESSARY */
28    
29     #ifdef XPM_BACKGROUND
30    
31 ayin 1.45 #ifndef HAVE_AFTERIMAGE
32     /*
33     * search for FILE in the current working directory, and within the
34     * colon-delimited PATHLIST, adding the file extension EXT if required.
35     *
36     * FILE is either semi-colon or zero terminated
37     */
38     static char *
39     rxvt_File_search_path (const char *pathlist, const char *file, const char *ext)
40     {
41     int maxpath, len;
42     const char *p, *path;
43     char name[256];
44    
45     if (!access (file, R_OK)) /* found (plain name) in current directory */
46     return strdup (file);
47    
48     /* semi-colon delimited */
49     if ((p = strchr (file, ';')))
50     len = (p - file);
51     else
52     len = strlen (file);
53    
54     /* leave room for an extra '/' and trailing '\0' */
55     maxpath = sizeof (name) - (len + (ext ? strlen (ext) : 0) + 2);
56     if (maxpath <= 0)
57     return NULL;
58    
59     /* check if we can find it now */
60     strncpy (name, file, len);
61     name[len] = '\0';
62    
63     if (!access (name, R_OK))
64     return strdup (name);
65     if (ext)
66     {
67     strcat (name, ext);
68     if (!access (name, R_OK))
69     return strdup (name);
70     }
71     for (path = pathlist; path != NULL && *path != '\0'; path = p)
72     {
73     int n;
74    
75     /* colon delimited */
76     if ((p = strchr (path, ':')) == NULL)
77     p = strchr (path, '\0');
78    
79     n = (p - path);
80     if (*p != '\0')
81     p++;
82    
83     if (n > 0 && n <= maxpath)
84     {
85     strncpy (name, path, n);
86     if (name[n - 1] != '/')
87     name[n++] = '/';
88     name[n] = '\0';
89     strncat (name, file, len);
90    
91     if (!access (name, R_OK))
92     return strdup (name);
93     if (ext)
94     {
95     strcat (name, ext);
96     if (!access (name, R_OK))
97     return strdup (name);
98     }
99     }
100     }
101     return NULL;
102     }
103    
104 ayin 1.44 /*
105     * Calculate tiling sizes and increments
106     * At start, p == 0, incr == xpmwidthheight
107     */
108     static void
109     rxvt_pixmap_incr (unsigned int *wh, unsigned int *xy, float *incr, float *p, unsigned int widthheight, unsigned int xpmwidthheight)
110     {
111     unsigned int cwh, cxy;
112     float cincr, cp;
113    
114     cp = 0;
115     cincr = (float)xpmwidthheight;
116     cxy = *xy;
117     cwh = *wh;
118     if (cwh == 1)
119     { /* display one image, no horizontal/vertical scaling */
120     cincr = (float)widthheight;
121     if (xpmwidthheight <= widthheight)
122     {
123     cwh = xpmwidthheight;
124     cxy = (cxy * (widthheight - cwh)) / 100; /* beware! order */
125     cwh += cxy;
126     }
127     else
128     {
129     cxy = 0;
130     cwh = widthheight;
131     }
132     }
133     else if (cwh < 10)
134     { /* fit WH images across/down screen */
135     cincr *= cwh;
136     cxy = 0;
137     cwh = widthheight;
138     }
139     else
140     {
141     cincr *= 100.0 / cwh;
142     if (cwh < 100)
143     { /* contract */
144     float pos;
145    
146     cwh = (cwh * widthheight) / 100;
147     pos = (float)cxy / 100 * widthheight - (cwh / 2);
148    
149     cxy = (widthheight - cwh);
150     if (pos <= 0)
151     cxy = 0;
152     else if (pos < cxy)
153     cxy = (int) pos;
154     cwh += cxy;
155     }
156     else
157     { /* expand */
158     if (cxy > 0)
159     { /* position */
160     float pos;
161    
162     pos = (float)cxy / 100 * xpmwidthheight - (cincr / 2);
163     cp = xpmwidthheight - cincr;
164     if (pos <= 0)
165     cp = 0;
166     else if (pos < cp)
167     cp = pos;
168     }
169     cxy = 0;
170     cwh = widthheight;
171     }
172     }
173     cincr /= widthheight;
174     *wh = cwh;
175     *xy = cxy;
176     *incr = cincr;
177     *p = cp;
178     }
179 ayin 1.45 #endif
180 root 1.22
181 pcg 1.1 /*
182     * These GEOM strings indicate absolute size/position:
183     * @ `WxH+X+Y'
184     * @ `WxH+X' -> Y = X
185     * @ `WxH' -> Y = X = 50
186     * @ `W+X+Y' -> H = W
187     * @ `W+X' -> H = W, Y = X
188     * @ `W' -> H = W, X = Y = 50
189     * @ `0xH' -> H *= H/100, X = Y = 50 (W unchanged)
190     * @ `Wx0' -> W *= W/100, X = Y = 50 (H unchanged)
191     * @ `=+X+Y' -> (H, W unchanged)
192     * @ `=+X' -> Y = X (H, W unchanged)
193     *
194     * These GEOM strings adjust position relative to current position:
195     * @ `+X+Y'
196     * @ `+X' -> Y = X
197     *
198     * And this GEOM string is for querying current scale/position:
199     * @ `?'
200     */
201     int
202 pcg 1.5 rxvt_term::scale_pixmap (const char *geom)
203 pcg 1.1 {
204 root 1.28 int flags, changed = 0;
205     int x = 0, y = 0;
206     unsigned int w = 0, h = 0;
207     unsigned int n;
208     char *p;
209 root 1.35 bgPixmap_t *bgpixmap = &bgPixmap;
210 pcg 1.1
211 root 1.28 #define MAXLEN_GEOM sizeof("[10000x10000+10000+10000]")
212 pcg 1.1
213 pcg 1.7 if (geom == NULL)
214     return 0;
215 root 1.28
216     char str[MAXLEN_GEOM];
217    
218 root 1.17 if (!strcmp (geom, "?"))
219 pcg 1.7 {
220 pcg 1.9 sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */
221 root 1.28 min (bgpixmap->w, 32767), min (bgpixmap->h, 32767),
222     min (bgpixmap->x, 32767), min (bgpixmap->y, 32767));
223 pcg 1.11 process_xterm_seq (XTerm_title, str, CHAR_ST);
224 pcg 1.7 return 0;
225 pcg 1.1 }
226    
227 root 1.17 if ((p = strchr (geom, ';')) == NULL)
228     p = strchr (geom, '\0');
229 root 1.28
230 pcg 1.7 n = (p - geom);
231 root 1.35 if (n < MAXLEN_GEOM)
232 pcg 1.7 {
233 root 1.17 strncpy (str, geom, n);
234 pcg 1.7 str[n] = '\0';
235    
236 ayin 1.51 if (strcmp(str, "auto") == 0)
237 sasha 1.38 {
238 ayin 1.51 if (!bgpixmap->auto_resize)
239 sasha 1.38 changed++;
240 ayin 1.51 bgpixmap->auto_resize = True ;
241     w = szHint.width ;
242 sasha 1.38 h = szHint.height ;
243     flags = WidthValue|HeightValue ;
244     }
245     else
246     {
247 ayin 1.51 bgpixmap->auto_resize = False ;
248 sasha 1.38 flags = XParseGeometry (str, &x, &y, &w, &h);
249     }
250 root 1.28
251 pcg 1.7 if (!flags)
252     {
253     flags |= WidthValue;
254     w = 0;
255     } /* default is tile */
256 root 1.28
257 pcg 1.7 if (flags & WidthValue)
258     {
259 root 1.28 if (!(flags & XValue))
260 pcg 1.7 x = 50;
261 root 1.28
262     if (!(flags & HeightValue))
263 pcg 1.7 h = w;
264 root 1.28
265 pcg 1.7 if (w && !h)
266     {
267     w = (bgpixmap->w * w) / 100;
268     h = bgpixmap->h;
269     }
270     else if (h && !w)
271     {
272     w = bgpixmap->w;
273     h = (bgpixmap->h * h) / 100;
274     }
275 root 1.28
276     min_it (w, 32767);
277     min_it (h, 32767);
278    
279 pcg 1.7 if (bgpixmap->w != (short)w)
280     {
281     bgpixmap->w = (short)w;
282     changed++;
283     }
284 root 1.28
285 pcg 1.7 if (bgpixmap->h != (short)h)
286     {
287     bgpixmap->h = (short)h;
288     changed++;
289     }
290     }
291 root 1.28
292     if (!(flags & YValue))
293 pcg 1.7 {
294     if (flags & XNegative)
295     flags |= YNegative;
296 root 1.28
297 pcg 1.7 y = x;
298     }
299    
300 root 1.28 if (!(flags & WidthValue) && geom[0] != '=')
301 pcg 1.7 {
302     x += bgpixmap->x;
303     y += bgpixmap->y;
304     }
305 root 1.28
306     if (xpmAttr.width && xpmAttr.height)
307 pcg 1.7 {
308 root 1.28 x = MOD(x, xpmAttr.width);
309     y = MOD(y, xpmAttr.height);
310     }
311    
312 pcg 1.7 if (bgpixmap->x != x)
313     {
314     bgpixmap->x = x;
315     changed++;
316     }
317 root 1.28
318 pcg 1.7 if (bgpixmap->y != y)
319     {
320     bgpixmap->y = y;
321     changed++;
322     }
323 pcg 1.1 }
324 root 1.28
325 pcg 1.7 return changed;
326 pcg 1.1 }
327    
328     void
329 pcg 1.5 rxvt_term::resize_pixmap ()
330 pcg 1.1 {
331 root 1.27 XGCValues gcvalue;
332     GC gc;
333 pcg 1.7
334 root 1.24 if (pixmap != None)
335 sasha 1.38 {
336     XFreePixmap (dpy, pixmap);
337     pixmap = None ;
338     }
339 pcg 1.7
340     if (bgPixmap.pixmap == None)
341     { /* So be it: I'm not using pixmaps */
342 root 1.24 pixmap = None;
343 root 1.20
344 root 1.41 #ifdef ENABLE_TRANSPARENCY
345 root 1.37 if (!option (Opt_transparent) || !am_transparent)
346 ayin 1.36 #endif
347 root 1.31 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
348 root 1.20
349 pcg 1.7 return;
350 pcg 1.1 }
351    
352 root 1.17 gcvalue.foreground = pix_colors[Color_bg];
353 root 1.31 gc = XCreateGC (dpy, vt, GCForeground, &gcvalue);
354 pcg 1.1
355 pcg 1.7 if (bgPixmap.pixmap != None)
356     { /* we have a specified pixmap */
357 root 1.28 unsigned int w = bgPixmap.w, h = bgPixmap.h,
358     x = bgPixmap.x, y = bgPixmap.y;
359     unsigned int xpmh = xpmAttr.height,
360     xpmw = xpmAttr.width;
361 pcg 1.7
362 ayin 1.51 if (bgPixmap.auto_resize)
363 sasha 1.38 {
364 ayin 1.51 w = szHint.width ;
365 sasha 1.38 h = szHint.height ;
366 ayin 1.51 }
367 pcg 1.7 /*
368     * don't zoom pixmap too much nor expand really small pixmaps
369     */
370 root 1.28 if (w > 32767 || h > 32767)
371 pcg 1.7 w = 1;
372     else if (width > (10 * xpmw)
373     || height > (10 * xpmh))
374     w = 0; /* tile */
375    
376 root 1.28 if (!w)
377 pcg 1.7 {
378     /* basic X tiling - let the X server do it */
379 root 1.31 pixmap = XCreatePixmap (dpy, vt, xpmw, xpmh, depth);
380 root 1.28
381 root 1.31 XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, x, y, xpmw - x, xpmh - y, 0, 0);
382     XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, x, 0, xpmw - x, y, 0, xpmh - y);
383     XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, 0, y, x, xpmh - y, xpmw - x, 0);
384     XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, 0, 0, x, y, xpmw - x, xpmh - y);
385 pcg 1.7 }
386     else
387 sasha 1.38 #ifdef HAVE_AFTERIMAGE
388 root 1.41 #ifdef ENABLE_TRANSPARENCY
389 sasha 1.38 if (!option(Opt_transparent) || !am_transparent)
390     /* will do that in check_our_parents otherwise */
391     #endif
392     {
393 root 1.47 ASImage *scaled_im = scale_asimage (asv, original_asim, w, h, ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT);
394 ayin 1.51 if (scaled_im)
395 sasha 1.38 {
396 sasha 1.48 pixmap = asimage2pixmap(asv, display->root, scaled_im, gc, True);
397 root 1.47 destroy_asimage (&scaled_im);
398 sasha 1.38 }
399     }
400     #else /* HAVE_AFTERIMAGE */
401 pcg 1.7 {
402 root 1.27 float incr, p;
403     Pixmap tmp;
404 pcg 1.7
405 root 1.31 pixmap = XCreatePixmap (dpy, vt, width, height, depth);
406 pcg 1.7 /*
407     * horizontal scaling
408     */
409 pcg 1.9 rxvt_pixmap_incr (&w, &x, &incr, &p, width, xpmw);
410 pcg 1.7
411 root 1.31 tmp = XCreatePixmap (dpy, vt, width, xpmh, depth);
412     XFillRectangle (dpy, tmp, gc, 0, 0, width, xpmh);
413 pcg 1.7
414     for ( /*nil */ ; x < w; x++, p += incr)
415     {
416     if (p >= xpmw)
417     p = 0;
418 root 1.28
419 pcg 1.7 /* copy one column from the original pixmap to the tmp pixmap */
420 root 1.31 XCopyArea (dpy, bgPixmap.pixmap, tmp, gc, (int)p, 0, 1, xpmh, (int)x, 0);
421 pcg 1.7 }
422    
423     /*
424     * vertical scaling
425     */
426 pcg 1.9 rxvt_pixmap_incr (&h, &y, &incr, &p, height, xpmh);
427 pcg 1.7
428     if (y > 0)
429 root 1.31 XFillRectangle (dpy, pixmap, gc, 0, 0, width, y);
430 root 1.20
431 pcg 1.7 if (h < height)
432 root 1.31 XFillRectangle (dpy, pixmap, gc, 0, (int)h, width, height - h + 1);
433 root 1.20
434 pcg 1.7 for ( /*nil */ ; y < h; y++, p += incr)
435     {
436     if (p >= xpmh)
437     p = 0;
438 root 1.20
439 pcg 1.7 /* copy one row from the tmp pixmap to the main pixmap */
440 root 1.31 XCopyArea (dpy, tmp, pixmap, gc, 0, (int)p, width, 1, 0, (int)y);
441 pcg 1.7 }
442 root 1.20
443 root 1.31 XFreePixmap (dpy, tmp);
444 pcg 1.7 }
445 sasha 1.38 #endif /* HAVE_AFTERIMAGE */
446 pcg 1.1 }
447 root 1.14
448 root 1.31 XSetWindowBackgroundPixmap (dpy, vt, pixmap);
449 root 1.28
450 root 1.31 XFreeGC (dpy, gc);
451 root 1.41 #ifdef ENABLE_TRANSPARENCY
452 pcg 1.7 am_transparent = 0;
453 ayin 1.36 #endif
454 pcg 1.1 }
455    
456     Pixmap
457 pcg 1.5 rxvt_term::set_bgPixmap (const char *file)
458 pcg 1.1 {
459 root 1.21 char *f;
460 pcg 1.1
461 pcg 1.9 assert (file != NULL);
462 pcg 1.1
463 pcg 1.7 if (bgPixmap.pixmap != None)
464     {
465 root 1.31 XFreePixmap (dpy, bgPixmap.pixmap);
466 pcg 1.7 bgPixmap.pixmap = None;
467 pcg 1.1 }
468 root 1.19
469 root 1.31 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
470 pcg 1.1
471 pcg 1.7 if (*file != '\0')
472     {
473     /* XWindowAttributes attr; */
474    
475     /*
476     * we already have the required attributes
477     */
478 root 1.31 /* XGetWindowAttributes (dpy, vt, &attr); */
479 pcg 1.7
480 sasha 1.38 #ifdef HAVE_AFTERIMAGE
481 ayin 1.51 if (asimman == NULL)
482     asimman = create_generic_imageman(rs[Rs_path]);
483 sasha 1.38 if ((f = strchr (file, ';')) == NULL)
484 ayin 1.51 original_asim = get_asimage( asimman, file, 0xFFFFFFFF, 100 );
485 sasha 1.38 else
486     {
487 ayin 1.42 size_t len = f - file;
488     f = (char *)malloc (len + 1);
489     strncpy (f, file, len);
490     f[len] = '\0';
491 ayin 1.51 original_asim = get_asimage( asimman, f, 0xFFFFFFFF, 100 );
492 sasha 1.38 free( f );
493     }
494     if (original_asim)
495     {
496 sasha 1.48 bgPixmap.pixmap = asimage2pixmap (asv, display->root, original_asim, NULL, True);
497 ayin 1.51 xpmAttr.width = original_asim->width ;
498     xpmAttr.height = original_asim->height ;
499 sasha 1.38 }
500     #else /* HAVE_AFTERIMAGE */
501 pcg 1.7 xpmAttr.closeness = 30000;
502 root 1.29 xpmAttr.colormap = cmap;
503     xpmAttr.visual = visual;
504     xpmAttr.depth = depth;
505     xpmAttr.valuemask = (XpmCloseness | XpmColormap | XpmVisual
506     | XpmDepth | XpmSize | XpmReturnPixels);
507 pcg 1.7
508     /* search environment variables here too */
509 ayin 1.45 f = rxvt_File_search_path (rs[Rs_path], file, ".xpm");
510 pcg 1.7 if (f == NULL
511 root 1.31 || XpmReadFileToPixmap (dpy, display->root, f,
512 root 1.29 &bgPixmap.pixmap, NULL,
513     &xpmAttr))
514 pcg 1.7 {
515 pcg 1.10 char *p;
516 pcg 1.7
517     /* semi-colon delimited */
518 root 1.17 if ((p = strchr (file, ';')) == NULL)
519     p = strchr (file, '\0');
520 pcg 1.7
521 root 1.19 rxvt_warn ("couldn't load XPM file \"%.*s\", ignoring.\n", (p - file), file);
522 pcg 1.7 }
523 pcg 1.9 free (f);
524 sasha 1.38 #endif /* HAVE_AFTERIMAGE */
525 pcg 1.1 }
526 pcg 1.10
527 pcg 1.7 resize_pixmap ();
528     return bgPixmap.pixmap;
529 pcg 1.1 }
530    
531     #endif /* XPM_BACKGROUND */
532 ayin 1.39
533 root 1.41 #ifdef ENABLE_TRANSPARENCY
534 ayin 1.39 #if TINTING && !defined(HAVE_AFTERIMAGE)
535     /* taken from aterm-0.4.2 */
536    
537     typedef uint32_t RUINT32T;
538    
539 ayin 1.43 static void
540     ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm)
541 ayin 1.39 {
542     int sh_r, sh_g, sh_b;
543     RUINT32T mask_r, mask_g, mask_b;
544     RUINT32T *lookup, *lookup_r, *lookup_g, *lookup_b;
545     unsigned int lower_lim_r, lower_lim_g, lower_lim_b;
546     unsigned int upper_lim_r, upper_lim_g, upper_lim_b;
547     int i;
548    
549     Visual *visual = term->visual;
550    
551     if( visual->c_class != TrueColor || srcImage->format != ZPixmap ) return ;
552    
553     /* for convenience */
554     mask_r = visual->red_mask;
555     mask_g = visual->green_mask;
556     mask_b = visual->blue_mask;
557    
558     /* boring lookup table pre-initialization */
559     switch (srcImage->bits_per_pixel) {
560     case 15:
561     if ((mask_r != 0x7c00) ||
562     (mask_g != 0x03e0) ||
563     (mask_b != 0x001f))
564     return;
565     lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+32+32));
566     lookup_r = lookup;
567     lookup_g = lookup+32;
568     lookup_b = lookup+32+32;
569     sh_r = 10;
570     sh_g = 5;
571     sh_b = 0;
572     break;
573     case 16:
574     if ((mask_r != 0xf800) ||
575     (mask_g != 0x07e0) ||
576     (mask_b != 0x001f))
577     return;
578     lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+64+32));
579     lookup_r = lookup;
580     lookup_g = lookup+32;
581     lookup_b = lookup+32+64;
582     sh_r = 11;
583     sh_g = 5;
584     sh_b = 0;
585     break;
586     case 24:
587     if ((mask_r != 0xff0000) ||
588     (mask_g != 0x00ff00) ||
589     (mask_b != 0x0000ff))
590     return;
591     lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
592     lookup_r = lookup;
593     lookup_g = lookup+256;
594     lookup_b = lookup+256+256;
595     sh_r = 16;
596     sh_g = 8;
597     sh_b = 0;
598     break;
599     case 32:
600     if ((mask_r != 0xff0000) ||
601     (mask_g != 0x00ff00) ||
602     (mask_b != 0x0000ff))
603     return;
604     lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
605     lookup_r = lookup;
606     lookup_g = lookup+256;
607     lookup_b = lookup+256+256;
608     sh_r = 16;
609     sh_g = 8;
610     sh_b = 0;
611     break;
612     default:
613     return; /* we do not support this color depth */
614     }
615    
616     /* prepare limits for color transformation (each channel is handled separately) */
617     if (shade < 0) {
618     shade = -shade;
619     if (shade < 0) shade = 0;
620     if (shade > 100) shade = 100;
621    
622     lower_lim_r = 65535-rm;
623     lower_lim_g = 65535-gm;
624     lower_lim_b = 65535-bm;
625    
626     lower_lim_r = 65535-(unsigned int)(((RUINT32T)lower_lim_r)*((RUINT32T)shade)/100);
627     lower_lim_g = 65535-(unsigned int)(((RUINT32T)lower_lim_g)*((RUINT32T)shade)/100);
628     lower_lim_b = 65535-(unsigned int)(((RUINT32T)lower_lim_b)*((RUINT32T)shade)/100);
629    
630     upper_lim_r = upper_lim_g = upper_lim_b = 65535;
631     } else {
632     if (shade < 0) shade = 0;
633     if (shade > 100) shade = 100;
634    
635     lower_lim_r = lower_lim_g = lower_lim_b = 0;
636    
637     upper_lim_r = (unsigned int)((((RUINT32T)rm)*((RUINT32T)shade))/100);
638     upper_lim_g = (unsigned int)((((RUINT32T)gm)*((RUINT32T)shade))/100);
639     upper_lim_b = (unsigned int)((((RUINT32T)bm)*((RUINT32T)shade))/100);
640     }
641    
642     /* switch red and blue bytes if necessary, we need it for some weird XServers like XFree86 3.3.3.1 */
643     if ((srcImage->bits_per_pixel == 24) && (mask_r >= 0xFF0000 ))
644     {
645     unsigned int tmp;
646    
647     tmp = lower_lim_r;
648     lower_lim_r = lower_lim_b;
649     lower_lim_b = tmp;
650    
651     tmp = upper_lim_r;
652     upper_lim_r = upper_lim_b;
653     upper_lim_b = tmp;
654     }
655    
656     /* fill our lookup tables */
657     for (i = 0; i <= mask_r>>sh_r; i++)
658     {
659     RUINT32T tmp;
660     tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_r-lower_lim_r));
661     tmp += ((RUINT32T)(mask_r>>sh_r))*((RUINT32T)lower_lim_r);
662     lookup_r[i] = (tmp/65535)<<sh_r;
663     }
664     for (i = 0; i <= mask_g>>sh_g; i++)
665     {
666     RUINT32T tmp;
667     tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_g-lower_lim_g));
668     tmp += ((RUINT32T)(mask_g>>sh_g))*((RUINT32T)lower_lim_g);
669     lookup_g[i] = (tmp/65535)<<sh_g;
670     }
671     for (i = 0; i <= mask_b>>sh_b; i++)
672     {
673     RUINT32T tmp;
674     tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_b-lower_lim_b));
675     tmp += ((RUINT32T)(mask_b>>sh_b))*((RUINT32T)lower_lim_b);
676     lookup_b[i] = (tmp/65535)<<sh_b;
677     }
678    
679     /* apply table to input image (replacing colors by newly calculated ones) */
680     switch (srcImage->bits_per_pixel)
681     {
682     case 15:
683     {
684     unsigned short *p1, *pf, *p, *pl;
685     p1 = (unsigned short *) srcImage->data;
686     pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
687     while (p1 < pf)
688     {
689     p = p1;
690     pl = p1 + srcImage->width;
691     for (; p < pl; p++)
692     {
693     *p = lookup_r[(*p & 0x7c00)>>10] |
694     lookup_g[(*p & 0x03e0)>> 5] |
695     lookup_b[(*p & 0x001f)];
696     }
697     p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
698     }
699     break;
700     }
701     case 16:
702     {
703     unsigned short *p1, *pf, *p, *pl;
704     p1 = (unsigned short *) srcImage->data;
705     pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
706     while (p1 < pf)
707     {
708     p = p1;
709     pl = p1 + srcImage->width;
710     for (; p < pl; p++)
711     {
712     *p = lookup_r[(*p & 0xf800)>>11] |
713     lookup_g[(*p & 0x07e0)>> 5] |
714     lookup_b[(*p & 0x001f)];
715     }
716     p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
717     }
718     break;
719     }
720     case 24:
721     {
722     unsigned char *p1, *pf, *p, *pl;
723     p1 = (unsigned char *) srcImage->data;
724     pf = (unsigned char *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
725     while (p1 < pf)
726     {
727     p = p1;
728     pl = p1 + srcImage->width * 3;
729     for (; p < pl; p += 3)
730     {
731     p[0] = lookup_r[(p[0] & 0xff0000)>>16];
732     p[1] = lookup_r[(p[1] & 0x00ff00)>> 8];
733     p[2] = lookup_r[(p[2] & 0x0000ff)];
734     }
735     p1 = (unsigned char *) ((char *) p1 + srcImage->bytes_per_line);
736     }
737     break;
738     }
739     case 32:
740     {
741     RUINT32T *p1, *pf, *p, *pl;
742     p1 = (RUINT32T *) srcImage->data;
743     pf = (RUINT32T *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
744    
745     while (p1 < pf)
746     {
747     p = p1;
748     pl = p1 + srcImage->width;
749     for (; p < pl; p++)
750     {
751     *p = lookup_r[(*p & 0xff0000)>>16] |
752     lookup_g[(*p & 0x00ff00)>> 8] |
753     lookup_b[(*p & 0x0000ff)] |
754     (*p & ~0xffffff);
755     }
756     p1 = (RUINT32T *) ((char *) p1 + srcImage->bytes_per_line);
757     }
758     break;
759     }
760     }
761    
762     free (lookup);
763     }
764     #endif
765    
766     /*
767     * Check our parents are still who we think they are.
768     * Do transparency updates if required
769     */
770     int
771     rxvt_term::check_our_parents ()
772     {
773     check_our_parents_ev.stop ();
774     check_our_parents_ev.start (NOW + .1);
775     return 0;
776     }
777    
778     void
779     rxvt_term::check_our_parents_cb (time_watcher &w)
780     {
781 sasha 1.52 int i, pchanged, aformat, rootdepth;
782 ayin 1.39 unsigned long nitems, bytes_after;
783     Atom atype;
784     unsigned char *prop = NULL;
785     Window root, oldp, *list;
786     Pixmap rootpixmap = None;
787     XWindowAttributes wattr, wrootattr;
788     int sx, sy;
789     Window cr;
790 sasha 1.52 unsigned int rootpixmap_w = 0, rootpixmap_h = 0;
791 ayin 1.39
792     pchanged = 0;
793    
794     if (!option (Opt_transparent))
795     return /*pchanged*/; /* Don't try any more */
796    
797 sasha 1.52 #if 0
798     struct timeval stv;
799     gettimeofday (&stv,NULL);
800     #define PRINT_BACKGROUND_OP_TIME do{ struct timeval tv;gettimeofday (&tv,NULL); tv.tv_sec-= stv.tv_sec;\
801     fprintf (stderr,"%d: elapsed %ld usec\n",__LINE__,\
802     tv.tv_sec*1000000+tv.tv_usec-stv.tv_usec );}while(0)
803     #else
804     #define PRINT_BACKGROUND_OP_TIME do{}while(0)
805     #endif
806    
807    
808 ayin 1.39 XGetWindowAttributes (dpy, display->root, &wrootattr);
809     rootdepth = wrootattr.depth;
810    
811     XGetWindowAttributes (dpy, parent[0], &wattr);
812    
813     if (rootdepth != wattr.depth)
814     {
815     if (am_transparent)
816     {
817     pchanged = 1;
818     XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
819     am_transparent = am_pixmap_trans = 0;
820     }
821    
822     return /*pchanged*/; /* Don't try any more */
823     }
824    
825     /* Get all X ops out of the queue so that our information is up-to-date. */
826     XSync (dpy, False);
827    
828     XTranslateCoordinates (dpy, parent[0], display->root,
829     0, 0, &sx, &sy, &cr);
830     /* check if we are outside of the visible part of the virtual screen : */
831 ayin 1.51 if( sx + (int)szHint.width <= 0 || sy + (int)szHint.height <= 0
832     || sx >= wrootattr.width || sy >= wrootattr.height )
833 ayin 1.39 return /* 0 */ ;
834     /*
835     * Make the frame window set by the window manager have
836     * the root background. Some window managers put multiple nested frame
837     * windows for each client, so we have to take care about that.
838     */
839     i = (xa[XA_XROOTPMAP_ID]
840     && XGetWindowProperty (dpy, display->root, xa[XA_XROOTPMAP_ID],
841     0L, 1L, False, XA_PIXMAP, &atype, &aformat,
842     &nitems, &bytes_after, &prop) == Success);
843    
844     if (!i || prop == NULL)
845     i = (xa[XA_ESETROOT_PMAP_ID]
846     && XGetWindowProperty (dpy, display->root, xa[XA_ESETROOT_PMAP_ID],
847     0L, 1L, False, XA_PIXMAP, &atype, &aformat,
848     &nitems, &bytes_after, &prop) == Success);
849    
850 sasha 1.52 /* TODO: the below logic needs to be cleaned up */
851 ayin 1.39 if (!i || prop == NULL
852     #if TINTING
853     || (!ISSET_PIXCOLOR (Color_tint) && rs[Rs_shade] == NULL
854     #ifdef HAVE_AFTERIMAGE
855     && original_asim == NULL && rs[Rs_blurradius] == NULL
856     #endif
857     )
858     #endif
859     )
860 sasha 1.52 rootpixmap = None;
861 ayin 1.39 else
862     {
863 sasha 1.52 int junk;
864     unsigned int ujunk;
865     /* root pixmap may be bad - allow a error */
866     allowedxerror = -1;
867     if ((rootpixmap = *(Pixmap *)prop) != None)
868     if (!XGetGeometry (dpy, rootpixmap, &root, &junk, &junk, &rootpixmap_w, &rootpixmap_h, &ujunk, &ujunk))
869     rootpixmap = None;
870     allowedxerror = 0;
871 ayin 1.39 }
872    
873 sasha 1.52 if (prop != NULL)
874     XFree (prop);
875    
876     if (rootpixmap != None)
877 ayin 1.39 {
878 sasha 1.49 Bool success = False;
879 ayin 1.40 GC gc = NULL;
880 ayin 1.39 XGCValues gcvalue;
881 sasha 1.52 int shade = 100;
882     rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC);
883     Bool whole_tint = False, no_tint = True;
884 ayin 1.51
885 sasha 1.52 while (sx < 0) sx += (int)wrootattr.width;
886     while (sy < 0) sy += (int)wrootattr.height;
887 ayin 1.39
888     #if TINTING
889 sasha 1.52 if (rs[Rs_shade])
890     shade = atoi (rs[Rs_shade]);
891     if (ISSET_PIXCOLOR (Color_tint))
892     pix_colors_focused [Color_tint].get (c);
893 sasha 1.49 #define IS_COMPONENT_WHOLESOME(c) ((c) <=0x000700 || (c)>=0x00f700)
894 sasha 1.52 if (shade >= 100)
895     whole_tint = (IS_COMPONENT_WHOLESOME(c.r)
896     && IS_COMPONENT_WHOLESOME(c.g)
897     && IS_COMPONENT_WHOLESOME(c.b));
898     no_tint = (c.r >= 0x00f700 && c.g >= 0x00f700 && c.b >= 0x00f700);
899 sasha 1.49 #undef IS_COMPONENT_WHOLESOME
900 sasha 1.52 #endif /* TINTING */
901     /* theer are no performance advantages to reusing same pixmap */
902     if (pixmap != None)
903     XFreePixmap (dpy, pixmap);
904     pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, rootdepth);
905    
906     #if 0 /* TODO : identify cases where this will be detrimental to performance : */
907     /* we want to tile root pixmap into our own pixmap in this cases :
908     * 1) rootpixmap does not cover our window entirely
909     * 2) whole_tint - we can use server-side tinting or tinting disabled
910     */
911     if ( whole_tint || no_tint || pmap_w < sx + szHint.width || pmap_h < sy + szHint.height)
912     {
913     }
914     #endif
915     gcvalue.tile = rootpixmap;
916     gcvalue.fill_style = FillTiled;
917     gcvalue.ts_x_origin = -sx;
918     gcvalue.ts_y_origin = -sy;
919     gc = XCreateGC (dpy, rootpixmap, GCFillStyle | GCTile | GCTileStipXOrigin | GCTileStipYOrigin, &gcvalue);
920     XFillRectangle (dpy, pixmap, gc, 0, 0, szHint.width, szHint.height);
921 sasha 1.49
922     #if TINTING
923 sasha 1.52 if (whole_tint && !no_tint)
924     {
925     /* In this case we can tint image server-side getting significant
926     * performance improvements, as we eliminate XImage transfer
927     */
928     gcvalue.foreground = Pixel (pix_colors_focused [Color_tint]);
929     gcvalue.function = GXand;
930     gcvalue.fill_style = FillSolid;
931     XChangeGC (dpy, gc, GCFillStyle | GCForeground | GCFunction, &gcvalue);
932     XFillRectangle (dpy, pixmap, gc, 0, 0, szHint.width, szHint.height);
933     }
934     #endif
935     success = True;
936     #ifdef HAVE_AFTERIMAGE
937     if (rs[Rs_blurradius] || original_asim != NULL || (!whole_tint && (!no_tint || shade !=100)))
938     {
939     ARGB32 tint = TINT_LEAVE_SAME;
940     ASImage *back_im = NULL;
941    
942     back_im = pixmap2ximage (asv, pixmap, 0, 0, szHint.width, szHint.height, AllPlanes, 100);
943     if (back_im != NULL)
944     {
945     if (!whole_tint && (!no_tint || shade !=100))
946     {
947     ShadingInfo as_shade;
948     as_shade.shading = shade;
949     as_shade.tintColor.red = c.r;
950     as_shade.tintColor.green = c.g;
951     as_shade.tintColor.blue = c.b;
952     tint = shading2tint32 (&as_shade);
953     }
954    
955     if (rs[Rs_blurradius] && back_im)
956     {
957     double r = atof(rs[Rs_blurradius]);
958     ASImage* tmp = blur_asimage_gauss (asv, back_im, r, r, 0xFFFFFFFF,
959     (original_asim == NULL || tint == TINT_LEAVE_SAME)?ASA_XImage:ASA_ASImage,
960     100, ASIMAGE_QUALITY_DEFAULT);
961     if (tmp)
962     {
963     destroy_asimage (&back_im);
964     back_im = tmp;
965     }
966     }
967    
968     if (original_asim != NULL)
969     {
970     ASImageLayer *layers = create_image_layers (2);
971     ASImage *merged_im = NULL;
972     int fore_w, fore_h;
973    
974     layers[0].im = back_im;
975     layers[0].clip_width = szHint.width;
976     layers[0].clip_height = szHint.height;
977     layers[0].tint = tint;
978     layers[1].im = original_asim;
979     if (bgPixmap.auto_resize)
980     {
981     fore_w = szHint.width;
982     fore_h = szHint.height;
983     }
984     else
985     {
986     fore_w = bgPixmap.w;
987     fore_h = bgPixmap.h;
988     }
989     if (fore_w != original_asim->width
990     || fore_h != original_asim->height)
991     {
992     layers[1].im = scale_asimage (asv,
993     original_asim,
994     fore_w, fore_h,
995     ASA_ASImage, 100,
996     ASIMAGE_QUALITY_DEFAULT);
997     }
998     layers[1].clip_width = szHint.width;
999     layers[1].clip_height = szHint.height;
1000    
1001     if (rs[Rs_blendtype])
1002     {
1003     layers[1].merge_scanlines = blend_scanlines_name2func (rs[Rs_blendtype]);
1004     if (layers[1].merge_scanlines == NULL)
1005     layers[1].merge_scanlines = alphablend_scanlines;
1006     }
1007     PRINT_BACKGROUND_OP_TIME;
1008     merged_im = merge_layers (asv, layers, 2, szHint.width, szHint.height,
1009     ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT);
1010     if (layers[1].im != original_asim)
1011     destroy_asimage (&(layers[1].im));
1012     free (layers);
1013    
1014     if (merged_im != NULL)
1015     {
1016     destroy_asimage (&back_im);
1017     back_im = merged_im;
1018     }
1019     PRINT_BACKGROUND_OP_TIME;
1020     }
1021     else if (tint != TINT_LEAVE_SAME)
1022     {
1023     ASImage* tmp = tile_asimage (asv, back_im, 0, 0, szHint.width, szHint.height, tint, ASA_XImage, 100, ASIMAGE_QUALITY_DEFAULT);
1024     if (tmp)
1025     {
1026     destroy_asimage (&back_im);
1027     back_im = tmp;
1028     }
1029     PRINT_BACKGROUND_OP_TIME;
1030     }
1031     asimage2drawable (asv, pixmap, back_im, gc, 0, 0, 0, 0, szHint.width, szHint.height, True);
1032     destroy_asimage (&back_im);
1033     } /* back_im != NULL */
1034     else
1035     success = False;
1036     }
1037     #else /* HAVE_AFTERIMAGE */
1038 sasha 1.49 #if TINTING
1039 sasha 1.52 if (!whole_tint && (!no_tint || shade !=100))
1040     {
1041     XImage *image = XGetImage (dpy, pixmap, 0, 0, szHint.width, szHint.height, AllPlanes, ZPixmap);
1042     success = False;
1043     if (image != NULL)
1044     {
1045     PRINT_BACKGROUND_OP_TIME;
1046     if (gc == NULL)
1047     gc = XCreateGC (dpy, vt, 0UL, &gcvalue);
1048     if (ISSET_PIXCOLOR (Color_tint) || shade != 100)
1049     ShadeXImage (this, image, shade, c.r, c.g, c.b);
1050     XPutImage (dpy, pixmap, gc, image, 0, 0, 0, 0, image->width, image->height);
1051     XDestroyImage (image);
1052     success = True;
1053     }
1054     }
1055 ayin 1.51 #endif
1056 ayin 1.39 #endif /* HAVE_AFTERIMAGE */
1057 sasha 1.52 PRINT_BACKGROUND_OP_TIME;
1058    
1059 ayin 1.51 if (gc != NULL)
1060 ayin 1.39 XFreeGC (dpy, gc);
1061    
1062     if (!success)
1063     {
1064     if (am_transparent && am_pixmap_trans)
1065     {
1066     pchanged = 1;
1067     if (pixmap != None)
1068     {
1069     XFreePixmap (dpy, pixmap);
1070     pixmap = None;
1071     }
1072     }
1073    
1074     am_pixmap_trans = 0;
1075     }
1076     else
1077     {
1078     XSetWindowBackgroundPixmap (dpy, parent[0], pixmap);
1079     XClearWindow (dpy, parent[0]);
1080    
1081     if (!am_transparent || !am_pixmap_trans)
1082     pchanged = 1;
1083    
1084     am_transparent = am_pixmap_trans = 1;
1085     }
1086 sasha 1.52 } /* rootpixmap != None */
1087 ayin 1.39
1088     if (am_pixmap_trans)
1089     XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
1090     else
1091     {
1092     unsigned int n;
1093     /*
1094     * InheritPixmap transparency
1095     */
1096     for (i = 1; i < (int) (sizeof (parent) / sizeof (Window)); i++)
1097     {
1098     oldp = parent[i];
1099     XQueryTree (dpy, parent[i - 1], &root, &parent[i], &list, &n);
1100     XFree (list);
1101    
1102     if (parent[i] == display->root)
1103     {
1104     if (oldp != None)
1105     pchanged = 1;
1106    
1107     break;
1108     }
1109    
1110     if (oldp != parent[i])
1111     pchanged = 1;
1112     }
1113    
1114     n = 0;
1115    
1116     if (pchanged)
1117     for (; n < (unsigned int)i; n++)
1118     {
1119     XGetWindowAttributes (dpy, parent[n], &wattr);
1120    
1121     if (wattr.depth != rootdepth || wattr.c_class == InputOnly)
1122     {
1123     n = (int) (sizeof (parent) / sizeof (Window)) + 1;
1124     break;
1125     }
1126     }
1127    
1128     if (n > (sizeof (parent) / sizeof (parent[0])))
1129     {
1130     XSetWindowBackground (dpy, parent[0], pix_colors_focused[Color_border]);
1131     XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
1132     am_transparent = 0;
1133     /* XXX: also turn off Opt_transparent? */
1134     }
1135     else
1136     {
1137     for (n = 0; n < (unsigned int)i; n++)
1138     {
1139     XSetWindowBackgroundPixmap (dpy, parent[n], ParentRelative);
1140     XClearWindow (dpy, parent[n]);
1141     }
1142    
1143     XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
1144     am_transparent = 1;
1145     }
1146    
1147     for (; i < (int) (sizeof (parent) / sizeof (Window)); i++)
1148     parent[i] = None;
1149     }
1150    
1151     if (scrollBar.win)
1152     {
1153     XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative);
1154     scrollBar.setIdle ();
1155     scrollbar_show (0);
1156     }
1157    
1158     if (am_transparent)
1159     {
1160     want_refresh = want_full_refresh = 1;
1161     if (am_pixmap_trans)
1162     flush ();
1163     }
1164    
1165     // return pchanged;
1166     }
1167     #endif