--- rxvt-unicode/src/scrollbar.C 2008/01/29 13:57:23 1.49 +++ rxvt-unicode/src/scrollbar.C 2008/02/17 12:21:45 1.54 @@ -112,7 +112,7 @@ scrollBar.win = XCreateSimpleWindow (dpy, parent[0], window_sb_x, 0, - scrollbar_TotalWidth (), + scrollBar.total_width (), szHint.height, 0, pix_colors[Color_fg], @@ -141,21 +141,20 @@ rxvt_term::scrollbar_show (int update) { int ret = 0; - int top, bot, len, adj; 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; + 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 == scrollBar.last_top @@ -175,10 +174,16 @@ } void -rxvt_term::setup_scrollbar (const char *scrollalign, const char *scrollstyle, const char *thickness) +scrollBar_t::setup (rxvt_term *term) { 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; @@ -224,24 +229,24 @@ width = min (i, SB_WIDTH_MAXIMUM); # ifdef RXVT_SCROLLBAR - if (! option (Opt_scrollBar_floating) && style == R_SB_RXVT) - scrollBar.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; } - scrollBar.last_bot = scrollBar.last_state = -1; + last_bot = last_state = -1; /* cursor scrollBar: Black-on-White */ - scrollBar.leftptr_cursor = XCreateFontCursor (dpy, XC_left_ptr); + leftptr_cursor = XCreateFontCursor (term->dpy, XC_left_ptr); } /*----------------------- end-of-file (C source) -----------------------*/