--- rxvt-unicode/src/xpm.C 2007/06/11 17:40:15 1.39 +++ rxvt-unicode/src/xpm.C 2007/08/17 22:01:33 1.71 @@ -26,442 +26,1123 @@ #include "../config.h" /* NECESSARY */ #include "rxvt.h" /* NECESSARY */ -#ifdef XPM_BACKGROUND - -static void rxvt_pixmap_incr (unsigned int *wh, unsigned int *xy, float *incr, float *p, unsigned int widthheight, unsigned int xpmwidthheight); - /* - * These GEOM strings indicate absolute size/position: - * @ `WxH+X+Y' - * @ `WxH+X' -> Y = X - * @ `WxH' -> Y = X = 50 - * @ `W+X+Y' -> H = W - * @ `W+X' -> H = W, Y = X - * @ `W' -> H = W, X = Y = 50 - * @ `0xH' -> H *= H/100, X = Y = 50 (W unchanged) - * @ `Wx0' -> W *= W/100, X = Y = 50 (H unchanged) - * @ `=+X+Y' -> (H, W unchanged) - * @ `=+X' -> Y = X (H, W unchanged) + * Pixmap geometry string interpretation : + * Each geometry string contains zero or one scale/position + * adjustment and may optionally be followed by a colon and one or more + * colon-delimited pixmap operations. + * The following table shows the valid geometry strings and their + * affects on the background image : + * + * WxH+X+Y Set scaling to W% by H%, and position to X% by Y%. + * W and H are percentages of the terminal window size. + * X and Y are also percentages; e.g., +50+50 centers + * the image in the window. + * WxH+X Assumes Y == X + * WxH Assumes Y == X == 50 (centers the image) + * W+X+Y Assumes H == W + * W+X Assumes H == W and Y == X + * W Assumes H == W and Y == X == 50 + * + * Adjusting position only : + * =+X+Y Set position to X% by Y% (absolute). + * =+X Set position to X% by X%. + * +X+Y Adjust position horizontally X% and vertically Y% + * from current position (relative). + * +X Adjust position horizontally X% and vertically X% + * from current position. * - * These GEOM strings adjust position relative to current position: - * @ `+X+Y' - * @ `+X' -> Y = X + * Adjusting scale only : + * Wx0 Multiply horizontal scaling factor by W% + * 0xH Multiply vertical scaling factor by H% + * 0x0 No scaling (show image at normal size). * - * And this GEOM string is for querying current scale/position: - * @ `?' + * Pixmap Operations : (should be prepended by a colon) + * tile Tile image. Scaling/position modifiers above will affect + * the tile size and origin. + * propscale When scaling, scale proportionally. That is, maintain the + * proper aspect ratio for the image. Any portion of the + * background not covered by the image is filled with the + * current background color. + * hscale Scale horizontally, tile vertically ? + * vscale Tile horizontally, scale vertically ? + * scale Scale both up and down + * auto Same as 100x100+50+50 */ -int -rxvt_term::scale_pixmap (const char *geom) + +#ifdef HAVE_BG_PIXMAP +bool +bgPixmap_t::window_size_sensitive () +{ +# ifdef XPM_BACKGROUND +# ifdef HAVE_AFTERIMAGE + if (original_asim != NULL) +# endif + { + if (h_scale != 0 || v_scale != 0) + return true; + } +# endif +# ifdef ENABLE_TRANSPARENCY + if (flags & isTransparent) + return true; +# endif + return false; +} + +bool bgPixmap_t::need_client_side_rendering () +{ +# ifdef HAVE_AFTERIMAGE + if (original_asim != NULL) + return true; +# endif +# ifdef ENABLE_TRANSPARENCY + if (flags & isTransparent) + { + if ((flags & blurNeeded) + || ((flags & tintNeeded) && !(flags & tintServerSide))) + return true; + } +# endif + return false; +} + +# ifdef XPM_BACKGROUND +static inline bool +check_set_scale_value (int geom_flags, int flag, unsigned int &scale, unsigned int new_value) { - int flags, changed = 0; + if (geom_flags & flag) + { + if (new_value > 1000) + new_value = 1000; + if (new_value != scale) + { + scale = new_value; + return true; + } + } + return false; +} + +static inline bool +check_set_align_value (int geom_flags, int flag, int &align, int new_value) +{ + if (geom_flags & flag) + { + if (new_value < -100) + new_value = -100; + else if (new_value > 200) + new_value = 200; + if (new_value != align) + { + align = new_value; + return true; + } + } + return false; +} + +static inline int +make_align_position (int align, int window_size, int image_size) +{ + int diff = window_size - image_size; + int smaller = MIN (image_size,window_size); + + if (align >= 0 && align <= 50) + return diff * align / 100; + else if (align > 50 && align <= 100) + return window_size - image_size - diff * (100 - align) / 100; + else if (align > 100 && align <= 200 ) + return ((align - 100) * smaller / 100) + window_size - smaller; + else if (align > -100 && align < 0) + return ((align + 100) * smaller / 100) - image_size; + return 0; +} + +static inline int +make_clip_rectangle (int pos, int size, int target_size, int &dst_pos, int &dst_size) +{ + int src_pos = 0; + dst_pos = 0; + dst_size = size; + if (pos < 0 && size > target_size) + { + src_pos = -pos; + dst_size += pos; + } + else if (pos > 0) + dst_pos = pos; + + if (dst_pos + dst_size > target_size) + dst_size = target_size - dst_pos; + return src_pos; +} + +bool +bgPixmap_t::set_geometry (const char *geom) +{ + int geom_flags = 0, changed = 0; int x = 0, y = 0; unsigned int w = 0, h = 0; unsigned int n; + unsigned long new_flags = (flags & (~geometryFlags)); char *p; - bgPixmap_t *bgpixmap = &bgPixmap; - -#define MAXLEN_GEOM sizeof("[10000x10000+10000+10000]") +# define MAXLEN_GEOM 256 /* could be longer then regular geometry string */ if (geom == NULL) - return 0; + return false; char str[MAXLEN_GEOM]; - if (!strcmp (geom, "?")) - { - sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */ - min (bgpixmap->w, 32767), min (bgpixmap->h, 32767), - min (bgpixmap->x, 32767), min (bgpixmap->y, 32767)); - process_xterm_seq (XTerm_title, str, CHAR_ST); - return 0; - } - + while (isspace(*geom)) ++geom; if ((p = strchr (geom, ';')) == NULL) p = strchr (geom, '\0'); n = (p - geom); if (n < MAXLEN_GEOM) { + char *ops; + new_flags |= geometrySet; + strncpy (str, geom, n); str[n] = '\0'; - - if (strcmp(str, "auto") == 0) - { - if (!bgpixmap->auto_resize) - changed++; - bgpixmap->auto_resize = True ; - w = szHint.width ; - h = szHint.height ; - flags = WidthValue|HeightValue ; - } + if (str[0] == ':') + ops = &str[0]; + else if (str[0] != 'x' && str[0] != 'X' && isalpha(str[0])) + ops = &str[0]; else { - bgpixmap->auto_resize = False ; - flags = XParseGeometry (str, &x, &y, &w, &h); + char *tmp; + ops = strchr (str, ':'); + if (ops != NULL) + { + for (tmp = ops-1; tmp >= str && isspace(*tmp); --tmp); + *(++tmp) = '\0'; + if (ops == tmp) ++ops; + } } - if (!flags) + if (ops > str || ops == NULL) { - flags |= WidthValue; - w = 0; - } /* default is tile */ + /* we have geometry string - let's handle it prior to applying ops */ + geom_flags = XParseGeometry (str, &x, &y, &w, &h); + + if ((geom_flags & XValue) && !(geom_flags & YValue)) + { + y = x; + geom_flags |= YValue; + } + + if (flags & geometrySet) + {/* new geometry is an adjustment to the old one ! */ + if ((geom_flags & WidthValue) && (geom_flags & HeightValue)) + { + if (w == 0 && h != 0) + { + w = h_scale; + h = (v_scale * h) / 100; + } + else if (h == 0 && w != 0) + { + w = (h_scale * w) / 100; + h = v_scale; + } + } + if (geom_flags & XValue) + { + if (str[0] != '=') + { + y += v_align; + x += h_align; + } + } + } + else /* setting up geometry from scratch */ + { + if (!(geom_flags & XValue)) + {/* use default geometry - centered */ + x = y = defaultAlign; + } + else if (!(geom_flags & YValue)) + y = x; + + if ((geom_flags & (WidthValue|HeightValue)) == 0) + {/* use default geometry - scaled */ + w = h = defaultScale; + } + else if (geom_flags & WidthValue) + { + if (!(geom_flags & HeightValue)) + h = w; + } + else + w = h; + } + } /* done parsing geometry string */ + else if (!(flags & geometrySet)) + { /* default geometry - scaled and centered */ + x = y = defaultAlign; + w = h = defaultScale; + } + + if (!(flags & geometrySet)) + geom_flags |= WidthValue|HeightValue|XValue|YValue; - if (flags & WidthValue) + if (ops) { - if (!(flags & XValue)) - x = 50; + while (*ops) + { + while (*ops == ':' || isspace(*ops)) ++ops; +# define CHECK_GEOM_OPS(op_str) (strncasecmp (ops, (op_str), sizeof(op_str)-1) == 0) + if (CHECK_GEOM_OPS("tile")) + { + w = h = 0; + geom_flags |= WidthValue|HeightValue; + } + else if (CHECK_GEOM_OPS("propscale")) + { + if (w == 0 && h == 0) + { + w = 100; + geom_flags |= WidthValue; + } + new_flags |= propScale; + } + else if (CHECK_GEOM_OPS("hscale")) + { + if (w == 0) + w = 100; + h = 0; + geom_flags |= WidthValue|HeightValue; + } + else if (CHECK_GEOM_OPS("vscale")) + { + if (h == 0) + h = 100; + w = 0; + geom_flags |= WidthValue|HeightValue; + } + else if (CHECK_GEOM_OPS("scale")) + { + if (h == 0) + h = 100; + if (w == 0) + w = 100; + geom_flags |= WidthValue|HeightValue; + } + else if (CHECK_GEOM_OPS("auto")) + { + w = h = 100; + x = y = 50; + geom_flags |= WidthValue|HeightValue|XValue|YValue; + } +# undef CHECK_GEOM_OPS + while (*ops != ':' && *ops != '\0') ++ops; + } /* done parsing ops */ + } + + if (check_set_scale_value (geom_flags, WidthValue, h_scale, w)) + ++changed; + if (check_set_scale_value (geom_flags, HeightValue, v_scale, h)) + ++changed; + if (check_set_align_value (geom_flags, XValue, h_align, x)) + ++changed; + if (check_set_align_value (geom_flags, YValue, v_align, y)) + ++changed; + } + + if (new_flags != flags) + { + flags = new_flags; + changed++; + } +//fprintf( stderr, "flags = %lX, scale = %ux%u, align=%+d%+d\n", +// flags, h_scale, v_scale, h_align, v_align); + return (changed > 0); +} + +# ifdef HAVE_AFTERIMAGE +bool +bgPixmap_t::render_asim (ASImage *background, ARGB32 background_tint) +{ + if (target == NULL) + return false; - if (!(flags & HeightValue)) - h = w; + int target_width = (int)target->szHint.width; + int target_height = (int)target->szHint.height; + int new_pmap_width = target_width, new_pmap_height = target_height; + ASImage *result = NULL; + + int x = 0; + int y = 0; + int w = h_scale * target_width / 100; + int h = v_scale * target_height / 100; - if (w && !h) + if (original_asim) + { + x = make_align_position (h_align, target_width, w > 0 ? w : (int)original_asim->width); + y = make_align_position (v_align, target_height, h > 0 ? h : (int)original_asim->height); + } + + if (original_asim == NULL + || x >= target_width + || y >= target_height + || (w > 0 && x + w <= 0) + || (h > 0 && y + h <= 0)) + { + if (background) + { + new_pmap_width = background->width; + new_pmap_height = background->height; + result = background; + if (background_tint != TINT_LEAVE_SAME) + { + ASImage* tmp = tile_asimage (target->asv, background, 0, 0, + target_width, target_height, background_tint, + ASA_XImage, 100, ASIMAGE_QUALITY_DEFAULT); + if (tmp) + result = tmp; + } + } + else + new_pmap_width = new_pmap_height = 0; + } + else + { + result = original_asim; + if ((w > 0 && w != original_asim->width) + || (h > 0 && h != original_asim->height)) + { + result = scale_asimage (target->asv, original_asim, + w > 0 ? w : original_asim->width, + h > 0 ? h : original_asim->height, + background ? ASA_ASImage : ASA_XImage, + 100, ASIMAGE_QUALITY_DEFAULT); + } + if (background == NULL) + {/* if tiling - pixmap has to be sized exactly as the image */ + if (h_scale == 0) + new_pmap_width = result->width; + if (v_scale == 0) + new_pmap_height = result->height; + /* we also need to tile our image in one or both directions */ + if (h_scale == 0 || v_scale == 0) { - w = (bgpixmap->w * w) / 100; - h = bgpixmap->h; + ASImage *tmp = tile_asimage (target->asv, result, + (h_scale > 0) ? 0 : (int)result->width - x, + (v_scale > 0) ? 0 : (int)result->height - y, + result->width, result->height, + TINT_LEAVE_SAME, ASA_XImage, + 100, ASIMAGE_QUALITY_DEFAULT); + if (tmp) + { + if (result != original_asim) + destroy_asimage (&result); + result = tmp; + } } - else if (h && !w) + } + else + {/* if blending background and image - pixmap has to be sized same as target window */ + ASImageLayer *layers = create_image_layers (2); + ASImage *merged_im = NULL; + + layers[0].im = background; + layers[0].clip_width = target_width; + layers[0].clip_height = target_height; + layers[0].tint = background_tint; + layers[1].im = result; + if (w <= 0) + {/* tile horizontally */ + while (x > 0) x -= (int)result->width; + layers[1].dst_x = x; + layers[1].clip_width = result->width+target_width; + } + else + {/* clip horizontally */ + layers[1].dst_x = x; + layers[1].clip_width = result->width; + } + if (h <= 0) { - w = bgpixmap->w; - h = (bgpixmap->h * h) / 100; + while (y > 0) y -= (int)result->height; + layers[1].dst_y = y; + layers[1].clip_height = result->height + target_height; } - - min_it (w, 32767); - min_it (h, 32767); - - if (bgpixmap->w != (short)w) + else { - bgpixmap->w = (short)w; - changed++; + layers[1].dst_y = y; + layers[1].clip_height = result->height; } - - if (bgpixmap->h != (short)h) + if (target->rs[Rs_blendtype]) + { + layers[1].merge_scanlines = blend_scanlines_name2func (target->rs[Rs_blendtype]); + if (layers[1].merge_scanlines == NULL) + layers[1].merge_scanlines = alphablend_scanlines; + } + ASImage *tmp = merge_layers (target->asv, layers, 2, target_width, target_height, + ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT); + if (tmp) { - bgpixmap->h = (short)h; - changed++; + if (result != original_asim) + destroy_asimage (&result); + result = tmp; } + free (layers); } + } - if (!(flags & YValue)) + if (pixmap) + { + if (result == NULL + || pmap_width != new_pmap_width + || pmap_height != new_pmap_height + || pmap_depth != target->depth) { - if (flags & XNegative) - flags |= YNegative; - - y = x; + XFreePixmap (target->dpy, pixmap); + pixmap = None; } + } - if (!(flags & WidthValue) && geom[0] != '=') - { - x += bgpixmap->x; - y += bgpixmap->y; - } + if (result) + { + XGCValues gcv; + GC gc; - if (xpmAttr.width && xpmAttr.height) + /* create Pixmap */ + if (pixmap == None) { - x = MOD(x, xpmAttr.width); - y = MOD(y, xpmAttr.height); + pixmap = XCreatePixmap (target->dpy, target->vt, new_pmap_width, new_pmap_height, target->depth); + pmap_width = new_pmap_width; + pmap_height = new_pmap_height; + pmap_depth = target->depth; + } + /* fill with background color ( if result's not completely overlapping it)*/ + gcv.foreground = target->pix_colors[Color_bg]; + gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv); + + int src_x = 0, src_y = 0, dst_x = 0, dst_y = 0; + int dst_width = result->width, dst_height = result->height; + if (background == NULL) + { + if (h_scale > 0) + src_x = make_clip_rectangle (x, result->width, new_pmap_width, dst_x, dst_width); + if (v_scale > 0) + src_y = make_clip_rectangle (y, result->height, new_pmap_height, dst_y, dst_height); + + if (dst_x > 0 || dst_y > 0 + || dst_x + dst_width < new_pmap_width + || dst_y + dst_height < new_pmap_height) + { + XFillRectangle (target->dpy, pixmap, gc, 0, 0, new_pmap_width, new_pmap_height); + } } - if (bgpixmap->x != x) - { - bgpixmap->x = x; - changed++; - } + /* put result on pixmap */ + if (dst_x < new_pmap_width && dst_y < new_pmap_height) + asimage2drawable (target->asv, pixmap, result, gc, src_x, src_y, dst_x, dst_y, dst_width, dst_height, True); + + if (result != background && result != original_asim) + destroy_asimage (&result); + + XFreeGC (target->dpy, gc); + } - if (bgpixmap->y != y) + return true; +} +# endif /* HAVE_AFTERIMAGE */ + +bool +bgPixmap_t::set_file (const char *file) +{ + char *f; + + assert (file != NULL); + + if (*file != '\0') + { +# ifdef HAVE_AFTERIMAGE + if (target->asimman == NULL) + target->asimman = create_generic_imageman(target->rs[Rs_path]); + if ((f = strchr (file, ';')) == NULL) + original_asim = get_asimage( target->asimman, file, 0xFFFFFFFF, 100 ); + else { - bgpixmap->y = y; - changed++; + size_t len = f - file; + f = (char *)malloc (len + 1); + strncpy (f, file, len); + f[len] = '\0'; + original_asim = get_asimage( target->asimman, f, 0xFFFFFFFF, 100 ); + free( f ); } + return (original_asim != NULL); +# endif } + return false; +} - return changed; +# endif /* XPM_BACKGROUND */ + +# ifdef ENABLE_TRANSPARENCY +bool +bgPixmap_t::set_transparent () +{ + if (!(flags & isTransparent)) + { + flags |= isTransparent; + return true; + } } -void -rxvt_term::resize_pixmap () +bool +bgPixmap_t::set_blur_radius (const char *geom) { - XGCValues gcvalue; - GC gc; + int changed = 0; + unsigned int hr, vr; + int junk; + int geom_flags = XParseGeometry (geom, &junk, &junk, &hr, &vr); + if (!(geom_flags&WidthValue)) + hr = 1; + if (!(geom_flags&HeightValue)) + vr = hr; - if (pixmap != None) + if (h_blurRadius != hr) + { + ++changed; + h_blurRadius = hr; + } + if (v_blurRadius != vr) { - XFreePixmap (dpy, pixmap); - pixmap = None ; + ++changed; + v_blurRadius = vr; } + if (v_blurRadius == 0 && h_blurRadius == 0) + flags &= ~blurNeeded; + else + flags |= blurNeeded; + return (changed>0); +} - if (bgPixmap.pixmap == None) - { /* So be it: I'm not using pixmaps */ - pixmap = None; +static inline unsigned long +compute_tint_shade_flags (rxvt_color *tint, int shade) +{ + unsigned long flags = 0; -#ifdef TRANSPARENT - if (!option (Opt_transparent) || !am_transparent) -#endif - XSetWindowBackground (dpy, vt, pix_colors[Color_bg]); + if (shade > 0 && shade <100) + flags |= bgPixmap_t::tintNeeded; + else if (tint) + { + rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); + tint->get (c); - return; + if ((c.r > 0x000700 || c.g > 0x000700 || c.b > 0x000700) + && (c.r < 0x00f700 || c.g < 0x00f700 || c.b < 0x00f700)) + { + flags |= bgPixmap_t::tintNeeded; +# define IS_COMPONENT_WHOLESOME(cmp) ((cmp) <= 0x000700 || (cmp) >= 0x00f700) + if (IS_COMPONENT_WHOLESOME (c.r) + && IS_COMPONENT_WHOLESOME (c.g) + && IS_COMPONENT_WHOLESOME (c.b)) + flags |= bgPixmap_t::tintServerSide; +# undef IS_COMPONENT_WHOLESOME + } } + return flags; +} - gcvalue.foreground = pix_colors[Color_bg]; - gc = XCreateGC (dpy, vt, GCForeground, &gcvalue); +bool +bgPixmap_t::set_tint (rxvt_color &new_tint) +{ + if (tint != new_tint) + { + unsigned long new_flags = compute_tint_shade_flags (&new_tint, shade); + tint = new_tint; + flags = (flags & ~tintFlags) | new_flags | tintSet; + return true; + } + return false; +} - if (bgPixmap.pixmap != None) - { /* we have a specified pixmap */ - unsigned int w = bgPixmap.w, h = bgPixmap.h, - x = bgPixmap.x, y = bgPixmap.y; - unsigned int xpmh = xpmAttr.height, - xpmw = xpmAttr.width; - - if (bgPixmap.auto_resize) - { - w = szHint.width ; - h = szHint.height ; - } - /* - * don't zoom pixmap too much nor expand really small pixmaps - */ - if (w > 32767 || h > 32767) - w = 1; - else if (width > (10 * xpmw) - || height > (10 * xpmh)) - w = 0; /* tile */ - - if (!w) - { - /* basic X tiling - let the X server do it */ - pixmap = XCreatePixmap (dpy, vt, xpmw, xpmh, depth); - - XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, x, y, xpmw - x, xpmh - y, 0, 0); - XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, x, 0, xpmw - x, y, 0, xpmh - y); - XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, 0, y, x, xpmh - y, xpmw - x, 0); - XCopyArea (dpy, bgPixmap.pixmap, pixmap, gc, 0, 0, x, y, xpmw - x, xpmh - y); - } - else -#ifdef HAVE_AFTERIMAGE -#ifdef TRANSPARENT - if (!option(Opt_transparent) || !am_transparent) - /* will do that in check_our_parents otherwise */ -#endif - { - ASImage *scaled_im = scale_asimage( display->asv, original_asim, w, h, ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT ); - if (scaled_im) - { - pixmap = asimage2pixmap( display->asv, display->root, scaled_im, gc, True ); - destroy_asimage( &scaled_im ); - } - } -#else /* HAVE_AFTERIMAGE */ - { - float incr, p; - Pixmap tmp; +bool +bgPixmap_t::unset_tint () +{ + unsigned long new_flags = compute_tint_shade_flags (NULL, shade); - pixmap = XCreatePixmap (dpy, vt, width, height, depth); - /* - * horizontal scaling - */ - rxvt_pixmap_incr (&w, &x, &incr, &p, width, xpmw); + if (new_flags != (flags & tintFlags)) + { + flags = (flags&~tintFlags)|new_flags; + return true; + } + return false; +} - tmp = XCreatePixmap (dpy, vt, width, xpmh, depth); - XFillRectangle (dpy, tmp, gc, 0, 0, width, xpmh); +bool +bgPixmap_t::set_shade (const char *shade_str) +{ + int new_shade = (shade_str) ? atoi (shade_str) : 0; - for ( /*nil */ ; x < w; x++, p += incr) - { - if (p >= xpmw) - p = 0; + if (new_shade == 100) + new_shade = 0; - /* copy one column from the original pixmap to the tmp pixmap */ - XCopyArea (dpy, bgPixmap.pixmap, tmp, gc, (int)p, 0, 1, xpmh, (int)x, 0); - } + if (new_shade != shade) + { + unsigned long new_flags = compute_tint_shade_flags (&tint, new_shade); + shade = new_shade; + flags = (flags & ~tintFlags) | new_flags; + return true; + } + return false; +} - /* - * vertical scaling - */ - rxvt_pixmap_incr (&h, &y, &incr, &p, height, xpmh); - if (y > 0) - XFillRectangle (dpy, pixmap, gc, 0, 0, width, y); +/* make_transparency_pixmap() + * Builds a pixmap sized the same as terminal window, with depth same as the root window + * that pixmap contains tiled portion of the root pixmap that is supposed to be covered by + * our window. + */ +unsigned long +bgPixmap_t::make_transparency_pixmap () +{ + unsigned long result = 0; - if (h < height) - XFillRectangle (dpy, pixmap, gc, 0, (int)h, width, height - h + 1); + if (target == NULL) + return 0; - for ( /*nil */ ; y < h; y++, p += incr) - { - if (p >= xpmh) - p = 0; + /* root dimentions may change from call to call - but Display structure should + * be always up-to-date, so let's use it : + */ + Window root = target->display->root; + int screen = target->display->screen; + Display *dpy = target->dpy; + int root_width = DisplayWidth (dpy, screen); + int root_height = DisplayHeight (dpy, screen); + unsigned int root_pmap_width, root_pmap_height; + int window_width = target->szHint.width; + int window_height = target->szHint.height; + int sx, sy; + XGCValues gcv; - /* copy one row from the tmp pixmap to the main pixmap */ - XCopyArea (dpy, tmp, pixmap, gc, 0, (int)p, width, 1, 0, (int)y); - } + target->get_window_origin (sx, sy); - XFreePixmap (dpy, tmp); - } -#endif /* HAVE_AFTERIMAGE */ - } + /* check if we are outside of the visible part of the virtual screen : */ + if (sx + window_width <= 0 || sy + window_height <= 0 + || sx >= root_width || sy >= root_height) + return 0; - XSetWindowBackgroundPixmap (dpy, vt, pixmap); + if (root_pixmap != None) + {/* we want to validate the pixmap and get it's size at the same time : */ + int junk; + unsigned int ujunk; + /* root pixmap may be bad - allow a error */ + target->allowedxerror = -1; + if (!XGetGeometry (dpy, root_pixmap, &root, &junk, &junk, &root_pmap_width, &root_pmap_height, &ujunk, &ujunk)) + root_pixmap = None; + target->allowedxerror = 0; + } - XFreeGC (dpy, gc); -#ifdef TRANSPARENT - am_transparent = 0; -#endif -} + Pixmap tiled_root_pmap = XCreatePixmap (dpy, root, window_width, window_height, root_depth); + GC gc = NULL; -/* - * Calculate tiling sizes and increments - * At start, p == 0, incr == xpmwidthheight - */ -static void -rxvt_pixmap_incr (unsigned int *wh, unsigned int *xy, float *incr, float *p, unsigned int widthheight, unsigned int xpmwidthheight) -{ - unsigned int cwh, cxy; - float cincr, cp; + if (tiled_root_pmap == None) /* something really bad happened - abort */ + return 0; - cp = 0; - cincr = (float)xpmwidthheight; - cxy = *xy; - cwh = *wh; - if (cwh == 1) - { /* display one image, no horizontal/vertical scaling */ - cincr = (float)widthheight; - if (xpmwidthheight <= widthheight) - { - cwh = xpmwidthheight; - cxy = (cxy * (widthheight - cwh)) / 100; /* beware! order */ - cwh += cxy; - } - else - { - cxy = 0; - cwh = widthheight; + if (root_pixmap == None) + { /* use tricks to obtain the root background image :*/ + /* we want to create Overrideredirect window overlapping out window + with background type of Parent Relative and then grab it */ + XSetWindowAttributes attr; + Window src; + bool success = false; + + attr.background_pixmap = ParentRelative; + attr.backing_store = Always; + attr.event_mask = ExposureMask; + attr.override_redirect = True; + src = XCreateWindow (dpy, root, sx, sy, window_width, window_height, 0, + CopyFromParent, CopyFromParent, CopyFromParent, + CWBackPixmap|CWBackingStore|CWOverrideRedirect|CWEventMask, + &attr); + + if (src != None) + { + XEvent event; + int ev_count = 0; + XGrabServer (dpy); + XMapRaised (dpy, src); + XSync (dpy, False); + /* XSync should get window where it's properly exposed, + * but to be on the safe side - let's check for the actuall event to arrive : */ + while (XCheckWindowEvent (dpy, src, ExposureMask, &event)) + ++ev_count; + if (ev_count > 0); + { /* hooray! - we can grab the image! */ + gc = XCreateGC (dpy, root, 0, NULL); + if (gc) + { + XCopyArea (dpy, src, tiled_root_pmap, gc, 0, 0, window_width, window_height, 0, 0); + success = true; + } + } + XDestroyWindow (dpy, src); + XUngrabServer (dpy); + //fprintf (stderr, "%s:%d: ev_count = %d\n", __FUNCTION__, __LINE__, ev_count); } - } - else if (cwh < 10) - { /* fit WH images across/down screen */ - cincr *= cwh; - cxy = 0; - cwh = widthheight; + if (!success) + { + XFreePixmap (dpy, tiled_root_pmap); + tiled_root_pmap = None; + } + else + result |= transpPmapTiled; } else - { - cincr *= 100.0 / cwh; - if (cwh < 100) - { /* contract */ - float pos; - - cwh = (cwh * widthheight) / 100; - pos = (float)cxy / 100 * widthheight - (cwh / 2); - - cxy = (widthheight - cwh); - if (pos <= 0) - cxy = 0; - else if (pos < cxy) - cxy = (int) pos; - cwh += cxy; + {/* strightforward pixmap copy */ + gcv.tile = root_pixmap; + gcv.fill_style = FillTiled; + while (sx < 0) sx += (int)window_width; + while (sy < 0) sy += (int)window_height; + gcv.ts_x_origin = -sx; + gcv.ts_y_origin = -sy; + gc = XCreateGC (dpy, root, GCFillStyle | GCTile | GCTileStipXOrigin | GCTileStipYOrigin, &gcv); + if (gc) + { + XFillRectangle (dpy, tiled_root_pmap, gc, 0, 0, window_width, window_height); + result |= transpPmapTiled; } - else - { /* expand */ - if (cxy > 0) - { /* position */ - float pos; - - pos = (float)cxy / 100 * xpmwidthheight - (cincr / 2); - cp = xpmwidthheight - cincr; - if (pos <= 0) - cp = 0; - else if (pos < cp) - cp = pos; - } - cxy = 0; - cwh = widthheight; - } - } - cincr /= widthheight; - *wh = cwh; - *xy = cxy; - *incr = cincr; - *p = cp; + } + + if (tiled_root_pmap != None) + { + if (flags & tintNeeded && !need_client_side_rendering ()) + { + /* In this case we can tint image server-side getting significant + * performance improvements, as we eliminate XImage transfer + */ + gcv.foreground = Pixel (tint); + gcv.function = GXand; + gcv.fill_style = FillSolid; + if (gc) + XChangeGC (dpy, gc, GCFillStyle | GCForeground | GCFunction, &gcv); + else + gc = XCreateGC (dpy, root, GCFillStyle | GCForeground | GCFunction, &gcv); + if (gc) + { + XFillRectangle (dpy, tiled_root_pmap, gc, 0, 0, window_width, window_height); + result |= transpPmapTinted; + } + } + if (pixmap) + XFreePixmap (dpy, pixmap); + pixmap = tiled_root_pmap; + pmap_width = window_width; + pmap_height = window_height; + pmap_depth = root_depth; + } + + if (gc) + XFreeGC (dpy, gc); + + return result; } -Pixmap -rxvt_term::set_bgPixmap (const char *file) +bool +bgPixmap_t::set_root_pixmap () { - char *f; + Pixmap new_root_pixmap = None; + + new_root_pixmap = target->get_pixmap_property (XA_XROOTPMAP_ID); + if (new_root_pixmap == None) + new_root_pixmap = target->get_pixmap_property (XA_ESETROOT_PMAP_ID); - assert (file != NULL); - - if (bgPixmap.pixmap != None) + if (new_root_pixmap != root_pixmap) { - XFreePixmap (dpy, bgPixmap.pixmap); - bgPixmap.pixmap = None; + root_pixmap = new_root_pixmap; + return true; } + return false; +} +# endif /* ENABLE_TRANSPARENCY */ - XSetWindowBackground (dpy, vt, pix_colors[Color_bg]); +# ifndef HAVE_AFTERIMAGE +static void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm); +# endif - if (*file != '\0') + +bool +bgPixmap_t::render () +{ + unsigned long background_flags = 0; + + if (target == NULL) + return false; + + invalidate(); +# ifdef ENABLE_TRANSPARENCY + if (flags & isTransparent) { - /* XWindowAttributes attr; */ + /* we need to re-generate transparency pixmap in that case ! */ + background_flags = make_transparency_pixmap (); + if (background_flags == 0) + return false; + else if ((background_flags & transpTransformations) == (flags & transpTransformations) + && pmap_depth == target->depth) + flags = flags & ~isInvalid; + } +# endif - /* - * we already have the required attributes - */ - /* XGetWindowAttributes (dpy, vt, &attr); */ + XImage *result = NULL; +# ifdef HAVE_AFTERIMAGE + if (original_asim + || (background_flags & transpTransformations) != (flags & transpTransformations)) + { + ASImage *background = NULL; + ARGB32 as_tint = TINT_LEAVE_SAME; + if (background_flags) + background = pixmap2ximage (target->asv, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, 100); + +# ifdef ENABLE_TRANSPARENCY + if (!(background_flags & transpPmapTinted) && (flags & tintNeeded)) + { + ShadingInfo as_shade; + as_shade.shading = (shade == 0) ? 100 : shade; + + rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); + if (flags & tintSet) + tint.get (c); + as_shade.tintColor.red = c.r; + as_shade.tintColor.green = c.g; + as_shade.tintColor.blue = c.b; + + as_tint = shading2tint32 (&as_shade); + } + if (!(background_flags & transpPmapBlured) && (flags & blurNeeded) && background != NULL) + { + ASImage* tmp = blur_asimage_gauss (target->asv, background, h_blurRadius, v_blurRadius, 0xFFFFFFFF, + (original_asim == NULL || tint == TINT_LEAVE_SAME)?ASA_XImage:ASA_ASImage, + 100, ASIMAGE_QUALITY_DEFAULT); + if (tmp) + { + destroy_asimage (&background); + background = tmp; + } + } +# endif -#ifdef HAVE_AFTERIMAGE - if (asimman == NULL) - asimman = create_generic_imageman(rs[Rs_path]); - if ((f = strchr (file, ';')) == NULL) - original_asim = get_asimage( asimman, file, 0xFFFFFFFF, 100 ); - else + if (render_asim (background, as_tint)) + flags = flags & ~isInvalid; + if (background) + destroy_asimage (&background); + } + else if (background_flags && pmap_depth != target->depth) + { + result = XGetImage (target->dpy, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, ZPixmap); + } +# else /* our own client-side tinting */ + if (background_flags && (flags & isInvalid)) + { + result = XGetImage (target->dpy, pixmap, 0, 0, pmap_width, pmap_height, AllPlanes, ZPixmap); + if (result != NULL && !(background_flags & transpPmapTinted) && (flags & tintNeeded)) { - f = strndup( file, f - file ); - original_asim = get_asimage( asimman, f, 0xFFFFFFFF, 100 ); - free( f ); + rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); + if (flags & tintSet) + tint.get (c); + ShadeXImage (target, result, shade, c.r, c.g, c.b); } - if (original_asim) + } +# endif /* HAVE_AFTERIMAGE */ + if (result != NULL) + { + GC gc = XCreateGC (target->dpy, target->vt, 0UL, NULL); + if (gc) { - bgPixmap.pixmap = asimage2pixmap( display->asv, display->root, original_asim, NULL, True ); - xpmAttr.width = original_asim->width ; - xpmAttr.height = original_asim->height ; + if (/*pmap_depth != target->depth &&*/ pixmap != None) + { + XFreePixmap (target->dpy, pixmap); + pixmap = None; + } + if (pixmap == None) + { + pixmap = XCreatePixmap (target->dpy, target->vt, result->width, result->height, target->depth); + pmap_width = result->width; + pmap_height = result->height; + pmap_depth = target->depth; + } + if (pmap_depth != result->depth) + { /* Bad Match error will ensue ! stupid X !!!! */ + if( result->depth == 24 && pmap_depth == 32) + result->depth = 32; + else if( result->depth == 32 && pmap_depth == 24) + result->depth = 24; + else + { + /* TODO: implement image recoding */ + } + } + if (pmap_depth == result->depth) + XPutImage (target->dpy, pixmap, gc, result, 0, 0, 0, 0, result->width, result->height); + XFreeGC (target->dpy, gc); + flags = flags & ~isInvalid; } -#else /* HAVE_AFTERIMAGE */ - xpmAttr.closeness = 30000; - xpmAttr.colormap = cmap; - xpmAttr.visual = visual; - xpmAttr.depth = depth; - xpmAttr.valuemask = (XpmCloseness | XpmColormap | XpmVisual - | XpmDepth | XpmSize | XpmReturnPixels); + XDestroyImage (result); + } - /* search environment variables here too */ - f = (char *)rxvt_File_find (file, ".xpm", rs[Rs_path]); - if (f == NULL - || XpmReadFileToPixmap (dpy, display->root, f, - &bgPixmap.pixmap, NULL, - &xpmAttr)) + if (flags & isInvalid) + { + if (pixmap != None) { - char *p; + XFreePixmap (target->dpy, pixmap); + pixmap = None; + } + } + + apply (); - /* semi-colon delimited */ - if ((p = strchr (file, ';')) == NULL) - p = strchr (file, '\0'); + return true; +} - rxvt_warn ("couldn't load XPM file \"%.*s\", ignoring.\n", (p - file), file); +bool +bgPixmap_t::set_target (rxvt_term *new_target) +{ + if (new_target) + if (target != new_target) + { + target = new_target; +# ifdef ENABLE_TRANSPARENCY + root_depth = DefaultDepthOfScreen (ScreenOfDisplay (target->dpy, target->display->screen)); +# endif + return true; + } + return false; +} + +void +bgPixmap_t::apply() +{ + if (target) + { + if (pixmap != None) + { /* set target's background to pixmap */ +# ifdef ENABLE_TRANSPARENCY + if (flags & isTransparent) + { + XSetWindowBackgroundPixmap (target->dpy, target->parent[0], pixmap); + XSetWindowBackgroundPixmap (target->dpy, target->vt, ParentRelative); +# if HAVE_SCROLLBARS + if (target->scrollBar.win) + XSetWindowBackgroundPixmap (target->dpy, target->scrollBar.win, ParentRelative); +# endif + } + else +# endif + { + /* force old pixmap dereference in case it was transparent before :*/ + XSetWindowBackground (target->dpy, target->parent[0], target->pix_colors[Color_border]); + XSetWindowBackgroundPixmap (target->dpy, target->vt, pixmap); + /* do we also need to set scrollbar's background here ? */ +# if HAVE_SCROLLBARS + if (target->scrollBar.win) + XSetWindowBackground (target->dpy, target->scrollBar.win, target->pix_colors[Color_border]); +# endif + } } - free (f); -#endif /* HAVE_AFTERIMAGE */ + else + { /* set target background to a pixel */ + XSetWindowBackground (target->dpy, target->parent[0], target->pix_colors[Color_border]); + XSetWindowBackground (target->dpy, target->vt, target->pix_colors[Color_bg]); + /* do we also need to set scrollbar's background here ? */ +# if HAVE_SCROLLBARS + if (target->scrollBar.win) + XSetWindowBackground (target->dpy, target->scrollBar.win, target->pix_colors[Color_border]); +# endif + } + /* don't want Expose on the parent */ + XClearArea (target->dpy, target->parent[0], 0, 0, 0, 0, False); + /* do want Expose on the vt */ + XClearArea (target->dpy, target->parent[0], 0, 0, 0, 0, True); +# if HAVE_SCROLLBARS + if (target->scrollBar.win) + { + target->scrollBar.setIdle (); + target->scrollbar_show (0); + } +# endif + /* Is that really neccessary? we did a XClearArea to generate Expose events alreday ! */ + target->want_refresh = 1; +# ifdef ENABLE_TRANSPARENCY + target->want_full_refresh = 1; +# endif + /* TODO: why do we need a flush here ??? It causes segfault on resize ! */ +// target->flush (); } +} - resize_pixmap (); - return bgPixmap.pixmap; +void +rxvt_term::get_window_origin (int &x, int &y) +{ + Window cr; + XTranslateCoordinates (dpy, parent[0], display->root, 0, 0, &x, &y, &cr); +/* fprintf( stderr, "origin is %+d%+d\n", x, y);*/ } -#endif /* XPM_BACKGROUND */ +Pixmap +rxvt_term::get_pixmap_property (int prop_id) +{ + if (prop_id > 0 && prop_id < NUM_XA) + if (xa[prop_id]) + { + int aformat, rootdepth; + unsigned long nitems, bytes_after; + Atom atype; + unsigned char *prop = NULL; + int result = XGetWindowProperty (dpy, display->root, xa[prop_id], + 0L, 1L, False, XA_PIXMAP, &atype, &aformat, + &nitems, &bytes_after, &prop); + if (result == Success && prop && atype == XA_PIXMAP) + { + return *(Pixmap *)prop; + } + } + return None; +} -#ifdef TRANSPARENT -#if TINTING && !defined(HAVE_AFTERIMAGE) +/* + * Check our parents are still who we think they are. + * Do transparency updates if required + */ +int +rxvt_term::update_background () +{ + bgPixmap.invalidate(); + /* no chance of real time refresh if we are blurring ! */ + if (bgPixmap.invalid_since + 0.5 < NOW && !(bgPixmap.flags & bgPixmap_t::blurNeeded)) + bgPixmap.render(); + else + { + update_background_ev.stop (); + if (!bgPixmap.need_client_side_rendering()) + update_background_ev.start (NOW + .05); + else if (bgPixmap.flags & bgPixmap_t::blurNeeded) + update_background_ev.start (NOW + .2); /* very slow !!! */ + else + update_background_ev.start (NOW + .07); + } + return 0; +} + +void +rxvt_term::update_background_cb (time_watcher &w) +{ + bgPixmap.render (); +} +#endif /* HAVE_BG_PIXMAP */ + +#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE) /* taken from aterm-0.4.2 */ typedef uint32_t RUINT32T; -void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm) +static void +ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm) { int sh_r, sh_g, sh_b; RUINT32T mask_r, mask_g, mask_b; @@ -472,8 +1153,11 @@ Visual *visual = term->visual; - if( visual->c_class != TrueColor || srcImage->format != ZPixmap ) return ; + if (visual->c_class != TrueColor || srcImage->format != ZPixmap) return ; + if (shade == 0) + shade = 100; + /* for convenience */ mask_r = visual->red_mask; mask_g = visual->green_mask; @@ -685,24 +1369,14 @@ free (lookup); } -#endif - -/* - * Check our parents are still who we think they are. - * Do transparency updates if required - */ -int -rxvt_term::check_our_parents () -{ - check_our_parents_ev.stop (); - check_our_parents_ev.start (NOW + .1); - return 0; -} +#endif /* defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE) */ +#if 0 /* replaced by a bgPixmap_t::render() - leve here temporarily for reference */ void rxvt_term::check_our_parents_cb (time_watcher &w) { - int i, pchanged, aformat, have_pixmap, rootdepth; + + int i, aformat, rootdepth; unsigned long nitems, bytes_after; Atom atype; unsigned char *prop = NULL; @@ -711,11 +1385,20 @@ XWindowAttributes wattr, wrootattr; int sx, sy; Window cr; - - pchanged = 0; + unsigned int rootpixmap_w = 0, rootpixmap_h = 0; if (!option (Opt_transparent)) - return /*pchanged*/; /* Don't try any more */ + return; /* Don't try any more */ +#if 0 + struct timeval stv; + gettimeofday (&stv,NULL); +#define PRINT_BACKGROUND_OP_TIME do{ struct timeval tv;gettimeofday (&tv,NULL); tv.tv_sec-= stv.tv_sec;\ + fprintf (stderr,"%d: elapsed %ld usec\n",__LINE__,\ + tv.tv_sec*1000000+tv.tv_usec-stv.tv_usec );}while(0) +#else +#define PRINT_BACKGROUND_OP_TIME do{}while(0) +#endif + XGetWindowAttributes (dpy, display->root, &wrootattr); rootdepth = wrootattr.depth; @@ -726,12 +1409,11 @@ { if (am_transparent) { - pchanged = 1; XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]); am_transparent = am_pixmap_trans = 0; } - return /*pchanged*/; /* Don't try any more */ + return; /* Don't try any more */ } /* Get all X ops out of the queue so that our information is up-to-date. */ @@ -739,10 +1421,9 @@ XTranslateCoordinates (dpy, parent[0], display->root, 0, 0, &sx, &sy, &cr); - /* check if we are outside of the visible part of the virtual screen : */ - if( sx + (int)szHint.width <= 0 || sy + (int)szHint.height <= 0 - || sx >= wrootattr.width || sy >= wrootattr.height ) + if( sx + (int)szHint.width <= 0 || sy + (int)szHint.height <= 0 + || sx >= wrootattr.width || sy >= wrootattr.height ) return /* 0 */ ; /* * Make the frame window set by the window manager have @@ -760,313 +1441,146 @@ 0L, 1L, False, XA_PIXMAP, &atype, &aformat, &nitems, &bytes_after, &prop) == Success); - if (!i || prop == NULL -#if TINTING - || (!ISSET_PIXCOLOR (Color_tint) && rs[Rs_shade] == NULL -#ifdef HAVE_AFTERIMAGE - && original_asim == NULL && rs[Rs_blurradius] == NULL -#endif - ) -#endif - ) - have_pixmap = 0; + if (!i || prop == NULL) + rootpixmap = None; else { - have_pixmap = 1; - rootpixmap = *(Pixmap *)prop; - XFree (prop); + int junk; + unsigned int ujunk; + /* root pixmap may be bad - allow a error */ + allowedxerror = -1; + if ((rootpixmap = *(Pixmap *)prop) != None) + if (!XGetGeometry (dpy, rootpixmap, &root, &junk, &junk, &rootpixmap_w, &rootpixmap_h, &ujunk, &ujunk)) + rootpixmap = None; + allowedxerror = 0; } - if (have_pixmap) + if (prop != NULL) + XFree (prop); + + if (rootpixmap != None) { - Bool success = False ; - GC gc; + Bool success = False; + GC gc = NULL; XGCValues gcvalue; -#ifdef HAVE_AFTERIMAGE - { - Pixmap tmp_pmap = None ; - ShadingInfo shade; - ARGB32 tint ; - unsigned int pmap_w = 0, pmap_h = 0; - - if (get_drawable_size( rootpixmap, &pmap_w, &pmap_h )) - { - int root_x = 0, root_y = 0; - - shade.shading = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100; - if (ISSET_PIXCOLOR (Color_tint)) - { - rgba c; - pix_colors_focused [Color_tint].get (c); - shade.tintColor.red = c.r; - shade.tintColor.green = c.g; - shade.tintColor.blue = c.b; - } - else - shade.tintColor.red = shade.tintColor.green = shade.tintColor.blue = 0xFFFF; - tint = shading2tint32( &shade ); - gc = XCreateGC (dpy, vt, 0UL, &gcvalue); - if (GetWinPosition (parent[0], &root_x, &root_y) ) - { - ASImageLayer *layers = create_image_layers( 2 ); - ASImage *merged_im = NULL; - int back_x, back_y, back_w, back_h; - /* merge_layers does good job at tiling background appropriately, - so all we need is to cut out smallest possible piece : */ -#define MAKE_ROOTPMAP_GEOM(xy,wh,widthheight) \ - do{ while( root_##xy < 0 ) root_##xy += (int)wrootattr.widthheight; \ - back_##xy = root_##xy % pmap_##wh; /* that gives us left side of the closest tile : */ \ - if( pmap_##wh >= back_##xy + szHint.widthheight ) \ - back_##wh = szHint.widthheight;/* background is large - limit it by our size */ \ - else \ - { /* small background - need the whole of it for successfull tiling :*/ \ - back_##xy = 0; \ - back_##wh = pmap_##wh; \ - }}while(0) - - MAKE_ROOTPMAP_GEOM(x,w,width); - MAKE_ROOTPMAP_GEOM(y,h,height); + int shade = 100; + rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); + Bool whole_tint = False, no_tint = True; + + while (sx < 0) sx += (int)wrootattr.width; + while (sy < 0) sy += (int)wrootattr.height; + + if (rs[Rs_shade]) + shade = atoi (rs[Rs_shade]); + if (ISSET_PIXCOLOR (Color_tint)) + pix_colors_focused [Color_tint].get (c); +#define IS_COMPONENT_WHOLESOME(c) ((c) <=0x000700 || (c)>=0x00f700) + if (shade >= 100) + whole_tint = (IS_COMPONENT_WHOLESOME(c.r) + && IS_COMPONENT_WHOLESOME(c.g) + && IS_COMPONENT_WHOLESOME(c.b)); + no_tint = (c.r >= 0x00f700 && c.g >= 0x00f700 && c.b >= 0x00f700); +#undef IS_COMPONENT_WHOLESOME - layers[0].im = pixmap2asimage (display->asv, rootpixmap, back_x, back_y, back_w, back_h, AllPlanes, ASA_ASImage, 100); - layers[0].clip_x = (back_w == pmap_w)?root_x:0; - layers[0].clip_y = (back_h == pmap_h)?root_y:0; - layers[0].clip_width = szHint.width; - layers[0].clip_height = szHint.height; - layers[0].tint = tint; - if (rs[Rs_blurradius] && layers[0].im) - { - double r = atof(rs[Rs_blurradius]); - ASImage* tmp = blur_asimage_gauss(display->asv, layers[0].im, r, r, 0xFFFFFFFF, ASA_ASImage, 100, ASIMAGE_QUALITY_DEFAULT ); - if( tmp ) - { - destroy_asimage( &layers[0].im ); - layers[0].im = tmp; - } - } - if (original_asim != NULL) - { - int fore_w, fore_h; - layers[1].im = original_asim; - if( bgPixmap.auto_resize ) - { - fore_w = szHint.width; - fore_h = szHint.height; - } - else - { - fore_w = bgPixmap.w; - fore_h = bgPixmap.h; - } - if (fore_w != original_asim->width - || fore_h != original_asim->height) - { - layers[1].im = scale_asimage( display->asv, - original_asim, - fore_w, fore_h, - ASA_ASImage, 100, - ASIMAGE_QUALITY_DEFAULT ); - } - - layers[1].clip_width = szHint.width; - layers[1].clip_height = szHint.height; - - if (rs[Rs_blendtype]) - { - layers[1].merge_scanlines = blend_scanlines_name2func(rs[Rs_blendtype]); - if( layers[1].merge_scanlines == NULL ) - layers[1].merge_scanlines = alphablend_scanlines; - } - } - merged_im = merge_layers( display->asv, layers, layers[1].im?2:1, - szHint.width, szHint.height, - ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT ); - if (layers[1].im != original_asim) - destroy_asimage( &(layers[1].im) ); - destroy_asimage( &(layers[0].im) ); - if (merged_im != NULL) - { - tmp_pmap = asimage2pixmap( display->asv, DefaultRootWindow(dpy), merged_im, gc, True ); - destroy_asimage( &merged_im ); - } - free( layers ); - } - } - if (tmp_pmap != None) - { - success = True; - if (pixmap != None) - XFreePixmap (dpy, pixmap); - pixmap = tmp_pmap; - } - } -#else /* HAVE_AFTERIMAGE */ - { - /* - * Copy display->root pixmap transparency - */ - int nx, ny; - unsigned int nw, nh; - XImage *image; - - nw = (unsigned int)szHint.width; - nh = (unsigned int)szHint.height; - nx = ny = 0; + bgPixmap.make_transparency_pixmap(); - if (sx < 0) - { - nw += sx; - nx = -sx; - sx = 0; - } - - if (sy < 0) - { - nh += sy; - ny = -sy; - sy = 0; - } - - min_it (nw, (unsigned int) (wrootattr.width - sx)); - min_it (nh, (unsigned int) (wrootattr.height - sy)); - - XSync (dpy, False); - allowedxerror = -1; - image = XGetImage (dpy, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap); - - /* XXX: handle BadMatch - usually because we're outside the pixmap */ - /* XXX: may need a delay here? */ - allowedxerror = 0; - if (image != NULL) - { - if (pixmap != None) - XFreePixmap (dpy, pixmap); - -#if TINTING - if (ISSET_PIXCOLOR (Color_tint)) - { - int shade = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100; - - rgba c; - pix_colors_focused [Color_tint].get (c); - ShadeXImage (this, image, shade, c.r, c.g, c.b); - } -#endif - - pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, image->depth); - gc = XCreateGC (dpy, vt, 0UL, &gcvalue); - XPutImage (dpy, pixmap, gc, image, 0, 0, - nx, ny, image->width, image->height); - XDestroyImage (image); - success = True ; - } - } -#endif /* HAVE_AFTERIMAGE */ - if (gc != NULL) - XFreeGC (dpy, gc); - - if (!success) + if (whole_tint && !no_tint) { - if (am_transparent && am_pixmap_trans) + } + success = True; +#ifdef HAVE_AFTERIMAGE + if (rs[Rs_blurradius] || bgPixmap.original_asim != NULL || (!whole_tint && (!no_tint || shade !=100))) + { + ARGB32 tint = TINT_LEAVE_SAME; + ASImage *back_im = NULL; + + back_im = pixmap2ximage (asv, bgPixmap.pixmap, 0, 0, szHint.width, szHint.height, AllPlanes, 100); + if (back_im != NULL) { - pchanged = 1; - if (pixmap != None) + if (!whole_tint && (!no_tint || shade !=100)) { - XFreePixmap (dpy, pixmap); - pixmap = None; + ShadingInfo as_shade; + as_shade.shading = shade; + as_shade.tintColor.red = c.r; + as_shade.tintColor.green = c.g; + as_shade.tintColor.blue = c.b; + tint = shading2tint32 (&as_shade); } + + if (rs[Rs_blurradius] && back_im) + { + ASImage* tmp; + int junk; + unsigned int hr = 1, vr = 1; + int flags = XParseGeometry (rs[Rs_blurradius], &junk, &junk, &hr, &vr); + if (!(flags&WidthValue)) + hr = 1; + if (!(flags&HeightValue)) + vr = hr; + tmp = blur_asimage_gauss (asv, back_im, hr, vr, 0xFFFFFFFF, + (bgPixmap.original_asim == NULL || tint == TINT_LEAVE_SAME)?ASA_XImage:ASA_ASImage, + 100, ASIMAGE_QUALITY_DEFAULT); + if (tmp) + { + destroy_asimage (&back_im); + back_im = tmp; + } + } + /* TODO: temporary fix - redo the logic, so that same function can do both + transparency and non-transparency */ + bgPixmap.render_asim (back_im, tint); + destroy_asimage (&back_im); + + } /* back_im != NULL */ + else + success = False; + } +#else /* HAVE_AFTERIMAGE */ + if (!whole_tint && (!no_tint || shade !=100)) + { + XImage *image = XGetImage (dpy, bgPixmap.pixmap, 0, 0, szHint.width, szHint.height, AllPlanes, ZPixmap); + success = False; + if (image != NULL) + { + PRINT_BACKGROUND_OP_TIME; + if (gc == NULL) + gc = XCreateGC (dpy, vt, 0UL, &gcvalue); + if (ISSET_PIXCOLOR (Color_tint) || shade != 100) + ShadeXImage (this, image, shade, c.r, c.g, c.b); + XPutImage (dpy, bgPixmap.pixmap, gc, image, 0, 0, 0, 0, image->width, image->height); + XDestroyImage (image); + success = True; } + } +#endif /* HAVE_AFTERIMAGE */ + PRINT_BACKGROUND_OP_TIME; + if (gc != NULL) + XFreeGC (dpy, gc); + + bgPixmap.apply(); + if (!success) am_pixmap_trans = 0; - } else { - XSetWindowBackgroundPixmap (dpy, parent[0], pixmap); - XClearWindow (dpy, parent[0]); - - if (!am_transparent || !am_pixmap_trans) - pchanged = 1; - am_transparent = am_pixmap_trans = 1; } - } + } /* rootpixmap != None */ if (am_pixmap_trans) - XSetWindowBackgroundPixmap (dpy, vt, ParentRelative); - else { - unsigned int n; - /* - * InheritPixmap transparency - */ - for (i = 1; i < (int) (sizeof (parent) / sizeof (Window)); i++) - { - oldp = parent[i]; - XQueryTree (dpy, parent[i - 1], &root, &parent[i], &list, &n); - XFree (list); - - if (parent[i] == display->root) - { - if (oldp != None) - pchanged = 1; - - break; - } - - if (oldp != parent[i]) - pchanged = 1; - } - - n = 0; - - if (pchanged) - for (; n < (unsigned int)i; n++) - { - XGetWindowAttributes (dpy, parent[n], &wattr); - - if (wattr.depth != rootdepth || wattr.c_class == InputOnly) - { - n = (int) (sizeof (parent) / sizeof (Window)) + 1; - break; - } - } - - if (n > (sizeof (parent) / sizeof (parent[0]))) + if (scrollBar.win) { - XSetWindowBackground (dpy, parent[0], pix_colors_focused[Color_border]); - XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]); - am_transparent = 0; - /* XXX: also turn off Opt_transparent? */ + scrollBar.setIdle (); + scrollbar_show (0); } - else - { - for (n = 0; n < (unsigned int)i; n++) - { - XSetWindowBackgroundPixmap (dpy, parent[n], ParentRelative); - XClearWindow (dpy, parent[n]); - } - XSetWindowBackgroundPixmap (dpy, vt, ParentRelative); - am_transparent = 1; + if (am_transparent) + { + want_refresh = want_full_refresh = 1; + if (am_pixmap_trans) + flush (); } - - for (; i < (int) (sizeof (parent) / sizeof (Window)); i++) - parent[i] = None; - } - - if (scrollBar.win) - { - XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative); - scrollBar.setIdle (); - scrollbar_show (0); - } - - if (am_transparent) - { - want_refresh = want_full_refresh = 1; - if (am_pixmap_trans) - flush (); } - -// return pchanged; } -#endif +#endif