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.123 by sf-exg, Tue Nov 23 08:37:37 2010 UTC vs.
Revision 1.134 by sf-exg, Tue Jan 11 11:04:39 2011 UTC

175# endif 175# endif
176 176
177 return false; 177 return false;
178} 178}
179 179
180bool bgPixmap_t::need_client_side_rendering ()
181{
182# ifdef HAVE_AFTERIMAGE
183 if (original_asim)
184 return true;
185# endif
186 return false;
187}
188
189# ifdef BG_IMAGE_FROM_FILE 180# ifdef BG_IMAGE_FROM_FILE
190static inline bool 181static inline bool
191check_set_scale_value (int geom_flags, int flag, unsigned int &scale, unsigned int new_value) 182check_set_scale_value (int geom_flags, int flag, unsigned int &scale, unsigned int new_value)
192{ 183{
193 if (geom_flags & flag) 184 if (geom_flags & flag)
262 int x = 0, y = 0; 253 int x = 0, y = 0;
263 unsigned int w = 0, h = 0; 254 unsigned int w = 0, h = 0;
264 unsigned int n; 255 unsigned int n;
265 unsigned long new_flags = (flags & (~geometryFlags)); 256 unsigned long new_flags = (flags & (~geometryFlags));
266 const char *ops; 257 const char *ops;
267# define MAXLEN_GEOM 256 /* could be longer than regular geometry string */
268 258
269 if (geom == NULL) 259 if (geom == NULL)
270 return false; 260 return false;
271 261
272 char str[MAXLEN_GEOM]; 262 char str[256];
273 263
274 ops = strchr (geom, ':'); 264 ops = strchr (geom, ':');
275 if (ops == NULL) 265 if (ops == NULL)
276 n = strlen (geom); 266 n = strlen (geom);
277 else 267 else
278 n = ops - geom; 268 n = ops - geom;
279 269
280 if (n >= MAXLEN_GEOM) 270 if (n >= sizeof (str))
281 return false; 271 return false;
282 272
283 memcpy (str, geom, n); 273 memcpy (str, geom, n);
284 str[n] = '\0'; 274 str[n] = '\0';
285 rxvt_strtrim (str); 275 rxvt_strtrim (str);
307 geom_flags |= WidthValue|HeightValue|XValue|YValue; 297 geom_flags |= WidthValue|HeightValue|XValue|YValue;
308 } 298 }
309 299
310 if (ops) 300 if (ops)
311 { 301 {
312 while (*ops) 302 char **arr = rxvt_strsplit (':', ops + 1);
313 {
314 while (*ops == ':' || isspace(*ops)) ++ops;
315 303
316# define CHECK_GEOM_OPS(op_str) (strncasecmp (ops, (op_str), sizeof (op_str) - 1) == 0) 304 for (int i = 0; arr[i]; i++)
317 if (CHECK_GEOM_OPS ("tile")) 305 {
306 if (!strcasecmp (arr[i], "tile"))
318 { 307 {
319 w = h = noScale; 308 w = h = noScale;
320 geom_flags |= WidthValue|HeightValue; 309 geom_flags |= WidthValue|HeightValue;
321 } 310 }
322 else if (CHECK_GEOM_OPS ("propscale")) 311 else if (!strcasecmp (arr[i], "propscale"))
323 { 312 {
324 new_flags |= propScale; 313 new_flags |= propScale;
325 } 314 }
326 else if (CHECK_GEOM_OPS ("hscale")) 315 else if (!strcasecmp (arr[i], "hscale"))
327 { 316 {
328 if (w == 0) w = windowScale; 317 if (w == 0) w = windowScale;
329 318
330 h = noScale; 319 h = noScale;
331 geom_flags |= WidthValue|HeightValue; 320 geom_flags |= WidthValue|HeightValue;
332 } 321 }
333 else if (CHECK_GEOM_OPS ("vscale")) 322 else if (!strcasecmp (arr[i], "vscale"))
334 { 323 {
335 if (h == 0) h = windowScale; 324 if (h == 0) h = windowScale;
336 325
337 w = noScale; 326 w = noScale;
338 geom_flags |= WidthValue|HeightValue; 327 geom_flags |= WidthValue|HeightValue;
339 } 328 }
340 else if (CHECK_GEOM_OPS ("scale")) 329 else if (!strcasecmp (arr[i], "scale"))
341 { 330 {
342 if (h == 0) h = windowScale; 331 if (h == 0) h = windowScale;
343 if (w == 0) w = windowScale; 332 if (w == 0) w = windowScale;
344 333
345 geom_flags |= WidthValue|HeightValue; 334 geom_flags |= WidthValue|HeightValue;
346 } 335 }
347 else if (CHECK_GEOM_OPS ("auto")) 336 else if (!strcasecmp (arr[i], "auto"))
348 { 337 {
349 w = h = windowScale; 338 w = h = windowScale;
350 x = y = centerAlign; 339 x = y = centerAlign;
351 geom_flags |= WidthValue|HeightValue|XValue|YValue; 340 geom_flags |= WidthValue|HeightValue|XValue|YValue;
352 } 341 }
353 else if (CHECK_GEOM_OPS ("root")) 342 else if (!strcasecmp (arr[i], "root"))
354 { 343 {
355 new_flags |= rootAlign; 344 new_flags |= rootAlign;
356 w = h = noScale; 345 w = h = noScale;
357 geom_flags |= WidthValue|HeightValue; 346 geom_flags |= WidthValue|HeightValue;
358 } 347 }
359# undef CHECK_GEOM_OPS
360
361 while (*ops != ':' && *ops != '\0') ++ops;
362 } /* done parsing ops */ 348 } /* done parsing ops */
349
350 rxvt_free_strsplit (arr);
363 } 351 }
364 352
365 if (check_set_scale_value (geom_flags, WidthValue, h_scale, w)) changed = true; 353 if (check_set_scale_value (geom_flags, WidthValue, h_scale, w)) changed = true;
366 if (check_set_scale_value (geom_flags, HeightValue, v_scale, h)) changed = true; 354 if (check_set_scale_value (geom_flags, HeightValue, v_scale, h)) changed = true;
367 if (check_set_align_value (geom_flags, XValue, h_align, x)) changed = true; 355 if (check_set_align_value (geom_flags, XValue, h_align, x)) changed = true;
606 GC gc; 594 GC gc;
607 595
608 /* create Pixmap */ 596 /* create Pixmap */
609 if (pixmap == None 597 if (pixmap == None
610 || pmap_width != new_pmap_width 598 || pmap_width != new_pmap_width
611 || pmap_height != new_pmap_height 599 || pmap_height != new_pmap_height)
612 || pmap_depth != target->depth)
613 { 600 {
614 if (pixmap) 601 if (pixmap)
615 XFreePixmap (target->dpy, pixmap); 602 XFreePixmap (target->dpy, pixmap);
616 pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth); 603 pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth);
617 pmap_width = new_pmap_width; 604 pmap_width = new_pmap_width;
618 pmap_height = new_pmap_height; 605 pmap_height = new_pmap_height;
619 pmap_depth = target->depth;
620 } 606 }
621 /* fill with background color (if result's not completely overlapping it) */ 607 /* fill with background color (if result's not completely overlapping it) */
622 gcv.foreground = target->pix_colors[Color_bg]; 608 gcv.foreground = target->pix_colors[Color_bg];
623 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv); 609 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv);
624 610
656 return ret; 642 return ret;
657} 643}
658# endif /* HAVE_AFTERIMAGE */ 644# endif /* HAVE_AFTERIMAGE */
659 645
660# ifdef HAVE_PIXBUF 646# ifdef HAVE_PIXBUF
647bool
648bgPixmap_t::pixbuf_to_pixmap (GdkPixbuf *pixbuf, Pixmap pixmap, GC gc,
649 int src_x, int src_y, int dst_x, int dst_y,
650 unsigned int width, unsigned int height)
651{
652 XImage *ximage;
653 char *data, *line;
654 int bytes_per_pixel;
655 int width_r, width_g, width_b;
656 int sh_r, sh_g, sh_b;
657 int rowstride;
658 int channels;
659 unsigned char *row;
660 Visual *visual = target->visual;
661 int depth = target->depth;
662
663 if (visual->c_class != TrueColor)
664 return false;
665
666 if (depth == 24 || depth == 32)
667 bytes_per_pixel = 4;
668 else if (depth == 15 || depth == 16)
669 bytes_per_pixel = 2;
670 else
671 return false;
672
673 width_r = rxvt_popcount (visual->red_mask);
674 width_g = rxvt_popcount (visual->green_mask);
675 width_b = rxvt_popcount (visual->blue_mask);
676
677 if (width_r > 8 || width_g > 8 || width_b > 8)
678 return false;
679
680 sh_r = rxvt_ctz (visual->red_mask);
681 sh_g = rxvt_ctz (visual->green_mask);
682 sh_b = rxvt_ctz (visual->blue_mask);
683
684 if (width > INT_MAX / height / bytes_per_pixel)
685 return false;
686
687 data = (char *)malloc (width * height * bytes_per_pixel);
688 if (!data)
689 return false;
690
691 ximage = XCreateImage (target->dpy, visual, depth, ZPixmap, 0, data,
692 width, height, bytes_per_pixel * 8, 0);
693 if (!ximage)
694 {
695 free (data);
696 return false;
697 }
698
699 ximage->byte_order = byteorder::big_endian () ? MSBFirst : LSBFirst;
700
701 rowstride = gdk_pixbuf_get_rowstride (pixbuf);
702 channels = gdk_pixbuf_get_n_channels (pixbuf);
703 row = gdk_pixbuf_get_pixels (pixbuf) + src_y * rowstride + src_x * channels;
704 line = data;
705
706 for (int y = 0; y < height; y++)
707 {
708 for (int x = 0; x < width; x++)
709 {
710 unsigned char *pixel = row + x * channels;
711 uint32_t value;
712
713 value = ((pixel[0] >> (8 - width_r)) << sh_r)
714 | ((pixel[1] >> (8 - width_g)) << sh_g)
715 | ((pixel[2] >> (8 - width_b)) << sh_b);
716
717 if (bytes_per_pixel == 4)
718 ((uint32_t *)line)[x] = value;
719 else
720 ((uint16_t *)line)[x] = value;
721 }
722
723 row += rowstride;
724 line += ximage->bytes_per_line;
725 }
726
727 XPutImage (target->dpy, pixmap, gc, ximage, 0, 0, dst_x, dst_y, width, height);
728 XDestroyImage (ximage);
729 return true;
730}
731
661bool 732bool
662bgPixmap_t::render_image (unsigned long background_flags) 733bgPixmap_t::render_image (unsigned long background_flags)
663{ 734{
664 if (target == NULL) 735 if (target == NULL)
665 return false; 736 return false;
730 } 801 }
731 } 802 }
732 803
733 if (pixmap == None 804 if (pixmap == None
734 || pmap_width != new_pmap_width 805 || pmap_width != new_pmap_width
735 || pmap_height != new_pmap_height 806 || pmap_height != new_pmap_height)
736 || pmap_depth != target->depth)
737 { 807 {
738 if (pixmap) 808 if (pixmap)
739 XFreePixmap (target->dpy, pixmap); 809 XFreePixmap (target->dpy, pixmap);
740 pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth); 810 pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth);
741 pmap_width = new_pmap_width; 811 pmap_width = new_pmap_width;
742 pmap_height = new_pmap_height; 812 pmap_height = new_pmap_height;
743 pmap_depth = target->depth;
744 } 813 }
745 814
746 gcv.foreground = target->pix_colors[Color_bg]; 815 gcv.foreground = target->pix_colors[Color_bg];
747 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv); 816 gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv);
748 817
749 if (h_scale == 0 || v_scale == 0) 818 if (h_scale == 0 || v_scale == 0)
750 { 819 {
751 Pixmap tile = XCreatePixmap (target->dpy, target->vt, image_width, image_height, target->depth); 820 Pixmap tile = XCreatePixmap (target->dpy, target->vt, image_width, image_height, target->depth);
752 gdk_pixbuf_xlib_render_to_drawable (result, tile, gc, 821 pixbuf_to_pixmap (result, tile, gc,
753 0, 0, 822 0, 0,
754 0, 0, 823 0, 0,
755 image_width, image_height, 824 image_width, image_height);
756 XLIB_RGB_DITHER_NONE,
757 0, 0);
758 825
759 gcv.tile = tile; 826 gcv.tile = tile;
760 gcv.fill_style = FillTiled; 827 gcv.fill_style = FillTiled;
761 gcv.ts_x_origin = x; 828 gcv.ts_x_origin = x;
762 gcv.ts_y_origin = y; 829 gcv.ts_y_origin = y;
777 || dst_x + dst_width < new_pmap_width 844 || dst_x + dst_width < new_pmap_width
778 || dst_y + dst_height < new_pmap_height) 845 || dst_y + dst_height < new_pmap_height)
779 XFillRectangle (target->dpy, pixmap, gc, 0, 0, new_pmap_width, new_pmap_height); 846 XFillRectangle (target->dpy, pixmap, gc, 0, 0, new_pmap_width, new_pmap_height);
780 847
781 if (dst_x < new_pmap_width && dst_y < new_pmap_height) 848 if (dst_x < new_pmap_width && dst_y < new_pmap_height)
782 gdk_pixbuf_xlib_render_to_drawable (result, pixmap, gc, 849 pixbuf_to_pixmap (result, pixmap, gc,
783 src_x, src_y, 850 src_x, src_y,
784 dst_x, dst_y, 851 dst_x, dst_y,
785 dst_width, dst_height, 852 dst_width, dst_height);
786 XLIB_RGB_DITHER_NONE,
787 0, 0);
788 } 853 }
789 854
790#if XRENDER 855#if XRENDER
791 if (background_flags) 856 if (background_flags)
792 { 857 {
859 if (image) 924 if (image)
860 { 925 {
861 if (original_asim) 926 if (original_asim)
862 safe_asimage_destroy (original_asim); 927 safe_asimage_destroy (original_asim);
863 original_asim = image; 928 original_asim = image;
929 flags |= CLIENT_RENDER;
864 have_image = true; 930 have_image = true;
865 return true; 931 return true;
866 } 932 }
867# endif 933# endif
868 934
940 bool has_shade = shade != 100; 1006 bool has_shade = shade != 100;
941 1007
942 if (tint) 1008 if (tint)
943 { 1009 {
944 tint->get (c); 1010 tint->get (c);
945# define IS_COMPONENT_WHOLESOME(cmp) ((cmp) <= 0x000700 || (cmp) >= 0x00f700)
946 if (!has_shade 1011 if (!has_shade
947 && IS_COMPONENT_WHOLESOME (c.r) 1012 && (c.r <= 0x00ff || c.r >= 0xff00)
948 && IS_COMPONENT_WHOLESOME (c.g) 1013 && (c.g <= 0x00ff || c.g >= 0xff00)
949 && IS_COMPONENT_WHOLESOME (c.b)) 1014 && (c.b <= 0x00ff || c.b >= 0xff00))
950 flags |= bgPixmap_t::tintWholesome; 1015 flags |= bgPixmap_t::tintWholesome;
951# undef IS_COMPONENT_WHOLESOME
952 } 1016 }
953 1017
954 if (has_shade || tint) 1018 if (has_shade || tint)
955 flags |= bgPixmap_t::tintNeeded; 1019 flags |= bgPixmap_t::tintNeeded;
956 1020
963 if (!(flags & tintSet) || tint != new_tint) 1027 if (!(flags & tintSet) || tint != new_tint)
964 { 1028 {
965 unsigned long new_flags = compute_tint_shade_flags (&new_tint, shade); 1029 unsigned long new_flags = compute_tint_shade_flags (&new_tint, shade);
966 tint = new_tint; 1030 tint = new_tint;
967 flags = (flags & ~tintFlags) | new_flags | tintSet; 1031 flags = (flags & ~tintFlags) | new_flags | tintSet;
968 return true;
969 }
970
971 return false;
972}
973
974bool
975bgPixmap_t::unset_tint ()
976{
977 unsigned long new_flags = compute_tint_shade_flags (NULL, shade);
978
979 if (new_flags != (flags & tintFlags))
980 {
981 flags = (flags & ~tintFlags) | new_flags;
982 return true; 1032 return true;
983 } 1033 }
984 1034
985 return false; 1035 return false;
986} 1036}
1131 c.g = (c.g * shade) / 100; 1181 c.g = (c.g * shade) / 100;
1132 c.b = (c.b * shade) / 100; 1182 c.b = (c.b * shade) / 100;
1133 } 1183 }
1134 else 1184 else
1135 { 1185 {
1136 c.r = ((0xffff - c.r) * (200 - shade)) / 100; 1186 c.r = (c.r * (200 - shade)) / 100;
1137 c.g = ((0xffff - c.g) * (200 - shade)) / 100; 1187 c.g = (c.g * (200 - shade)) / 100;
1138 c.b = ((0xffff - c.b) * (200 - shade)) / 100; 1188 c.b = (c.b * (200 - shade)) / 100;
1139 } 1189 }
1140 1190
1141 XRenderPictFormat *solid_format = XRenderFindStandardFormat (dpy, PictStandardARGB32); 1191 XRenderPictFormat *solid_format = XRenderFindStandardFormat (dpy, PictStandardARGB32);
1142 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual); 1192 XRenderPictFormat *format = XRenderFindVisualFormat (dpy, visual);
1143 XRenderPictureAttributes pa; 1193 XRenderPictureAttributes pa;
1157 1207
1158 if (mask_pic && overlay_pic && back_pic) 1208 if (mask_pic && overlay_pic && back_pic)
1159 { 1209 {
1160 XRenderColor mask_c; 1210 XRenderColor mask_c;
1161 1211
1162 mask_c.red = mask_c.green = mask_c.blue = shade > 100 ? 0xffff : 0; 1212 mask_c.red = mask_c.green = mask_c.blue = 0;
1163 mask_c.alpha = 0xffff; 1213 mask_c.alpha = 0xffff;
1164 XRenderFillRectangle (dpy, PictOpSrc, overlay_pic, &mask_c, 0, 0, 1, 1); 1214 XRenderFillRectangle (dpy, PictOpSrc, overlay_pic, &mask_c, 0, 0, 1, 1);
1165 1215
1166 mask_c.alpha = 0; 1216 mask_c.alpha = 0;
1167 mask_c.red = 0xffff - c.r; 1217 mask_c.red = 0xffff - c.r;
1168 mask_c.green = 0xffff - c.g; 1218 mask_c.green = 0xffff - c.g;
1169 mask_c.blue = 0xffff - c.b; 1219 mask_c.blue = 0xffff - c.b;
1170 XRenderFillRectangle (dpy, PictOpSrc, mask_pic, &mask_c, 0, 0, 1, 1); 1220 XRenderFillRectangle (dpy, PictOpSrc, mask_pic, &mask_c, 0, 0, 1, 1);
1171 XRenderComposite (dpy, PictOpOver, overlay_pic, mask_pic, back_pic, 0, 0, 0, 0, 0, 0, width, height); 1221 XRenderComposite (dpy, PictOpOver, overlay_pic, mask_pic, back_pic, 0, 0, 0, 0, 0, 0, width, height);
1222
1223 if (shade > 100)
1224 {
1225 mask_c.red = mask_c.green = mask_c.blue = 0xffff * (shade - 100) / 100;
1226 mask_c.alpha = 0;
1227 XRenderFillRectangle (dpy, PictOpSrc, overlay_pic, &mask_c, 0, 0, 1, 1);
1228
1229 XRenderComposite (dpy, PictOpOver, overlay_pic, None, back_pic, 0, 0, 0, 0, 0, 0, width, height);
1230 }
1231
1172 ret = true; 1232 ret = true;
1173 } 1233 }
1174 1234
1175 XRenderFreePicture (dpy, mask_pic); 1235 XRenderFreePicture (dpy, mask_pic);
1176 XRenderFreePicture (dpy, overlay_pic); 1236 XRenderFreePicture (dpy, overlay_pic);
1286 { 1346 {
1287 XFillRectangle (dpy, tiled_root_pmap, gc, 0, 0, window_width, window_height); 1347 XFillRectangle (dpy, tiled_root_pmap, gc, 0, 0, window_width, window_height);
1288 result |= transpPmapTiled; 1348 result |= transpPmapTiled;
1289 XFreeGC (dpy, gc); 1349 XFreeGC (dpy, gc);
1290 1350
1291 if (!need_client_side_rendering ()) 1351 if (!(flags & CLIENT_RENDER))
1292 { 1352 {
1293 if ((flags & blurNeeded) 1353 if ((flags & blurNeeded)
1294 && (flags & HAS_RENDER_CONV)) 1354 && (flags & HAS_RENDER_CONV))
1295 { 1355 {
1296 if (blur_pixmap (tiled_root_pmap, target->visual, window_width, window_height)) 1356 if (blur_pixmap (tiled_root_pmap, target->visual, window_width, window_height))
1308 XFreePixmap (dpy, pixmap); 1368 XFreePixmap (dpy, pixmap);
1309 1369
1310 pixmap = tiled_root_pmap; 1370 pixmap = tiled_root_pmap;
1311 pmap_width = window_width; 1371 pmap_width = window_width;
1312 pmap_height = window_height; 1372 pmap_height = window_height;
1313 pmap_depth = target->depth;
1314 } 1373 }
1315 else 1374 else
1316 XFreePixmap (dpy, tiled_root_pmap); 1375 XFreePixmap (dpy, tiled_root_pmap);
1317 1376
1318 if (recoded_root_pmap != root_pixmap) 1377 if (recoded_root_pmap != root_pixmap)
1322} 1381}
1323 1382
1324void 1383void
1325bgPixmap_t::set_root_pixmap () 1384bgPixmap_t::set_root_pixmap ()
1326{ 1385{
1327 Pixmap new_root_pixmap = target->get_pixmap_property (XA_XROOTPMAP_ID); 1386 Pixmap new_root_pixmap = target->get_pixmap_property (target->xa[XA_XROOTPMAP_ID]);
1328 if (new_root_pixmap == None) 1387 if (new_root_pixmap == None)
1329 new_root_pixmap = target->get_pixmap_property (XA_ESETROOT_PMAP_ID); 1388 new_root_pixmap = target->get_pixmap_property (target->xa[XA_ESETROOT_PMAP_ID]);
1330 1389
1331 root_pixmap = new_root_pixmap; 1390 root_pixmap = new_root_pixmap;
1332} 1391}
1333# endif /* ENABLE_TRANSPARENCY */ 1392# endif /* ENABLE_TRANSPARENCY */
1334 1393
1335#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE) 1394#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE)
1336static void ShadeXImage(Visual *visual, XImage *srcImage, int shade, const rgba &c); 1395static void shade_ximage (Visual *visual, XImage *ximage, int shade, const rgba &c);
1337# endif 1396# endif
1338 1397
1339bool 1398bool
1340bgPixmap_t::render () 1399bgPixmap_t::render ()
1341{ 1400{
1380 if (!(background_flags & transpPmapTinted) && (flags & tintNeeded)) 1439 if (!(background_flags & transpPmapTinted) && (flags & tintNeeded))
1381 { 1440 {
1382 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); 1441 rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC);
1383 if (flags & tintSet) 1442 if (flags & tintSet)
1384 tint.get (c); 1443 tint.get (c);
1385 ShadeXImage (DefaultVisual (target->dpy, target->display->screen), result, shade, c); 1444 shade_ximage (DefaultVisual (target->dpy, target->display->screen), result, shade, c);
1386 } 1445 }
1387 1446
1388 GC gc = XCreateGC (target->dpy, target->vt, 0UL, NULL); 1447 GC gc = XCreateGC (target->dpy, target->vt, 0UL, NULL);
1389 1448
1390 if (gc) 1449 if (gc)
1495 1554
1496#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE) 1555#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE)
1497/* taken from aterm-0.4.2 */ 1556/* taken from aterm-0.4.2 */
1498 1557
1499static void 1558static void
1500ShadeXImage(Visual *visual, XImage *srcImage, int shade, const rgba &c) 1559shade_ximage (Visual *visual, XImage *ximage, int shade, const rgba &c)
1501{ 1560{
1502 int sh_r, sh_g, sh_b; 1561 int sh_r, sh_g, sh_b;
1503 uint32_t mask_r, mask_g, mask_b; 1562 uint32_t mask_r, mask_g, mask_b;
1504 uint32_t *lookup, *lookup_r, *lookup_g, *lookup_b; 1563 uint32_t *lookup, *lookup_r, *lookup_g, *lookup_b;
1505 rgba low; 1564 rgba low;
1506 rgba high; 1565 rgba high;
1507 int i; 1566 int i;
1508 int host_byte_order = byteorder.big_endian () ? MSBFirst : LSBFirst; 1567 int host_byte_order = byteorder::big_endian () ? MSBFirst : LSBFirst;
1509 1568
1510 if (visual->c_class != TrueColor || srcImage->format != ZPixmap) return; 1569 if (visual->c_class != TrueColor || ximage->format != ZPixmap) return;
1511 1570
1512 /* for convenience */ 1571 /* for convenience */
1513 mask_r = visual->red_mask; 1572 mask_r = visual->red_mask;
1514 mask_g = visual->green_mask; 1573 mask_g = visual->green_mask;
1515 mask_b = visual->blue_mask; 1574 mask_b = visual->blue_mask;
1516 1575
1517 /* boring lookup table pre-initialization */ 1576 /* boring lookup table pre-initialization */
1518 switch (srcImage->depth) 1577 switch (ximage->depth)
1519 { 1578 {
1520 case 15: 1579 case 15:
1521 if ((mask_r != 0x7c00) || 1580 if ((mask_r != 0x7c00) ||
1522 (mask_g != 0x03e0) || 1581 (mask_g != 0x03e0) ||
1523 (mask_b != 0x001f)) 1582 (mask_b != 0x001f))
1576 /* prepare limits for color transformation (each channel is handled separately) */ 1635 /* prepare limits for color transformation (each channel is handled separately) */
1577 if (shade > 100) 1636 if (shade > 100)
1578 { 1637 {
1579 shade = 200 - shade; 1638 shade = 200 - shade;
1580 1639
1581 high.r = (65535 - c.r) * shade / 100; 1640 high.r = c.r * shade / 100;
1582 high.g = (65535 - c.g) * shade / 100; 1641 high.g = c.g * shade / 100;
1583 high.b = (65535 - c.b) * shade / 100; 1642 high.b = c.b * shade / 100;
1584 1643
1585 low.r = 65535 - high.r; 1644 low.r = 65535 * (100 - shade) / 100;
1586 low.g = 65535 - high.g; 1645 low.g = 65535 * (100 - shade) / 100;
1587 low.b = 65535 - high.b; 1646 low.b = 65535 * (100 - shade) / 100;
1588 } 1647 }
1589 else 1648 else
1590 { 1649 {
1591 high.r = c.r * shade / 100; 1650 high.r = c.r * shade / 100;
1592 high.g = c.g * shade / 100; 1651 high.g = c.g * shade / 100;
1617 tmp += (mask_b>>sh_b) * low.b; 1676 tmp += (mask_b>>sh_b) * low.b;
1618 lookup_b[i] = (tmp/65535)<<sh_b; 1677 lookup_b[i] = (tmp/65535)<<sh_b;
1619 } 1678 }
1620 1679
1621 /* apply table to input image (replacing colors by newly calculated ones) */ 1680 /* apply table to input image (replacing colors by newly calculated ones) */
1622 if (srcImage->bits_per_pixel == 32 1681 if (ximage->bits_per_pixel == 32
1623 && (srcImage->depth == 24 || srcImage->depth == 32) 1682 && (ximage->depth == 24 || ximage->depth == 32)
1624 && srcImage->byte_order == host_byte_order) 1683 && ximage->byte_order == host_byte_order)
1625 { 1684 {
1626 uint32_t *p1, *pf, *p, *pl; 1685 uint32_t *p1, *pf, *p, *pl;
1627 p1 = (uint32_t *) srcImage->data; 1686 p1 = (uint32_t *) ximage->data;
1628 pf = (uint32_t *) (srcImage->data + srcImage->height * srcImage->bytes_per_line); 1687 pf = (uint32_t *) (ximage->data + ximage->height * ximage->bytes_per_line);
1629 1688
1630 while (p1 < pf) 1689 while (p1 < pf)
1631 { 1690 {
1632 p = p1; 1691 p = p1;
1633 pl = p1 + srcImage->width; 1692 pl = p1 + ximage->width;
1634 for (; p < pl; p++) 1693 for (; p < pl; p++)
1635 { 1694 {
1636 *p = lookup_r[(*p & 0xff0000) >> 16] | 1695 *p = lookup_r[(*p & 0xff0000) >> 16] |
1637 lookup_g[(*p & 0x00ff00) >> 8] | 1696 lookup_g[(*p & 0x00ff00) >> 8] |
1638 lookup_b[(*p & 0x0000ff)] | 1697 lookup_b[(*p & 0x0000ff)] |
1639 (*p & 0xff000000); 1698 (*p & 0xff000000);
1640 } 1699 }
1641 p1 = (uint32_t *) ((char *) p1 + srcImage->bytes_per_line); 1700 p1 = (uint32_t *) ((char *) p1 + ximage->bytes_per_line);
1642 } 1701 }
1643 } 1702 }
1644 else 1703 else
1645 { 1704 {
1646 for (int y = 0; y < srcImage->height; y++) 1705 for (int y = 0; y < ximage->height; y++)
1647 for (int x = 0; x < srcImage->width; x++) 1706 for (int x = 0; x < ximage->width; x++)
1648 { 1707 {
1649 unsigned long pixel = XGetPixel (srcImage, x, y); 1708 unsigned long pixel = XGetPixel (ximage, x, y);
1650 pixel = lookup_r[(pixel & mask_r) >> sh_r] | 1709 pixel = lookup_r[(pixel & mask_r) >> sh_r] |
1651 lookup_g[(pixel & mask_g) >> sh_g] | 1710 lookup_g[(pixel & mask_g) >> sh_g] |
1652 lookup_b[(pixel & mask_b) >> sh_b]; 1711 lookup_b[(pixel & mask_b) >> sh_b];
1653 XPutPixel (srcImage, x, y, pixel); 1712 XPutPixel (ximage, x, y, pixel);
1654 } 1713 }
1655 } 1714 }
1656 1715
1657 free (lookup); 1716 free (lookup);
1658} 1717}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines