ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/background.C
Revision: 1.220
Committed: Fri May 25 08:27:47 2012 UTC (12 years ago) by sf-exg
Content type: text/plain
Branch: MAIN
Changes since 1.219: +109 -16 lines
Log Message:
First cut at adding support for multiple images.

File Contents

# User Rev Content
1 sasha 1.1 /*----------------------------------------------------------------------*
2 ayin 1.4 * File: background.C - former xpm.C
3 sasha 1.1 *----------------------------------------------------------------------*
4     *
5     * All portions of code are copyright by their respective author/s.
6 root 1.147 * Copyright (c) 2005-2008 Marc Lehmann <schmorp@schmorp.de>
7 sasha 1.1 * Copyright (c) 2007 Sasha Vasko <sasha@aftercode.net>
8 sf-exg 1.209 * Copyright (c) 2010-2012 Emanuele Giaquinta <e.giaquinta@glauco.it>
9 sasha 1.1 *
10     * 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     * the Free Software Foundation; either version 2 of the License, or
13     * (at your option) any later version.
14     *
15     * This program is distributed in the hope that it will be useful,
16     * but WITHOUT ANY WARRANTY; without even the implied warranty of
17     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18     * GNU General Public License for more details.
19     *
20     * You should have received a copy of the GNU General Public License
21     * along with this program; if not, write to the Free Software
22     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23     *---------------------------------------------------------------------*/
24    
25 sf-exg 1.200 #include <math.h>
26 sasha 1.1 #include "../config.h" /* NECESSARY */
27     #include "rxvt.h" /* NECESSARY */
28    
29 sf-exg 1.109 #if XRENDER
30     # include <X11/extensions/Xrender.h>
31     #endif
32    
33 sf-exg 1.118 #ifndef FilterConvolution
34     #define FilterConvolution "convolution"
35     #endif
36    
37 sf-exg 1.195 #ifndef RepeatPad
38     #define RepeatPad True
39     #endif
40    
41 sasha 1.1 #ifdef HAVE_BG_PIXMAP
42 sf-exg 1.188 # if XRENDER
43     static Picture
44     create_xrender_mask (Display *dpy, Drawable drawable, Bool argb, Bool component_alpha)
45     {
46     Pixmap pixmap = XCreatePixmap (dpy, drawable, 1, 1, argb ? 32 : 8);
47    
48     XRenderPictFormat *format = XRenderFindStandardFormat (dpy, argb ? PictStandardARGB32 : PictStandardA8);
49     XRenderPictureAttributes pa;
50     pa.repeat = True;
51     pa.component_alpha = component_alpha;
52     Picture mask = XRenderCreatePicture (dpy, pixmap, format, CPRepeat | CPComponentAlpha, &pa);
53    
54     XFreePixmap (dpy, pixmap);
55    
56     return mask;
57     }
58     # endif
59    
60 root 1.14 void
61 sf-exg 1.142 rxvt_term::bg_destroy ()
62 sasha 1.11 {
63 sf-exg 1.142 if (bg_pixmap)
64     XFreePixmap (dpy, bg_pixmap);
65 sasha 1.11 }
66 sasha 1.2
67 sasha 1.1 bool
68 sf-exg 1.142 rxvt_term::bg_set_position (int x, int y)
69 sf-exg 1.121 {
70    
71     if (target_x != x
72     || target_y != y)
73     {
74     target_x = x;
75     target_y = y;
76     return true;
77     }
78     return false;
79     }
80    
81     bool
82 sf-exg 1.142 rxvt_term::bg_window_size_sensitive ()
83 sasha 1.1 {
84 sasha 1.13 # ifdef ENABLE_TRANSPARENCY
85 sf-exg 1.143 if (bg_flags & BG_IS_TRANSPARENT)
86 sasha 1.13 return true;
87     # endif
88    
89 sasha 1.2 # ifdef BG_IMAGE_FROM_FILE
90 sf-exg 1.220 for (vector<rxvt_image>::iterator bg_image = image_vec.begin (); bg_image < image_vec.end (); bg_image++)
91 sasha 1.1 {
92 sf-exg 1.220 if ((bg_image->flags & IM_IS_SIZE_SENSITIVE)
93     || bg_image->width () > szHint.width
94     || bg_image->height () > szHint.height)
95 sasha 1.1 return true;
96     }
97     # endif
98 sasha 1.13
99     return false;
100     }
101    
102 sf-exg 1.37 bool
103 sf-exg 1.142 rxvt_term::bg_window_position_sensitive ()
104 sasha 1.13 {
105 sasha 1.1 # ifdef ENABLE_TRANSPARENCY
106 sf-exg 1.143 if (bg_flags & BG_IS_TRANSPARENT)
107 sasha 1.1 return true;
108     # endif
109 sasha 1.13
110     # ifdef BG_IMAGE_FROM_FILE
111 sf-exg 1.220 for (vector<rxvt_image>::iterator bg_image = image_vec.begin (); bg_image < image_vec.end (); bg_image++)
112 sasha 1.13 {
113 sf-exg 1.220 if (bg_image->flags & IM_ROOT_ALIGN)
114 sasha 1.13 return true;
115     }
116     # endif
117    
118 sasha 1.1 return false;
119 sf-exg 1.117 }
120 sasha 1.1
121 sasha 1.2 # ifdef BG_IMAGE_FROM_FILE
122 sasha 1.1 static inline int
123     make_align_position (int align, int window_size, int image_size)
124     {
125 sf-exg 1.66 if (align >= 0 && align <= 100)
126 sf-exg 1.206 return lerp (0, window_size - image_size, align);
127 sf-exg 1.205 else if (align > 100)
128 sf-exg 1.206 return lerp (window_size - image_size, window_size, align - 100);
129 sf-exg 1.205 else
130 sf-exg 1.206 return lerp (-image_size, 0, align + 100);
131 sasha 1.1 }
132    
133     static inline int
134     make_clip_rectangle (int pos, int size, int target_size, int &dst_pos, int &dst_size)
135     {
136     int src_pos = 0;
137 sf-exg 1.66 dst_pos = pos;
138 sasha 1.1 dst_size = size;
139 sf-exg 1.60 if (pos < 0)
140 sasha 1.1 {
141     src_pos = -pos;
142 sf-exg 1.66 dst_pos = 0;
143 sasha 1.1 dst_size += pos;
144     }
145    
146 sf-exg 1.197 min_it (dst_size, target_size - dst_pos);
147 sasha 1.1 return src_pos;
148     }
149    
150 sf-exg 1.219 static void
151     parse_style (const char *style, int &x, int &y, unsigned int &w, unsigned int &h, uint8_t &flags)
152     {
153     if (!strcasecmp (style, "tiled"))
154     {
155     flags = IM_TILE;
156     w = h = noScale;
157     x = y = 0;
158     }
159     else if (!strcasecmp (style, "aspect-stretched"))
160     {
161     flags = IM_KEEP_ASPECT;
162     w = h = windowScale;
163     x = y = centerAlign;
164     }
165     else if (!strcasecmp (style, "stretched"))
166     {
167     flags = 0;
168     w = h = windowScale;
169     x = y = centerAlign;
170     }
171     else if (!strcasecmp (style, "centered"))
172     {
173     flags = 0;
174     w = h = noScale;
175     x = y = centerAlign;
176     }
177     else if (!strcasecmp (style, "root-tiled"))
178     {
179     flags = IM_TILE|IM_ROOT_ALIGN;
180     w = h = noScale;
181     x = y = 0;
182     }
183     }
184    
185 sasha 1.1 bool
186 sf-exg 1.214 rxvt_image::set_geometry (const char *geom, bool update)
187 sasha 1.1 {
188 sf-exg 1.110 bool changed = false;
189     int geom_flags = 0;
190 sf-exg 1.198 int x = h_align;
191     int y = v_align;
192     unsigned int w = h_scale;
193     unsigned int h = v_scale;
194 sf-exg 1.219 uint8_t new_flags = 0;
195 sasha 1.1
196     if (geom == NULL)
197     return false;
198    
199 sf-exg 1.163 if (geom[0])
200 sf-exg 1.122 {
201 sf-exg 1.163 char **arr = rxvt_strsplit (':', geom);
202 sf-exg 1.131
203 sf-exg 1.173 for (int i = 0; arr[i]; i++)
204 sasha 1.1 {
205 sf-exg 1.219 if (!strncasecmp (arr[i], "style=", 6))
206 sf-exg 1.160 {
207 sf-exg 1.219 parse_style (arr[i] + 6, x, y, w, h, new_flags);
208 sf-exg 1.160 geom_flags = WidthValue|HeightValue|XValue|YValue;
209     }
210     else if (!strcasecmp (arr[i], "op=tile"))
211 sf-exg 1.214 new_flags |= IM_TILE;
212 sf-exg 1.176 else if (!strcasecmp (arr[i], "op=keep-aspect"))
213 sf-exg 1.214 new_flags |= IM_KEEP_ASPECT;
214 sf-exg 1.176 else if (!strcasecmp (arr[i], "op=root-align"))
215 sf-exg 1.214 new_flags |= IM_ROOT_ALIGN;
216 sf-exg 1.160
217     // deprecated
218     else if (!strcasecmp (arr[i], "tile"))
219 sf-exg 1.122 {
220 sf-exg 1.214 new_flags |= IM_TILE;
221 sf-exg 1.122 w = h = noScale;
222     geom_flags |= WidthValue|HeightValue;
223     }
224 sf-exg 1.133 else if (!strcasecmp (arr[i], "propscale"))
225 sf-exg 1.122 {
226 sf-exg 1.214 new_flags |= IM_KEEP_ASPECT;
227 sf-exg 1.177 w = h = windowScale;
228     geom_flags |= WidthValue|HeightValue;
229 sf-exg 1.122 }
230 sf-exg 1.161 else if (!strcasecmp (arr[i], "hscale"))
231     {
232 sf-exg 1.214 new_flags |= IM_TILE;
233 sf-exg 1.161 w = windowScale;
234     h = noScale;
235     geom_flags |= WidthValue|HeightValue;
236     }
237     else if (!strcasecmp (arr[i], "vscale"))
238     {
239 sf-exg 1.214 new_flags |= IM_TILE;
240 sf-exg 1.161 h = windowScale;
241     w = noScale;
242     geom_flags |= WidthValue|HeightValue;
243     }
244 sf-exg 1.133 else if (!strcasecmp (arr[i], "scale"))
245 sf-exg 1.122 {
246 sf-exg 1.161 w = h = windowScale;
247 sf-exg 1.122 geom_flags |= WidthValue|HeightValue;
248     }
249 sf-exg 1.161 else if (!strcasecmp (arr[i], "auto"))
250     {
251     w = h = windowScale;
252     x = y = centerAlign;
253     geom_flags |= WidthValue|HeightValue|XValue|YValue;
254     }
255 sf-exg 1.133 else if (!strcasecmp (arr[i], "root"))
256 sf-exg 1.122 {
257 sf-exg 1.214 new_flags |= IM_TILE|IM_ROOT_ALIGN;
258 sf-exg 1.122 w = h = noScale;
259     geom_flags |= WidthValue|HeightValue;
260     }
261 sf-exg 1.163
262     else
263     geom_flags |= XParseGeometry (arr[i], &x, &y, &w, &h);
264 sf-exg 1.131 } /* done parsing ops */
265 root 1.26
266 sf-exg 1.131 rxvt_free_strsplit (arr);
267 sf-exg 1.122 }
268 sasha 1.1
269 sf-exg 1.214 new_flags |= flags & ~IM_GEOMETRY_FLAGS;
270 sf-exg 1.185
271 sf-exg 1.163 if (!update)
272     {
273     if (!(geom_flags & XValue))
274     x = y = defaultAlign;
275     else if (!(geom_flags & YValue))
276     y = x;
277    
278     if (!(geom_flags & (WidthValue|HeightValue)))
279     w = h = defaultScale;
280     else if (!(geom_flags & HeightValue))
281     h = w;
282     else if (!(geom_flags & WidthValue))
283     w = h;
284     }
285    
286 sf-exg 1.198 clamp_it (x, -100, 200);
287     clamp_it (y, -100, 200);
288    
289 sf-exg 1.214 if (flags != new_flags
290 sf-exg 1.198 || h_scale != w
291     || v_scale != h
292     || h_align != x
293     || v_align != y)
294 sasha 1.1 {
295 sf-exg 1.214 flags = new_flags;
296 sf-exg 1.198 h_scale = w;
297     v_scale = h;
298     h_align = x;
299     v_align = y;
300 sf-exg 1.110 changed = true;
301 sasha 1.1 }
302 root 1.26
303 sf-exg 1.214 if (!(flags & IM_TILE)
304     || h_scale || v_scale
305     || (!(flags & IM_ROOT_ALIGN) && (h_align || v_align)))
306     flags |= IM_IS_SIZE_SENSITIVE;
307     else
308     flags &= ~IM_IS_SIZE_SENSITIVE;
309    
310 sf-exg 1.110 return changed;
311 sasha 1.1 }
312    
313 sf-exg 1.59 void
314 sf-exg 1.214 rxvt_term::get_image_geometry (rxvt_image &image, int &w, int &h, int &x, int &y)
315 sf-exg 1.59 {
316 sf-exg 1.214 int image_width = image.width ();
317     int image_height = image.height ();
318 sf-exg 1.142 int target_width = szHint.width;
319     int target_height = szHint.height;
320 sf-exg 1.217 int h_scale = min (image.h_scale, 32767 * 100 / target_width);
321     int v_scale = min (image.v_scale, 32767 * 100 / target_height);
322 sf-exg 1.59
323 sf-exg 1.217 w = h_scale * target_width / 100;
324     h = v_scale * target_height / 100;
325 sf-exg 1.164
326 sf-exg 1.214 if (image.flags & IM_KEEP_ASPECT)
327 sf-exg 1.62 {
328 sf-exg 1.164 float scale = (float)w / image_width;
329     min_it (scale, (float)h / image_height);
330 sf-exg 1.62 w = image_width * scale + 0.5;
331     h = image_height * scale + 0.5;
332     }
333 sf-exg 1.59
334 sf-exg 1.68 if (!w) w = image_width;
335     if (!h) h = image_height;
336    
337 sf-exg 1.214 if (image.flags & IM_ROOT_ALIGN)
338 sf-exg 1.59 {
339 sf-exg 1.121 x = -target_x;
340     y = -target_y;
341 sf-exg 1.59 }
342 sf-exg 1.63 else
343     {
344 sf-exg 1.214 x = make_align_position (image.h_align, target_width, w);
345     y = make_align_position (image.v_align, target_height, h);
346 sf-exg 1.63 }
347 sf-exg 1.59 }
348    
349 sf-exg 1.55 # ifdef HAVE_PIXBUF
350     bool
351 sf-exg 1.142 rxvt_term::pixbuf_to_pixmap (GdkPixbuf *pixbuf, Pixmap pixmap, GC gc,
352     int src_x, int src_y, int dst_x, int dst_y,
353 sf-exg 1.218 unsigned int width, unsigned int height, bool argb)
354 sf-exg 1.127 {
355     XImage *ximage;
356 sf-exg 1.210 char *line;
357 sf-exg 1.207 int width_r, width_g, width_b, width_a;
358     int sh_r, sh_g, sh_b, sh_a;
359 sf-exg 1.218 uint32_t red_mask, green_mask, blue_mask, alpha_mask;
360 sf-exg 1.127 int rowstride;
361     int channels;
362     unsigned char *row;
363    
364     if (visual->c_class != TrueColor)
365     return false;
366    
367 sf-exg 1.218 if (argb)
368     {
369     red_mask = 0xff << 16;
370     green_mask = 0xff << 8;
371     blue_mask = 0xff;
372     alpha_mask = 0xff << 24;
373     }
374     else
375     {
376     red_mask = visual->red_mask;
377     green_mask = visual->green_mask;
378     blue_mask = visual->blue_mask;
379 sf-exg 1.207 #if XRENDER
380 sf-exg 1.218 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual);
381     if (format)
382     alpha_mask = (uint32_t)format->direct.alphaMask << format->direct.alpha;
383     else
384 sf-exg 1.207 #endif
385 sf-exg 1.218 alpha_mask = 0;
386     }
387 sf-exg 1.207
388 sf-exg 1.218 width_r = ecb_popcount32 (red_mask);
389     width_g = ecb_popcount32 (green_mask);
390     width_b = ecb_popcount32 (blue_mask);
391 sf-exg 1.207 width_a = ecb_popcount32 (alpha_mask);
392 sf-exg 1.127
393 sf-exg 1.207 if (width_r > 8 || width_g > 8 || width_b > 8 || width_a > 8)
394 sf-exg 1.127 return false;
395    
396 sf-exg 1.218 sh_r = ecb_ctz32 (red_mask);
397     sh_g = ecb_ctz32 (green_mask);
398     sh_b = ecb_ctz32 (blue_mask);
399 sf-exg 1.207 sh_a = ecb_ctz32 (alpha_mask);
400 sf-exg 1.127
401 sf-exg 1.210 if (width > 32767 || height > 32767)
402 sf-exg 1.127 return false;
403    
404 sf-exg 1.218 ximage = XCreateImage (dpy, visual, argb ? 32 : depth, ZPixmap, 0, 0,
405 sf-exg 1.210 width, height, 32, 0);
406     if (!ximage)
407 sf-exg 1.127 return false;
408    
409 sf-exg 1.210 if (height > INT_MAX / ximage->bytes_per_line
410     || !(ximage->data = (char *)malloc (height * ximage->bytes_per_line)))
411 sf-exg 1.127 {
412 sf-exg 1.210 XDestroyImage (ximage);
413 sf-exg 1.127 return false;
414     }
415    
416 sf-exg 1.155 ximage->byte_order = ecb_big_endian () ? MSBFirst : LSBFirst;
417 sf-exg 1.127
418     rowstride = gdk_pixbuf_get_rowstride (pixbuf);
419     channels = gdk_pixbuf_get_n_channels (pixbuf);
420     row = gdk_pixbuf_get_pixels (pixbuf) + src_y * rowstride + src_x * channels;
421 sf-exg 1.210 line = ximage->data;
422 sf-exg 1.127
423 sf-exg 1.207 rgba c (0, 0, 0);
424    
425     if (channels == 4 && alpha_mask == 0)
426     {
427     pix_colors[Color_bg].get (c);
428     c.r >>= 8;
429     c.g >>= 8;
430     c.b >>= 8;
431     }
432    
433 sf-exg 1.127 for (int y = 0; y < height; y++)
434     {
435     for (int x = 0; x < width; x++)
436     {
437     unsigned char *pixel = row + x * channels;
438     uint32_t value;
439 sf-exg 1.207 unsigned char r, g, b, a;
440    
441     if (channels == 4)
442     {
443     a = pixel[3];
444     r = (pixel[0] * a + c.r * (0xff - a)) / 0xff;
445     g = (pixel[1] * a + c.g * (0xff - a)) / 0xff;
446     b = (pixel[2] * a + c.b * (0xff - a)) / 0xff;
447     }
448     else
449     {
450     a = 0xff;
451     r = pixel[0];
452     g = pixel[1];
453     b = pixel[2];
454     }
455 sf-exg 1.127
456 sf-exg 1.207 value = ((r >> (8 - width_r)) << sh_r)
457     | ((g >> (8 - width_g)) << sh_g)
458     | ((b >> (8 - width_b)) << sh_b)
459     | ((a >> (8 - width_a)) << sh_a);
460 sf-exg 1.127
461 sf-exg 1.210 if (ximage->bits_per_pixel == 32)
462 sf-exg 1.127 ((uint32_t *)line)[x] = value;
463     else
464 sf-exg 1.210 XPutPixel (ximage, x, y, value);
465 sf-exg 1.127 }
466    
467     row += rowstride;
468     line += ximage->bytes_per_line;
469     }
470    
471 sf-exg 1.142 XPutImage (dpy, pixmap, gc, ximage, 0, 0, dst_x, dst_y, width, height);
472 sf-exg 1.127 XDestroyImage (ximage);
473     return true;
474     }
475    
476     bool
477 sf-exg 1.215 rxvt_term::render_image (rxvt_image &image)
478 sf-exg 1.55 {
479 sf-exg 1.214 GdkPixbuf *pixbuf = image.pixbuf;
480 sf-exg 1.55 if (!pixbuf)
481     return false;
482    
483 sf-exg 1.215 bool need_blend = bg_flags & BG_IS_VALID;
484    
485     if (need_blend
486 sf-exg 1.143 && !(bg_flags & BG_HAS_RENDER))
487 sf-exg 1.55 return false;
488    
489     GdkPixbuf *result;
490    
491     int image_width = gdk_pixbuf_get_width (pixbuf);
492     int image_height = gdk_pixbuf_get_height (pixbuf);
493    
494 sf-exg 1.142 int target_width = szHint.width;
495     int target_height = szHint.height;
496 sf-exg 1.55 int new_pmap_width = target_width;
497     int new_pmap_height = target_height;
498    
499     int x = 0;
500     int y = 0;
501 sf-exg 1.59 int w = 0;
502     int h = 0;
503 sf-exg 1.55
504 sf-exg 1.214 get_image_geometry (image, w, h, x, y);
505 sf-exg 1.55
506 sf-exg 1.214 if (!(image.flags & IM_ROOT_ALIGN)
507 sf-exg 1.67 && (x >= target_width
508     || y >= target_height
509 sf-exg 1.172 || x + w <= 0
510     || y + h <= 0))
511 sf-exg 1.55 return false;
512    
513     result = pixbuf;
514    
515 sf-exg 1.172 if (w != image_width
516     || h != image_height)
517 sf-exg 1.55 {
518     result = gdk_pixbuf_scale_simple (pixbuf,
519 sf-exg 1.68 w, h,
520 sf-exg 1.55 GDK_INTERP_BILINEAR);
521     }
522    
523 sf-exg 1.151 if (!result)
524     return false;
525    
526 sf-exg 1.55 bool ret = false;
527    
528 sf-exg 1.152 XGCValues gcv;
529     GC gc;
530 sf-exg 1.215 Pixmap tmp_pixmap;
531 sf-exg 1.55
532 sf-exg 1.152 image_width = gdk_pixbuf_get_width (result);
533     image_height = gdk_pixbuf_get_height (result);
534 sf-exg 1.55
535 sf-exg 1.215 if (need_blend)
536 sf-exg 1.218 tmp_pixmap = XCreatePixmap (dpy, vt, new_pmap_width, new_pmap_height, 32);
537 sf-exg 1.152 else
538     {
539 sf-exg 1.220 // optimise bg pixmap size when tiling, but only if there are no
540     // other pixbufs to render. Otherwise, the bg pixmap size must
541     // be equal to the window size.
542     if ((image.flags & IM_TILE)
543     && image_vec.size () == 1)
544 sf-exg 1.58 {
545 sf-exg 1.152 new_pmap_width = min (image_width, target_width);
546     new_pmap_height = min (image_height, target_height);
547 sf-exg 1.58 }
548 sf-exg 1.55
549 sf-exg 1.218 if (bg_pixmap == None
550     || bg_pmap_width != new_pmap_width
551     || bg_pmap_height != new_pmap_height)
552     {
553     if (bg_pixmap)
554     XFreePixmap (dpy, bg_pixmap);
555     bg_pixmap = XCreatePixmap (dpy, vt, new_pmap_width, new_pmap_height, depth);
556     bg_pmap_width = new_pmap_width;
557     bg_pmap_height = new_pmap_height;
558     }
559    
560     tmp_pixmap = bg_pixmap;
561 sf-exg 1.152 }
562 sf-exg 1.55
563 sf-exg 1.154 gcv.foreground = pix_colors[Color_bg];
564 sf-exg 1.218 gc = XCreateGC (dpy, tmp_pixmap, GCForeground, &gcv);
565 sf-exg 1.154
566     if (gc)
567 sf-exg 1.152 {
568 sf-exg 1.214 if (image.flags & IM_TILE)
569 sf-exg 1.154 {
570 sf-exg 1.218 Pixmap tile = XCreatePixmap (dpy, vt, image_width, image_height, need_blend ? 32 : depth);
571 sf-exg 1.154 pixbuf_to_pixmap (result, tile, gc,
572     0, 0,
573     0, 0,
574 sf-exg 1.218 image_width, image_height, need_blend);
575 sf-exg 1.154
576     gcv.tile = tile;
577     gcv.fill_style = FillTiled;
578     gcv.ts_x_origin = x;
579     gcv.ts_y_origin = y;
580     XChangeGC (dpy, gc, GCFillStyle | GCTile | GCTileStipXOrigin | GCTileStipYOrigin, &gcv);
581 sf-exg 1.55
582 sf-exg 1.218 XFillRectangle (dpy, tmp_pixmap, gc, 0, 0, new_pmap_width, new_pmap_height);
583 sf-exg 1.154 XFreePixmap (dpy, tile);
584     }
585     else
586 sf-exg 1.55 {
587 sf-exg 1.154 int src_x, src_y, dst_x, dst_y;
588     int dst_width, dst_height;
589    
590     src_x = make_clip_rectangle (x, image_width , new_pmap_width , dst_x, dst_width );
591     src_y = make_clip_rectangle (y, image_height, new_pmap_height, dst_y, dst_height);
592 sf-exg 1.55
593 sf-exg 1.154 if (dst_x > 0 || dst_y > 0
594     || dst_x + dst_width < new_pmap_width
595     || dst_y + dst_height < new_pmap_height)
596 sf-exg 1.218 XFillRectangle (dpy, tmp_pixmap, gc, 0, 0, new_pmap_width, new_pmap_height);
597 sf-exg 1.154
598     if (dst_x < new_pmap_width && dst_y < new_pmap_height)
599 sf-exg 1.218 pixbuf_to_pixmap (result, tmp_pixmap, gc,
600 sf-exg 1.154 src_x, src_y,
601     dst_x, dst_y,
602 sf-exg 1.218 dst_width, dst_height, need_blend);
603 sf-exg 1.154 }
604 sf-exg 1.55
605 sf-exg 1.154 #if XRENDER
606 sf-exg 1.215 if (need_blend)
607 sf-exg 1.154 {
608 sf-exg 1.218 XRenderPictFormat *argb_format = XRenderFindStandardFormat (dpy, PictStandardARGB32);
609 sf-exg 1.190 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual);
610 sf-exg 1.55
611 sf-exg 1.218 Picture src = XRenderCreatePicture (dpy, tmp_pixmap, argb_format, 0, 0);
612 sf-exg 1.55
613 sf-exg 1.191 Picture dst = XRenderCreatePicture (dpy, bg_pixmap, format, 0, 0);
614 sf-exg 1.152
615 sf-exg 1.188 Picture mask = create_xrender_mask (dpy, vt, False, False);
616 sf-exg 1.79
617 sf-exg 1.154 XRenderColor mask_c;
618 sf-exg 1.79
619 sf-exg 1.220 mask_c.alpha = gdk_pixbuf_get_has_alpha (image.pixbuf) ? 0xffff : image.alpha;
620 sf-exg 1.192 mask_c.red =
621     mask_c.green =
622     mask_c.blue = 0;
623 sf-exg 1.154 XRenderFillRectangle (dpy, PictOpSrc, mask, &mask_c, 0, 0, 1, 1);
624 sf-exg 1.192
625 sf-exg 1.154 XRenderComposite (dpy, PictOpOver, src, mask, dst, 0, 0, 0, 0, 0, 0, target_width, target_height);
626    
627     XRenderFreePicture (dpy, src);
628     XRenderFreePicture (dpy, dst);
629     XRenderFreePicture (dpy, mask);
630     }
631 sf-exg 1.152 #endif
632 sf-exg 1.79
633 sf-exg 1.154 XFreeGC (dpy, gc);
634 sf-exg 1.79
635 sf-exg 1.154 ret = true;
636 sf-exg 1.152 }
637 sf-exg 1.79
638 sf-exg 1.152 if (result != pixbuf)
639     g_object_unref (result);
640 sf-exg 1.55
641 sf-exg 1.215 if (need_blend)
642     XFreePixmap (dpy, tmp_pixmap);
643 sf-exg 1.55
644     return ret;
645     }
646     # endif /* HAVE_PIXBUF */
647    
648 sf-exg 1.220 # ifndef NO_RESOURCES
649     static int
650     rxvt_define_image (XrmDatabase *database ecb_unused,
651     XrmBindingList bindings ecb_unused,
652     XrmQuarkList quarks,
653     XrmRepresentation *type ecb_unused,
654     XrmValue *value,
655     XPointer closure ecb_unused)
656     {
657     int size;
658    
659     for (size = 0; quarks[size] != NULLQUARK; size++)
660     ;
661    
662     if (size >= 2)
663     {
664     int id = strtol (XrmQuarkToString (quarks[size-2]), 0, 0);
665     if (id >= 1)
666     GET_R->parse_image (id, XrmQuarkToString (quarks[size-1]), (char *)value->addr);
667     }
668     return False;
669     }
670    
671     void
672     rxvt_term::parse_image (int id, const char *type, const char *arg)
673     {
674     rxvt_image *image;
675    
676     for (image = image_vec.begin (); image < image_vec.end (); image++)
677     if (image->id == id)
678     break;
679    
680     if (image == image_vec.end ())
681     {
682     image = new_image ();
683     image->id = id;
684     }
685     }
686     # endif
687    
688     rxvt_image::rxvt_image ()
689     {
690     id =
691     alpha =
692     flags =
693     h_scale =
694     v_scale =
695     h_align =
696     v_align = 0;
697    
698     # ifdef HAVE_PIXBUF
699     pixbuf.reset (0);
700     # endif
701     }
702    
703 sasha 1.1 bool
704 sf-exg 1.220 rxvt_image::set_file_geometry (const char *file)
705 sasha 1.1 {
706 sf-exg 1.107 if (!file || !*file)
707     return false;
708 sasha 1.1
709 sf-exg 1.167 const char *p = strchr (file, ';');
710    
711     if (p)
712 sasha 1.1 {
713 sf-exg 1.107 size_t len = p - file;
714     char *f = rxvt_temp_buf<char> (len + 1);
715     memcpy (f, file, len);
716     f[len] = '\0';
717     file = f;
718     }
719 root 1.25
720 sf-exg 1.220 bool ret = set_file (file);
721     alpha = 0x8000;
722     if (ret && p)
723     set_geometry (p + 1);
724     return ret;
725     }
726    
727     bool
728     rxvt_image::set_file (const char *file)
729     {
730     bool ret = false;
731    
732 sf-exg 1.55 # ifdef HAVE_PIXBUF
733 sf-exg 1.107 GdkPixbuf *image = gdk_pixbuf_new_from_file (file, NULL);
734     if (image)
735     {
736     if (pixbuf)
737     g_object_unref (pixbuf);
738 sf-exg 1.220 pixbuf.reset (image);
739 sf-exg 1.167 ret = true;
740 sf-exg 1.107 }
741 sf-exg 1.55 # endif
742 root 1.25
743 sf-exg 1.167 if (ret)
744     {
745 sf-exg 1.220 alpha = 0xffff;
746 sf-exg 1.216 flags = IM_IS_SET | IM_IS_SIZE_SENSITIVE;
747     h_scale = v_scale = defaultScale;
748     h_align = v_align = defaultAlign;
749 sf-exg 1.167 }
750    
751     return ret;
752 sasha 1.1 }
753    
754 ayin 1.12 # endif /* BG_IMAGE_FROM_FILE */
755 sasha 1.1
756     # ifdef ENABLE_TRANSPARENCY
757 ayin 1.10 bool
758 sf-exg 1.142 rxvt_term::bg_set_blur (const char *geom)
759 sasha 1.1 {
760 sf-exg 1.110 bool changed = false;
761 sasha 1.1 unsigned int hr, vr;
762     int junk;
763     int geom_flags = XParseGeometry (geom, &junk, &junk, &hr, &vr);
764    
765 sf-exg 1.52 if (!(geom_flags & WidthValue))
766 sasha 1.1 hr = 1;
767 sf-exg 1.52 if (!(geom_flags & HeightValue))
768 sasha 1.1 vr = hr;
769    
770 sf-exg 1.80 min_it (hr, 128);
771     min_it (vr, 128);
772    
773 sasha 1.1 if (h_blurRadius != hr)
774     {
775 sf-exg 1.110 changed = true;
776 sasha 1.1 h_blurRadius = hr;
777     }
778    
779     if (v_blurRadius != vr)
780     {
781 sf-exg 1.110 changed = true;
782 sasha 1.1 v_blurRadius = vr;
783     }
784 ayin 1.10
785 sf-exg 1.110 return changed;
786 sasha 1.1 }
787    
788     bool
789 sf-exg 1.142 rxvt_term::bg_set_tint (rxvt_color &new_tint)
790 sasha 1.1 {
791 sf-exg 1.194 if (!(bg_flags & BG_TINT_SET) || tint != new_tint)
792 sasha 1.1 {
793     tint = new_tint;
794 sf-exg 1.194 bg_flags |= BG_TINT_SET;
795 sf-exg 1.203
796     rgba c;
797     tint.get (c);
798     if ((c.r <= 0x00ff || c.r >= 0xff00)
799     && (c.g <= 0x00ff || c.g >= 0xff00)
800     && (c.b <= 0x00ff || c.b >= 0xff00))
801     bg_flags |= BG_TINT_BITAND;
802     else
803     bg_flags &= ~BG_TINT_BITAND;
804    
805 sasha 1.1 return true;
806     }
807 root 1.20
808 sasha 1.1 return false;
809     }
810    
811     bool
812 sf-exg 1.142 rxvt_term::bg_set_shade (const char *shade_str)
813 sasha 1.1 {
814 sf-exg 1.186 int new_shade = atoi (shade_str);
815 sasha 1.1
816 sf-exg 1.75 clamp_it (new_shade, -100, 200);
817     if (new_shade < 0)
818 root 1.20 new_shade = 200 - (100 + new_shade);
819 sasha 1.1
820     if (new_shade != shade)
821     {
822     shade = new_shade;
823     return true;
824     }
825 root 1.20
826 sasha 1.1 return false;
827     }
828    
829 sf-exg 1.101 #if XRENDER
830 sf-exg 1.80 static void
831     get_gaussian_kernel (int radius, int width, double *kernel, XFixed *params)
832     {
833 sf-exg 1.89 double sigma = radius / 2.0;
834     double scale = sqrt (2.0 * M_PI) * sigma;
835     double sum = 0.0;
836 sf-exg 1.80
837 sf-exg 1.89 for (int i = 0; i < width; i++)
838     {
839     double x = i - width / 2;
840     kernel[i] = exp (-(x * x) / (2.0 * sigma * sigma)) / scale;
841     sum += kernel[i];
842     }
843 sf-exg 1.80
844 sf-exg 1.89 params[0] = XDoubleToFixed (width);
845     params[1] = XDoubleToFixed (1);
846 sf-exg 1.80
847 sf-exg 1.89 for (int i = 0; i < width; i++)
848     params[i+2] = XDoubleToFixed (kernel[i] / sum);
849 sf-exg 1.80 }
850 sf-exg 1.84 #endif
851 sf-exg 1.80
852     bool
853 sf-exg 1.213 rxvt_term::blur_pixmap (Pixmap pixmap, int width, int height)
854 sf-exg 1.80 {
855     bool ret = false;
856 sf-exg 1.101 #if XRENDER
857 sf-exg 1.181 if (!(bg_flags & BG_HAS_RENDER_CONV))
858     return false;
859    
860 sf-exg 1.80 int size = max (h_blurRadius, v_blurRadius) * 2 + 1;
861     double *kernel = (double *)malloc (size * sizeof (double));
862     XFixed *params = (XFixed *)malloc ((size + 2) * sizeof (XFixed));
863    
864 sf-exg 1.195 XRenderPictureAttributes pa;
865 sf-exg 1.91 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual);
866 sf-exg 1.80
867 sf-exg 1.195 pa.repeat = RepeatPad;
868     Picture src = XRenderCreatePicture (dpy, pixmap, format, CPRepeat, &pa);
869 sf-exg 1.196 Pixmap tmp = XCreatePixmap (dpy, pixmap, width, height, depth);
870     Picture dst = XRenderCreatePicture (dpy, tmp, format, CPRepeat, &pa);
871     XFreePixmap (dpy, tmp);
872 sf-exg 1.80
873 sf-exg 1.154 if (kernel && params)
874 sf-exg 1.80 {
875 sf-exg 1.193 size = h_blurRadius * 2 + 1;
876     get_gaussian_kernel (h_blurRadius, size, kernel, params);
877 sf-exg 1.80
878 sf-exg 1.193 XRenderSetPictureFilter (dpy, src, FilterConvolution, params, size+2);
879     XRenderComposite (dpy,
880     PictOpSrc,
881     src,
882     None,
883     dst,
884     0, 0,
885     0, 0,
886     0, 0,
887     width, height);
888    
889 sf-exg 1.196 ::swap (src, dst);
890    
891 sf-exg 1.193 size = v_blurRadius * 2 + 1;
892     get_gaussian_kernel (v_blurRadius, size, kernel, params);
893     ::swap (params[0], params[1]);
894    
895     XRenderSetPictureFilter (dpy, src, FilterConvolution, params, size+2);
896     XRenderComposite (dpy,
897     PictOpSrc,
898     src,
899     None,
900     dst,
901     0, 0,
902     0, 0,
903     0, 0,
904     width, height);
905 sf-exg 1.80
906     ret = true;
907     }
908    
909     free (kernel);
910     free (params);
911     XRenderFreePicture (dpy, src);
912     XRenderFreePicture (dpy, dst);
913     #endif
914     return ret;
915     }
916    
917 sf-exg 1.64 bool
918 sf-exg 1.213 rxvt_term::tint_pixmap (Pixmap pixmap, int width, int height)
919 sf-exg 1.64 {
920     bool ret = false;
921    
922 sf-exg 1.203 if (shade == 100 && (bg_flags & BG_TINT_BITAND))
923 sf-exg 1.64 {
924     XGCValues gcv;
925     GC gc;
926    
927     /* In this case we can tint image server-side getting significant
928     * performance improvements, as we eliminate XImage transfer
929     */
930     gcv.foreground = Pixel (tint);
931     gcv.function = GXand;
932     gcv.fill_style = FillSolid;
933 sf-exg 1.77 gc = XCreateGC (dpy, pixmap, GCFillStyle | GCForeground | GCFunction, &gcv);
934 sf-exg 1.64 if (gc)
935     {
936 sf-exg 1.70 XFillRectangle (dpy, pixmap, gc, 0, 0, width, height);
937 sf-exg 1.64 ret = true;
938     XFreeGC (dpy, gc);
939     }
940     }
941 sf-exg 1.181 # if XRENDER
942     else if (bg_flags & BG_HAS_RENDER)
943 sf-exg 1.64 {
944 sf-exg 1.194 rgba c (rgba::MAX_CC, rgba::MAX_CC, rgba::MAX_CC);
945 sf-exg 1.64
946 sf-exg 1.194 if (bg_flags & BG_TINT_SET)
947     tint.get (c);
948 sf-exg 1.64
949 sf-exg 1.75 if (shade <= 100)
950 sf-exg 1.64 {
951 root 1.148 c.r = c.r * shade / 100;
952     c.g = c.g * shade / 100;
953     c.b = c.b * shade / 100;
954 sf-exg 1.64 }
955 sf-exg 1.75 else
956 sf-exg 1.64 {
957 root 1.148 c.r = c.r * (200 - shade) / 100;
958     c.g = c.g * (200 - shade) / 100;
959     c.b = c.b * (200 - shade) / 100;
960 sf-exg 1.64 }
961    
962 sf-exg 1.77 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual);
963 sf-exg 1.64
964 sf-exg 1.191 Picture back_pic = XRenderCreatePicture (dpy, pixmap, format, 0, 0);
965 sf-exg 1.64
966 sf-exg 1.188 Picture overlay_pic = create_xrender_mask (dpy, pixmap, True, False);
967 sf-exg 1.64
968 sf-exg 1.188 Picture mask_pic = create_xrender_mask (dpy, pixmap, True, True);
969 sf-exg 1.64
970 sf-exg 1.154 XRenderColor mask_c;
971 sf-exg 1.64
972 sf-exg 1.154 mask_c.alpha = 0xffff;
973     mask_c.red =
974     mask_c.green =
975     mask_c.blue = 0;
976     XRenderFillRectangle (dpy, PictOpSrc, overlay_pic, &mask_c, 0, 0, 1, 1);
977    
978     mask_c.alpha = 0;
979     mask_c.red = 0xffff - c.r;
980     mask_c.green = 0xffff - c.g;
981     mask_c.blue = 0xffff - c.b;
982     XRenderFillRectangle (dpy, PictOpSrc, mask_pic, &mask_c, 0, 0, 1, 1);
983 sf-exg 1.192
984 sf-exg 1.154 XRenderComposite (dpy, PictOpOver, overlay_pic, mask_pic, back_pic, 0, 0, 0, 0, 0, 0, width, height);
985 sf-exg 1.64
986 sf-exg 1.154 if (shade > 100)
987     {
988 sf-exg 1.64 mask_c.alpha = 0;
989 sf-exg 1.192 mask_c.red =
990     mask_c.green =
991     mask_c.blue = 0xffff * (shade - 100) / 100;
992 sf-exg 1.154 XRenderFillRectangle (dpy, PictOpSrc, overlay_pic, &mask_c, 0, 0, 1, 1);
993 sf-exg 1.125
994 sf-exg 1.154 XRenderComposite (dpy, PictOpOver, overlay_pic, None, back_pic, 0, 0, 0, 0, 0, 0, width, height);
995     }
996 sf-exg 1.125
997 sf-exg 1.154 ret = true;
998 sf-exg 1.64
999     XRenderFreePicture (dpy, mask_pic);
1000     XRenderFreePicture (dpy, overlay_pic);
1001     XRenderFreePicture (dpy, back_pic);
1002 sf-exg 1.181 }
1003 sf-exg 1.64 # endif
1004    
1005     return ret;
1006     }
1007    
1008 sf-exg 1.149 /*
1009 sf-exg 1.100 * Builds a pixmap of the same size as the terminal window that contains
1010     * the tiled portion of the root pixmap that is supposed to be covered by
1011 sasha 1.1 * our window.
1012     */
1013 sf-exg 1.202 bool
1014 sf-exg 1.142 rxvt_term::make_transparency_pixmap ()
1015 sasha 1.1 {
1016 sf-exg 1.202 bool ret = false;
1017 sasha 1.1
1018 sf-exg 1.39 /* root dimensions may change from call to call - but Display structure should
1019 sasha 1.1 * be always up-to-date, so let's use it :
1020     */
1021 sf-exg 1.142 int screen = display->screen;
1022 sf-exg 1.103 int root_depth = DefaultDepth (dpy, screen);
1023 sasha 1.1 int root_width = DisplayWidth (dpy, screen);
1024     int root_height = DisplayHeight (dpy, screen);
1025 sf-exg 1.103 unsigned int root_pmap_width, root_pmap_height;
1026 sf-exg 1.142 int window_width = szHint.width;
1027     int window_height = szHint.height;
1028 sasha 1.1 int sx, sy;
1029     XGCValues gcv;
1030 sf-exg 1.81 GC gc;
1031 sasha 1.1
1032 sf-exg 1.121 sx = target_x;
1033     sy = target_y;
1034 sasha 1.1
1035     /* check if we are outside of the visible part of the virtual screen : */
1036     if (sx + window_width <= 0 || sy + window_height <= 0
1037     || sx >= root_width || sy >= root_height)
1038     return 0;
1039    
1040 sf-exg 1.103 // validate root pixmap and get its size
1041     if (root_pixmap != None)
1042     {
1043     Window wdummy;
1044     int idummy;
1045     unsigned int udummy;
1046    
1047 sf-exg 1.142 allowedxerror = -1;
1048 sf-exg 1.103
1049     if (!XGetGeometry (dpy, root_pixmap, &wdummy, &idummy, &idummy, &root_pmap_width, &root_pmap_height, &udummy, &udummy))
1050     root_pixmap = None;
1051    
1052 sf-exg 1.142 allowedxerror = 0;
1053 sf-exg 1.103 }
1054    
1055     Pixmap recoded_root_pmap = root_pixmap;
1056    
1057 sf-exg 1.142 if (root_pixmap != None && root_depth != depth)
1058 sf-exg 1.103 {
1059     #if XRENDER
1060 sf-exg 1.143 if (bg_flags & BG_HAS_RENDER)
1061 sf-exg 1.108 {
1062 sf-exg 1.152 recoded_root_pmap = XCreatePixmap (dpy, vt, root_pmap_width, root_pmap_height, depth);
1063    
1064 sf-exg 1.154 XRenderPictFormat *src_format = XRenderFindVisualFormat (dpy, DefaultVisual (dpy, screen));
1065 sf-exg 1.191 Picture src = XRenderCreatePicture (dpy, root_pixmap, src_format, 0, 0);
1066 sf-exg 1.108
1067 sf-exg 1.154 XRenderPictFormat *dst_format = XRenderFindVisualFormat (dpy, visual);
1068 sf-exg 1.191 Picture dst = XRenderCreatePicture (dpy, recoded_root_pmap, dst_format, 0, 0);
1069 sf-exg 1.103
1070 sf-exg 1.154 XRenderComposite (dpy, PictOpSrc, src, None, dst, 0, 0, 0, 0, 0, 0, root_pmap_width, root_pmap_height);
1071 sf-exg 1.103
1072 sf-exg 1.154 XRenderFreePicture (dpy, src);
1073     XRenderFreePicture (dpy, dst);
1074 sf-exg 1.108 }
1075 sf-exg 1.103 else
1076 sf-exg 1.108 #endif
1077 sf-exg 1.151 recoded_root_pmap = None;
1078 sf-exg 1.103 }
1079    
1080 sf-exg 1.151 if (recoded_root_pmap == None)
1081 sf-exg 1.81 return 0;
1082    
1083 sf-exg 1.142 if (bg_pixmap == None
1084     || bg_pmap_width != window_width
1085     || bg_pmap_height != window_height)
1086     {
1087     if (bg_pixmap)
1088     XFreePixmap (dpy, bg_pixmap);
1089     bg_pixmap = XCreatePixmap (dpy, vt, window_width, window_height, depth);
1090     bg_pmap_width = window_width;
1091     bg_pmap_height = window_height;
1092 sf-exg 1.135 }
1093 sasha 1.1
1094 sf-exg 1.154 /* straightforward pixmap copy */
1095 mikachu 1.178 while (sx < 0) sx += root_pmap_width;
1096     while (sy < 0) sy += root_pmap_height;
1097 sf-exg 1.154
1098     gcv.tile = recoded_root_pmap;
1099     gcv.fill_style = FillTiled;
1100     gcv.ts_x_origin = -sx;
1101     gcv.ts_y_origin = -sy;
1102     gc = XCreateGC (dpy, vt, GCFillStyle | GCTile | GCTileStipXOrigin | GCTileStipYOrigin, &gcv);
1103    
1104     if (gc)
1105     {
1106     XFillRectangle (dpy, bg_pixmap, gc, 0, 0, window_width, window_height);
1107 sf-exg 1.202 ret = true;
1108 sf-exg 1.212 bool need_blur = h_blurRadius && v_blurRadius;
1109     bool need_tint = shade != 100 || (bg_flags & BG_TINT_SET);
1110 sasha 1.1
1111 sf-exg 1.154 if (!(bg_flags & BG_CLIENT_RENDER))
1112 sf-exg 1.150 {
1113 sf-exg 1.212 if (need_blur)
1114 sf-exg 1.154 {
1115 sf-exg 1.213 if (blur_pixmap (bg_pixmap, window_width, window_height))
1116 sf-exg 1.212 need_blur = false;
1117 sf-exg 1.154 }
1118 sf-exg 1.212 if (need_tint)
1119 sf-exg 1.80 {
1120 sf-exg 1.213 if (tint_pixmap (bg_pixmap, window_width, window_height))
1121 sf-exg 1.212 need_tint = false;
1122 sf-exg 1.154 }
1123 sf-exg 1.212 if (need_tint)
1124 sf-exg 1.189 {
1125     XImage *ximage = XGetImage (dpy, bg_pixmap, 0, 0, bg_pmap_width, bg_pmap_height, AllPlanes, ZPixmap);
1126     if (ximage)
1127     {
1128     /* our own client-side tinting */
1129 sf-exg 1.213 tint_ximage (ximage);
1130 sf-exg 1.189
1131     XPutImage (dpy, bg_pixmap, gc, ximage, 0, 0, 0, 0, ximage->width, ximage->height);
1132     XDestroyImage (ximage);
1133     }
1134     }
1135 sf-exg 1.154 } /* server side rendering completed */
1136 sf-exg 1.189
1137     XFreeGC (dpy, gc);
1138 sasha 1.1 }
1139 ayin 1.10
1140 sf-exg 1.103 if (recoded_root_pmap != root_pixmap)
1141     XFreePixmap (dpy, recoded_root_pmap);
1142    
1143 sf-exg 1.202 return ret;
1144 sasha 1.1 }
1145    
1146 sf-exg 1.98 void
1147 sf-exg 1.142 rxvt_term::bg_set_root_pixmap ()
1148 sasha 1.1 {
1149 sf-exg 1.142 Pixmap new_root_pixmap = get_pixmap_property (xa[XA_XROOTPMAP_ID]);
1150 sasha 1.1 if (new_root_pixmap == None)
1151 sf-exg 1.142 new_root_pixmap = get_pixmap_property (xa[XA_ESETROOT_PMAP_ID]);
1152 sasha 1.1
1153 sf-exg 1.98 root_pixmap = new_root_pixmap;
1154 sasha 1.1 }
1155     # endif /* ENABLE_TRANSPARENCY */
1156    
1157     bool
1158 sf-exg 1.142 rxvt_term::bg_render ()
1159 sasha 1.1 {
1160 sf-exg 1.142 bg_invalidate ();
1161 sasha 1.1 # ifdef ENABLE_TRANSPARENCY
1162 sf-exg 1.143 if (bg_flags & BG_IS_TRANSPARENT)
1163 sasha 1.1 {
1164     /* we need to re-generate transparency pixmap in that case ! */
1165 sf-exg 1.215 if (make_transparency_pixmap ())
1166 sf-exg 1.199 bg_flags |= BG_IS_VALID;
1167 sasha 1.1 }
1168     # endif
1169    
1170 sf-exg 1.50 # ifdef BG_IMAGE_FROM_FILE
1171 sf-exg 1.220 for (vector<rxvt_image>::iterator bg_image = image_vec.begin (); bg_image < image_vec.end (); bg_image++)
1172 sasha 1.1 {
1173 sf-exg 1.220 if (render_image (*bg_image))
1174 sf-exg 1.143 bg_flags |= BG_IS_VALID;
1175 sasha 1.1 }
1176 sf-exg 1.46 # endif
1177 sasha 1.7
1178 sf-exg 1.143 if (!(bg_flags & BG_IS_VALID))
1179 sasha 1.1 {
1180 sf-exg 1.142 if (bg_pixmap != None)
1181 sasha 1.1 {
1182 sf-exg 1.142 XFreePixmap (dpy, bg_pixmap);
1183     bg_pixmap = None;
1184 sasha 1.1 }
1185     }
1186    
1187 sf-exg 1.142 scr_recolour (false);
1188 sf-exg 1.143 bg_flags |= BG_NEEDS_REFRESH;
1189 sasha 1.1
1190 sf-exg 1.142 bg_valid_since = ev::now ();
1191 sasha 1.22
1192 ayin 1.10 return true;
1193 sasha 1.1 }
1194    
1195 sf-exg 1.106 void
1196 sf-exg 1.142 rxvt_term::bg_init ()
1197 sasha 1.1 {
1198 sf-exg 1.142 #ifdef ENABLE_TRANSPARENCY
1199     shade = 100;
1200     #endif
1201 sf-exg 1.108
1202 sf-exg 1.143 bg_flags &= ~(BG_HAS_RENDER | BG_HAS_RENDER_CONV);
1203 sf-exg 1.108 #if XRENDER
1204     int major, minor;
1205 sf-exg 1.142 if (XRenderQueryVersion (dpy, &major, &minor))
1206 sf-exg 1.143 bg_flags |= BG_HAS_RENDER;
1207 sf-exg 1.142 XFilters *filters = XRenderQueryFilters (dpy, vt);
1208 sf-exg 1.108 if (filters)
1209     {
1210     for (int i = 0; i < filters->nfilter; i++)
1211     if (!strcmp (filters->filter[i], FilterConvolution))
1212 sf-exg 1.143 bg_flags |= BG_HAS_RENDER_CONV;
1213 sf-exg 1.108
1214     XFree (filters);
1215     }
1216     #endif
1217 sf-exg 1.220
1218     #ifdef BG_IMAGE_FROM_FILE
1219     if (rs[Rs_backgroundPixmap])
1220     {
1221     rxvt_image *image = new_image ();
1222     if (!image->set_file_geometry (rs[Rs_backgroundPixmap]))
1223     image_vec.pop_back ();
1224     }
1225    
1226     # ifndef NO_RESOURCES
1227     find_resources ("image", "Image", XrmEnumAllLevels, rxvt_define_image);
1228     vector<rxvt_image>::iterator bg_image = image_vec.begin ();
1229     while (bg_image != image_vec.end ())
1230     {
1231     if (!(bg_image->flags & IM_IS_SET))
1232     bg_image = image_vec.erase (bg_image);
1233     else
1234     bg_image++;
1235     }
1236     # endif
1237    
1238     if (image_vec.size () > 0
1239     && !bg_window_position_sensitive ())
1240     update_background ();
1241     #endif
1242 sasha 1.1 }
1243    
1244 ayin 1.12 #endif /* HAVE_BG_PIXMAP */
1245 sasha 1.1
1246 sf-exg 1.201 #ifdef ENABLE_TRANSPARENCY
1247 sf-exg 1.169 /* based on code from aterm-0.4.2 */
1248 sasha 1.1
1249 sf-exg 1.179 static inline void
1250     fill_lut (uint32_t *lookup, uint32_t mask, int sh, unsigned short low, unsigned short high)
1251     {
1252     for (int i = 0; i <= mask >> sh; i++)
1253     {
1254     uint32_t tmp;
1255     tmp = i * high;
1256     tmp += (mask >> sh) * low;
1257     lookup[i] = (tmp / 0xffff) << sh;
1258     }
1259     }
1260    
1261 sf-exg 1.183 void
1262 sf-exg 1.213 rxvt_term::tint_ximage (XImage *ximage)
1263 sasha 1.1 {
1264 sf-exg 1.209 unsigned int size_r, size_g, size_b;
1265 sasha 1.1 int sh_r, sh_g, sh_b;
1266 sf-exg 1.94 uint32_t mask_r, mask_g, mask_b;
1267     uint32_t *lookup, *lookup_r, *lookup_g, *lookup_b;
1268 sf-exg 1.180 unsigned short low;
1269 sf-exg 1.155 int host_byte_order = ecb_big_endian () ? MSBFirst : LSBFirst;
1270 sasha 1.1
1271 sf-exg 1.126 if (visual->c_class != TrueColor || ximage->format != ZPixmap) return;
1272 sasha 1.1
1273     /* for convenience */
1274     mask_r = visual->red_mask;
1275     mask_g = visual->green_mask;
1276     mask_b = visual->blue_mask;
1277    
1278     /* boring lookup table pre-initialization */
1279 sf-exg 1.209 sh_r = ecb_ctz32 (mask_r);
1280     sh_g = ecb_ctz32 (mask_g);
1281     sh_b = ecb_ctz32 (mask_b);
1282    
1283     size_r = mask_r >> sh_r;
1284     size_g = mask_g >> sh_g;
1285     size_b = mask_b >> sh_b;
1286    
1287     if (size_r++ > 255 || size_g++ > 255 || size_b++ > 255)
1288     return;
1289    
1290     lookup = (uint32_t *)malloc (sizeof (uint32_t) * (size_r + size_g + size_b));
1291     lookup_r = lookup;
1292     lookup_g = lookup + size_r;
1293     lookup_b = lookup + size_r + size_g;
1294 sasha 1.1
1295 sf-exg 1.194 rgba c (rgba::MAX_CC, rgba::MAX_CC, rgba::MAX_CC);
1296 sf-exg 1.183
1297 sf-exg 1.194 if (bg_flags & BG_TINT_SET)
1298     tint.get (c);
1299 sf-exg 1.183
1300 sasha 1.1 /* prepare limits for color transformation (each channel is handled separately) */
1301 sf-exg 1.87 if (shade > 100)
1302     {
1303 sf-exg 1.184 c.r = c.r * (200 - shade) / 100;
1304     c.g = c.g * (200 - shade) / 100;
1305     c.b = c.b * (200 - shade) / 100;
1306 sf-exg 1.125
1307 sf-exg 1.183 low = 0xffff * (shade - 100) / 100;
1308 sf-exg 1.87 }
1309     else
1310     {
1311 sf-exg 1.184 c.r = c.r * shade / 100;
1312     c.g = c.g * shade / 100;
1313     c.b = c.b * shade / 100;
1314 sasha 1.1
1315 sf-exg 1.180 low = 0;
1316 sf-exg 1.87 }
1317 sasha 1.1
1318     /* fill our lookup tables */
1319 sf-exg 1.184 fill_lut (lookup_r, mask_r, sh_r, low, c.r);
1320     fill_lut (lookup_g, mask_g, sh_g, low, c.g);
1321     fill_lut (lookup_b, mask_b, sh_b, low, c.b);
1322 sasha 1.1
1323     /* apply table to input image (replacing colors by newly calculated ones) */
1324 sf-exg 1.126 if (ximage->bits_per_pixel == 32
1325     && ximage->byte_order == host_byte_order)
1326 sf-exg 1.93 {
1327 sf-exg 1.208 char *line = ximage->data;
1328 sf-exg 1.93
1329 sf-exg 1.208 for (int y = 0; y < ximage->height; y++)
1330 sf-exg 1.87 {
1331 sf-exg 1.208 uint32_t *p = (uint32_t *)line;
1332     for (int x = 0; x < ximage->width; x++)
1333 sf-exg 1.87 {
1334 sf-exg 1.209 *p = lookup_r[(*p & mask_r) >> sh_r] |
1335     lookup_g[(*p & mask_g) >> sh_g] |
1336     lookup_b[(*p & mask_b) >> sh_b];
1337 sf-exg 1.208 p++;
1338 sf-exg 1.87 }
1339 sf-exg 1.208 line += ximage->bytes_per_line;
1340 sasha 1.1 }
1341 sf-exg 1.93 }
1342     else
1343     {
1344 sf-exg 1.126 for (int y = 0; y < ximage->height; y++)
1345     for (int x = 0; x < ximage->width; x++)
1346 sf-exg 1.93 {
1347 sf-exg 1.126 unsigned long pixel = XGetPixel (ximage, x, y);
1348 sf-exg 1.93 pixel = lookup_r[(pixel & mask_r) >> sh_r] |
1349     lookup_g[(pixel & mask_g) >> sh_g] |
1350     lookup_b[(pixel & mask_b) >> sh_b];
1351 sf-exg 1.126 XPutPixel (ximage, x, y, pixel);
1352 sf-exg 1.93 }
1353 sasha 1.1 }
1354    
1355     free (lookup);
1356     }
1357 sf-exg 1.201 #endif /* ENABLE_TRANSPARENCY */