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.11 by pcg, Fri Apr 2 20:41:01 2004 UTC vs.
Revision 1.61 by ayin, Tue Aug 7 15:23:11 2007 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*----------------------------------------------------------------------*
2 * File: xpm.c 2 * File: xpm.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * $Id: xpm.C,v 1.11 2004/04/02 20:41:01 pcg Exp $
5 * 4 *
6 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
7 * Copyright (c) 1997 Carsten Haitzler <raster@zip.com.au> 6 * Copyright (c) 1997 Carsten Haitzler <raster@zip.com.au>
8 * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de> 7 * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
9 * 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>
10 * 10 *
11 * 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
12 * 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
13 * the Free Software Foundation; either version 2 of the License, or 13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version. 14 * (at your option) any later version.
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 *---------------------------------------------------------------------*/ 24 *---------------------------------------------------------------------*/
25 25
26#include "../config.h" /* NECESSARY */ 26#include "../config.h" /* NECESSARY */
27#include "rxvt.h" /* NECESSARY */ 27#include "rxvt.h" /* NECESSARY */
28#include "xpm.intpro" /* PROTOS for internal routines */
29 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{
30#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}
31 92
32/* 93#ifdef XPM_BACKGROUND
33 * These GEOM strings indicate absolute size/position: 94static inline bool
34 * @ `WxH+X+Y' 95check_set_scale_value (int geom_flags, int flag, unsigned int &scale, unsigned int new_value)
35 * @ `WxH+X' -> Y = X
36 * @ `WxH' -> Y = X = 50
37 * @ `W+X+Y' -> H = W
38 * @ `W+X' -> H = W, Y = X
39 * @ `W' -> H = W, X = Y = 50
40 * @ `0xH' -> H *= H/100, X = Y = 50 (W unchanged)
41 * @ `Wx0' -> W *= W/100, X = Y = 50 (H unchanged)
42 * @ `=+X+Y' -> (H, W unchanged)
43 * @ `=+X' -> Y = X (H, W unchanged)
44 *
45 * These GEOM strings adjust position relative to current position:
46 * @ `+X+Y'
47 * @ `+X' -> Y = X
48 *
49 * And this GEOM string is for querying current scale/position:
50 * @ `?'
51 */
52int
53rxvt_term::scale_pixmap (const char *geom)
54{ 96{
55 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 * 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 void
146make_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
167bool
168bgPixmap_t::handle_geometry (const char *geom)
169{
170 int geom_flags = 0, changed = 0;
56 int x = 0, y = 0; 171 int x = 0, y = 0;
57 unsigned int w = 0, h = 0; 172 unsigned int w = 0, h = 0;
58 unsigned int n; 173 unsigned int n;
59 char *p, *str; 174 unsigned long new_flags = (flags&(~bgPmap_geometryFlags));
60 bgPixmap_t *bgpixmap = & (bgPixmap); 175 char *p;
61 176#define MAXLEN_GEOM 256 /* could be longer then regular geometry string */
62#define MAXLEN_GEOM sizeof("[1000x1000+1000+1000]")
63 177
64 if (geom == NULL) 178 if (geom == NULL)
65 return 0; 179 return false;
66 str = (char *)rxvt_malloc (MAXLEN_GEOM + 1); 180
181 char str[MAXLEN_GEOM];
182
67 if (!STRCMP (geom, "?")) 183 if (!strcmp (geom, "?"))
68 { 184 {
185#if 0 /* TODO: */
69 sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */ 186 sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */
70 min (bgpixmap->w, 9999), min (bgpixmap->h, 9999), 187 min (h_scale, 32767), min (v_scale, 32767),
71 min (bgpixmap->x, 9999), min (bgpixmap->y, 9999)); 188 min (h_align, 32767), min (v_align, 32767));
72 process_xterm_seq (XTerm_title, str, CHAR_ST); 189 process_xterm_seq (XTerm_title, str, CHAR_ST);
73 free (str); 190#endif
74 return 0; 191 return false;
75 } 192 }
76 193 while (isspace(*geom)) ++geom;
77 if ((p = STRCHR (geom, ';')) == NULL) 194 if ((p = strchr (geom, ';')) == NULL)
78 p = STRCHR (geom, '\0'); 195 p = strchr (geom, '\0');
196
79 n = (p - geom); 197 n = (p - geom);
80 if (n <= MAXLEN_GEOM) 198 if (n < MAXLEN_GEOM)
81 { 199 {
200 char *ops;
201 new_flags |= bgPmap_geometrySet;
202
82 STRNCPY (str, geom, n); 203 strncpy (str, geom, n);
83 str[n] = '\0'; 204 str[n] = '\0';
84 205 if (str[0] == ':')
85 flags = XParseGeometry (str, &x, &y, &w, &h); 206 ops = &str[0];
86 if (!flags) 207 else if (str[0] != 'x' && str[0] != 'X' && isalpha(str[0]))
208 ops = &str[0];
209 else
87 { 210 {
88 flags |= WidthValue; 211 char *tmp;
89 w = 0; 212 ops = strchr (str, ':');
90 } /* default is tile */ 213 if (ops != NULL)
91 if (flags & WidthValue)
92 {
93 if (! (flags & XValue))
94 x = 50;
95 if (! (flags & HeightValue))
96 h = w;
97 if (w && !h)
98 { 214 {
99 w = (bgpixmap->w * w) / 100; 215 for (tmp = ops-1; tmp >= str && isspace(*tmp); --tmp);
100 h = bgpixmap->h; 216 *(++tmp) = '\0';
217 if (ops == tmp) ++ops;
101 } 218 }
102 else if (h && !w) 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))
103 { 227 {
104 w = bgpixmap->w; 228 y = x;
105 h = (bgpixmap->h * h) / 100; 229 geom_flags |= YValue;
106 } 230 }
107 if (w > 1000) 231
108 w = 1000; 232 if (flags & bgPmap_geometrySet)
109 if (h > 1000) 233 {/* new geometry is an adjustment to the old one ! */
110 h = 1000; 234 if ((geom_flags & WidthValue) && (geom_flags & HeightValue))
111 if (bgpixmap->w != (short)w) 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 */
112 { 257 {
113 bgpixmap->w = (short)w; 258 if (!(geom_flags & XValue))
114 changed++; 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;
115 } 276 }
116 if (bgpixmap->h != (short)h) 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)
117 { 290 {
118 bgpixmap->h = (short)h; 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;
119 changed++; 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
361bool
362bgPixmap_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;
120 } 436 }
437 else
438 {/* clip horizontally */
439 layers[1].dst_x = dst_x;
440 layers[1].clip_width = clip_width;
121 } 441 }
122 if (! (flags & YValue)) 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);
123 { 470 }
124 if (flags & XNegative) 471 }
125 flags |= YNegative; 472
126 y = x; 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)
127 } 479 {
128 480 XFreePixmap (target->dpy, pixmap);
129 if (! (flags & WidthValue) && geom[0] != '=') 481 pixmap = None;
130 { 482 }
131 x += bgpixmap->x; 483 }
132 y += bgpixmap->y; 484
485 if (result)
486 {
487 XGCValues gcv;
488 GC gc;
489
490 /* create Pixmap */
491 if (pixmap == None)
133 } 492 {
134 else 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;
135 { 497 }
136 if (flags & XNegative) 498 /* fill with background color ( if result's not completely overlapping it)*/
137 x += 100; 499 gcv.foreground = target->pix_colors[Color_bg];
138 if (flags & YNegative) 500 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv);
139 y += 100; 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)
140 } 505 {
141 MIN_IT (x, 100); 506 XFillRectangle (target->dpy, pixmap, gc, 0, 0, new_pmap_width, new_pmap_height);
142 MIN_IT (y, 100);
143 MAX_IT (x, 0);
144 MAX_IT (y, 0);
145 if (bgpixmap->x != x)
146 { 507 }
147 bgpixmap->x = x; 508 /* put result on pixmap */
148 changed++; 509 asimage2drawable (target->asv, pixmap, result, gc, 0, 0, dst_x, dst_y, clip_width, clip_height, True);
149 } 510
150 if (bgpixmap->y != y) 511 /* set target's background to pixmap */
151 { 512 XSetWindowBackgroundPixmap (target->dpy, target->vt, pixmap);
152 bgpixmap->y = y; 513
153 changed++; 514 XFreeGC (target->dpy, gc);
154 } 515 }
516 else
155 } 517 {
156 free (str); 518 /* set target background to a pixel */
157 return changed; 519 XSetWindowBackground (target->dpy, target->vt, target->pix_colors[Color_bg]);
520 }
521
522 return true;
158} 523}
524#endif
159 525
160void 526void
161rxvt_term::resize_pixmap () 527rxvt_term::resize_pixmap ()
162{ 528{
163 XGCValues gcvalue; 529 XGCValues gcvalue;
164 GC gc; 530 GC gc;
165 unsigned int width = TermWin_TotalWidth (); 531 unsigned int w = bgPixmap.h_scale*szHint.width/100;
166 unsigned int height = TermWin_TotalHeight (); 532 unsigned int h = bgPixmap.v_scale*szHint.height/100;
167 533 int x = bgPixmap.h_align*szHint.width/100;
168 if (TermWin.pixmap != None) 534 int y = bgPixmap.v_align*szHint.height/100;
169 XFreePixmap (display->display, TermWin.pixmap); 535#ifdef HAVE_AFTERIMAGE
170 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 */
171 if (bgPixmap.pixmap == None) 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)
172 { /* So be it: I'm not using pixmaps */ 556 { /* So be it: I'm not using pixmaps */
173 TermWin.pixmap = None; 557 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
174 if (! (Options & Opt_transparent) || am_transparent == 0)
175 XSetWindowBackground (display->display, TermWin.vt,
176 PixColors[Color_bg]);
177 return; 558 return;
178 } 559 }
179 560
180 gcvalue.foreground = PixColors[Color_bg]; 561 gcvalue.foreground = pix_colors[Color_bg];
181 gc = XCreateGC (display->display, TermWin.vt, GCForeground, &gcvalue); 562 gc = XCreateGC (dpy, vt, GCForeground, &gcvalue);
182 563
183 if (bgPixmap.pixmap != None)
184 { /* we have a specified pixmap */
185 unsigned int w = bgPixmap.w, h = bgPixmap.h,
186 x = bgPixmap.x, y = bgPixmap.y;
187 unsigned int xpmh = xpmAttr.height,
188 xpmw = xpmAttr.width;
189
190 /*
191 * don't zoom pixmap too much nor expand really small pixmaps 564 /* don't zoom pixmap too much nor expand really small pixmaps */
192 */ 565 if (w > 16000)
193 if (w > 1000 || h > 1000)
194 w = 1; 566 w = 1;
195 else if (width > (10 * xpmw) 567 if (h > 16000)
196 || height > (10 * xpmh)) 568 h = 1;
197 w = 0; /* tile */ 569
198 570#ifdef HAVE_AFTERIMAGE
199 if (w == 0) 571 if (w == 0)
200 { 572 w = im->width;
201 /* basic X tiling - let the X server do it */ 573 if (h == 0)
202 TermWin.pixmap = XCreatePixmap (display->display, TermWin.vt, 574 h = im->height;
203 xpmw, xpmh, 575
204 (unsigned int)XDEPTH); 576 if (w != im->width || h != im->height)
205 XCopyArea (display->display, bgPixmap.pixmap, TermWin.pixmap, gc, 577 {
206 0, 0, xpmw, xpmh, 0, 0); 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)
207 } 589 {
208 else 590 if (im != bgPixmap.original_asim)
591 destroy_asimage (&im);
592 im = tmp;
209 { 593 }
210 float incr, p;
211 Pixmap tmp;
212
213 TermWin.pixmap = XCreatePixmap (display->display, TermWin.vt,
214 width, height,
215 (unsigned int)XDEPTH);
216 /*
217 * horizontal scaling
218 */
219 rxvt_pixmap_incr (&w, &x, &incr, &p, width, xpmw);
220
221 tmp = XCreatePixmap (display->display, TermWin.vt,
222 width, xpmh, (unsigned int)XDEPTH);
223 XFillRectangle (display->display, tmp, gc, 0, 0, width,
224 xpmh);
225
226 for ( /*nil */ ; x < w; x++, p += incr)
227 {
228 if (p >= xpmw)
229 p = 0;
230 /* copy one column from the original pixmap to the tmp pixmap */
231 XCopyArea (display->display, bgPixmap.pixmap, tmp, gc,
232 (int)p, 0, 1, xpmh, (int)x, 0);
233 }
234
235 /*
236 * vertical scaling
237 */
238 rxvt_pixmap_incr (&h, &y, &incr, &p, height, xpmh);
239
240 if (y > 0)
241 XFillRectangle (display->display, TermWin.pixmap, gc, 0, 0, width,
242 y);
243 if (h < height)
244 XFillRectangle (display->display, TermWin.pixmap, gc, 0, (int)h,
245 width, height - h + 1);
246 for ( /*nil */ ; y < h; y++, p += incr)
247 {
248 if (p >= xpmh)
249 p = 0;
250 /* copy one row from the tmp pixmap to the main pixmap */
251 XCopyArea (display->display, tmp, TermWin.pixmap, gc,
252 0, (int)p, width, 1, 0, (int)y);
253 }
254 XFreePixmap (display->display, tmp);
255 }
256 } 594 }
257 XSetWindowBackgroundPixmap (display->display, TermWin.vt, TermWin.pixmap); 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
258 XFreeGC (display->display, gc); 607 XFreeGC (dpy, gc);
259 am_transparent = 0;
260
261 XClearWindow (display->display, TermWin.vt);
262
263 XSync (display->display, False);
264} 608}
265 609
266/* 610void
267 * Calculate tiling sizes and increments
268 * At start, p == 0, incr == xpmwidthheight
269 */
270/* INTPROTO */
271static void
272rxvt_pixmap_incr (unsigned int *wh, unsigned int *xy, float *incr, float *p, unsigned int widthheight, unsigned int xpmwidthheight)
273{
274 unsigned int cwh, cxy;
275 float cincr, cp;
276
277 cp = 0;
278 cincr = (float)xpmwidthheight;
279 cxy = *xy;
280 cwh = *wh;
281 if (cwh == 1)
282 { /* display one image, no horizontal/vertical scaling */
283 cincr = (float)widthheight;
284 if (xpmwidthheight <= widthheight)
285 {
286 cwh = xpmwidthheight;
287 cxy = (cxy * (widthheight - cwh)) / 100; /* beware! order */
288 cwh += cxy;
289 }
290 else
291 {
292 cxy = 0;
293 cwh = widthheight;
294 }
295 }
296 else if (cwh < 10)
297 { /* fit WH images across/down screen */
298 cincr *= cwh;
299 cxy = 0;
300 cwh = widthheight;
301 }
302 else
303 {
304 cincr *= 100.0 / cwh;
305 if (cwh < 100)
306 { /* contract */
307 float pos;
308
309 cwh = (cwh * widthheight) / 100;
310 pos = (float)cxy / 100 * widthheight - (cwh / 2);
311
312 cxy = (widthheight - cwh);
313 if (pos <= 0)
314 cxy = 0;
315 else if (pos < cxy)
316 cxy = (int) pos;
317 cwh += cxy;
318 }
319 else
320 { /* expand */
321 if (cxy > 0)
322 { /* position */
323 float pos;
324
325 pos = (float)cxy / 100 * xpmwidthheight - (cincr / 2);
326 cp = xpmwidthheight - cincr;
327 if (pos <= 0)
328 cp = 0;
329 else if (pos < cp)
330 cp = pos;
331 }
332 cxy = 0;
333 cwh = widthheight;
334 }
335 }
336 cincr /= widthheight;
337 *wh = cwh;
338 *xy = cxy;
339 *incr = cincr;
340 *p = cp;
341}
342
343Pixmap
344rxvt_term::set_bgPixmap (const char *file) 611rxvt_term::set_bgPixmap (const char *file)
345{ 612{
346 char *f; 613 char *f;
347 614
348 assert (file != NULL); 615 assert (file != NULL);
349 616
350 if (bgPixmap.pixmap != None) 617 if (bgPixmap.pixmap != None)
351 { 618 {
352 XFreePixmap (display->display, bgPixmap.pixmap); 619 XFreePixmap (dpy, bgPixmap.pixmap);
353 bgPixmap.pixmap = None; 620 bgPixmap.pixmap = None;
354 } 621 }
622
355 XSetWindowBackground (display->display, TermWin.vt, PixColors[Color_bg]); 623 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
356
357 if (*file != '\0') 624 if (*file != '\0')
358 { 625 {
359 /* XWindowAttributes attr; */ 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 }
360 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
653typedef uint32_t RUINT32T;
654
655static void
656ShadeXImage(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)
361 /* 804 {
362 * we already have the required attributes 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 */
886int
887rxvt_term::check_our_parents ()
888{
889 check_our_parents_ev.stop ();
890 check_our_parents_ev.start (NOW + .1);
891 return 0;
892}
893
894void
895rxvt_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
363 */ 1018 */
364 /* XGetWindowAttributes (display->display, TermWin.vt, &attr); */ 1019 if ( whole_tint || no_tint || pmap_w < sx + szHint.width || pmap_h < sy + szHint.height)
365
366 xpmAttr.closeness = 30000;
367 xpmAttr.colormap = XCMAP;
368 xpmAttr.visual = XVISUAL;
369 xpmAttr.depth = XDEPTH;
370 xpmAttr.valuemask = (XpmCloseness | XpmColormap | XpmVisual |
371 XpmDepth | XpmSize | XpmReturnPixels);
372
373 /* search environment variables here too */
374 f = (char *)rxvt_File_find (file, ".xpm", rs[Rs_path]);
375 if (f == NULL
376 || XpmReadFileToPixmap (display->display, display->root, f,
377 &bgPixmap.pixmap, NULL,
378 &xpmAttr))
379 {
380 char *p;
381
382 /* semi-colon delimited */
383 if ((p = STRCHR (file, ';')) == NULL)
384 p = STRCHR (file, '\0');
385
386 rxvt_warn ("couldn't load XPM file \"%.*s\", ignoring.", (p - file), file);
387 } 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);
388 1029
389 free (f); 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)
390 } 1199 {
1200 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative);
1201 scrollBar.setIdle ();
1202 scrollbar_show (0);
1203 }
391 1204
392 resize_pixmap (); 1205 if (am_transparent)
393 return bgPixmap.pixmap; 1206 {
1207 want_refresh = want_full_refresh = 1;
1208 if (am_pixmap_trans)
1209 flush ();
1210 }
1211
1212// return pchanged;
394} 1213}
395 1214#endif
396#endif /* XPM_BACKGROUND */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines