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.28 by ayin, Tue Jan 29 13:57:23 2008 UTC vs.
Revision 1.50 by sf-exg, Tue Aug 31 15:14:06 2010 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: background.C - former xpm.C 2 * File: background.C - former xpm.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2005-2008 Marc Lehmann <pcg@goof.com>
7 * Copyright (c) 2007 Sasha Vasko <sasha@aftercode.net> 7 * Copyright (c) 2007 Sasha Vasko <sasha@aftercode.net>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 2 of the License, or
27#define DO_TIMING_TEST 0 27#define DO_TIMING_TEST 0
28 28
29#if DO_TIMING_TEST 29#if DO_TIMING_TEST
30# include <sys/time.h> 30# include <sys/time.h>
31#define TIMING_TEST_START(id) \ 31#define TIMING_TEST_START(id) \
32 struct timeval timing_test_##id##_stv;\ 32 struct timeval timing_test_##id##_stv; \
33 gettimeofday (&timing_test_##id##_stv, NULL); 33 gettimeofday (&timing_test_##id##_stv, NULL);
34 34
35#define TIMING_TEST_PRINT_RESULT(id) \ 35#define TIMING_TEST_PRINT_RESULT(id) \
36 do{ struct timeval tv;gettimeofday (&tv, NULL); tv.tv_sec -= (timing_test_##id##_stv).tv_sec;\ 36 do { \
37 struct timeval tv; \
38 gettimeofday (&tv, NULL); \
39 tv.tv_sec -= (timing_test_##id##_stv).tv_sec; \
37 fprintf (stderr, "%s: %s: %d: elapsed %ld usec\n", #id, __FILE__, __LINE__,\ 40 fprintf (stderr, "%s: %s: %d: elapsed %ld usec\n", #id, __FILE__, __LINE__, \
38 tv.tv_sec * 1000000 + tv.tv_usec - (timing_test_##id##_stv).tv_usec);}while (0) 41 tv.tv_sec * 1000000 + tv.tv_usec - (timing_test_##id##_stv).tv_usec); \
42 } while (0)
39 43
40#else 44#else
41#define TIMING_TEST_START(id) do{}while (0) 45#define TIMING_TEST_START(id) do {} while (0)
42#define TIMING_TEST_PRINT_RESULT(id) do{}while (0) 46#define TIMING_TEST_PRINT_RESULT(id) do {} while (0)
43#endif 47#endif
44 48
45/* 49/*
46 * Pixmap geometry string interpretation : 50 * Pixmap geometry string interpretation :
47 * Each geometry string contains zero or one scale/position 51 * Each geometry string contains zero or one scale/position
48 * adjustment and may optionally be followed by a colon and one or more 52 * adjustment and may optionally be followed by a colon and one or more
49 * colon-delimited pixmap operations. 53 * colon-delimited pixmap operations.
50 * The following table shows the valid geometry strings and their 54 * The following table shows the valid geometry strings and their
51 * affects on the background image : 55 * effects on the background image :
52 * 56 *
53 * WxH+X+Y Set scaling to W% by H%, and position to X% by Y%. 57 * WxH+X+Y Set scaling to W% by H%, and position to X% by Y%.
54 * W and H are percentages of the terminal window size. 58 * W and H are percentages of the terminal window size.
55 * X and Y are also percentages; e.g., +50+50 centers 59 * X and Y are also percentages; e.g., +50+50 centers
56 * the image in the window. 60 * the image in the window.
93 // zero_initialised-derived structs 97 // zero_initialised-derived structs
94#ifdef HAVE_AFTERIMAGE 98#ifdef HAVE_AFTERIMAGE
95 original_asim = NULL; 99 original_asim = NULL;
96#endif 100#endif
97#ifdef BG_IMAGE_FROM_FILE 101#ifdef BG_IMAGE_FROM_FILE
102 have_image = false;
98 h_scale = v_scale = 0; 103 h_scale = v_scale = 0;
99 h_align = v_align = 0; 104 h_align = v_align = 0;
100#endif 105#endif
101 flags = 0; 106 flags = 0;
102 pixmap = None; 107 pixmap = None;
123 if (flags & isTransparent) 128 if (flags & isTransparent)
124 return true; 129 return true;
125# endif 130# endif
126 131
127# ifdef BG_IMAGE_FROM_FILE 132# ifdef BG_IMAGE_FROM_FILE
128# ifdef HAVE_AFTERIMAGE 133 if (have_image)
129 if (original_asim)
130# endif
131 { 134 {
132 if (h_scale != 0 || v_scale != 0 135 if (h_scale != 0 || v_scale != 0
133 || h_align != 0 || v_align != 0) 136 || h_align != 0 || v_align != 0)
134 return true; 137 return true;
135 } 138 }
136# endif 139# endif
137 140
138 return false; 141 return false;
139} 142}
140 143
141bool 144bool
142bgPixmap_t::window_position_sensitive () 145bgPixmap_t::window_position_sensitive ()
143{ 146{
144# ifdef ENABLE_TRANSPARENCY 147# ifdef ENABLE_TRANSPARENCY
145 if (flags & isTransparent) 148 if (flags & isTransparent)
146 return true; 149 return true;
147# endif 150# endif
148 151
149# ifdef BG_IMAGE_FROM_FILE 152# ifdef BG_IMAGE_FROM_FILE
150# ifdef HAVE_AFTERIMAGE 153 if (have_image)
151 if (original_asim)
152# endif
153 { 154 {
154 if (h_align == rootAlign || v_align == rootAlign) 155 if (h_align == rootAlign || v_align == rootAlign)
155 return true; 156 return true;
156 } 157 }
157# endif 158# endif
259 int geom_flags = 0, changed = 0; 260 int geom_flags = 0, changed = 0;
260 int x = 0, y = 0; 261 int x = 0, y = 0;
261 unsigned int w = 0, h = 0; 262 unsigned int w = 0, h = 0;
262 unsigned int n; 263 unsigned int n;
263 unsigned long new_flags = (flags & (~geometryFlags)); 264 unsigned long new_flags = (flags & (~geometryFlags));
264 char *p; 265 const char *p;
265# define MAXLEN_GEOM 256 /* could be longer than regular geometry string */ 266# define MAXLEN_GEOM 256 /* could be longer than regular geometry string */
266 267
267 if (geom == NULL) 268 if (geom == NULL)
268 return false; 269 return false;
269 270
437 { 438 {
438 flags = new_flags; 439 flags = new_flags;
439 changed++; 440 changed++;
440 } 441 }
441 442
442//fprintf (stderr, "flags = %lX, scale = %ux%u, align=%+d%+d\n", 443 //fprintf (stderr, "flags = %lX, scale = %ux%u, align=%+d%+d\n",
443// flags, h_scale, v_scale, h_align, v_align); 444 // flags, h_scale, v_scale, h_align, v_align);
444 return (changed > 0); 445 return (changed > 0);
445} 446}
446 447
447# ifdef HAVE_AFTERIMAGE 448# ifdef HAVE_AFTERIMAGE
448bool 449bool
449bgPixmap_t::render_asim (ASImage *background, ARGB32 background_tint) 450bgPixmap_t::render_image (unsigned long background_flags)
450{ 451{
451 if (target == NULL) 452 if (target == NULL)
452 return false; 453 return false;
453 454
455 target->init_asv ();
456
457 ASImage *background = NULL;
458 ARGB32 background_tint = TINT_LEAVE_SAME;
459
460# ifdef ENABLE_TRANSPARENCY
461 if (background_flags)
462 background = pixmap2ximage (target->asv, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, 100);
463
464 if (!(background_flags & transpPmapTinted) && (flags & tintNeeded))
465 {
466 ShadingInfo as_shade;
467 as_shade.shading = (shade == 0) ? 100 : shade;
468
469 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC);
470 if (flags & tintSet)
471 tint.get (c);
472 as_shade.tintColor.red = c.r;
473 as_shade.tintColor.green = c.g;
474 as_shade.tintColor.blue = c.b;
475
476 background_tint = shading2tint32 (&as_shade);
477 }
478
479 if (!(background_flags & transpPmapBlured) && (flags & blurNeeded) && background != NULL)
480 {
481 ASImage *tmp = blur_asimage_gauss (target->asv, background, h_blurRadius, v_blurRadius, 0xFFFFFFFF,
482 (original_asim == NULL || tint == TINT_LEAVE_SAME) ? ASA_XImage : ASA_ASImage,
483 100, ASIMAGE_QUALITY_DEFAULT);
484 if (tmp)
485 {
486 destroy_asimage (&background);
487 background = tmp;
488 }
489 }
490# endif
491
492 ASImage *result = 0;
493
454 int target_width = (int)target->szHint.width; 494 int target_width = target->szHint.width;
455 int target_height = (int)target->szHint.height; 495 int target_height = target->szHint.height;
456 int new_pmap_width = target_width, new_pmap_height = target_height; 496 int new_pmap_width = target_width;
457 ASImage *result = NULL; 497 int new_pmap_height = target_height;
458 498
459 int x = 0; 499 int x = 0;
460 int y = 0; 500 int y = 0;
461 int w = h_scale * target_width / 100; 501 int w = h_scale * target_width / 100;
462 int h = v_scale * target_height / 100; 502 int h = v_scale * target_height / 100;
465 505
466 if (original_asim) 506 if (original_asim)
467 { 507 {
468 if (h_align == rootAlign || v_align == rootAlign) 508 if (h_align == rootAlign || v_align == rootAlign)
469 { 509 {
470 target->get_window_origin(x, y); 510 target->get_window_origin (x, y);
471 x = -x; 511 x = -x;
472 y = -y; 512 y = -y;
473 } 513 }
474 514
475 if (h_align != rootAlign) 515 if (h_align != rootAlign)
491 new_pmap_height = background->height; 531 new_pmap_height = background->height;
492 result = background; 532 result = background;
493 533
494 if (background_tint != TINT_LEAVE_SAME) 534 if (background_tint != TINT_LEAVE_SAME)
495 { 535 {
496 ASImage* tmp = tile_asimage (target->asv, background, 0, 0, 536 ASImage *tmp = tile_asimage (target->asv, background, 0, 0,
497 target_width, target_height, background_tint, 537 target_width, target_height, background_tint,
498 ASA_XImage, 100, ASIMAGE_QUALITY_DEFAULT); 538 ASA_XImage, 100, ASIMAGE_QUALITY_DEFAULT);
499 if (tmp) 539 if (tmp)
500 result = tmp; 540 result = tmp;
501 } 541 }
529 if (h_scale == 0 || v_scale == 0) 569 if (h_scale == 0 || v_scale == 0)
530 { 570 {
531 ASImage *tmp = tile_asimage (target->asv, result, 571 ASImage *tmp = tile_asimage (target->asv, result,
532 (h_scale > 0) ? 0 : (int)result->width - x, 572 (h_scale > 0) ? 0 : (int)result->width - x,
533 (v_scale > 0) ? 0 : (int)result->height - y, 573 (v_scale > 0) ? 0 : (int)result->height - y,
534 new_pmap_width, 574 new_pmap_width,
535 new_pmap_height, 575 new_pmap_height,
536 TINT_LEAVE_SAME, ASA_XImage, 576 TINT_LEAVE_SAME, ASA_XImage,
537 100, ASIMAGE_QUALITY_DEFAULT); 577 100, ASIMAGE_QUALITY_DEFAULT);
538 if (tmp) 578 if (tmp)
539 { 579 {
546 } 586 }
547 else 587 else
548 { 588 {
549 /* if blending background and image - pixmap has to be sized same as target window */ 589 /* if blending background and image - pixmap has to be sized same as target window */
550 ASImageLayer *layers = create_image_layers (2); 590 ASImageLayer *layers = create_image_layers (2);
551 ASImage *merged_im = NULL;
552 591
553 layers[0].im = background; 592 layers[0].im = background;
554 layers[0].clip_width = target_width; 593 layers[0].clip_width = target_width;
555 layers[0].clip_height = target_height; 594 layers[0].clip_height = target_height;
556 layers[0].tint = background_tint; 595 layers[0].tint = background_tint;
628 pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth); 667 pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth);
629 pmap_width = new_pmap_width; 668 pmap_width = new_pmap_width;
630 pmap_height = new_pmap_height; 669 pmap_height = new_pmap_height;
631 pmap_depth = target->depth; 670 pmap_depth = target->depth;
632 } 671 }
633 /* fill with background color ( if result's not completely overlapping it)*/ 672 /* fill with background color (if result's not completely overlapping it) */
634 gcv.foreground = target->pix_colors[Color_bg]; 673 gcv.foreground = target->pix_colors[Color_bg];
635 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv); 674 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv);
636 675
637 int src_x = 0, src_y = 0, dst_x = 0, dst_y = 0; 676 int src_x = 0, src_y = 0, dst_x = 0, dst_y = 0;
638 int dst_width = result->width, dst_height = result->height; 677 int dst_width = result->width, dst_height = result->height;
656 695
657 XFreeGC (target->dpy, gc); 696 XFreeGC (target->dpy, gc);
658 TIMING_TEST_PRINT_RESULT (asim); 697 TIMING_TEST_PRINT_RESULT (asim);
659 } 698 }
660 699
700 if (background)
701 destroy_asimage (&background);
702
661 return true; 703 return true;
662} 704}
663# endif /* HAVE_AFTERIMAGE */ 705# endif /* HAVE_AFTERIMAGE */
664 706
665bool 707bool
666bgPixmap_t::set_file (const char *file) 708bgPixmap_t::set_file (const char *file)
667{ 709{
668 char *f;
669
670 assert (file); 710 assert (file);
671 711
672 if (*file) 712 if (*file)
673 { 713 {
674# ifdef HAVE_AFTERIMAGE 714 if (const char *p = strchr (file, ';'))
675 if (target->asimman == NULL)
676 target->asimman = create_generic_imageman (target->rs[Rs_path]);
677
678 if ((f = strchr (file, ';')) == NULL)
679 original_asim = get_asimage (target->asimman, file, 0xFFFFFFFF, 100);
680 else
681 { 715 {
682 size_t len = f - file; 716 size_t len = p - file;
683 f = (char *)malloc (len + 1); 717 char *f = rxvt_temp_buf<char> (len + 1);
684 memcpy (f, file, len); 718 memcpy (f, file, len);
685 f[len] = '\0'; 719 f[len] = '\0';
720 file = f;
721 }
722
723# ifdef HAVE_AFTERIMAGE
724 if (!target->asimman)
725 target->asimman = create_generic_imageman (target->rs[Rs_path]);
686 original_asim = get_asimage (target->asimman, f, 0xFFFFFFFF, 100); 726 original_asim = get_asimage (target->asimman, file, 0xFFFFFFFF, 100);
687 free (f); 727 if (original_asim)
688 } 728 have_image = true;
689 729 return have_image;
690 return original_asim;
691# endif 730# endif
692 } 731 }
693 732
694 return false; 733 return false;
695} 734}
764 flags |= bgPixmap_t::tintNeeded; 803 flags |= bgPixmap_t::tintNeeded;
765 else if (tint) 804 else if (tint)
766 { 805 {
767 if ((c.r > 0x000700 || c.g > 0x000700 || c.b > 0x000700) 806 if ((c.r > 0x000700 || c.g > 0x000700 || c.b > 0x000700)
768 && (c.r < 0x00f700 || c.g < 0x00f700 || c.b < 0x00f700)) 807 && (c.r < 0x00f700 || c.g < 0x00f700 || c.b < 0x00f700))
769 { 808 {
770 flags |= bgPixmap_t::tintNeeded; 809 flags |= bgPixmap_t::tintNeeded;
771 } 810 }
772 } 811 }
773 812
774 if (flags & bgPixmap_t::tintNeeded) 813 if (flags & bgPixmap_t::tintNeeded)
775 { 814 {
776 if (flags & bgPixmap_t::tintWholesome) 815 if (flags & bgPixmap_t::tintWholesome)
805{ 844{
806 unsigned long new_flags = compute_tint_shade_flags (NULL, shade); 845 unsigned long new_flags = compute_tint_shade_flags (NULL, shade);
807 846
808 if (new_flags != (flags & tintFlags)) 847 if (new_flags != (flags & tintFlags))
809 { 848 {
810 flags = (flags&~tintFlags)|new_flags; 849 flags = (flags&~tintFlags)|new_flags;
811 return true; 850 return true;
812 } 851 }
813 852
814 return false; 853 return false;
815} 854}
816 855
846 unsigned long result = 0; 885 unsigned long result = 0;
847 886
848 if (target == NULL) 887 if (target == NULL)
849 return 0; 888 return 0;
850 889
851 /* root dimentions may change from call to call - but Display structure should 890 /* root dimensions may change from call to call - but Display structure should
852 * be always up-to-date, so let's use it : 891 * be always up-to-date, so let's use it :
853 */ 892 */
854 Window root = target->display->root; 893 Window root = target->display->root;
855 int screen = target->display->screen; 894 int screen = target->display->screen;
856 Display *dpy = target->dpy; 895 Display *dpy = target->dpy;
901 940
902 attr.background_pixmap = ParentRelative; 941 attr.background_pixmap = ParentRelative;
903 attr.backing_store = Always; 942 attr.backing_store = Always;
904 attr.event_mask = ExposureMask; 943 attr.event_mask = ExposureMask;
905 attr.override_redirect = True; 944 attr.override_redirect = True;
906 src = XCreateWindow (dpy, root, sx, sy, window_width, window_height, 0, 945 src = XCreateWindow (dpy, root, sx, sy, window_width, window_height, 0,
907 CopyFromParent, CopyFromParent, CopyFromParent, 946 CopyFromParent, CopyFromParent, CopyFromParent,
908 CWBackPixmap|CWBackingStore|CWOverrideRedirect|CWEventMask, 947 CWBackPixmap|CWBackingStore|CWOverrideRedirect|CWEventMask,
909 &attr); 948 &attr);
910 949
911 if (src != None) 950 if (src != None)
935 XDestroyWindow (dpy, src); 974 XDestroyWindow (dpy, src);
936 XUngrabServer (dpy); 975 XUngrabServer (dpy);
937 //fprintf (stderr, "%s:%d: ev_count = %d\n", __FUNCTION__, __LINE__, ev_count); 976 //fprintf (stderr, "%s:%d: ev_count = %d\n", __FUNCTION__, __LINE__, ev_count);
938 } 977 }
939 978
940 if (!success) 979 if (!success)
941 { 980 {
942 XFreePixmap (dpy, tiled_root_pmap); 981 XFreePixmap (dpy, tiled_root_pmap);
943 tiled_root_pmap = None; 982 tiled_root_pmap = None;
944 } 983 }
945 else 984 else
946 result |= transpPmapTiled; 985 result |= transpPmapTiled;
947 } 986 }
948 else 987 else
949 { 988 {
950 /* strightforward pixmap copy */ 989 /* straightforward pixmap copy */
951 gcv.tile = root_pixmap; 990 gcv.tile = root_pixmap;
952 gcv.fill_style = FillTiled; 991 gcv.fill_style = FillTiled;
953 992
954 while (sx < 0) sx += (int)root_width; 993 while (sx < 0) sx += (int)root_width;
955 while (sy < 0) sy += (int)root_height; 994 while (sy < 0) sy += (int)root_height;
1068# if DO_TIMING_TEST 1107# if DO_TIMING_TEST
1069 XSync (dpy, False); 1108 XSync (dpy, False);
1070# endif 1109# endif
1071# endif 1110# endif
1072 } 1111 }
1073 } 1112 }
1074 } /* server side rendering completed */ 1113 } /* server side rendering completed */
1075 1114
1076 if (pixmap) 1115 if (pixmap)
1077 XFreePixmap (dpy, pixmap); 1116 XFreePixmap (dpy, pixmap);
1078 1117
1106 return false; 1145 return false;
1107} 1146}
1108# endif /* ENABLE_TRANSPARENCY */ 1147# endif /* ENABLE_TRANSPARENCY */
1109 1148
1110# ifndef HAVE_AFTERIMAGE 1149# ifndef HAVE_AFTERIMAGE
1111static void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm); 1150static void ShadeXImage(rxvt_term *term, XImage *srcImage, int shade, int rm, int gm, int bm);
1112# endif 1151# endif
1113 1152
1114bool 1153bool
1115bgPixmap_t::render () 1154bgPixmap_t::render ()
1116{ 1155{
1119 if (target == NULL) 1158 if (target == NULL)
1120 return false; 1159 return false;
1121 1160
1122 TIMING_TEST_START (tp); 1161 TIMING_TEST_START (tp);
1123 1162
1124 invalidate(); 1163 invalidate ();
1125# ifdef ENABLE_TRANSPARENCY 1164# ifdef ENABLE_TRANSPARENCY
1126 if (flags & isTransparent) 1165 if (flags & isTransparent)
1127 { 1166 {
1128 /* we need to re-generate transparency pixmap in that case ! */ 1167 /* we need to re-generate transparency pixmap in that case ! */
1129 background_flags = make_transparency_pixmap (); 1168 background_flags = make_transparency_pixmap ();
1130 if (background_flags == 0) 1169 if (background_flags == 0)
1131 return false; 1170 return false;
1132 else if ((background_flags & transpTransformations) == (flags & transpTransformations) 1171 else if ((background_flags & transpTransformations) == (flags & transpTransformations)
1133 && pmap_depth == target->depth) 1172 && pmap_depth == target->depth)
1134 flags = flags & ~isInvalid; 1173 flags = flags & ~isInvalid;
1135 } 1174 }
1136# endif 1175# endif
1137 1176
1177# ifdef BG_IMAGE_FROM_FILE
1178 if (have_image
1179 || (background_flags & transpTransformations) != (flags & transpTransformations))
1180 {
1181 if (render_image (background_flags))
1182 flags = flags & ~isInvalid;
1183 }
1184# endif
1185
1138 XImage *result = NULL; 1186 XImage *result = NULL;
1139# ifdef HAVE_AFTERIMAGE
1140 if (original_asim
1141 || (background_flags & transpTransformations) != (flags & transpTransformations))
1142 {
1143 ASImage *background = NULL;
1144 ARGB32 as_tint = TINT_LEAVE_SAME;
1145 if (background_flags)
1146 background = pixmap2ximage (target->asv, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, 100);
1147 1187
1148# ifdef ENABLE_TRANSPARENCY 1188 if (background_flags && (flags & isInvalid))
1149 if (!(background_flags & transpPmapTinted) && (flags & tintNeeded))
1150 {
1151 ShadingInfo as_shade;
1152 as_shade.shading = (shade == 0) ? 100 : shade;
1153
1154 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC);
1155 if (flags & tintSet)
1156 tint.get (c);
1157 as_shade.tintColor.red = c.r;
1158 as_shade.tintColor.green = c.g;
1159 as_shade.tintColor.blue = c.b;
1160
1161 as_tint = shading2tint32 (&as_shade);
1162 }
1163 if (!(background_flags & transpPmapBlured) && (flags & blurNeeded) && background != NULL)
1164 {
1165 ASImage* tmp = blur_asimage_gauss (target->asv, background, h_blurRadius, v_blurRadius, 0xFFFFFFFF,
1166 (original_asim == NULL || tint == TINT_LEAVE_SAME)?ASA_XImage:ASA_ASImage,
1167 100, ASIMAGE_QUALITY_DEFAULT);
1168 if (tmp)
1169 {
1170 destroy_asimage (&background);
1171 background = tmp;
1172 }
1173 }
1174# endif
1175
1176 if (render_asim (background, as_tint))
1177 flags = flags & ~isInvalid;
1178 if (background)
1179 destroy_asimage (&background);
1180 }
1181 else if (background_flags && pmap_depth != target->depth)
1182 { 1189 {
1183 result = XGetImage (target->dpy, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, ZPixmap); 1190 result = XGetImage (target->dpy, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, ZPixmap);
1184 }
1185 1191
1192# if !defined(HAVE_AFTERIMAGE) && !XFT
1186# elif !XFT /* our own client-side tinting */ 1193 /* our own client-side tinting */
1187
1188 /* ATTENTION: We ASSUME that XFT will let us do all the tinting neccessary server-side. 1194 /* ATTENTION: We ASSUME that XFT will let us do all the tinting necessary server-side.
1189 This may need to be changed in need_client_side_rendering() logic is altered !!! */ 1195 This may need to be changed in need_client_side_rendering() logic is altered !!! */
1190
1191 if (background_flags && (flags & isInvalid))
1192 {
1193 result = XGetImage (target->dpy, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, ZPixmap);
1194 if (result != NULL && !(background_flags & transpPmapTinted) && (flags & tintNeeded)) 1196 if (result != NULL && !(background_flags & transpPmapTinted) && (flags & tintNeeded))
1195 { 1197 {
1196 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); 1198 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC);
1197 if (flags & tintSet) 1199 if (flags & tintSet)
1198 tint.get (c); 1200 tint.get (c);
1199 ShadeXImage (target, result, shade, c.r, c.g, c.b); 1201 ShadeXImage (target, result, shade, c.r, c.g, c.b);
1200 } 1202 }
1203# endif
1201 } 1204 }
1202# endif /* HAVE_AFTERIMAGE */
1203 1205
1204 if (result) 1206 if (result)
1205 { 1207 {
1206 GC gc = XCreateGC (target->dpy, target->vt, 0UL, NULL); 1208 GC gc = XCreateGC (target->dpy, target->vt, 0UL, NULL);
1207 1209
1239 1241
1240 XFreeGC (target->dpy, gc); 1242 XFreeGC (target->dpy, gc);
1241 flags = flags & ~isInvalid; 1243 flags = flags & ~isInvalid;
1242 } 1244 }
1243 1245
1244 XDestroyImage (result); 1246 XDestroyImage (result);
1245 } 1247 }
1246 1248
1247 if (flags & isInvalid) 1249 if (flags & isInvalid)
1248 { 1250 {
1249 if (pixmap != None) 1251 if (pixmap != None)
1273# ifdef ENABLE_TRANSPARENCY 1275# ifdef ENABLE_TRANSPARENCY
1274 root_depth = DefaultDepthOfScreen (ScreenOfDisplay (target->dpy, target->display->screen)); 1276 root_depth = DefaultDepthOfScreen (ScreenOfDisplay (target->dpy, target->display->screen));
1275# endif 1277# endif
1276 return true; 1278 return true;
1277 } 1279 }
1280
1278 return false; 1281 return false;
1279} 1282}
1280 1283
1281void 1284void
1282bgPixmap_t::apply () 1285bgPixmap_t::apply ()
1283{ 1286{
1284 if (target) 1287 if (target)
1285 { 1288 {
1286 flags &= ~isVtOrigin; 1289 flags &= ~isVtOrigin;
1290
1287 if (pixmap != None) 1291 if (pixmap != None)
1288 { 1292 {
1289 /* set target's background to pixmap */ 1293 /* set target's background to pixmap */
1290# ifdef ENABLE_TRANSPARENCY 1294# ifdef ENABLE_TRANSPARENCY
1291 if (flags & isTransparent) 1295 if (flags & isTransparent)
1292 { 1296 {
1293 XSetWindowBackgroundPixmap (target->dpy, target->parent[0], pixmap); 1297 XSetWindowBackgroundPixmap (target->dpy, target->parent[0], pixmap);
1294 XSetWindowBackgroundPixmap (target->dpy, target->vt, ParentRelative); 1298 XSetWindowBackgroundPixmap (target->dpy, target->vt, ParentRelative);
1299
1295 if (target->scrollBar.win) 1300 if (target->scrollBar.win)
1296 XSetWindowBackgroundPixmap (target->dpy, target->scrollBar.win, ParentRelative); 1301 XSetWindowBackgroundPixmap (target->dpy, target->scrollBar.win, ParentRelative);
1297 } 1302 }
1298 else 1303 else
1299# endif 1304# endif
1301 flags |= isVtOrigin; 1306 flags |= isVtOrigin;
1302 /* force old pixmap dereference in case it was transparent before :*/ 1307 /* force old pixmap dereference in case it was transparent before :*/
1303 XSetWindowBackground (target->dpy, target->parent[0], target->pix_colors[Color_border]); 1308 XSetWindowBackground (target->dpy, target->parent[0], target->pix_colors[Color_border]);
1304 XSetWindowBackgroundPixmap (target->dpy, target->vt, pixmap); 1309 XSetWindowBackgroundPixmap (target->dpy, target->vt, pixmap);
1305 /* do we also need to set scrollbar's background here ? */ 1310 /* do we also need to set scrollbar's background here ? */
1311
1306 if (target->scrollBar.win) 1312 if (target->scrollBar.win)
1307 XSetWindowBackground (target->dpy, target->scrollBar.win, target->pix_colors[Color_border]); 1313 XSetWindowBackground (target->dpy, target->scrollBar.win, target->pix_colors[Color_border]);
1308 } 1314 }
1309 } 1315 }
1310 else 1316 else
1311 { 1317 {
1312 /* set target background to a pixel */ 1318 /* set target background to a pixel */
1313 XSetWindowBackground (target->dpy, target->parent[0], target->pix_colors[Color_border]); 1319 XSetWindowBackground (target->dpy, target->parent[0], target->pix_colors[Color_border]);
1314 XSetWindowBackground (target->dpy, target->vt, target->pix_colors[Color_bg]); 1320 XSetWindowBackground (target->dpy, target->vt, target->pix_colors[Color_bg]);
1315 /* do we also need to set scrollbar's background here ? */ 1321 /* do we also need to set scrollbar's background here ? */
1316 if (target->scrollBar.win) 1322 if (target->scrollBar.win)
1317 XSetWindowBackground (target->dpy, target->scrollBar.win, target->pix_colors[Color_border]); 1323 XSetWindowBackground (target->dpy, target->scrollBar.win, target->pix_colors[Color_border]);
1318 } 1324 }
1325
1319 /* don't want Expose on the parent or vt. It is better to use 1326 /* don't want Expose on the parent or vt. It is better to use
1320 scr_touch or we get a great deal of flicker otherwise: */ 1327 scr_touch or we get a great deal of flicker otherwise: */
1321 XClearWindow (target->dpy, target->parent[0]); 1328 XClearWindow (target->dpy, target->parent[0]);
1322 1329
1323 if (target->scrollBar.win) 1330 if (target->scrollBar.state && target->scrollBar.win)
1324 { 1331 {
1325 target->scrollBar.state = STATE_IDLE; 1332 target->scrollBar.state = STATE_IDLE;
1326 target->scrollbar_show (0); 1333 target->scrollBar.show (0);
1327 } 1334 }
1328 1335
1329 target->want_refresh = 1; 1336 target->want_refresh = 1;
1330 flags |= hasChanged; 1337 flags |= hasChanged;
1331 } 1338 }
1337/* taken from aterm-0.4.2 */ 1344/* taken from aterm-0.4.2 */
1338 1345
1339typedef uint32_t RUINT32T; 1346typedef uint32_t RUINT32T;
1340 1347
1341static void 1348static void
1342ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm) 1349ShadeXImage(rxvt_term *term, XImage *srcImage, int shade, int rm, int gm, int bm)
1343{ 1350{
1344 int sh_r, sh_g, sh_b; 1351 int sh_r, sh_g, sh_b;
1345 RUINT32T mask_r, mask_g, mask_b; 1352 RUINT32T mask_r, mask_g, mask_b;
1346 RUINT32T *lookup, *lookup_r, *lookup_g, *lookup_b; 1353 RUINT32T *lookup, *lookup_r, *lookup_g, *lookup_b;
1347 unsigned int lower_lim_r, lower_lim_g, lower_lim_b; 1354 unsigned int lower_lim_r, lower_lim_g, lower_lim_b;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines