--- rxvt-unicode/src/scrollbar.C 2007/12/29 14:40:09 1.41 +++ rxvt-unicode/src/scrollbar.C 2008/02/18 09:58:05 1.55 @@ -36,10 +36,9 @@ { int change = 0; -#ifdef HAVE_SCROLLBARS if (map) { - scrollBar.setIdle (); + scrollBar.state = STATE_IDLE; if (!scrollBar.win) resize_scrollbar (); @@ -56,7 +55,6 @@ XUnmapWindow (dpy, scrollBar.win); change = 1; } -#endif return change; } @@ -64,17 +62,20 @@ void rxvt_term::resize_scrollbar () { -#ifdef HAVE_SCROLLBARS int delayed_init = 0; + int window_sb_x = 0; + + if (option (Opt_scrollBar_right)) + window_sb_x = szHint.width - scrollBar.total_width (); #define R_SCROLLBEG_XTERM 0 #define R_SCROLLEND_XTERM szHint.height #define R_SCROLLBEG_NEXT 0 #define R_SCROLLEND_NEXT szHint.height - (SB_BUTTON_TOTAL_HEIGHT + \ SB_PADDING) -#define R_SCROLLBEG_RXVT (scrollBar.width + 1) + scrollBar.sb_shadow +#define R_SCROLLBEG_RXVT (scrollBar.width + 1) + scrollBar.shadow #define R_SCROLLEND_RXVT szHint.height - R_SCROLLBEG_RXVT - \ - (2 * scrollBar.sb_shadow) + (2 * scrollBar.shadow) #if defined(PLAIN_SCROLLBAR) if (scrollBar.style == R_SB_PLAIN) @@ -115,12 +116,12 @@ scrollBar.win = XCreateSimpleWindow (dpy, parent[0], window_sb_x, 0, - scrollbar_TotalWidth (), + scrollBar.total_width (), szHint.height, 0, pix_colors[Color_fg], pix_colors[Color_border]); - XDefineCursor (dpy, scrollBar.win, leftptr_cursor); + XDefineCursor (dpy, scrollBar.win, scrollBar.leftptr_cursor); XSelectInput (dpy, scrollBar.win, ExposureMask | ButtonPressMask | ButtonReleaseMask @@ -130,12 +131,15 @@ delayed_init = 1; } + else + XMoveResizeWindow (dpy, scrollBar.win, + window_sb_x, 0, + scrollBar.total_width (), szHint.height); scrollbar_show (1); if (delayed_init) XMapWindow (dpy, scrollBar.win); -#endif } /* @@ -145,47 +149,49 @@ rxvt_term::scrollbar_show (int update) { int ret = 0; -#ifdef HAVE_SCROLLBARS - int top, bot, len, adj; - int scrollbar_len = 0; if (!scrollBar.state) return 0; if (update) { - top = view_start - top_row; - bot = top + (nrow - 1); - len = max (nrow - 1 - top_row, 1); - adj = (((bot - top) * scrollbar_size ()) % len) > 0 ? 1 : 0; - - scrollBar.top = (scrollBar.beg + (top * scrollbar_size ()) / len); - scrollbar_len = ((bot - top) * scrollbar_size ()) / len + - scrollbar_minheight () + adj; - scrollBar.bot = (scrollBar.top + scrollbar_len); + int top = view_start - top_row; + int bot = top + (nrow - 1); + int len = max (nrow - 1 - top_row, 1); + int adj = (((bot - top) * scrollBar.size ()) % len) > 0 ? 1 : 0; + + scrollBar.top = (scrollBar.beg + (top * scrollBar.size ()) / len); + scrollBar.len = ((bot - top) * scrollBar.size ()) / len + + scrollBar.min_height () + adj; + scrollBar.bot = (scrollBar.top + scrollBar.len); /* no change */ - if (scrollBar.top == last_top - && scrollBar.bot == last_bot - && (scrollBar.state == last_state || !scrollbar_isUpDn ())) + if (scrollBar.top == scrollBar.last_top + && scrollBar.bot == scrollBar.last_bot + && (scrollBar.state == scrollBar.last_state + || !(scrollBar.state == STATE_UP || scrollBar.state == STATE_DOWN))) return 0; } - ret = (this->*scrollBar.update) (update, last_top, last_bot, scrollbar_len); + ret = (this->*scrollBar.update) (update, scrollBar.last_top, scrollBar.last_bot, scrollBar.len); - last_top = scrollBar.top; - last_bot = scrollBar.bot; - last_state = scrollBar.state; -#endif + scrollBar.last_top = scrollBar.top; + scrollBar.last_bot = scrollBar.bot; + scrollBar.last_state = scrollBar.state; return ret; } void -rxvt_term::setup_scrollbar (const char *scrollalign, const char *scrollstyle, const char *thickness) +scrollBar_t::setup (rxvt_term *term) { -#ifdef HAVE_SCROLLBARS int i; short style, width; + const char *scrollalign, *scrollstyle, *thickness; + + this->term = term; + scrollalign = term->rs[Rs_scrollBar_align]; + scrollstyle = term->rs[Rs_scrollstyle]; + thickness = term->rs[Rs_scrollBar_thickness]; # if defined(RXVT_SCROLLBAR) style = R_SB_RXVT; @@ -231,22 +237,24 @@ width = min (i, SB_WIDTH_MAXIMUM); # ifdef RXVT_SCROLLBAR - if (! option (Opt_scrollBar_floating) && style == R_SB_RXVT) - scrollBar.sb_shadow = SHADOW_WIDTH; + if (! term->option (Opt_scrollBar_floating) && style == R_SB_RXVT) + shadow = SHADOW_WIDTH; # endif - scrollBar.style = style; - scrollBar.width = width; + this->style = style; + this->width = width; - /* scrollbar_align = R_SB_ALIGN_CENTRE; */ + /* align = R_SB_ALIGN_CENTRE; */ if (scrollalign) { if (strncasecmp (scrollalign, "top", 3) == 0) - scrollbar_align = R_SB_ALIGN_TOP; + align = R_SB_ALIGN_TOP; else if (strncasecmp (scrollalign, "bottom", 6) == 0) - scrollbar_align = R_SB_ALIGN_BOTTOM; + align = R_SB_ALIGN_BOTTOM; } -#endif + last_bot = last_state = -1; + /* cursor scrollBar: Black-on-White */ + leftptr_cursor = XCreateFontCursor (term->dpy, XC_left_ptr); } /*----------------------- end-of-file (C source) -----------------------*/