ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar.C
Revision: 1.71
Committed: Sun Aug 28 18:48:41 2011 UTC (12 years, 8 months ago) by sf-exg
Content type: text/plain
Branch: MAIN
Changes since 1.70: +1 -7 lines
Log Message:
Remove failed attempt at avoiding unneeded resize and refresh of the
window when the scrollbar is turned on/off with the corresponding DEC
sequence.

File Contents

# Content
1 /*----------------------------------------------------------------------*
2 * File: scrollbar.C
3 *----------------------------------------------------------------------*
4 *
5 * Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA>
6 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org>
7 * - N*XTstep like scrollbars
8 * Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>
9 * Copyright (c) 2004-2006 Marc Lehmann <schmorp@schmorp.de>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 *----------------------------------------------------------------------*/
25
26 #include "../config.h" /* NECESSARY */
27 #include "rxvt.h" /* NECESSARY */
28
29 /*----------------------------------------------------------------------*/
30
31 /*
32 * Map or unmap a scrollbar. Returns non-zero upon change of state
33 */
34 void
35 scrollBar_t::map (int map)
36 {
37 if (map)
38 {
39 state = STATE_IDLE;
40
41 if (!win)
42 resize ();
43
44 if (win)
45 {
46 XMapWindow (term->dpy, win);
47 }
48 }
49 else
50 {
51 state = STATE_OFF;
52 XUnmapWindow (term->dpy, win);
53 }
54 }
55
56 void
57 scrollBar_t::resize ()
58 {
59 int delayed_init = 0;
60 int window_sb_x = 0;
61
62 if (term->option (Opt_scrollBar_right))
63 window_sb_x = term->szHint.width - total_width ();
64
65 update_data ();
66
67 if (!win)
68 {
69 /* create the scrollbar window */
70 win = XCreateSimpleWindow (term->dpy,
71 term->parent,
72 window_sb_x, 0,
73 total_width (),
74 term->szHint.height,
75 0,
76 term->pix_colors[Color_fg],
77 term->pix_colors[Color_border]);
78 XDefineCursor (term->dpy, win, leftptr_cursor);
79
80 XSelectInput (term->dpy, win,
81 ExposureMask | ButtonPressMask | ButtonReleaseMask
82 | Button1MotionMask | Button2MotionMask
83 | Button3MotionMask);
84 term->scrollbar_ev.start (term->display, win);
85
86 delayed_init = 1;
87 }
88 else
89 XMoveResizeWindow (term->dpy, win,
90 window_sb_x, 0,
91 total_width (), term->szHint.height);
92
93 show (1);
94
95 if (delayed_init)
96 XMapWindow (term->dpy, win);
97 }
98
99 /*
100 * Update current scrollbar view w.r.t. slider heights, etc.
101 */
102 int
103 scrollBar_t::show (int refresh)
104 {
105 int ret;
106
107 if (!state)
108 return 0;
109
110 if (refresh)
111 {
112 int sb_top = term->view_start - term->top_row;
113 int sb_bot = sb_top + (term->nrow - 1);
114 int sb_len = max (term->nrow - 1 - term->top_row, 1);
115
116 top = beg + (sb_top * size ()) / sb_len;
117 bot = top + ecb_div_ru ((sb_bot - sb_top) * size (), sb_len) + min_height ();
118 /* no change */
119 if (top == last_top
120 && bot == last_bot
121 && (state == last_state
122 || !(state == STATE_UP || state == STATE_DOWN)))
123 return 0;
124 }
125
126 ret = (this->*update) (refresh);
127
128 last_top = top;
129 last_bot = bot;
130 last_state = state;
131
132 return ret;
133 }
134
135 void
136 scrollBar_t::setup (rxvt_term *term)
137 {
138 int i;
139 const char *scrollalign, *scrollstyle, *thickness;
140
141 this->term = term;
142 scrollalign = term->rs[Rs_scrollBar_align];
143 scrollstyle = term->rs[Rs_scrollstyle];
144 thickness = term->rs[Rs_scrollBar_thickness];
145
146 # if defined(RXVT_SCROLLBAR)
147 style = R_SB_RXVT;
148 # elif defined(XTERM_SCROLLBAR)
149 style = R_SB_XTERM;
150 # elif defined(NEXT_SCROLLBAR)
151 style = R_SB_NEXT;
152 # elif defined(PLAIN_SCROLLBAR)
153 style = R_SB_PLAIN;
154 #else
155 style = R_SB_RXVT;
156 # endif
157
158 # if (defined(NEXT_SCROLLBAR) || defined(XTERM_SCROLLBAR) || defined(PLAIN_SCROLLBAR))
159 if (scrollstyle)
160 {
161 # ifdef NEXT_SCROLLBAR
162 if (strncasecmp (scrollstyle, "next", 4) == 0)
163 style = R_SB_NEXT;
164 # endif
165 # ifdef XTERM_SCROLLBAR
166 if (strncasecmp (scrollstyle, "xterm", 5) == 0)
167 style = R_SB_XTERM;
168 # endif
169 # ifdef PLAIN_SCROLLBAR
170 if (strncasecmp (scrollstyle, "plain", 5) == 0)
171 style = R_SB_PLAIN;
172 # endif
173
174 }
175 # endif
176 if (style == R_SB_NEXT)
177 width = SB_WIDTH_NEXT;
178 else if (style == R_SB_XTERM)
179 width = SB_WIDTH_XTERM;
180 else if (style == R_SB_PLAIN)
181 width = SB_WIDTH_PLAIN;
182 else /* if (style == R_SB_RXVT) */
183 width = SB_WIDTH_RXVT;
184
185 if (style != R_SB_NEXT) /* dishonour request - for now */
186 if (thickness && (i = atoi (thickness)) >= SB_WIDTH_MINIMUM)
187 width = min (i, SB_WIDTH_MAXIMUM);
188
189 # ifdef RXVT_SCROLLBAR
190 if (! term->option (Opt_scrollBar_floating) && style == R_SB_RXVT)
191 shadow = SHADOW_WIDTH;
192 # endif
193
194 /* align = R_SB_ALIGN_CENTRE; */
195 if (scrollalign)
196 {
197 if (strncasecmp (scrollalign, "top", 3) == 0)
198 align = R_SB_ALIGN_TOP;
199 else if (strncasecmp (scrollalign, "bottom", 6) == 0)
200 align = R_SB_ALIGN_BOTTOM;
201 }
202 last_state = STATE_OFF;
203 /* cursor scrollBar: Black-on-White */
204 leftptr_cursor = XCreateFontCursor (term->dpy, XC_left_ptr);
205 }
206
207 void
208 scrollBar_t::destroy ()
209 {
210 #ifdef XTERM_SCROLLBAR
211 if (xscrollbarGC) XFreeGC (term->dpy, xscrollbarGC);
212 if (ShadowGC) XFreeGC (term->dpy, ShadowGC);
213 #endif
214 #ifdef PLAIN_SCROLLBAR
215 if (pscrollbarGC) XFreeGC (term->dpy, pscrollbarGC);
216 #endif
217 #ifdef NEXT_SCROLLBAR
218 if (blackGC) XFreeGC (term->dpy, blackGC);
219 if (whiteGC) XFreeGC (term->dpy, whiteGC);
220 if (grayGC) XFreeGC (term->dpy, grayGC);
221 if (darkGC) XFreeGC (term->dpy, darkGC);
222 if (stippleGC) XFreeGC (term->dpy, stippleGC);
223 if (dimple) XFreePixmap (term->dpy, dimple);
224 if (upArrow) XFreePixmap (term->dpy, upArrow);
225 if (downArrow) XFreePixmap (term->dpy, downArrow);
226 if (upArrowHi) XFreePixmap (term->dpy, upArrowHi);
227 if (downArrowHi) XFreePixmap (term->dpy, downArrowHi);
228 #endif
229 #ifdef RXVT_SCROLLBAR
230 if (topShadowGC) XFreeGC (term->dpy, topShadowGC);
231 if (botShadowGC) XFreeGC (term->dpy, botShadowGC);
232 if (scrollbarGC) XFreeGC (term->dpy, scrollbarGC);
233 #endif
234 }
235
236 void
237 scrollBar_t::update_data ()
238 {
239 #if defined(PLAIN_SCROLLBAR)
240 if (style == R_SB_PLAIN)
241 {
242 beg = 0;
243 end = term->szHint.height;
244 update = &scrollBar_t::show_plain;
245 }
246 #endif
247 #if defined(XTERM_SCROLLBAR)
248 if (style == R_SB_XTERM)
249 {
250 beg = 0;
251 end = term->szHint.height;
252 update = &scrollBar_t::show_xterm;
253 }
254 #endif
255 #if defined(NEXT_SCROLLBAR)
256 if (style == R_SB_NEXT)
257 {
258 beg = 0;
259 end = term->szHint.height - (SB_BUTTON_TOTAL_HEIGHT + SB_PADDING);
260 update = &scrollBar_t::show_next;
261 }
262 #endif
263 #if defined(RXVT_SCROLLBAR)
264 if (style == R_SB_RXVT)
265 {
266 beg = (width + 1) + shadow;
267 end = term->szHint.height - beg - (2 * shadow);
268 update = &scrollBar_t::show_rxvt;
269 }
270 #endif
271 }
272
273 /*----------------------- end-of-file (C source) -----------------------*/
274