ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/xpm.C
Revision: 1.61
Committed: Tue Aug 7 15:23:11 2007 UTC (16 years, 9 months ago) by ayin
Content type: text/plain
Branch: MAIN
Changes since 1.60: +2 -67 lines
Log Message:
Remove parentrelative logic for pseudo transparency.

File Contents

# Content
1 /*----------------------------------------------------------------------*
2 * File: xpm.C
3 *----------------------------------------------------------------------*
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 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
10 *
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 /*
30 * Pixmap geometry string interpretation :
31 * Each geometry string contains zero or one scale/position
32 * adjustment and may optionally be followed by a colon and one or more
33 * colon-delimited pixmap operations.
34 * The following table shows the valid geometry strings and their
35 * affects on the background image :
36 *
37 * WxH+X+Y Set scaling to W% by H%, and position to X% by Y%.
38 * W and H are percentages of the terminal window size.
39 * X and Y are also percentages; e.g., +50+50 centers
40 * the image in the window.
41 * WxH+X Assumes Y == X
42 * WxH Assumes Y == X == 50 (centers the image)
43 * W+X+Y Assumes H == W
44 * W+X Assumes H == W and Y == X
45 * W Assumes H == W and Y == X == 50
46 *
47 * Adjusting position only :
48 * =+X+Y Set position to X% by Y% (absolute).
49 * =+X Set position to X% by X%.
50 * +X+Y Adjust position horizontally X% and vertically Y%
51 * from current position (relative).
52 * +X Adjust position horizontally X% and vertically X%
53 * from current position.
54 *
55 * Adjusting scale only :
56 * Wx0 Multiply horizontal scaling factor by W%
57 * 0xH Multiply vertical scaling factor by H%
58 * 0x0 No scaling (show image at normal size).
59 *
60 * Pixmap Operations : (should be prepended by a colon)
61 * tile Tile image. Scaling/position modifiers above will affect
62 * the tile size and origin.
63 * propscale When scaling, scale proportionally. That is, maintain the
64 * proper aspect ratio for the image. Any portion of the
65 * background not covered by the image is filled with the
66 * current background color.
67 * hscale Scale horizontally, tile vertically ?
68 * vscale Tile horizontally, scale vertically ?
69 * scale Scale both up and down
70 * auto Same as 100x100+50+50
71 */
72
73 #ifdef HAVE_BG_PIXMAP
74 bool
75 bgPixmap_t::window_size_sensitive ()
76 {
77 #ifdef XPM_BACKGROUND
78 #ifdef HAVE_AFTERIMAGE
79 if (original_asim != NULL)
80 #endif
81 {
82 if (h_scale != 0 || v_scale != 0)
83 return true;
84 }
85 #endif
86 #ifdef ENABLE_TRANSPARENCY
87 if (flags & bgPmap_Transparent)
88 return true;
89 #endif
90 return false;
91 }
92
93 #ifdef XPM_BACKGROUND
94 static inline bool
95 check_set_scale_value (int geom_flags, int flag, unsigned int &scale, unsigned int new_value)
96 {
97 if (geom_flags & flag)
98 {
99 if (new_value > 1000)
100 new_value = 1000;
101 if (new_value != scale)
102 {
103 scale = new_value;
104 return true;
105 }
106 }
107 return false;
108 }
109
110 static inline bool
111 check_set_align_value (int geom_flags, int flag, int &align, int new_value)
112 {
113 if (geom_flags & flag)
114 {
115 if (new_value < -100)
116 new_value = -100;
117 else if (new_value > 200)
118 new_value = 200;
119 if (new_value != align)
120 {
121 align = new_value;
122 return true;
123 }
124 }
125 return false;
126 }
127
128 static inline int
129 make_align_position (int align, int window_size, int image_size)
130 {
131 int diff = window_size - image_size;
132 int smaller = MIN (image_size,window_size);
133
134 if (align >= 0 && align <= 50)
135 return diff * align / 100;
136 else if (align > 50 && align <= 100)
137 return window_size - image_size + diff * align / 100;
138 else if (align > 100 && align <= 200 )
139 return ((align - 100) * smaller / 100) + window_size - smaller;
140 else if (align > -100 && align < 0)
141 return ((align + 100) * smaller / 100) - image_size;
142 return 0;
143 }
144
145 static inline void
146 make_clip_rectangle (int pos, int size, int target_size, int &clip_pos, int &clip_size)
147 {
148 if (size <= 0)
149 { /* special case - tiling */
150 clip_pos = pos;
151 clip_size = target_size;
152 }
153 else if (pos < 0)
154 {
155 clip_pos = 0;
156 clip_size = MIN (target_size, size + pos);
157 }
158 else
159 {
160 clip_pos = pos;
161 clip_size = size;
162 if (pos < target_size && (int)clip_size > target_size - pos)
163 clip_pos = target_size - pos;
164 }
165 }
166
167 bool
168 bgPixmap_t::handle_geometry (const char *geom)
169 {
170 int geom_flags = 0, changed = 0;
171 int x = 0, y = 0;
172 unsigned int w = 0, h = 0;
173 unsigned int n;
174 unsigned long new_flags = (flags&(~bgPmap_geometryFlags));
175 char *p;
176 #define MAXLEN_GEOM 256 /* could be longer then regular geometry string */
177
178 if (geom == NULL)
179 return false;
180
181 char str[MAXLEN_GEOM];
182
183 if (!strcmp (geom, "?"))
184 {
185 #if 0 /* TODO: */
186 sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */
187 min (h_scale, 32767), min (v_scale, 32767),
188 min (h_align, 32767), min (v_align, 32767));
189 process_xterm_seq (XTerm_title, str, CHAR_ST);
190 #endif
191 return false;
192 }
193 while (isspace(*geom)) ++geom;
194 if ((p = strchr (geom, ';')) == NULL)
195 p = strchr (geom, '\0');
196
197 n = (p - geom);
198 if (n < MAXLEN_GEOM)
199 {
200 char *ops;
201 new_flags |= bgPmap_geometrySet;
202
203 strncpy (str, geom, n);
204 str[n] = '\0';
205 if (str[0] == ':')
206 ops = &str[0];
207 else if (str[0] != 'x' && str[0] != 'X' && isalpha(str[0]))
208 ops = &str[0];
209 else
210 {
211 char *tmp;
212 ops = strchr (str, ':');
213 if (ops != NULL)
214 {
215 for (tmp = ops-1; tmp >= str && isspace(*tmp); --tmp);
216 *(++tmp) = '\0';
217 if (ops == tmp) ++ops;
218 }
219 }
220
221 if (ops > str || ops == NULL)
222 {
223 /* we have geometry string - let's handle it prior to applying ops */
224 geom_flags = XParseGeometry (str, &x, &y, &w, &h);
225
226 if ((geom_flags & XValue) && !(geom_flags & YValue))
227 {
228 y = x;
229 geom_flags |= YValue;
230 }
231
232 if (flags & bgPmap_geometrySet)
233 {/* new geometry is an adjustment to the old one ! */
234 if ((geom_flags & WidthValue) && (geom_flags & HeightValue))
235 {
236 if (w == 0 && h != 0)
237 {
238 w = h_scale;
239 h = (v_scale * h) / 100;
240 }
241 else if (h == 0 && w != 0)
242 {
243 w = (h_scale * w) / 100;
244 h = v_scale;
245 }
246 }
247 if (geom_flags & XValue)
248 {
249 if (str[0] != '=')
250 {
251 y += v_align;
252 x += h_align;
253 }
254 }
255 }
256 else /* setting up geometry from scratch */
257 {
258 if (!(geom_flags & XValue))
259 {/* use default geometry - centered */
260 x = y = bgPmap_defaultAlign;
261 }
262 else if (!(geom_flags & YValue))
263 y = x;
264
265 if ((geom_flags & (WidthValue|HeightValue)) == 0)
266 {/* use default geometry - scaled */
267 w = h = bgPmap_defaultScale;
268 }
269 else if (geom_flags & WidthValue)
270 {
271 if (!(geom_flags & HeightValue))
272 h = w;
273 }
274 else
275 w = h;
276 }
277 } /* done parsing geometry string */
278 else if (!(flags & bgPmap_geometrySet))
279 { /* default geometry - scaled and centered */
280 x = y = bgPmap_defaultAlign;
281 w = h = bgPmap_defaultScale;
282 }
283
284 if (!(flags & bgPmap_geometrySet))
285 geom_flags |= WidthValue|HeightValue|XValue|YValue;
286
287 if (ops)
288 {
289 while (*ops)
290 {
291 while (*ops == ':' || isspace(*ops)) ++ops;
292 #define CHECK_GEOM_OPS(op_str) (strncasecmp (ops, (op_str), sizeof(op_str)-1) == 0)
293 if (CHECK_GEOM_OPS("tile"))
294 {
295 w = h = 0;
296 geom_flags |= WidthValue|HeightValue;
297 }
298 else if (CHECK_GEOM_OPS("propscale"))
299 {
300 if (w == 0 && h == 0)
301 {
302 w = 100;
303 geom_flags |= WidthValue;
304 }
305 new_flags |= bgPmap_propScale;
306 }
307 else if (CHECK_GEOM_OPS("hscale"))
308 {
309 if (w == 0)
310 w = 100;
311 h = 0;
312 geom_flags |= WidthValue|HeightValue;
313 }
314 else if (CHECK_GEOM_OPS("vscale"))
315 {
316 if (h == 0)
317 h = 100;
318 w = 0;
319 geom_flags |= WidthValue|HeightValue;
320 }
321 else if (CHECK_GEOM_OPS("scale"))
322 {
323 if (h == 0)
324 h = 100;
325 if (w == 0)
326 w = 100;
327 geom_flags |= WidthValue|HeightValue;
328 }
329 else if (CHECK_GEOM_OPS("auto"))
330 {
331 w = h = 100;
332 x = y = 50;
333 geom_flags |= WidthValue|HeightValue|XValue|YValue;
334 }
335 #undef CHECK_GEOM_OPS
336 while (*ops != ':' && *ops != '\0') ++ops;
337 } /* done parsing ops */
338 }
339
340 if (check_set_scale_value (geom_flags, WidthValue, h_scale, w))
341 ++changed;
342 if (check_set_scale_value (geom_flags, HeightValue, v_scale, h))
343 ++changed;
344 if (check_set_align_value (geom_flags, XValue, h_align, x))
345 ++changed;
346 if (check_set_align_value (geom_flags, YValue, v_align, y))
347 ++changed;
348 }
349
350 if (new_flags != flags)
351 {
352 flags = new_flags;
353 changed++;
354 }
355 //fprintf( stderr, "flags = %lX, scale = %ux%u, align=%+d%+d\n",
356 // flags, h_scale, v_scale, h_align, v_align);
357 return (changed > 0);
358 }
359
360 #ifdef HAVE_AFTERIMAGE
361 bool
362 bgPixmap_t::render_asim (rxvt_term *target, ASImage *background, ARGB32 background_tint)
363 {
364 if (target == NULL)
365 return false;
366
367 int target_width = (int)target->szHint.width;
368 int target_height = (int)target->szHint.height;
369 int new_pmap_width = target_width, new_pmap_height = target_height;
370 ASImage *result = NULL;
371
372 int x = 0;
373 int y = 0;
374 int w = h_scale * target_width / 100;
375 int h = v_scale * target_height / 100;
376
377 if (original_asim)
378 {
379 x = make_align_position (h_align, target_width, w > 0 ? w : (int)original_asim->width);
380 y = make_align_position (v_align, target_height, h > 0 ? h : (int)original_asim->height);
381 }
382
383 int dst_x, dst_y;
384 int clip_width, clip_height;
385
386 make_clip_rectangle (x, w, target_width, dst_x, clip_width);
387 make_clip_rectangle (y, h, target_height, dst_y, clip_height);
388
389 /* TODO : actuall scaling code :) */
390 if (dst_x >= target_width || dst_y >= target_height
391 || clip_width <= 0 || clip_height <= 0 || original_asim == NULL)
392 {
393 result = background;
394 dst_x = dst_y = 0;
395 if (background)
396 {
397 new_pmap_width = clip_width = background->width;
398 new_pmap_height = clip_height = background->height;
399 }
400 else
401 new_pmap_width = new_pmap_height = 0;
402 }
403 else
404 {
405 result = original_asim;
406 if ((w > 0 && w != original_asim->width)
407 || (h > 0 && h != original_asim->height))
408 {
409 result = scale_asimage (target->asv, original_asim,
410 w > 0 ? w : original_asim->width,
411 h > 0 ? h : original_asim->height,
412 background ? ASA_ASImage : ASA_XImage,
413 100, ASIMAGE_QUALITY_DEFAULT);
414 }
415 if (background == NULL)
416 {/* if tiling - pixmap has to be sized exactly as the image */
417 if (h_scale == 0)
418 new_pmap_width = result->width;
419 if (v_scale == 0)
420 new_pmap_height = result->height;
421 }
422 else
423 {/* if blending background and image - pixmap has to be sized same as target window */
424 ASImageLayer *layers = create_image_layers (2);
425 ASImage *merged_im = NULL;
426
427 layers[0].im = background;
428 layers[0].clip_width = target_width;
429 layers[0].clip_height = target_height;
430 layers[0].tint = background_tint;
431 layers[1].im = result;
432 if (w <= 0)
433 {/* tile horizontally */
434 layers[1].dst_x = dst_x - (int)result->width;
435 layers[1].clip_width = result->width;
436 }
437 else
438 {/* clip horizontally */
439 layers[1].dst_x = dst_x;
440 layers[1].clip_width = clip_width;
441 }
442 if (h <= 0)
443 {
444 layers[1].dst_y = dst_y - (int)result->height;
445 layers[1].clip_height = result->height;
446 }
447 else
448 {
449 layers[1].dst_y = dst_y;
450 layers[1].clip_height = clip_height;
451 }
452 if (target->rs[Rs_blendtype])
453 {
454 layers[1].merge_scanlines = blend_scanlines_name2func (target->rs[Rs_blendtype]);
455 if (layers[1].merge_scanlines == NULL)
456 layers[1].merge_scanlines = alphablend_scanlines;
457 }
458 ASImage *tmp = merge_layers (target->asv, layers, 2, target_width, target_height,
459 ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT);
460 if (tmp)
461 {
462 if (result != original_asim)
463 destroy_asimage (&result);
464 result = tmp;
465 dst_x = dst_y = 0;
466 clip_width = target_width;
467 clip_height = target_height;
468 }
469 free (layers);
470 }
471 }
472
473 if (pixmap)
474 {
475 if (result == NULL
476 || pmap_width != new_pmap_width
477 || pmap_height != new_pmap_height
478 || pmap_depth != target->depth)
479 {
480 XFreePixmap (target->dpy, pixmap);
481 pixmap = None;
482 }
483 }
484
485 if (result)
486 {
487 XGCValues gcv;
488 GC gc;
489
490 /* create Pixmap */
491 if (pixmap == None)
492 {
493 pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth);
494 pmap_width = new_pmap_width;
495 pmap_height = new_pmap_height;
496 pmap_depth = target->depth;
497 }
498 /* fill with background color ( if result's not completely overlapping it)*/
499 gcv.foreground = target->pix_colors[Color_bg];
500 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv);
501
502 if (dst_x > 0 || dst_y > 0
503 || dst_x + clip_width < new_pmap_width
504 || dst_y + clip_height < new_pmap_height)
505 {
506 XFillRectangle (target->dpy, pixmap, gc, 0, 0, new_pmap_width, new_pmap_height);
507 }
508 /* put result on pixmap */
509 asimage2drawable (target->asv, pixmap, result, gc, 0, 0, dst_x, dst_y, clip_width, clip_height, True);
510
511 /* set target's background to pixmap */
512 XSetWindowBackgroundPixmap (target->dpy, target->vt, pixmap);
513
514 XFreeGC (target->dpy, gc);
515 }
516 else
517 {
518 /* set target background to a pixel */
519 XSetWindowBackground (target->dpy, target->vt, target->pix_colors[Color_bg]);
520 }
521
522 return true;
523 }
524 #endif
525
526 void
527 rxvt_term::resize_pixmap ()
528 {
529 XGCValues gcvalue;
530 GC gc;
531 unsigned int w = bgPixmap.h_scale*szHint.width/100;
532 unsigned int h = bgPixmap.v_scale*szHint.height/100;
533 int x = bgPixmap.h_align*szHint.width/100;
534 int y = bgPixmap.v_align*szHint.height/100;
535 #ifdef HAVE_AFTERIMAGE
536 ASImage *im = bgPixmap.original_asim;
537 #else
538 void *im = NULL;
539 #endif
540 /* preliminary cleanup - this needs to be integrated with check_our_parents() code */
541 if (bgPixmap.pixmap != None)
542 {
543 XFreePixmap (dpy, bgPixmap.pixmap);
544 bgPixmap.pixmap = None ;
545 }
546 #ifdef ENABLE_TRANSPARENCY
547 if (option(Opt_transparent) && am_transparent)
548 {
549 /* we need to re-generate transparency pixmap in that case ! */
550 check_our_parents ();
551 return;
552 }
553 #endif
554
555 if (im == NULL)
556 { /* So be it: I'm not using pixmaps */
557 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
558 return;
559 }
560
561 gcvalue.foreground = pix_colors[Color_bg];
562 gc = XCreateGC (dpy, vt, GCForeground, &gcvalue);
563
564 /* don't zoom pixmap too much nor expand really small pixmaps */
565 if (w > 16000)
566 w = 1;
567 if (h > 16000)
568 h = 1;
569
570 #ifdef HAVE_AFTERIMAGE
571 if (w == 0)
572 w = im->width;
573 if (h == 0)
574 h = im->height;
575
576 if (w != im->width || h != im->height)
577 {
578 ASImage *tmp = scale_asimage (asv, im, w, h, (x == 0 && y == 0)?ASA_XImage:ASA_ASImage, 0, ASIMAGE_QUALITY_DEFAULT);
579 if (tmp != NULL)
580 im = tmp;
581 }
582 bgPixmap.pmap_width = MIN(w,szHint.width);
583 bgPixmap.pmap_height = MIN(h,szHint.height);
584 #if 0 /* TODO: fix that! */
585 if (x != 0 || y != 0)
586 {
587 ASImage *tmp = tile_asimage (asv, im, x, y, w, h, TINT_LEAVE_SAME, ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT);
588 if (tmp != NULL)
589 {
590 if (im != bgPixmap.original_asim)
591 destroy_asimage (&im);
592 im = tmp;
593 }
594 }
595 #endif
596 bgPixmap.pixmap = XCreatePixmap (dpy, vt, bgPixmap.pmap_width, bgPixmap.pmap_height, depth);
597 bgPixmap.pmap_depth = depth;
598
599 asimage2drawable (asv, bgPixmap.pixmap, im, gc, 0, 0, 0, 0, bgPixmap.pmap_width, bgPixmap.pmap_height, True);
600
601 if (im != bgPixmap.original_asim)
602 destroy_asimage (&im);
603 #endif
604 if( bgPixmap.pixmap )
605 XSetWindowBackgroundPixmap (dpy, vt, bgPixmap.pixmap);
606
607 XFreeGC (dpy, gc);
608 }
609
610 void
611 rxvt_term::set_bgPixmap (const char *file)
612 {
613 char *f;
614
615 assert (file != NULL);
616
617 if (bgPixmap.pixmap != None)
618 {
619 XFreePixmap (dpy, bgPixmap.pixmap);
620 bgPixmap.pixmap = None;
621 }
622
623 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
624 if (*file != '\0')
625 {
626 #ifdef HAVE_AFTERIMAGE
627 if (asimman == NULL)
628 asimman = create_generic_imageman(rs[Rs_path]);
629 if ((f = strchr (file, ';')) == NULL)
630 bgPixmap.original_asim = get_asimage( asimman, file, 0xFFFFFFFF, 100 );
631 else
632 {
633 size_t len = f - file;
634 f = (char *)malloc (len + 1);
635 strncpy (f, file, len);
636 f[len] = '\0';
637 bgPixmap.original_asim = get_asimage( asimman, f, 0xFFFFFFFF, 100 );
638 free( f );
639 }
640 #endif
641 }
642
643 resize_pixmap ();
644 }
645
646 #endif /* XPM_BACKGROUND */
647 #endif /* HAVE_BG_PIXMAP */
648
649 #ifdef ENABLE_TRANSPARENCY
650 #ifndef HAVE_AFTERIMAGE
651 /* taken from aterm-0.4.2 */
652
653 typedef uint32_t RUINT32T;
654
655 static void
656 ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm)
657 {
658 int sh_r, sh_g, sh_b;
659 RUINT32T mask_r, mask_g, mask_b;
660 RUINT32T *lookup, *lookup_r, *lookup_g, *lookup_b;
661 unsigned int lower_lim_r, lower_lim_g, lower_lim_b;
662 unsigned int upper_lim_r, upper_lim_g, upper_lim_b;
663 int i;
664
665 Visual *visual = term->visual;
666
667 if( visual->c_class != TrueColor || srcImage->format != ZPixmap ) return ;
668
669 /* for convenience */
670 mask_r = visual->red_mask;
671 mask_g = visual->green_mask;
672 mask_b = visual->blue_mask;
673
674 /* boring lookup table pre-initialization */
675 switch (srcImage->bits_per_pixel) {
676 case 15:
677 if ((mask_r != 0x7c00) ||
678 (mask_g != 0x03e0) ||
679 (mask_b != 0x001f))
680 return;
681 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+32+32));
682 lookup_r = lookup;
683 lookup_g = lookup+32;
684 lookup_b = lookup+32+32;
685 sh_r = 10;
686 sh_g = 5;
687 sh_b = 0;
688 break;
689 case 16:
690 if ((mask_r != 0xf800) ||
691 (mask_g != 0x07e0) ||
692 (mask_b != 0x001f))
693 return;
694 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(32+64+32));
695 lookup_r = lookup;
696 lookup_g = lookup+32;
697 lookup_b = lookup+32+64;
698 sh_r = 11;
699 sh_g = 5;
700 sh_b = 0;
701 break;
702 case 24:
703 if ((mask_r != 0xff0000) ||
704 (mask_g != 0x00ff00) ||
705 (mask_b != 0x0000ff))
706 return;
707 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
708 lookup_r = lookup;
709 lookup_g = lookup+256;
710 lookup_b = lookup+256+256;
711 sh_r = 16;
712 sh_g = 8;
713 sh_b = 0;
714 break;
715 case 32:
716 if ((mask_r != 0xff0000) ||
717 (mask_g != 0x00ff00) ||
718 (mask_b != 0x0000ff))
719 return;
720 lookup = (RUINT32T *) malloc (sizeof (RUINT32T)*(256+256+256));
721 lookup_r = lookup;
722 lookup_g = lookup+256;
723 lookup_b = lookup+256+256;
724 sh_r = 16;
725 sh_g = 8;
726 sh_b = 0;
727 break;
728 default:
729 return; /* we do not support this color depth */
730 }
731
732 /* prepare limits for color transformation (each channel is handled separately) */
733 if (shade < 0) {
734 shade = -shade;
735 if (shade < 0) shade = 0;
736 if (shade > 100) shade = 100;
737
738 lower_lim_r = 65535-rm;
739 lower_lim_g = 65535-gm;
740 lower_lim_b = 65535-bm;
741
742 lower_lim_r = 65535-(unsigned int)(((RUINT32T)lower_lim_r)*((RUINT32T)shade)/100);
743 lower_lim_g = 65535-(unsigned int)(((RUINT32T)lower_lim_g)*((RUINT32T)shade)/100);
744 lower_lim_b = 65535-(unsigned int)(((RUINT32T)lower_lim_b)*((RUINT32T)shade)/100);
745
746 upper_lim_r = upper_lim_g = upper_lim_b = 65535;
747 } else {
748 if (shade < 0) shade = 0;
749 if (shade > 100) shade = 100;
750
751 lower_lim_r = lower_lim_g = lower_lim_b = 0;
752
753 upper_lim_r = (unsigned int)((((RUINT32T)rm)*((RUINT32T)shade))/100);
754 upper_lim_g = (unsigned int)((((RUINT32T)gm)*((RUINT32T)shade))/100);
755 upper_lim_b = (unsigned int)((((RUINT32T)bm)*((RUINT32T)shade))/100);
756 }
757
758 /* switch red and blue bytes if necessary, we need it for some weird XServers like XFree86 3.3.3.1 */
759 if ((srcImage->bits_per_pixel == 24) && (mask_r >= 0xFF0000 ))
760 {
761 unsigned int tmp;
762
763 tmp = lower_lim_r;
764 lower_lim_r = lower_lim_b;
765 lower_lim_b = tmp;
766
767 tmp = upper_lim_r;
768 upper_lim_r = upper_lim_b;
769 upper_lim_b = tmp;
770 }
771
772 /* fill our lookup tables */
773 for (i = 0; i <= mask_r>>sh_r; i++)
774 {
775 RUINT32T tmp;
776 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_r-lower_lim_r));
777 tmp += ((RUINT32T)(mask_r>>sh_r))*((RUINT32T)lower_lim_r);
778 lookup_r[i] = (tmp/65535)<<sh_r;
779 }
780 for (i = 0; i <= mask_g>>sh_g; i++)
781 {
782 RUINT32T tmp;
783 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_g-lower_lim_g));
784 tmp += ((RUINT32T)(mask_g>>sh_g))*((RUINT32T)lower_lim_g);
785 lookup_g[i] = (tmp/65535)<<sh_g;
786 }
787 for (i = 0; i <= mask_b>>sh_b; i++)
788 {
789 RUINT32T tmp;
790 tmp = ((RUINT32T)i)*((RUINT32T)(upper_lim_b-lower_lim_b));
791 tmp += ((RUINT32T)(mask_b>>sh_b))*((RUINT32T)lower_lim_b);
792 lookup_b[i] = (tmp/65535)<<sh_b;
793 }
794
795 /* apply table to input image (replacing colors by newly calculated ones) */
796 switch (srcImage->bits_per_pixel)
797 {
798 case 15:
799 {
800 unsigned short *p1, *pf, *p, *pl;
801 p1 = (unsigned short *) srcImage->data;
802 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
803 while (p1 < pf)
804 {
805 p = p1;
806 pl = p1 + srcImage->width;
807 for (; p < pl; p++)
808 {
809 *p = lookup_r[(*p & 0x7c00)>>10] |
810 lookup_g[(*p & 0x03e0)>> 5] |
811 lookup_b[(*p & 0x001f)];
812 }
813 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
814 }
815 break;
816 }
817 case 16:
818 {
819 unsigned short *p1, *pf, *p, *pl;
820 p1 = (unsigned short *) srcImage->data;
821 pf = (unsigned short *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
822 while (p1 < pf)
823 {
824 p = p1;
825 pl = p1 + srcImage->width;
826 for (; p < pl; p++)
827 {
828 *p = lookup_r[(*p & 0xf800)>>11] |
829 lookup_g[(*p & 0x07e0)>> 5] |
830 lookup_b[(*p & 0x001f)];
831 }
832 p1 = (unsigned short *) ((char *) p1 + srcImage->bytes_per_line);
833 }
834 break;
835 }
836 case 24:
837 {
838 unsigned char *p1, *pf, *p, *pl;
839 p1 = (unsigned char *) srcImage->data;
840 pf = (unsigned char *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
841 while (p1 < pf)
842 {
843 p = p1;
844 pl = p1 + srcImage->width * 3;
845 for (; p < pl; p += 3)
846 {
847 p[0] = lookup_r[(p[0] & 0xff0000)>>16];
848 p[1] = lookup_r[(p[1] & 0x00ff00)>> 8];
849 p[2] = lookup_r[(p[2] & 0x0000ff)];
850 }
851 p1 = (unsigned char *) ((char *) p1 + srcImage->bytes_per_line);
852 }
853 break;
854 }
855 case 32:
856 {
857 RUINT32T *p1, *pf, *p, *pl;
858 p1 = (RUINT32T *) srcImage->data;
859 pf = (RUINT32T *) (srcImage->data + srcImage->height * srcImage->bytes_per_line);
860
861 while (p1 < pf)
862 {
863 p = p1;
864 pl = p1 + srcImage->width;
865 for (; p < pl; p++)
866 {
867 *p = lookup_r[(*p & 0xff0000)>>16] |
868 lookup_g[(*p & 0x00ff00)>> 8] |
869 lookup_b[(*p & 0x0000ff)] |
870 (*p & ~0xffffff);
871 }
872 p1 = (RUINT32T *) ((char *) p1 + srcImage->bytes_per_line);
873 }
874 break;
875 }
876 }
877
878 free (lookup);
879 }
880 #endif
881
882 /*
883 * Check our parents are still who we think they are.
884 * Do transparency updates if required
885 */
886 int
887 rxvt_term::check_our_parents ()
888 {
889 check_our_parents_ev.stop ();
890 check_our_parents_ev.start (NOW + .1);
891 return 0;
892 }
893
894 void
895 rxvt_term::check_our_parents_cb (time_watcher &w)
896 {
897 int i, pchanged, aformat, rootdepth;
898 unsigned long nitems, bytes_after;
899 Atom atype;
900 unsigned char *prop = NULL;
901 Window root, oldp, *list;
902 Pixmap rootpixmap = None;
903 XWindowAttributes wattr, wrootattr;
904 int sx, sy;
905 Window cr;
906 unsigned int rootpixmap_w = 0, rootpixmap_h = 0;
907
908 pchanged = 0;
909
910 if (!option (Opt_transparent))
911 return /*pchanged*/; /* Don't try any more */
912
913 #if 0
914 struct timeval stv;
915 gettimeofday (&stv,NULL);
916 #define PRINT_BACKGROUND_OP_TIME do{ struct timeval tv;gettimeofday (&tv,NULL); tv.tv_sec-= stv.tv_sec;\
917 fprintf (stderr,"%d: elapsed %ld usec\n",__LINE__,\
918 tv.tv_sec*1000000+tv.tv_usec-stv.tv_usec );}while(0)
919 #else
920 #define PRINT_BACKGROUND_OP_TIME do{}while(0)
921 #endif
922
923
924 XGetWindowAttributes (dpy, display->root, &wrootattr);
925 rootdepth = wrootattr.depth;
926
927 XGetWindowAttributes (dpy, parent[0], &wattr);
928
929 if (rootdepth != wattr.depth)
930 {
931 if (am_transparent)
932 {
933 pchanged = 1;
934 XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
935 am_transparent = am_pixmap_trans = 0;
936 }
937
938 return /*pchanged*/; /* Don't try any more */
939 }
940
941 /* Get all X ops out of the queue so that our information is up-to-date. */
942 XSync (dpy, False);
943
944 XTranslateCoordinates (dpy, parent[0], display->root,
945 0, 0, &sx, &sy, &cr);
946 /* check if we are outside of the visible part of the virtual screen : */
947 if( sx + (int)szHint.width <= 0 || sy + (int)szHint.height <= 0
948 || sx >= wrootattr.width || sy >= wrootattr.height )
949 return /* 0 */ ;
950 /*
951 * Make the frame window set by the window manager have
952 * the root background. Some window managers put multiple nested frame
953 * windows for each client, so we have to take care about that.
954 */
955 i = (xa[XA_XROOTPMAP_ID]
956 && XGetWindowProperty (dpy, display->root, xa[XA_XROOTPMAP_ID],
957 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
958 &nitems, &bytes_after, &prop) == Success);
959
960 if (!i || prop == NULL)
961 i = (xa[XA_ESETROOT_PMAP_ID]
962 && XGetWindowProperty (dpy, display->root, xa[XA_ESETROOT_PMAP_ID],
963 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
964 &nitems, &bytes_after, &prop) == Success);
965
966 if (!i || prop == NULL)
967 rootpixmap = None;
968 else
969 {
970 int junk;
971 unsigned int ujunk;
972 /* root pixmap may be bad - allow a error */
973 allowedxerror = -1;
974 if ((rootpixmap = *(Pixmap *)prop) != None)
975 if (!XGetGeometry (dpy, rootpixmap, &root, &junk, &junk, &rootpixmap_w, &rootpixmap_h, &ujunk, &ujunk))
976 rootpixmap = None;
977 allowedxerror = 0;
978 }
979
980 if (prop != NULL)
981 XFree (prop);
982
983 if (rootpixmap != None)
984 {
985 Bool success = False;
986 GC gc = NULL;
987 XGCValues gcvalue;
988 int shade = 100;
989 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC);
990 Bool whole_tint = False, no_tint = True;
991
992 while (sx < 0) sx += (int)wrootattr.width;
993 while (sy < 0) sy += (int)wrootattr.height;
994
995 if (rs[Rs_shade])
996 shade = atoi (rs[Rs_shade]);
997 if (ISSET_PIXCOLOR (Color_tint))
998 pix_colors_focused [Color_tint].get (c);
999 #define IS_COMPONENT_WHOLESOME(c) ((c) <=0x000700 || (c)>=0x00f700)
1000 if (shade >= 100)
1001 whole_tint = (IS_COMPONENT_WHOLESOME(c.r)
1002 && IS_COMPONENT_WHOLESOME(c.g)
1003 && IS_COMPONENT_WHOLESOME(c.b));
1004 no_tint = (c.r >= 0x00f700 && c.g >= 0x00f700 && c.b >= 0x00f700);
1005 #undef IS_COMPONENT_WHOLESOME
1006 /* theer are no performance advantages to reusing same pixmap */
1007 if (bgPixmap.pixmap != None)
1008 XFreePixmap (dpy, bgPixmap.pixmap);
1009 bgPixmap.pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, rootdepth);
1010 bgPixmap.pmap_width = szHint.width;
1011 bgPixmap.pmap_height = szHint.height;
1012 bgPixmap.pmap_depth = rootdepth;
1013
1014 #if 0 /* TODO : identify cases where this will be detrimental to performance : */
1015 /* we want to tile root pixmap into our own pixmap in this cases :
1016 * 1) rootpixmap does not cover our window entirely
1017 * 2) whole_tint - we can use server-side tinting or tinting disabled
1018 */
1019 if ( whole_tint || no_tint || pmap_w < sx + szHint.width || pmap_h < sy + szHint.height)
1020 {
1021 }
1022 #endif
1023 gcvalue.tile = rootpixmap;
1024 gcvalue.fill_style = FillTiled;
1025 gcvalue.ts_x_origin = -sx;
1026 gcvalue.ts_y_origin = -sy;
1027 gc = XCreateGC (dpy, rootpixmap, GCFillStyle | GCTile | GCTileStipXOrigin | GCTileStipYOrigin, &gcvalue);
1028 XFillRectangle (dpy, bgPixmap.pixmap, gc, 0, 0, szHint.width, szHint.height);
1029
1030 if (whole_tint && !no_tint)
1031 {
1032 /* In this case we can tint image server-side getting significant
1033 * performance improvements, as we eliminate XImage transfer
1034 */
1035 gcvalue.foreground = Pixel (pix_colors_focused [Color_tint]);
1036 gcvalue.function = GXand;
1037 gcvalue.fill_style = FillSolid;
1038 XChangeGC (dpy, gc, GCFillStyle | GCForeground | GCFunction, &gcvalue);
1039 XFillRectangle (dpy, bgPixmap.pixmap, gc, 0, 0, szHint.width, szHint.height);
1040 }
1041 success = True;
1042 #ifdef HAVE_AFTERIMAGE
1043 if (rs[Rs_blurradius] || bgPixmap.original_asim != NULL || (!whole_tint && (!no_tint || shade !=100)))
1044 {
1045 ARGB32 tint = TINT_LEAVE_SAME;
1046 ASImage *back_im = NULL;
1047
1048 back_im = pixmap2ximage (asv, bgPixmap.pixmap, 0, 0, szHint.width, szHint.height, AllPlanes, 100);
1049 if (back_im != NULL)
1050 {
1051 if (!whole_tint && (!no_tint || shade !=100))
1052 {
1053 ShadingInfo as_shade;
1054 as_shade.shading = shade;
1055 as_shade.tintColor.red = c.r;
1056 as_shade.tintColor.green = c.g;
1057 as_shade.tintColor.blue = c.b;
1058 tint = shading2tint32 (&as_shade);
1059 }
1060
1061 if (rs[Rs_blurradius] && back_im)
1062 {
1063 ASImage* tmp;
1064 int junk;
1065 unsigned int hr = 1, vr = 1;
1066 int flags = XParseGeometry (rs[Rs_blurradius], &junk, &junk, &hr, &vr);
1067 if (!(flags&WidthValue))
1068 hr = 1;
1069 if (!(flags&HeightValue))
1070 vr = hr;
1071 tmp = blur_asimage_gauss (asv, back_im, hr, vr, 0xFFFFFFFF,
1072 (bgPixmap.original_asim == NULL || tint == TINT_LEAVE_SAME)?ASA_XImage:ASA_ASImage,
1073 100, ASIMAGE_QUALITY_DEFAULT);
1074 if (tmp)
1075 {
1076 destroy_asimage (&back_im);
1077 back_im = tmp;
1078 }
1079 }
1080
1081 if (bgPixmap.original_asim != NULL)
1082 {
1083 ASImageLayer *layers = create_image_layers (2);
1084 ASImage *merged_im = NULL;
1085 int fore_w, fore_h;
1086
1087 layers[0].im = back_im;
1088 layers[0].clip_width = szHint.width;
1089 layers[0].clip_height = szHint.height;
1090 layers[0].tint = tint;
1091 layers[1].im = bgPixmap.original_asim;
1092
1093 fore_w = (bgPixmap.h_scale == 0) ? bgPixmap.original_asim->width : bgPixmap.h_scale*szHint.width/100;
1094 fore_h = (bgPixmap.v_scale == 0) ? bgPixmap.original_asim->height : bgPixmap.v_scale*szHint.height/100;
1095
1096 if (fore_w != bgPixmap.original_asim->width
1097 || fore_h != bgPixmap.original_asim->height)
1098 {
1099 layers[1].im = scale_asimage (asv,
1100 bgPixmap.original_asim,
1101 fore_w, fore_h,
1102 ASA_ASImage, 100,
1103 ASIMAGE_QUALITY_DEFAULT);
1104 }
1105 layers[1].clip_width = szHint.width;
1106 layers[1].clip_height = szHint.height;
1107
1108 if (rs[Rs_blendtype])
1109 {
1110 layers[1].merge_scanlines = blend_scanlines_name2func (rs[Rs_blendtype]);
1111 if (layers[1].merge_scanlines == NULL)
1112 layers[1].merge_scanlines = alphablend_scanlines;
1113 }
1114 PRINT_BACKGROUND_OP_TIME;
1115 merged_im = merge_layers (asv, layers, 2, szHint.width, szHint.height,
1116 ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT);
1117 if (layers[1].im != bgPixmap.original_asim)
1118 destroy_asimage (&(layers[1].im));
1119 free (layers);
1120
1121 if (merged_im != NULL)
1122 {
1123 destroy_asimage (&back_im);
1124 back_im = merged_im;
1125 }
1126 PRINT_BACKGROUND_OP_TIME;
1127 }
1128 else if (tint != TINT_LEAVE_SAME)
1129 {
1130 ASImage* tmp = tile_asimage (asv, back_im, 0, 0, szHint.width, szHint.height, tint, ASA_XImage, 100, ASIMAGE_QUALITY_DEFAULT);
1131 if (tmp)
1132 {
1133 destroy_asimage (&back_im);
1134 back_im = tmp;
1135 }
1136 PRINT_BACKGROUND_OP_TIME;
1137 }
1138 asimage2drawable (asv, bgPixmap.pixmap, back_im, gc, 0, 0, 0, 0, szHint.width, szHint.height, True);
1139 destroy_asimage (&back_im);
1140 } /* back_im != NULL */
1141 else
1142 success = False;
1143 }
1144 #else /* HAVE_AFTERIMAGE */
1145 if (!whole_tint && (!no_tint || shade !=100))
1146 {
1147 XImage *image = XGetImage (dpy, bgPixmap.pixmap, 0, 0, szHint.width, szHint.height, AllPlanes, ZPixmap);
1148 success = False;
1149 if (image != NULL)
1150 {
1151 PRINT_BACKGROUND_OP_TIME;
1152 if (gc == NULL)
1153 gc = XCreateGC (dpy, vt, 0UL, &gcvalue);
1154 if (ISSET_PIXCOLOR (Color_tint) || shade != 100)
1155 ShadeXImage (this, image, shade, c.r, c.g, c.b);
1156 XPutImage (dpy, bgPixmap.pixmap, gc, image, 0, 0, 0, 0, image->width, image->height);
1157 XDestroyImage (image);
1158 success = True;
1159 }
1160 }
1161 #endif /* HAVE_AFTERIMAGE */
1162 PRINT_BACKGROUND_OP_TIME;
1163
1164 if (gc != NULL)
1165 XFreeGC (dpy, gc);
1166
1167 if (!success)
1168 {
1169 if (am_transparent && am_pixmap_trans)
1170 {
1171 pchanged = 1;
1172 if (bgPixmap.pixmap != None)
1173 {
1174 XFreePixmap (dpy, bgPixmap.pixmap);
1175 bgPixmap.pixmap = None;
1176 }
1177 }
1178
1179 am_pixmap_trans = 0;
1180 }
1181 else
1182 {
1183 XSetWindowBackgroundPixmap (dpy, parent[0], bgPixmap.pixmap);
1184 XClearWindow (dpy, parent[0]);
1185
1186 if (!am_transparent || !am_pixmap_trans)
1187 pchanged = 1;
1188
1189 am_transparent = am_pixmap_trans = 1;
1190 }
1191 } /* rootpixmap != None */
1192
1193 if (am_pixmap_trans)
1194 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
1195 else
1196 return;
1197
1198 if (scrollBar.win)
1199 {
1200 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative);
1201 scrollBar.setIdle ();
1202 scrollbar_show (0);
1203 }
1204
1205 if (am_transparent)
1206 {
1207 want_refresh = want_full_refresh = 1;
1208 if (am_pixmap_trans)
1209 flush ();
1210 }
1211
1212 // return pchanged;
1213 }
1214 #endif