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

Comparing rxvt-unicode/src/xpm.C (file contents):
Revision 1.12 by pcg, Thu Apr 8 20:31:45 2004 UTC vs.
Revision 1.62 by sasha, Tue Aug 7 22:43:33 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines