ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/background.C
Revision: 1.243
Committed: Sun Jun 17 17:06:47 2012 UTC (11 years, 11 months ago) by sf-exg
Content type: text/plain
Branch: MAIN
Changes since 1.242: +1 -1 lines
Log Message:
Fix File headers.

File Contents

# User Rev Content
1 sasha 1.1 /*----------------------------------------------------------------------*
2 sf-exg 1.243 * File: background.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     #include "../config.h" /* NECESSARY */
26     #include "rxvt.h" /* NECESSARY */
27    
28     #ifdef HAVE_BG_PIXMAP
29 sf-exg 1.188
30 root 1.14 void
31 sf-exg 1.142 rxvt_term::bg_destroy ()
32 sasha 1.11 {
33 sf-exg 1.236 # if ENABLE_TRANSPARENCY
34     delete root_img;
35 root 1.237 root_img = 0;
36 sf-exg 1.236 # endif
37    
38 root 1.232 # if BG_IMAGE_FROM_FILE
39 sf-exg 1.233 fimage.destroy ();
40 sf-exg 1.221 # endif
41    
42 sf-exg 1.236 delete bg_img;
43 root 1.237 bg_img = 0;
44 sasha 1.11 }
45 sasha 1.2
46 sasha 1.1 bool
47 sf-exg 1.142 rxvt_term::bg_window_size_sensitive ()
48 sasha 1.1 {
49 root 1.232 # if ENABLE_TRANSPARENCY
50 sf-exg 1.143 if (bg_flags & BG_IS_TRANSPARENT)
51 sasha 1.13 return true;
52     # endif
53    
54 root 1.232 # if BG_IMAGE_FROM_FILE
55 sf-exg 1.236 if (fimage.img)
56 sasha 1.1 {
57 sf-exg 1.233 if ((fimage.flags & IM_IS_SIZE_SENSITIVE)
58 sf-exg 1.236 || fimage.img->w > szHint.width
59     || fimage.img->h > szHint.height)
60 sasha 1.1 return true;
61     }
62     # endif
63 sasha 1.13
64     return false;
65     }
66    
67 sf-exg 1.37 bool
68 sf-exg 1.142 rxvt_term::bg_window_position_sensitive ()
69 sasha 1.13 {
70 root 1.232 # if ENABLE_TRANSPARENCY
71 sf-exg 1.143 if (bg_flags & BG_IS_TRANSPARENT)
72 sasha 1.1 return true;
73     # endif
74 sasha 1.13
75 root 1.232 # if BG_IMAGE_FROM_FILE
76 sf-exg 1.236 if (fimage.img)
77 sasha 1.13 {
78 sf-exg 1.233 if (fimage.flags & IM_ROOT_ALIGN)
79 sasha 1.13 return true;
80     }
81     # endif
82    
83 sasha 1.1 return false;
84 sf-exg 1.117 }
85 sasha 1.1
86 root 1.232 # if BG_IMAGE_FROM_FILE
87 sasha 1.1 static inline int
88     make_align_position (int align, int window_size, int image_size)
89     {
90 sf-exg 1.66 if (align >= 0 && align <= 100)
91 sf-exg 1.206 return lerp (0, window_size - image_size, align);
92 sf-exg 1.205 else if (align > 100)
93 sf-exg 1.206 return lerp (window_size - image_size, window_size, align - 100);
94 sf-exg 1.205 else
95 sf-exg 1.206 return lerp (-image_size, 0, align + 100);
96 sasha 1.1 }
97    
98 sf-exg 1.219 static void
99     parse_style (const char *style, int &x, int &y, unsigned int &w, unsigned int &h, uint8_t &flags)
100     {
101     if (!strcasecmp (style, "tiled"))
102     {
103     flags = IM_TILE;
104     w = h = noScale;
105     x = y = 0;
106     }
107     else if (!strcasecmp (style, "aspect-stretched"))
108     {
109     flags = IM_KEEP_ASPECT;
110     w = h = windowScale;
111     x = y = centerAlign;
112     }
113     else if (!strcasecmp (style, "stretched"))
114     {
115     flags = 0;
116     w = h = windowScale;
117     x = y = centerAlign;
118     }
119     else if (!strcasecmp (style, "centered"))
120     {
121     flags = 0;
122     w = h = noScale;
123     x = y = centerAlign;
124     }
125     else if (!strcasecmp (style, "root-tiled"))
126     {
127     flags = IM_TILE|IM_ROOT_ALIGN;
128     w = h = noScale;
129     x = y = 0;
130     }
131     }
132    
133 sasha 1.1 bool
134 sf-exg 1.214 rxvt_image::set_geometry (const char *geom, bool update)
135 sasha 1.1 {
136 sf-exg 1.110 bool changed = false;
137     int geom_flags = 0;
138 sf-exg 1.198 int x = h_align;
139     int y = v_align;
140     unsigned int w = h_scale;
141     unsigned int h = v_scale;
142 sf-exg 1.219 uint8_t new_flags = 0;
143 sasha 1.1
144     if (geom == NULL)
145     return false;
146    
147 sf-exg 1.163 if (geom[0])
148 sf-exg 1.122 {
149 sf-exg 1.163 char **arr = rxvt_strsplit (':', geom);
150 sf-exg 1.131
151 sf-exg 1.173 for (int i = 0; arr[i]; i++)
152 sasha 1.1 {
153 sf-exg 1.219 if (!strncasecmp (arr[i], "style=", 6))
154 sf-exg 1.160 {
155 sf-exg 1.219 parse_style (arr[i] + 6, x, y, w, h, new_flags);
156 sf-exg 1.160 geom_flags = WidthValue|HeightValue|XValue|YValue;
157     }
158     else if (!strcasecmp (arr[i], "op=tile"))
159 sf-exg 1.214 new_flags |= IM_TILE;
160 sf-exg 1.176 else if (!strcasecmp (arr[i], "op=keep-aspect"))
161 sf-exg 1.214 new_flags |= IM_KEEP_ASPECT;
162 sf-exg 1.176 else if (!strcasecmp (arr[i], "op=root-align"))
163 sf-exg 1.214 new_flags |= IM_ROOT_ALIGN;
164 sf-exg 1.160
165     // deprecated
166     else if (!strcasecmp (arr[i], "tile"))
167 sf-exg 1.122 {
168 sf-exg 1.214 new_flags |= IM_TILE;
169 sf-exg 1.122 w = h = noScale;
170     geom_flags |= WidthValue|HeightValue;
171     }
172 sf-exg 1.133 else if (!strcasecmp (arr[i], "propscale"))
173 sf-exg 1.122 {
174 sf-exg 1.214 new_flags |= IM_KEEP_ASPECT;
175 sf-exg 1.177 w = h = windowScale;
176     geom_flags |= WidthValue|HeightValue;
177 sf-exg 1.122 }
178 sf-exg 1.161 else if (!strcasecmp (arr[i], "hscale"))
179     {
180 sf-exg 1.214 new_flags |= IM_TILE;
181 sf-exg 1.161 w = windowScale;
182     h = noScale;
183     geom_flags |= WidthValue|HeightValue;
184     }
185     else if (!strcasecmp (arr[i], "vscale"))
186     {
187 sf-exg 1.214 new_flags |= IM_TILE;
188 sf-exg 1.161 h = windowScale;
189     w = noScale;
190     geom_flags |= WidthValue|HeightValue;
191     }
192 sf-exg 1.133 else if (!strcasecmp (arr[i], "scale"))
193 sf-exg 1.122 {
194 sf-exg 1.161 w = h = windowScale;
195 sf-exg 1.122 geom_flags |= WidthValue|HeightValue;
196     }
197 sf-exg 1.161 else if (!strcasecmp (arr[i], "auto"))
198     {
199     w = h = windowScale;
200     x = y = centerAlign;
201     geom_flags |= WidthValue|HeightValue|XValue|YValue;
202     }
203 sf-exg 1.133 else if (!strcasecmp (arr[i], "root"))
204 sf-exg 1.122 {
205 sf-exg 1.214 new_flags |= IM_TILE|IM_ROOT_ALIGN;
206 sf-exg 1.122 w = h = noScale;
207     geom_flags |= WidthValue|HeightValue;
208     }
209 sf-exg 1.163
210     else
211     geom_flags |= XParseGeometry (arr[i], &x, &y, &w, &h);
212 sf-exg 1.131 } /* done parsing ops */
213 root 1.26
214 sf-exg 1.131 rxvt_free_strsplit (arr);
215 sf-exg 1.122 }
216 sasha 1.1
217 sf-exg 1.214 new_flags |= flags & ~IM_GEOMETRY_FLAGS;
218 sf-exg 1.185
219 sf-exg 1.163 if (!update)
220     {
221     if (!(geom_flags & XValue))
222     x = y = defaultAlign;
223     else if (!(geom_flags & YValue))
224     y = x;
225    
226     if (!(geom_flags & (WidthValue|HeightValue)))
227     w = h = defaultScale;
228     else if (!(geom_flags & HeightValue))
229     h = w;
230     else if (!(geom_flags & WidthValue))
231     w = h;
232     }
233    
234 sf-exg 1.198 clamp_it (x, -100, 200);
235     clamp_it (y, -100, 200);
236    
237 sf-exg 1.214 if (flags != new_flags
238 sf-exg 1.198 || h_scale != w
239     || v_scale != h
240     || h_align != x
241     || v_align != y)
242 sasha 1.1 {
243 sf-exg 1.214 flags = new_flags;
244 sf-exg 1.198 h_scale = w;
245     v_scale = h;
246     h_align = x;
247     v_align = y;
248 sf-exg 1.110 changed = true;
249 sasha 1.1 }
250 root 1.26
251 sf-exg 1.225 if (is_size_sensitive ())
252 sf-exg 1.214 flags |= IM_IS_SIZE_SENSITIVE;
253     else
254     flags &= ~IM_IS_SIZE_SENSITIVE;
255    
256 sf-exg 1.110 return changed;
257 sasha 1.1 }
258    
259 sf-exg 1.59 void
260 sf-exg 1.214 rxvt_term::get_image_geometry (rxvt_image &image, int &w, int &h, int &x, int &y)
261 sf-exg 1.59 {
262 sf-exg 1.236 int image_width = image.img->w;
263     int image_height = image.img->h;
264 sf-exg 1.240 int parent_width = szHint.width;
265     int parent_height = szHint.height;
266     int h_scale = min (image.h_scale, 32767 * 100 / parent_width);
267     int v_scale = min (image.v_scale, 32767 * 100 / parent_height);
268 sf-exg 1.59
269 sf-exg 1.240 w = h_scale * parent_width / 100;
270     h = v_scale * parent_height / 100;
271 sf-exg 1.164
272 sf-exg 1.214 if (image.flags & IM_KEEP_ASPECT)
273 sf-exg 1.62 {
274 sf-exg 1.164 float scale = (float)w / image_width;
275     min_it (scale, (float)h / image_height);
276 sf-exg 1.62 w = image_width * scale + 0.5;
277     h = image_height * scale + 0.5;
278     }
279 sf-exg 1.59
280 sf-exg 1.68 if (!w) w = image_width;
281     if (!h) h = image_height;
282    
283 sf-exg 1.214 if (image.flags & IM_ROOT_ALIGN)
284 sf-exg 1.59 {
285 sf-exg 1.239 x = -parent_x;
286     y = -parent_y;
287 sf-exg 1.59 }
288 sf-exg 1.63 else
289     {
290 sf-exg 1.240 x = make_align_position (image.h_align, parent_width, w);
291     y = make_align_position (image.v_align, parent_height, h);
292 sf-exg 1.63 }
293 sf-exg 1.59 }
294    
295 sf-exg 1.127 bool
296 sf-exg 1.215 rxvt_term::render_image (rxvt_image &image)
297 sf-exg 1.55 {
298 sf-exg 1.240 int parent_width = szHint.width;
299     int parent_height = szHint.height;
300 sf-exg 1.55
301     int x = 0;
302     int y = 0;
303 sf-exg 1.59 int w = 0;
304     int h = 0;
305 sf-exg 1.55
306 sf-exg 1.214 get_image_geometry (image, w, h, x, y);
307 sf-exg 1.55
308 sf-exg 1.214 if (!(image.flags & IM_ROOT_ALIGN)
309 sf-exg 1.240 && (x >= parent_width
310     || y >= parent_height
311 sf-exg 1.172 || x + w <= 0
312     || y + h <= 0))
313 sf-exg 1.55 return false;
314    
315 sf-exg 1.236 rxvt_img *img = image.img->scale (w, h);
316 sf-exg 1.55
317 sf-exg 1.236 if (image.flags & IM_TILE)
318     img->repeat_mode (RepeatNormal);
319 sf-exg 1.152 else
320 sf-exg 1.236 img->repeat_mode (RepeatNone);
321 sf-exg 1.240 img->sub_rect (-x, -y, parent_width, parent_height)->replace (img);
322 sf-exg 1.154
323 sf-exg 1.236 if (bg_flags & BG_IS_VALID)
324 sf-exg 1.152 {
325 sf-exg 1.236 double factor = image.alpha * 1. / 0xffff;
326     bg_img->blend (img, factor)->replace (img);
327 sf-exg 1.152 }
328 sf-exg 1.79
329 sf-exg 1.236 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual);
330     img->convert_format (format, pix_colors [Color_bg])->replace (img);
331 sf-exg 1.55
332 sf-exg 1.236 delete bg_img;
333     bg_img = img;
334 sf-exg 1.55
335 sf-exg 1.236 return true;
336 sf-exg 1.55 }
337    
338 sf-exg 1.220 rxvt_image::rxvt_image ()
339     {
340 sf-exg 1.224 alpha = 0xffff;
341     flags = 0;
342 sf-exg 1.220 h_scale =
343 sf-exg 1.224 v_scale = defaultScale;
344 sf-exg 1.220 h_align =
345 sf-exg 1.224 v_align = defaultAlign;
346 sf-exg 1.220
347 sf-exg 1.236 img = 0;
348 sf-exg 1.220 }
349    
350 sf-exg 1.241 void
351 sf-exg 1.236 rxvt_image::set_file_geometry (rxvt_screen *s, const char *file)
352 sasha 1.1 {
353 sf-exg 1.107 if (!file || !*file)
354 sf-exg 1.241 return;
355 sasha 1.1
356 sf-exg 1.167 const char *p = strchr (file, ';');
357    
358     if (p)
359 sasha 1.1 {
360 sf-exg 1.107 size_t len = p - file;
361     char *f = rxvt_temp_buf<char> (len + 1);
362     memcpy (f, file, len);
363     f[len] = '\0';
364     file = f;
365     }
366 root 1.25
367 sf-exg 1.241 set_file (s, file);
368 sf-exg 1.220 alpha = 0x8000;
369 sf-exg 1.241 set_geometry (p ? p + 1 : "");
370 sf-exg 1.220 }
371    
372 sf-exg 1.241 void
373 sf-exg 1.236 rxvt_image::set_file (rxvt_screen *s, const char *file)
374 sf-exg 1.220 {
375 sf-exg 1.241 rxvt_img *img2 = rxvt_img::new_from_file (s, file);
376 sf-exg 1.236 delete img;
377 sf-exg 1.241 img = img2;
378 sasha 1.1 }
379    
380 ayin 1.12 # endif /* BG_IMAGE_FROM_FILE */
381 sasha 1.1
382 ayin 1.10 bool
383 sf-exg 1.226 image_effects::set_blur (const char *geom)
384 sasha 1.1 {
385 sf-exg 1.110 bool changed = false;
386 sasha 1.1 unsigned int hr, vr;
387     int junk;
388     int geom_flags = XParseGeometry (geom, &junk, &junk, &hr, &vr);
389    
390 sf-exg 1.52 if (!(geom_flags & WidthValue))
391 sasha 1.1 hr = 1;
392 sf-exg 1.52 if (!(geom_flags & HeightValue))
393 sasha 1.1 vr = hr;
394    
395 sf-exg 1.80 min_it (hr, 128);
396     min_it (vr, 128);
397    
398 sasha 1.1 if (h_blurRadius != hr)
399     {
400 sf-exg 1.110 changed = true;
401 sasha 1.1 h_blurRadius = hr;
402     }
403    
404     if (v_blurRadius != vr)
405     {
406 sf-exg 1.110 changed = true;
407 sasha 1.1 v_blurRadius = vr;
408     }
409 ayin 1.10
410 sf-exg 1.110 return changed;
411 sasha 1.1 }
412    
413     bool
414 sf-exg 1.226 image_effects::set_tint (const rxvt_color &new_tint)
415 sasha 1.1 {
416 sf-exg 1.226 if (!tint_set || tint != new_tint)
417 sasha 1.1 {
418     tint = new_tint;
419 sf-exg 1.226 tint_set = true;
420 sf-exg 1.203
421 sasha 1.1 return true;
422     }
423 root 1.20
424 sasha 1.1 return false;
425     }
426    
427     bool
428 sf-exg 1.226 image_effects::set_shade (const char *shade_str)
429 sasha 1.1 {
430 sf-exg 1.186 int new_shade = atoi (shade_str);
431 sasha 1.1
432 sf-exg 1.75 clamp_it (new_shade, -100, 200);
433     if (new_shade < 0)
434 root 1.20 new_shade = 200 - (100 + new_shade);
435 sasha 1.1
436     if (new_shade != shade)
437     {
438     shade = new_shade;
439     return true;
440     }
441 root 1.20
442 sasha 1.1 return false;
443     }
444    
445 root 1.232 # if ENABLE_TRANSPARENCY
446 sf-exg 1.149 /*
447 sf-exg 1.100 * Builds a pixmap of the same size as the terminal window that contains
448     * the tiled portion of the root pixmap that is supposed to be covered by
449 sasha 1.1 * our window.
450     */
451 sf-exg 1.202 bool
452 sf-exg 1.228 rxvt_term::render_root_image ()
453 sasha 1.1 {
454 sf-exg 1.39 /* root dimensions may change from call to call - but Display structure should
455 sasha 1.1 * be always up-to-date, so let's use it :
456     */
457 sf-exg 1.142 int screen = display->screen;
458 sasha 1.1 int root_width = DisplayWidth (dpy, screen);
459     int root_height = DisplayHeight (dpy, screen);
460 sf-exg 1.240 int parent_width = szHint.width;
461     int parent_height = szHint.height;
462 sasha 1.1 int sx, sy;
463    
464 sf-exg 1.239 sx = parent_x;
465     sy = parent_y;
466 sasha 1.1
467 sf-exg 1.236 if (!root_img)
468     return false;
469    
470 sasha 1.1 /* check if we are outside of the visible part of the virtual screen : */
471 sf-exg 1.240 if (sx + parent_width <= 0 || sy + parent_height <= 0
472 sasha 1.1 || sx >= root_width || sy >= root_height)
473     return 0;
474    
475 sf-exg 1.236 while (sx < 0) sx += root_img->w;
476     while (sy < 0) sy += root_img->h;
477 sf-exg 1.103
478 sf-exg 1.240 rxvt_img *img = root_img->sub_rect (sx, sy, parent_width, parent_height);
479 sf-exg 1.103
480 sf-exg 1.236 if (root_effects.need_blur ())
481     img->blur (root_effects.h_blurRadius, root_effects.v_blurRadius)->replace (img);
482 sf-exg 1.103
483 sf-exg 1.236 if (root_effects.need_tint ())
484     tint_image (img, root_effects.tint, root_effects.tint_set, root_effects.shade);
485 sf-exg 1.103
486 sf-exg 1.236 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual);
487     img->convert_format (format, pix_colors [Color_bg])->replace (img);
488 sf-exg 1.103
489 sf-exg 1.236 delete bg_img;
490     bg_img = img;
491 sf-exg 1.152
492 sf-exg 1.236 return true;
493 sasha 1.1 }
494    
495 sf-exg 1.98 void
496 sf-exg 1.142 rxvt_term::bg_set_root_pixmap ()
497 sasha 1.1 {
498 sf-exg 1.236 delete root_img;
499     root_img = rxvt_img::new_from_root (this);
500 sasha 1.1 }
501     # endif /* ENABLE_TRANSPARENCY */
502    
503 sf-exg 1.234 void
504 sf-exg 1.142 rxvt_term::bg_render ()
505 sasha 1.1 {
506 sf-exg 1.235 if (bg_flags & BG_INHIBIT_RENDER)
507     return;
508    
509 sf-exg 1.142 bg_invalidate ();
510 root 1.232 # if ENABLE_TRANSPARENCY
511 sf-exg 1.143 if (bg_flags & BG_IS_TRANSPARENT)
512 sasha 1.1 {
513     /* we need to re-generate transparency pixmap in that case ! */
514 sf-exg 1.228 if (render_root_image ())
515 sf-exg 1.199 bg_flags |= BG_IS_VALID;
516 sasha 1.1 }
517     # endif
518    
519 root 1.232 # if BG_IMAGE_FROM_FILE
520 sf-exg 1.236 if (fimage.img)
521 sasha 1.1 {
522 sf-exg 1.233 if (render_image (fimage))
523 sf-exg 1.143 bg_flags |= BG_IS_VALID;
524 sasha 1.1 }
525 sf-exg 1.46 # endif
526 sasha 1.7
527 sf-exg 1.143 if (!(bg_flags & BG_IS_VALID))
528 sasha 1.1 {
529 sf-exg 1.236 delete bg_img;
530     bg_img = 0;
531 sasha 1.1 }
532    
533 sf-exg 1.142 scr_recolour (false);
534 sf-exg 1.143 bg_flags |= BG_NEEDS_REFRESH;
535 sasha 1.1
536 sf-exg 1.142 bg_valid_since = ev::now ();
537 sasha 1.1 }
538    
539 sf-exg 1.106 void
540 sf-exg 1.142 rxvt_term::bg_init ()
541 sasha 1.1 {
542 sf-exg 1.242 #if ENABLE_TRANSPARENCY
543     if (option (Opt_transparent))
544     {
545     bg_set_transparent ();
546    
547     if (rs [Rs_blurradius])
548     root_effects.set_blur (rs [Rs_blurradius]);
549    
550     if (ISSET_PIXCOLOR (Color_tint))
551     root_effects.set_tint (pix_colors_focused [Color_tint]);
552    
553     if (rs [Rs_shade])
554     root_effects.set_shade (rs [Rs_shade]);
555    
556     bg_set_root_pixmap ();
557     XSelectInput (dpy, display->root, PropertyChangeMask);
558     rootwin_ev.start (display, display->root);
559     }
560     #endif
561    
562 root 1.232 #if BG_IMAGE_FROM_FILE
563 sf-exg 1.220 if (rs[Rs_backgroundPixmap])
564     {
565 sf-exg 1.241 fimage.set_file_geometry (this, rs[Rs_backgroundPixmap]);
566     if (!bg_window_position_sensitive ())
567 sf-exg 1.233 update_background ();
568 sf-exg 1.220 }
569     #endif
570 sasha 1.1 }
571    
572 sf-exg 1.183 void
573 sf-exg 1.236 rxvt_term::tint_image (rxvt_img *img, rxvt_color &tint, bool tint_set, int shade)
574 sasha 1.1 {
575 sf-exg 1.194 rgba c (rgba::MAX_CC, rgba::MAX_CC, rgba::MAX_CC);
576 sf-exg 1.183
577 sf-exg 1.226 if (tint_set)
578 sf-exg 1.194 tint.get (c);
579 sf-exg 1.183
580 sf-exg 1.87 if (shade > 100)
581     {
582 sf-exg 1.184 c.r = c.r * (200 - shade) / 100;
583     c.g = c.g * (200 - shade) / 100;
584     c.b = c.b * (200 - shade) / 100;
585 sf-exg 1.87 }
586     else
587     {
588 sf-exg 1.184 c.r = c.r * shade / 100;
589     c.g = c.g * shade / 100;
590     c.b = c.b * shade / 100;
591 sf-exg 1.87 }
592 sasha 1.1
593 sf-exg 1.236 img->contrast (c.r, c.g, c.b, c.a);
594 sasha 1.1
595 sf-exg 1.236 if (shade > 100)
596 sf-exg 1.93 {
597 sf-exg 1.236 c.a = 0xffff;
598     c.r =
599     c.g =
600     c.b = 0xffff * (shade - 100) / 100;
601     img->brightness (c.r, c.g, c.b, c.a);
602 sasha 1.1 }
603     }
604 sf-exg 1.226
605     #endif /* HAVE_BG_PIXMAP */