--- rxvt-unicode/src/xpm.C 2007/08/06 22:42:05 1.60 +++ rxvt-unicode/src/xpm.C 2007/09/12 19:51:41 1.76 @@ -26,6 +26,23 @@ #include "../config.h" /* NECESSARY */ #include "rxvt.h" /* NECESSARY */ +#define DO_TIMING_TEST 0 + +#if DO_TIMING_TEST +#define TIMING_TEST_START(id) \ + struct timeval timing_test_##id##_stv;\ + gettimeofday (&timing_test_##id##_stv, NULL); + +#define TIMING_TEST_PRINT_RESULT(id) \ + do{ struct timeval tv;gettimeofday (&tv, NULL); tv.tv_sec -= (timing_test_##id##_stv).tv_sec;\ + fprintf (stderr, "%s: %s: %d: elapsed %ld usec\n", #id, __FILE__, __LINE__,\ + tv.tv_sec * 1000000 + tv.tv_usec - (timing_test_##id##_stv).tv_usec);}while (0) + +#else +#define TIMING_TEST_START(id) do{}while (0) +#define TIMING_TEST_PRINT_RESULT(id) do{}while (0) +#endif + /* * Pixmap geometry string interpretation : * Each geometry string contains zero or one scale/position @@ -74,23 +91,41 @@ bool bgPixmap_t::window_size_sensitive () { -#ifdef XPM_BACKGROUND -#ifdef HAVE_AFTERIMAGE +# ifdef XPM_BACKGROUND +# ifdef HAVE_AFTERIMAGE if (original_asim != NULL) -#endif +# endif { - if (h_scale != 0 || v_scale != 0) + if (h_scale != 0 || v_scale != 0 + || h_align != 0 || v_align != 0) return true; } -#endif -#ifdef ENABLE_TRANSPARENCY - if (flags & bgPmap_Transparent) +# endif +# ifdef ENABLE_TRANSPARENCY + if (flags & isTransparent) return true; -#endif +# endif return false; } -#ifdef XPM_BACKGROUND +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 & blurServerSide)) + || ((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) { @@ -134,7 +169,7 @@ if (align >= 0 && align <= 50) return diff * align / 100; else if (align > 50 && align <= 100) - return window_size - image_size + diff * 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) @@ -142,54 +177,41 @@ return 0; } -static inline void -make_clip_rectangle (int pos, int size, int target_size, int &clip_pos, int &clip_size) +static inline int +make_clip_rectangle (int pos, int size, int target_size, int &dst_pos, int &dst_size) { - if (size <= 0) - { /* special case - tiling */ - clip_pos = pos; - clip_size = target_size; - } - else if (pos < 0) - { - clip_pos = 0; - clip_size = MIN (target_size, size + pos); - } - else - { - clip_pos = pos; - clip_size = size; - if (pos < target_size && (int)clip_size > target_size - pos) - clip_pos = target_size - pos; - } + 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::handle_geometry (const char *geom) +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&(~bgPmap_geometryFlags)); + unsigned long new_flags = (flags & (~geometryFlags)); char *p; -#define MAXLEN_GEOM 256 /* could be longer then regular geometry string */ +# define MAXLEN_GEOM 256 /* could be longer then regular geometry string */ if (geom == NULL) return false; char str[MAXLEN_GEOM]; - if (!strcmp (geom, "?")) - { -#if 0 /* TODO: */ - sprintf (str, "[%dx%d+%d+%d]", /* can't presume snprintf () ! */ - min (h_scale, 32767), min (v_scale, 32767), - min (h_align, 32767), min (v_align, 32767)); - process_xterm_seq (XTerm_title, str, CHAR_ST); -#endif - return false; - } while (isspace(*geom)) ++geom; if ((p = strchr (geom, ';')) == NULL) p = strchr (geom, '\0'); @@ -198,7 +220,7 @@ if (n < MAXLEN_GEOM) { char *ops; - new_flags |= bgPmap_geometrySet; + new_flags |= geometrySet; strncpy (str, geom, n); str[n] = '\0'; @@ -229,7 +251,7 @@ geom_flags |= YValue; } - if (flags & bgPmap_geometrySet) + if (flags & geometrySet) {/* new geometry is an adjustment to the old one ! */ if ((geom_flags & WidthValue) && (geom_flags & HeightValue)) { @@ -257,31 +279,31 @@ { if (!(geom_flags & XValue)) {/* use default geometry - centered */ - x = y = bgPmap_defaultAlign; + x = y = defaultAlign; } else if (!(geom_flags & YValue)) y = x; if ((geom_flags & (WidthValue|HeightValue)) == 0) {/* use default geometry - scaled */ - w = h = bgPmap_defaultScale; + w = h = defaultScale; } else if (geom_flags & WidthValue) { if (!(geom_flags & HeightValue)) - h = w; + h = w; } else - w = h; + w = h; } } /* done parsing geometry string */ - else if (!(flags & bgPmap_geometrySet)) + else if (!(flags & geometrySet)) { /* default geometry - scaled and centered */ - x = y = bgPmap_defaultAlign; - w = h = bgPmap_defaultScale; + x = y = defaultAlign; + w = h = defaultScale; } - if (!(flags & bgPmap_geometrySet)) + if (!(flags & geometrySet)) geom_flags |= WidthValue|HeightValue|XValue|YValue; if (ops) @@ -289,7 +311,7 @@ while (*ops) { while (*ops == ':' || isspace(*ops)) ++ops; -#define CHECK_GEOM_OPS(op_str) (strncasecmp (ops, (op_str), sizeof(op_str)-1) == 0) +# define CHECK_GEOM_OPS(op_str) (strncasecmp (ops, (op_str), sizeof(op_str)-1) == 0) if (CHECK_GEOM_OPS("tile")) { w = h = 0; @@ -302,7 +324,7 @@ w = 100; geom_flags |= WidthValue; } - new_flags |= bgPmap_propScale; + new_flags |= propScale; } else if (CHECK_GEOM_OPS("hscale")) { @@ -332,7 +354,7 @@ x = y = 50; geom_flags |= WidthValue|HeightValue|XValue|YValue; } -#undef CHECK_GEOM_OPS +# undef CHECK_GEOM_OPS while (*ops != ':' && *ops != '\0') ++ops; } /* done parsing ops */ } @@ -357,9 +379,9 @@ return (changed > 0); } -#ifdef HAVE_AFTERIMAGE +# ifdef HAVE_AFTERIMAGE bool -bgPixmap_t::render_asim (rxvt_term *target, ASImage *background, ARGB32 background_tint) +bgPixmap_t::render_asim (ASImage *background, ARGB32 background_tint) { if (target == NULL) return false; @@ -374,31 +396,36 @@ int w = h_scale * target_width / 100; int h = v_scale * target_height / 100; + TIMING_TEST_START (asim); + 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); } - int dst_x, dst_y; - int clip_width, clip_height; - - make_clip_rectangle (x, w, target_width, dst_x, clip_width); - make_clip_rectangle (y, h, target_height, dst_y, clip_height); - - /* TODO : actuall scaling code :) */ - if (dst_x >= target_width || dst_y >= target_height - || clip_width <= 0 || clip_height <= 0 || original_asim == NULL) + if (original_asim == NULL + || x >= target_width + || y >= target_height + || (w > 0 && x + w <= 0) + || (h > 0 && y + h <= 0)) { - result = background; - dst_x = dst_y = 0; if (background) { - new_pmap_width = clip_width = background->width; - new_pmap_height = clip_height = background->height; + 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; + new_pmap_width = new_pmap_height = 0; } else { @@ -418,6 +445,22 @@ 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) + { + 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 blending background and image - pixmap has to be sized same as target window */ @@ -431,23 +474,25 @@ layers[1].im = result; if (w <= 0) {/* tile horizontally */ - layers[1].dst_x = dst_x - (int)result->width; - layers[1].clip_width = result->width; + 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 = dst_x; - layers[1].clip_width = clip_width; + layers[1].dst_x = x; + layers[1].clip_width = result->width; } if (h <= 0) { - layers[1].dst_y = dst_y - (int)result->height; - layers[1].clip_height = result->height; + while (y > 0) y -= (int)result->height; + layers[1].dst_y = y; + layers[1].clip_height = result->height + target_height; } else { - layers[1].dst_y = dst_y; - layers[1].clip_height = clip_height; + layers[1].dst_y = y; + layers[1].clip_height = result->height; } if (target->rs[Rs_blendtype]) { @@ -462,13 +507,11 @@ if (result != original_asim) destroy_asimage (&result); result = tmp; - dst_x = dst_y = 0; - clip_width = target_width; - clip_height = target_height; } free (layers); } } + TIMING_TEST_PRINT_RESULT (asim); if (pixmap) { @@ -499,155 +542,754 @@ gcv.foreground = target->pix_colors[Color_bg]; gc = XCreateGC (target->dpy, target->vt, GCForeground, &gcv); - if (dst_x > 0 || dst_y > 0 - || dst_x + clip_width < new_pmap_width - || dst_y + clip_height < new_pmap_height) + 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) { - XFillRectangle (target->dpy, pixmap, gc, 0, 0, new_pmap_width, new_pmap_height); + 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); + } } - /* put result on pixmap */ - asimage2drawable (target->asv, pixmap, result, gc, 0, 0, dst_x, dst_y, clip_width, clip_height, True); - /* set target's background to pixmap */ - XSetWindowBackgroundPixmap (target->dpy, target->vt, pixmap); + /* 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); + TIMING_TEST_PRINT_RESULT (asim); } - else + + return true; +} +# endif /* HAVE_AFTERIMAGE */ + +bool +bgPixmap_t::set_file (const char *file) +{ + char *f; + + assert (file != NULL); + + if (*file != '\0') { - /* set target background to a pixel */ - XSetWindowBackground (target->dpy, target->vt, target->pix_colors[Color_bg]); +# 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 + { + 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 true; +# endif /* XPM_BACKGROUND */ + +# ifdef ENABLE_TRANSPARENCY +bool +bgPixmap_t::set_transparent () +{ + if (!(flags & isTransparent)) + { + flags |= isTransparent; + return true; + } + return false; } -#endif -void -rxvt_term::resize_pixmap () +bool +bgPixmap_t::set_blur_radius (const char *geom) { - XGCValues gcvalue; - GC gc; - unsigned int w = bgPixmap.h_scale*szHint.width/100; - unsigned int h = bgPixmap.v_scale*szHint.height/100; - int x = bgPixmap.h_align*szHint.width/100; - int y = bgPixmap.v_align*szHint.height/100; -#ifdef HAVE_AFTERIMAGE - ASImage *im = bgPixmap.original_asim; -#else - void *im = NULL; -#endif -/* preliminary cleanup - this needs to be integrated with check_our_parents() code */ - if (bgPixmap.pixmap != None) + 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 (h_blurRadius != hr) { - XFreePixmap (dpy, bgPixmap.pixmap); - bgPixmap.pixmap = None ; + ++changed; + h_blurRadius = hr; } -#ifdef ENABLE_TRANSPARENCY - if (option(Opt_transparent) && am_transparent) + + if (v_blurRadius != vr) { - /* we need to re-generate transparency pixmap in that case ! */ - check_our_parents (); - return; + ++changed; + v_blurRadius = vr; } + + if (v_blurRadius == 0 && h_blurRadius == 0) + flags &= ~blurNeeded; + else + flags |= blurNeeded; + + return (changed>0); +} + +static inline unsigned long +compute_tint_shade_flags (rxvt_color *tint, int shade) +{ + unsigned long flags = 0; + rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); + + if (tint) + { + tint->get (c); +# 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::tintWholesome; +# undef IS_COMPONENT_WHOLESOME + } + + if ((shade > 0 && shade < 100) || (shade > 100 && shade < 200)) + flags |= bgPixmap_t::tintNeeded; + else if (tint) + { + if ((c.r > 0x000700 || c.g > 0x000700 || c.b > 0x000700) + && (c.r < 0x00f700 || c.g < 0x00f700 || c.b < 0x00f700)) + { + flags |= bgPixmap_t::tintNeeded; + } + } + + if (flags & bgPixmap_t::tintNeeded) + { + if (flags & bgPixmap_t::tintWholesome) + flags |= bgPixmap_t::tintServerSide; +#if XFT + flags |= bgPixmap_t::tintServerSide; #endif + } + + return flags; +} - if (im == NULL) - { /* So be it: I'm not using pixmaps */ - XSetWindowBackground (dpy, vt, pix_colors[Color_bg]); - return; +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; +} - gcvalue.foreground = pix_colors[Color_bg]; - gc = XCreateGC (dpy, vt, GCForeground, &gcvalue); - - /* don't zoom pixmap too much nor expand really small pixmaps */ - if (w > 16000) - w = 1; - if (h > 16000) - h = 1; - -#ifdef HAVE_AFTERIMAGE - if (w == 0) - w = im->width; - if (h == 0) - h = im->height; - - if (w != im->width || h != im->height) - { - ASImage *tmp = scale_asimage (asv, im, w, h, (x == 0 && y == 0)?ASA_XImage:ASA_ASImage, 0, ASIMAGE_QUALITY_DEFAULT); - if (tmp != NULL) - im = tmp; - } - bgPixmap.pmap_width = MIN(w,szHint.width); - bgPixmap.pmap_height = MIN(h,szHint.height); -#if 0 /* TODO: fix that! */ - if (x != 0 || y != 0) - { - ASImage *tmp = tile_asimage (asv, im, x, y, w, h, TINT_LEAVE_SAME, ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT); - if (tmp != NULL) - { - if (im != bgPixmap.original_asim) - destroy_asimage (&im); - im = tmp; +bool +bgPixmap_t::unset_tint () +{ + unsigned long new_flags = compute_tint_shade_flags (NULL, shade); + + if (new_flags != (flags & tintFlags)) + { + flags = (flags&~tintFlags)|new_flags; + return true; + } + return false; +} + +bool +bgPixmap_t::set_shade (const char *shade_str) +{ + int new_shade = (shade_str) ? atoi (shade_str) : 0; + + if (new_shade == 100) + new_shade = 0; + + if (new_shade != shade) + { + unsigned long new_flags = compute_tint_shade_flags ((flags & tintSet) ? &tint : NULL, new_shade); + shade = new_shade; + flags = (flags & ~tintFlags) | new_flags; + return true; + } + return false; +} + +/* 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 (target == NULL) + return 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; + + TIMING_TEST_START (tp); + target->get_window_origin (sx, sy); + + /* 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; + + 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; + } + + Pixmap tiled_root_pmap = XCreatePixmap (dpy, root, window_width, window_height, root_depth); + GC gc = NULL; + + if (tiled_root_pmap == None) /* something really bad happened - abort */ + return 0; + + 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); } + + if (!success) + { + XFreePixmap (dpy, tiled_root_pmap); + tiled_root_pmap = None; + } + else + result |= transpPmapTiled; } -#endif - bgPixmap.pixmap = XCreatePixmap (dpy, vt, bgPixmap.pmap_width, bgPixmap.pmap_height, depth); - bgPixmap.pmap_depth = depth; + else + {/* strightforward pixmap copy */ + gcv.tile = root_pixmap; + gcv.fill_style = FillTiled; - asimage2drawable (asv, bgPixmap.pixmap, im, gc, 0, 0, 0, 0, bgPixmap.pmap_width, bgPixmap.pmap_height, True); + while (sx < 0) sx += (int)window_width; + while (sy < 0) sy += (int)window_height; - if (im != bgPixmap.original_asim) - destroy_asimage (&im); -#endif - if( bgPixmap.pixmap ) - XSetWindowBackgroundPixmap (dpy, vt, bgPixmap.pixmap); + gcv.ts_x_origin = -sx; + gcv.ts_y_origin = -sy; + gc = XCreateGC (dpy, root, GCFillStyle | GCTile | GCTileStipXOrigin | GCTileStipYOrigin, &gcv); - XFreeGC (dpy, gc); + if (gc) + { + XFillRectangle (dpy, tiled_root_pmap, gc, 0, 0, window_width, window_height); + result |= transpPmapTiled; + } + } + TIMING_TEST_PRINT_RESULT (tp); + + if (tiled_root_pmap != None) + { + if (!need_client_side_rendering ()) + { + if ((flags & tintNeeded)) + { + if (flags & tintWholesome) + { + /* 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; + } + } + else + { +# if XFT + Picture back_pic = 0; + rgba c (rgba::MAX_CC,rgba::MAX_CC,rgba::MAX_CC); + + if (flags & tintSet) + tint.get (c); + + if (shade > 0 && shade < 100) + { + c.r = (c.r * shade) / 100; + c.g = (c.g * shade) / 100; + c.b = (c.b * shade) / 100; + } + else if( shade > 100 && shade < 200) + { + c.r = (c.r * (200 - shade)) / 100; + c.g = (c.g * (200 - shade)) / 100; + c.b = (c.b * (200 - shade)) / 100; + } + + XRenderPictFormat pf; + pf.type = PictTypeDirect; + pf.depth = 32; + pf.direct.redMask = 0xff; + pf.direct.greenMask = 0xff; + pf.direct.blueMask = 0xff; + pf.direct.alphaMask = 0xff; + + XRenderPictFormat *solid_format = XRenderFindFormat (dpy, + (PictFormatType| + PictFormatDepth| + PictFormatRedMask| + PictFormatGreenMask| + PictFormatBlueMask| + PictFormatAlphaMask), + &pf, + 0); + XRenderPictFormat *root_format = XRenderFindVisualFormat (dpy, DefaultVisualOfScreen (ScreenOfDisplay (dpy, target->display->screen))); + XRenderPictureAttributes pa ; + + back_pic = XRenderCreatePicture (dpy, tiled_root_pmap, root_format, 0, &pa); + + pa.repeat = True; + + Pixmap overlay_pmap = XCreatePixmap (dpy, root, 1, 1, 32); + Picture overlay_pic = XRenderCreatePicture (dpy, overlay_pmap, solid_format, CPRepeat, &pa); + XFreePixmap (dpy, overlay_pmap); + + pa.component_alpha = True; + Pixmap mask_pmap = XCreatePixmap (dpy, root, 1, 1, 32); + Picture mask_pic = XRenderCreatePicture (dpy, mask_pmap, solid_format, CPRepeat|CPComponentAlpha, &pa); + XFreePixmap (dpy, mask_pmap); + + if (mask_pic && overlay_pic && back_pic) + { + XRenderColor mask_c; + + memset (&mask_c, (shade > 100) ? 0xFF : 0x0, sizeof (mask_c)); + mask_c.alpha = 0xffff; + XRenderFillRectangle (dpy, PictOpSrc, overlay_pic, &mask_c, 0, 0, 1, 1); + memset (&mask_c, 0x0, sizeof (mask_c)); + mask_c.alpha = 0; + + if (c.r == c.b && c.b == c.g) /* pure shading */ + { + mask_c.red = mask_c.green = mask_c.blue = 0xffff - c.r; + XRenderFillRectangle (dpy, PictOpSrc, mask_pic, &mask_c, 0, 0, 1, 1); + XRenderComposite (dpy, PictOpOver, overlay_pic, mask_pic, back_pic, 0, 0, 0, 0, 0, 0, window_width, window_height); + } + else + { + mask_c.red = 0xffff - c.r; + XRenderFillRectangle (dpy, PictOpSrc, mask_pic, &mask_c, 0, 0, 1, 1); + XRenderComposite (dpy, PictOpOver, overlay_pic, mask_pic, back_pic, 0, 0, 0, 0, 0, 0, window_width, window_height); + mask_c.red = 0; + mask_c.green = 0xffff - c.g; + XRenderFillRectangle (dpy, PictOpSrc, mask_pic, &mask_c, 0, 0, 1, 1); + XRenderComposite (dpy, PictOpOver, overlay_pic, mask_pic, back_pic, 0, 0, 0, 0, 0, 0, window_width, window_height); + mask_c.green = 0; + mask_c.blue = 0xffff - c.b; + XRenderFillRectangle (dpy, PictOpSrc, mask_pic, &mask_c, 0, 0, 1, 1); + XRenderComposite (dpy, PictOpOver, overlay_pic, mask_pic, back_pic, 0, 0, 0, 0, 0, 0, window_width, window_height); + } + result |= transpPmapTinted; + } + XRenderFreePicture (dpy, mask_pic); + XRenderFreePicture (dpy, overlay_pic); + XRenderFreePicture (dpy, back_pic); +# if DO_TIMING_TEST + XSync (dpy, False); +# endif +# endif + } + } + } /* server side rendering completed */ + + 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); + + TIMING_TEST_PRINT_RESULT (tp); + + return result; } -void -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 (new_root_pixmap != root_pixmap) + { + root_pixmap = new_root_pixmap; + return true; + } + return false; +} +# endif /* ENABLE_TRANSPARENCY */ + +# ifndef HAVE_AFTERIMAGE +static void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm); +# endif + + +bool +bgPixmap_t::render () +{ + unsigned long background_flags = 0; + + if (target == NULL) + return false; + + invalidate(); +# ifdef ENABLE_TRANSPARENCY + if (flags & isTransparent) + { + /* 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 + + 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 + + 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)) + { + 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); + } + } +# endif /* HAVE_AFTERIMAGE */ - if (bgPixmap.pixmap != None) + if (result != NULL) { - XFreePixmap (dpy, bgPixmap.pixmap); - bgPixmap.pixmap = None; + GC gc = XCreateGC (target->dpy, target->vt, 0UL, NULL); + if (gc) + { + 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; + } + XDestroyImage (result); } - XSetWindowBackground (dpy, vt, pix_colors[Color_bg]); - if (*file != '\0') + if (flags & isInvalid) { -#ifdef HAVE_AFTERIMAGE - if (asimman == NULL) - asimman = create_generic_imageman(rs[Rs_path]); - if ((f = strchr (file, ';')) == NULL) - bgPixmap.original_asim = get_asimage( asimman, file, 0xFFFFFFFF, 100 ); + if (pixmap != None) + { + XFreePixmap (target->dpy, pixmap); + pixmap = None; + } + } + + apply (); + + return true; +} + +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) + { + flags &= ~isVtOrigin; + 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 + { + flags |= isVtOrigin; + /* 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 + } + } 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, so we get refreshed properly */ + XClearArea (target->dpy, target->vt, 0, 0, 0, 0, True); + +# if HAVE_SCROLLBARS + if (target->scrollBar.win) { - size_t len = f - file; - f = (char *)malloc (len + 1); - strncpy (f, file, len); - f[len] = '\0'; - bgPixmap.original_asim = get_asimage( asimman, f, 0xFFFFFFFF, 100 ); - free( f ); + target->scrollBar.setIdle (); + target->scrollbar_show (0); } -#endif +# endif } +} + +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);*/ +} + +Pixmap +rxvt_term::get_pixmap_property (int prop_id) +{ + if (prop_id > 0 && prop_id < NUM_XA) + if (xa[prop_id]) + { + int aformat; + 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; +} - resize_pixmap (); +/* + * 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; } -#endif /* XPM_BACKGROUND */ -#endif /* HAVE_BG_PIXMAP */ +void +rxvt_term::update_background_cb (time_watcher &w) +{ + bgPixmap.render (); +} +#endif /* HAVE_BG_PIXMAP */ -#ifdef ENABLE_TRANSPARENCY -#ifndef HAVE_AFTERIMAGE +#if defined(ENABLE_TRANSPARENCY) && !defined(HAVE_AFTERIMAGE) /* taken from aterm-0.4.2 */ typedef uint32_t RUINT32T; @@ -664,7 +1306,10 @@ 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; @@ -877,24 +1522,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, rootdepth; + + int i, aformat, rootdepth; unsigned long nitems, bytes_after; Atom atype; unsigned char *prop = NULL; @@ -905,21 +1540,8 @@ Window cr; unsigned int rootpixmap_w = 0, rootpixmap_h = 0; - pchanged = 0; - if (!option (Opt_transparent)) - return /*pchanged*/; /* 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 - + return; /* Don't try any more */ XGetWindowAttributes (dpy, display->root, &wrootattr); rootdepth = wrootattr.depth; @@ -930,12 +1552,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. */ @@ -963,14 +1584,7 @@ 0L, 1L, False, XA_PIXMAP, &atype, &aformat, &nitems, &bytes_after, &prop) == Success); - /* TODO: the below logic needs to be cleaned up */ - if (!i || prop == NULL - || (!ISSET_PIXCOLOR (Color_tint) && rs[Rs_shade] == NULL -#ifdef HAVE_AFTERIMAGE - && bgPixmap.original_asim == NULL && rs[Rs_blurradius] == NULL -#endif - ) - ) + if (!i || prop == NULL) rootpixmap = None; else { @@ -1010,40 +1624,11 @@ && IS_COMPONENT_WHOLESOME(c.b)); no_tint = (c.r >= 0x00f700 && c.g >= 0x00f700 && c.b >= 0x00f700); #undef IS_COMPONENT_WHOLESOME - /* theer are no performance advantages to reusing same pixmap */ - if (bgPixmap.pixmap != None) - XFreePixmap (dpy, bgPixmap.pixmap); - bgPixmap.pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, rootdepth); - bgPixmap.pmap_width = szHint.width; - bgPixmap.pmap_height = szHint.height; - bgPixmap.pmap_depth = rootdepth; - -#if 0 /* TODO : identify cases where this will be detrimental to performance : */ - /* we want to tile root pixmap into our own pixmap in this cases : - * 1) rootpixmap does not cover our window entirely - * 2) whole_tint - we can use server-side tinting or tinting disabled - */ - if ( whole_tint || no_tint || pmap_w < sx + szHint.width || pmap_h < sy + szHint.height) - { - } -#endif - gcvalue.tile = rootpixmap; - gcvalue.fill_style = FillTiled; - gcvalue.ts_x_origin = -sx; - gcvalue.ts_y_origin = -sy; - gc = XCreateGC (dpy, rootpixmap, GCFillStyle | GCTile | GCTileStipXOrigin | GCTileStipYOrigin, &gcvalue); - XFillRectangle (dpy, bgPixmap.pixmap, gc, 0, 0, szHint.width, szHint.height); + + bgPixmap.make_transparency_pixmap(); if (whole_tint && !no_tint) { - /* In this case we can tint image server-side getting significant - * performance improvements, as we eliminate XImage transfer - */ - gcvalue.foreground = Pixel (pix_colors_focused [Color_tint]); - gcvalue.function = GXand; - gcvalue.fill_style = FillSolid; - XChangeGC (dpy, gc, GCFillStyle | GCForeground | GCFunction, &gcvalue); - XFillRectangle (dpy, bgPixmap.pixmap, gc, 0, 0, szHint.width, szHint.height); } success = True; #ifdef HAVE_AFTERIMAGE @@ -1084,66 +1669,11 @@ back_im = tmp; } } - - if (bgPixmap.original_asim != NULL) - { - ASImageLayer *layers = create_image_layers (2); - ASImage *merged_im = NULL; - int fore_w, fore_h; - - layers[0].im = back_im; - layers[0].clip_width = szHint.width; - layers[0].clip_height = szHint.height; - layers[0].tint = tint; - layers[1].im = bgPixmap.original_asim; - - fore_w = (bgPixmap.h_scale == 0) ? bgPixmap.original_asim->width : bgPixmap.h_scale*szHint.width/100; - fore_h = (bgPixmap.v_scale == 0) ? bgPixmap.original_asim->height : bgPixmap.v_scale*szHint.height/100; - - if (fore_w != bgPixmap.original_asim->width - || fore_h != bgPixmap.original_asim->height) - { - layers[1].im = scale_asimage (asv, - bgPixmap.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; - } - PRINT_BACKGROUND_OP_TIME; - merged_im = merge_layers (asv, layers, 2, szHint.width, szHint.height, - ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT); - if (layers[1].im != bgPixmap.original_asim) - destroy_asimage (&(layers[1].im)); - free (layers); - - if (merged_im != NULL) - { - destroy_asimage (&back_im); - back_im = merged_im; - } - PRINT_BACKGROUND_OP_TIME; - } - else if (tint != TINT_LEAVE_SAME) - { - ASImage* tmp = tile_asimage (asv, back_im, 0, 0, szHint.width, szHint.height, tint, ASA_XImage, 100, ASIMAGE_QUALITY_DEFAULT); - if (tmp) - { - destroy_asimage (&back_im); - back_im = tmp; - } - PRINT_BACKGROUND_OP_TIME; - } - asimage2drawable (asv, bgPixmap.pixmap, back_im, gc, 0, 0, 0, 0, szHint.width, szHint.height, True); + /* 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; @@ -1155,7 +1685,6 @@ 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) @@ -1166,114 +1695,33 @@ } } #endif /* HAVE_AFTERIMAGE */ - PRINT_BACKGROUND_OP_TIME; if (gc != NULL) XFreeGC (dpy, gc); - + + bgPixmap.apply(); if (!success) - { - if (am_transparent && am_pixmap_trans) - { - pchanged = 1; - if (bgPixmap.pixmap != None) - { - XFreePixmap (dpy, bgPixmap.pixmap); - bgPixmap.pixmap = None; - } - } - am_pixmap_trans = 0; - } else { - XSetWindowBackgroundPixmap (dpy, parent[0], bgPixmap.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