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

Comparing rxvt-unicode/src/background.C (file contents):
Revision 1.164 by sf-exg, Sun Aug 14 22:01:25 2011 UTC vs.
Revision 1.180 by sf-exg, Sat Dec 24 09:44:23 2011 UTC

32 32
33#ifndef FilterConvolution 33#ifndef FilterConvolution
34#define FilterConvolution "convolution" 34#define FilterConvolution "convolution"
35#endif 35#endif
36 36
37/*
38 * Pixmap geometry string interpretation :
39 * Each geometry string contains zero or one scale/position
40 * adjustment and may optionally be followed by a colon and one or more
41 * colon-delimited pixmap operations.
42 * The following table shows the valid geometry strings and their
43 * effects on the background image :
44 *
45 * WxH+X+Y Set scaling to W% by H%, and position to X% by Y%.
46 * W and H are percentages of the terminal window size.
47 * X and Y are also percentages; e.g., +50+50 centers
48 * the image in the window.
49 *
50 * Pixmap Operations : (should be prepended by a colon)
51 */
52
53#ifdef HAVE_BG_PIXMAP 37#ifdef HAVE_BG_PIXMAP
54void 38void
55rxvt_term::bg_destroy () 39rxvt_term::bg_destroy ()
56{ 40{
57#ifdef HAVE_AFTERIMAGE 41#ifdef HAVE_AFTERIMAGE
166 int smaller = min (image_size, window_size); 150 int smaller = min (image_size, window_size);
167 151
168 if (align >= 0 && align <= 100) 152 if (align >= 0 && align <= 100)
169 return diff * align / 100; 153 return diff * align / 100;
170 else if (align > 100 && align <= 200) 154 else if (align > 100 && align <= 200)
171 return ((align - 100) * smaller / 100) + window_size - smaller; 155 return (align - 100) * smaller / 100 + window_size - smaller;
172 else if (align >= -100 && align < 0) 156 else if (align >= -100 && align < 0)
173 return ((align + 100) * smaller / 100) - image_size; 157 return (align + 100) * smaller / 100 - image_size;
174 return 0; 158 return 0;
175} 159}
176 160
177static inline int 161static inline int
178make_clip_rectangle (int pos, int size, int target_size, int &dst_pos, int &dst_size) 162make_clip_rectangle (int pos, int size, int target_size, int &dst_pos, int &dst_size)
197{ 181{
198 bool changed = false; 182 bool changed = false;
199 int geom_flags = 0; 183 int geom_flags = 0;
200 int x = 0, y = 0; 184 int x = 0, y = 0;
201 unsigned int w = 0, h = 0; 185 unsigned int w = 0, h = 0;
202 unsigned long new_flags = (bg_flags & (~BG_GEOMETRY_FLAGS)); 186 unsigned long new_flags = bg_flags & ~BG_GEOMETRY_FLAGS;
203 187
204 if (geom == NULL) 188 if (geom == NULL)
205 return false; 189 return false;
206 190
207 if (geom[0]) 191 if (geom[0])
208 { 192 {
209 char **arr = rxvt_strsplit (':', geom); 193 char **arr = rxvt_strsplit (':', geom);
210 194
211 for (int i = 0; arr[i]; i++) 195 for (int i = 0; arr[i]; i++)
212 { 196 {
213 if (!strcasecmp (arr[i], "style=tiled")) 197 if (!strcasecmp (arr[i], "style=tiled"))
214 { 198 {
215 new_flags = BG_TILE; 199 new_flags = BG_TILE;
216 w = h = noScale; 200 w = h = noScale;
217 x = y = 0; 201 x = y = 0;
218 geom_flags = WidthValue|HeightValue|XValue|YValue; 202 geom_flags = WidthValue|HeightValue|XValue|YValue;
219 } 203 }
220 else if (!strcasecmp (arr[i], "style=aspect-stretched")) 204 else if (!strcasecmp (arr[i], "style=aspect-stretched"))
221 { 205 {
222 new_flags = BG_PROP_SCALE; 206 new_flags = BG_KEEP_ASPECT;
223 w = h = windowScale; 207 w = h = windowScale;
224 x = y = centerAlign; 208 x = y = centerAlign;
225 geom_flags = WidthValue|HeightValue|XValue|YValue; 209 geom_flags = WidthValue|HeightValue|XValue|YValue;
226 } 210 }
227 else if (!strcasecmp (arr[i], "style=stretched")) 211 else if (!strcasecmp (arr[i], "style=stretched"))
243 w = h = noScale; 227 w = h = noScale;
244 geom_flags = WidthValue|HeightValue; 228 geom_flags = WidthValue|HeightValue;
245 } 229 }
246 else if (!strcasecmp (arr[i], "op=tile")) 230 else if (!strcasecmp (arr[i], "op=tile"))
247 new_flags |= BG_TILE; 231 new_flags |= BG_TILE;
248 else if (!strcasecmp (arr[i], "op=pscale")) 232 else if (!strcasecmp (arr[i], "op=keep-aspect"))
249 new_flags |= BG_PROP_SCALE; 233 new_flags |= BG_KEEP_ASPECT;
250 else if (!strcasecmp (arr[i], "op=root")) 234 else if (!strcasecmp (arr[i], "op=root-align"))
251 new_flags |= BG_ROOT_ALIGN; 235 new_flags |= BG_ROOT_ALIGN;
252 236
253 // deprecated 237 // deprecated
254 else if (!strcasecmp (arr[i], "tile")) 238 else if (!strcasecmp (arr[i], "tile"))
255 { 239 {
257 w = h = noScale; 241 w = h = noScale;
258 geom_flags |= WidthValue|HeightValue; 242 geom_flags |= WidthValue|HeightValue;
259 } 243 }
260 else if (!strcasecmp (arr[i], "propscale")) 244 else if (!strcasecmp (arr[i], "propscale"))
261 { 245 {
262 new_flags |= BG_PROP_SCALE; 246 new_flags |= BG_KEEP_ASPECT;
247 w = h = windowScale;
248 geom_flags |= WidthValue|HeightValue;
263 } 249 }
264 else if (!strcasecmp (arr[i], "hscale")) 250 else if (!strcasecmp (arr[i], "hscale"))
265 { 251 {
266 new_flags |= BG_TILE; 252 new_flags |= BG_TILE;
267 w = windowScale; 253 w = windowScale;
338 int target_height = szHint.height; 324 int target_height = szHint.height;
339 325
340 w = h_scale * target_width / 100; 326 w = h_scale * target_width / 100;
341 h = v_scale * target_height / 100; 327 h = v_scale * target_height / 100;
342 328
343 if (bg_flags & BG_PROP_SCALE) 329 if (bg_flags & BG_KEEP_ASPECT)
344 { 330 {
345 float scale = (float)w / image_width; 331 float scale = (float)w / image_width;
346 min_it (scale, (float)h / image_height); 332 min_it (scale, (float)h / image_height);
347 w = image_width * scale + 0.5; 333 w = image_width * scale + 0.5;
348 h = image_height * scale + 0.5; 334 h = image_height * scale + 0.5;
399 } 385 }
400 386
401 if ((tr_flags & BG_NEEDS_BLUR) && background != NULL) 387 if ((tr_flags & BG_NEEDS_BLUR) && background != NULL)
402 { 388 {
403 ASImage *tmp = blur_asimage_gauss (asv, background, h_blurRadius, v_blurRadius, 0xFFFFFFFF, 389 ASImage *tmp = blur_asimage_gauss (asv, background, h_blurRadius, v_blurRadius, 0xFFFFFFFF,
404 (original_asim == NULL || tint == TINT_LEAVE_SAME) ? ASA_XImage : ASA_ASImage, 390 ASA_XImage,
405 100, ASIMAGE_QUALITY_DEFAULT); 391 100, ASIMAGE_QUALITY_DEFAULT);
406 if (tmp) 392 if (tmp)
407 { 393 {
408 destroy_asimage (&background); 394 destroy_asimage (&background);
409 background = tmp; 395 background = tmp;
428 414
429 if (!original_asim 415 if (!original_asim
430 || (!(bg_flags & BG_ROOT_ALIGN) 416 || (!(bg_flags & BG_ROOT_ALIGN)
431 && (x >= target_width 417 && (x >= target_width
432 || y >= target_height 418 || y >= target_height
433 || (x + w <= 0) 419 || x + w <= 0
434 || (y + h <= 0)))) 420 || y + h <= 0)))
435 { 421 {
436 if (background) 422 if (background)
437 { 423 {
438 new_pmap_width = background->width; 424 new_pmap_width = background->width;
439 new_pmap_height = background->height; 425 new_pmap_height = background->height;
453 } 439 }
454 else 440 else
455 { 441 {
456 result = original_asim; 442 result = original_asim;
457 443
458 if ((w != original_asim->width) 444 if (w != original_asim->width
459 || (h != original_asim->height)) 445 || h != original_asim->height)
460 { 446 {
461 result = scale_asimage (asv, original_asim, 447 result = scale_asimage (asv, original_asim,
462 w, h, 448 w, h,
463 background ? ASA_ASImage : ASA_XImage, 449 ASA_XImage,
464 100, ASIMAGE_QUALITY_DEFAULT); 450 100, ASIMAGE_QUALITY_DEFAULT);
465 } 451 }
466 452
467 if (background == NULL) 453 if (background == NULL)
468 { 454 {
718 get_image_geometry (image_width, image_height, w, h, x, y); 704 get_image_geometry (image_width, image_height, w, h, x, y);
719 705
720 if (!(bg_flags & BG_ROOT_ALIGN) 706 if (!(bg_flags & BG_ROOT_ALIGN)
721 && (x >= target_width 707 && (x >= target_width
722 || y >= target_height 708 || y >= target_height
723 || (x + w <= 0) 709 || x + w <= 0
724 || (y + h <= 0))) 710 || y + h <= 0))
725 return false; 711 return false;
726 712
727 result = pixbuf; 713 result = pixbuf;
728 714
729 if ((w != image_width) 715 if (w != image_width
730 || (h != image_height)) 716 || h != image_height)
731 { 717 {
732 result = gdk_pixbuf_scale_simple (pixbuf, 718 result = gdk_pixbuf_scale_simple (pixbuf,
733 w, h, 719 w, h,
734 GDK_INTERP_BILINEAR); 720 GDK_INTERP_BILINEAR);
735 } 721 }
864rxvt_term::bg_set_file (const char *file) 850rxvt_term::bg_set_file (const char *file)
865{ 851{
866 if (!file || !*file) 852 if (!file || !*file)
867 return false; 853 return false;
868 854
855 bool ret = false;
869 if (const char *p = strchr (file, ';')) 856 const char *p = strchr (file, ';');
857
858 if (p)
870 { 859 {
871 size_t len = p - file; 860 size_t len = p - file;
872 char *f = rxvt_temp_buf<char> (len + 1); 861 char *f = rxvt_temp_buf<char> (len + 1);
873 memcpy (f, file, len); 862 memcpy (f, file, len);
874 f[len] = '\0'; 863 f[len] = '\0';
883 { 872 {
884 if (original_asim) 873 if (original_asim)
885 safe_asimage_destroy (original_asim); 874 safe_asimage_destroy (original_asim);
886 original_asim = image; 875 original_asim = image;
887 bg_flags |= BG_IS_FROM_FILE | BG_CLIENT_RENDER; 876 bg_flags |= BG_IS_FROM_FILE | BG_CLIENT_RENDER;
888 return true; 877 ret = true;
889 } 878 }
890# endif 879# endif
891 880
892# ifdef HAVE_PIXBUF 881# ifdef HAVE_PIXBUF
893 GdkPixbuf *image = gdk_pixbuf_new_from_file (file, NULL); 882 GdkPixbuf *image = gdk_pixbuf_new_from_file (file, NULL);
895 { 884 {
896 if (pixbuf) 885 if (pixbuf)
897 g_object_unref (pixbuf); 886 g_object_unref (pixbuf);
898 pixbuf = image; 887 pixbuf = image;
899 bg_flags |= BG_IS_FROM_FILE; 888 bg_flags |= BG_IS_FROM_FILE;
900 return true; 889 ret = true;
901 } 890 }
902# endif 891# endif
903 892
893 if (ret)
894 {
895 if (p)
896 bg_set_geometry (p + 1);
897 else
898 bg_set_default_geometry ();
899 }
900
904 return false; 901 return ret;
905} 902}
906 903
907# endif /* BG_IMAGE_FROM_FILE */ 904# endif /* BG_IMAGE_FROM_FILE */
908 905
909# ifdef ENABLE_TRANSPARENCY 906# ifdef ENABLE_TRANSPARENCY
1280 bg_pmap_width = window_width; 1277 bg_pmap_width = window_width;
1281 bg_pmap_height = window_height; 1278 bg_pmap_height = window_height;
1282 } 1279 }
1283 1280
1284 /* straightforward pixmap copy */ 1281 /* straightforward pixmap copy */
1285 while (sx < 0) sx += root_width; 1282 while (sx < 0) sx += root_pmap_width;
1286 while (sy < 0) sy += root_height; 1283 while (sy < 0) sy += root_pmap_height;
1287 1284
1288 gcv.tile = recoded_root_pmap; 1285 gcv.tile = recoded_root_pmap;
1289 gcv.fill_style = FillTiled; 1286 gcv.fill_style = FillTiled;
1290 gcv.ts_x_origin = -sx; 1287 gcv.ts_x_origin = -sx;
1291 gcv.ts_y_origin = -sy; 1288 gcv.ts_y_origin = -sy;
1346 { 1343 {
1347 /* we need to re-generate transparency pixmap in that case ! */ 1344 /* we need to re-generate transparency pixmap in that case ! */
1348 tr_flags = make_transparency_pixmap (); 1345 tr_flags = make_transparency_pixmap ();
1349 if (tr_flags == 0) 1346 if (tr_flags == 0)
1350 return false; 1347 return false;
1351 else if (!(tr_flags & BG_EFFECTS_FLAGS))
1352 bg_flags |= BG_IS_VALID; 1348 bg_flags |= BG_IS_VALID;
1353 } 1349 }
1354# endif 1350# endif
1355 1351
1356# ifdef BG_IMAGE_FROM_FILE 1352# ifdef BG_IMAGE_FROM_FILE
1357 if ((bg_flags & BG_IS_FROM_FILE) 1353 if ((bg_flags & BG_IS_FROM_FILE)
1363# endif 1359# endif
1364 1360
1365# if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE) 1361# if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE)
1366 XImage *result = NULL; 1362 XImage *result = NULL;
1367 1363
1368 if (tr_flags && !(bg_flags & BG_IS_VALID)) 1364 if (tr_flags & BG_NEEDS_TINT)
1369 { 1365 {
1370 result = XGetImage (dpy, bg_pixmap, 0, 0, bg_pmap_width, bg_pmap_height, AllPlanes, ZPixmap); 1366 result = XGetImage (dpy, bg_pixmap, 0, 0, bg_pmap_width, bg_pmap_height, AllPlanes, ZPixmap);
1371 } 1367 }
1372 1368
1373 if (result) 1369 if (result)
1374 { 1370 {
1375 /* our own client-side tinting */ 1371 /* our own client-side tinting */
1376 if (tr_flags & BG_NEEDS_TINT) 1372 //if (tr_flags & BG_NEEDS_TINT)
1373 if (1)
1377 { 1374 {
1378 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); 1375 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC);
1379 if (bg_flags & BG_TINT_SET) 1376 if (bg_flags & BG_TINT_SET)
1380 tint.get (c); 1377 tint.get (c);
1381 shade_ximage (DefaultVisual (dpy, display->screen), result, shade, c); 1378 shade_ximage (DefaultVisual (dpy, display->screen), result, shade, c);
1386 if (gc) 1383 if (gc)
1387 { 1384 {
1388 XPutImage (dpy, bg_pixmap, gc, result, 0, 0, 0, 0, result->width, result->height); 1385 XPutImage (dpy, bg_pixmap, gc, result, 0, 0, 0, 0, result->width, result->height);
1389 1386
1390 XFreeGC (dpy, gc); 1387 XFreeGC (dpy, gc);
1391 bg_flags |= BG_IS_VALID;
1392 } 1388 }
1393 1389
1394 XDestroyImage (result); 1390 XDestroyImage (result);
1395 } 1391 }
1396# endif 1392# endif
1437} 1433}
1438 1434
1439#endif /* HAVE_BG_PIXMAP */ 1435#endif /* HAVE_BG_PIXMAP */
1440 1436
1441#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE) 1437#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE)
1442/* taken from aterm-0.4.2 */ 1438/* based on code from aterm-0.4.2 */
1439
1440static inline void
1441fill_lut (uint32_t *lookup, uint32_t mask, int sh, unsigned short low, unsigned short high)
1442{
1443 for (int i = 0; i <= mask >> sh; i++)
1444 {
1445 uint32_t tmp;
1446 tmp = i * high;
1447 tmp += (mask >> sh) * low;
1448 lookup[i] = (tmp / 0xffff) << sh;
1449 }
1450}
1443 1451
1444static void 1452static void
1445shade_ximage (Visual *visual, XImage *ximage, int shade, const rgba &c) 1453shade_ximage (Visual *visual, XImage *ximage, int shade, const rgba &c)
1446{ 1454{
1447 int sh_r, sh_g, sh_b; 1455 int sh_r, sh_g, sh_b;
1448 uint32_t mask_r, mask_g, mask_b; 1456 uint32_t mask_r, mask_g, mask_b;
1449 uint32_t *lookup, *lookup_r, *lookup_g, *lookup_b; 1457 uint32_t *lookup, *lookup_r, *lookup_g, *lookup_b;
1450 rgba low; 1458 unsigned short low;
1451 rgba high; 1459 rgba high;
1452 int i;
1453 int host_byte_order = ecb_big_endian () ? MSBFirst : LSBFirst; 1460 int host_byte_order = ecb_big_endian () ? MSBFirst : LSBFirst;
1454 1461
1455 if (visual->c_class != TrueColor || ximage->format != ZPixmap) return; 1462 if (visual->c_class != TrueColor || ximage->format != ZPixmap) return;
1456 1463
1457 /* for convenience */ 1464 /* for convenience */
1525 1532
1526 high.r = c.r * shade / 100; 1533 high.r = c.r * shade / 100;
1527 high.g = c.g * shade / 100; 1534 high.g = c.g * shade / 100;
1528 high.b = c.b * shade / 100; 1535 high.b = c.b * shade / 100;
1529 1536
1530 low.r = 65535 * (100 - shade) / 100; 1537 low = 0xffff * (100 - shade) / 100;
1531 low.g = 65535 * (100 - shade) / 100;
1532 low.b = 65535 * (100 - shade) / 100;
1533 } 1538 }
1534 else 1539 else
1535 { 1540 {
1536 high.r = c.r * shade / 100; 1541 high.r = c.r * shade / 100;
1537 high.g = c.g * shade / 100; 1542 high.g = c.g * shade / 100;
1538 high.b = c.b * shade / 100; 1543 high.b = c.b * shade / 100;
1539 1544
1540 low.r = low.g = low.b = 0; 1545 low = 0;
1541 } 1546 }
1542 1547
1543 /* fill our lookup tables */ 1548 /* fill our lookup tables */
1544 for (i = 0; i <= mask_r>>sh_r; i++) 1549 fill_lut (lookup_r, mask_r, sh_r, low, high.r);
1545 { 1550 fill_lut (lookup_g, mask_g, sh_g, low, high.g);
1546 uint32_t tmp; 1551 fill_lut (lookup_b, mask_b, sh_b, low, high.b);
1547 tmp = i * high.r;
1548 tmp += (mask_r>>sh_r) * low.r;
1549 lookup_r[i] = (tmp/65535)<<sh_r;
1550 }
1551 for (i = 0; i <= mask_g>>sh_g; i++)
1552 {
1553 uint32_t tmp;
1554 tmp = i * high.g;
1555 tmp += (mask_g>>sh_g) * low.g;
1556 lookup_g[i] = (tmp/65535)<<sh_g;
1557 }
1558 for (i = 0; i <= mask_b>>sh_b; i++)
1559 {
1560 uint32_t tmp;
1561 tmp = i * high.b;
1562 tmp += (mask_b>>sh_b) * low.b;
1563 lookup_b[i] = (tmp/65535)<<sh_b;
1564 }
1565 1552
1566 /* apply table to input image (replacing colors by newly calculated ones) */ 1553 /* apply table to input image (replacing colors by newly calculated ones) */
1567 if (ximage->bits_per_pixel == 32 1554 if (ximage->bits_per_pixel == 32
1568 && (ximage->depth == 24 || ximage->depth == 32) 1555 && (ximage->depth == 24 || ximage->depth == 32)
1569 && ximage->byte_order == host_byte_order) 1556 && ximage->byte_order == host_byte_order)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines