ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar.C
Revision: 1.78
Committed: Sun Oct 14 12:31:59 2012 UTC (11 years, 7 months ago) by sf-exg
Content type: text/plain
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_20, rxvt-unicode-rel-9_19, rxvt-unicode-rel-9_18, rxvt-unicode-rel-9_17, rxvt-unicode-rel-9_16
Changes since 1.77: +2 -0 lines
Log Message:
Fix compilation with --disable-rxvt-scroll.

File Contents

# User Rev Content
1 root 1.38 /*----------------------------------------------------------------------*
2 pcg 1.15 * File: scrollbar.C
3 pcg 1.1 *----------------------------------------------------------------------*
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 root 1.64 * Copyright (c) 2004-2006 Marc Lehmann <schmorp@schmorp.de>
10 pcg 1.1 *
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 sf-exg 1.71 void
35 ayin 1.60 scrollBar_t::map (int map)
36 pcg 1.1 {
37 root 1.24 if (map)
38 pcg 1.12 {
39 sf-exg 1.74 state = SB_STATE_IDLE;
40 root 1.24
41 ayin 1.60 if (!win)
42     resize ();
43 sf-exg 1.72 else
44     XMapWindow (term->dpy, win);
45 pcg 1.12 }
46 root 1.24 else
47 pcg 1.12 {
48 sf-exg 1.74 state = SB_STATE_OFF;
49 sf-exg 1.72
50     if (win)
51     XUnmapWindow (term->dpy, win);
52 pcg 1.1 }
53     }
54    
55     void
56 ayin 1.60 scrollBar_t::resize ()
57 pcg 1.1 {
58 pcg 1.12 int delayed_init = 0;
59 ayin 1.55 int window_sb_x = 0;
60    
61 ayin 1.60 if (term->option (Opt_scrollBar_right))
62     window_sb_x = term->szHint.width - total_width ();
63 pcg 1.1
64 ayin 1.60 update_data ();
65 pcg 1.1
66 ayin 1.60 if (!win)
67 pcg 1.12 {
68     /* create the scrollbar window */
69 ayin 1.60 win = XCreateSimpleWindow (term->dpy,
70 sf-exg 1.66 term->parent,
71 ayin 1.60 window_sb_x, 0,
72     total_width (),
73     term->szHint.height,
74     0,
75     term->pix_colors[Color_fg],
76 sf-exg 1.76 term->pix_colors[color ()]);
77 ayin 1.60 XDefineCursor (term->dpy, win, leftptr_cursor);
78 pcg 1.13
79 ayin 1.60 XSelectInput (term->dpy, win,
80 pcg 1.13 ExposureMask | ButtonPressMask | ButtonReleaseMask
81     | Button1MotionMask | Button2MotionMask
82     | Button3MotionMask);
83 ayin 1.60 term->scrollbar_ev.start (term->display, win);
84 pcg 1.13
85 pcg 1.12 delayed_init = 1;
86     }
87 ayin 1.55 else
88 ayin 1.60 XMoveResizeWindow (term->dpy, win,
89 ayin 1.55 window_sb_x, 0,
90 ayin 1.60 total_width (), term->szHint.height);
91 pcg 1.13
92 ayin 1.60 show (1);
93 pcg 1.13
94 pcg 1.12 if (delayed_init)
95 ayin 1.60 XMapWindow (term->dpy, win);
96 pcg 1.1 }
97    
98     /*
99     * Update current scrollbar view w.r.t. slider heights, etc.
100     */
101     int
102 ayin 1.60 scrollBar_t::show (int refresh)
103 pcg 1.1 {
104 ayin 1.59 int ret;
105 pcg 1.1
106 ayin 1.60 if (!state)
107 pcg 1.12 return 0;
108 pcg 1.1
109 ayin 1.58 if (refresh)
110 pcg 1.12 {
111 ayin 1.60 int sb_top = term->view_start - term->top_row;
112     int sb_bot = sb_top + (term->nrow - 1);
113     int sb_len = max (term->nrow - 1 - term->top_row, 1);
114 sf-exg 1.75 int n = min (min_height (), size ());
115 ayin 1.60
116 sf-exg 1.75 top = beg + (sb_top * (size () - n)) / sb_len;
117     bot = top + ecb_div_ru ((sb_bot - sb_top) * (size () - n), sb_len) + n;
118 pcg 1.12 /* no change */
119 ayin 1.60 if (top == last_top
120     && bot == last_bot
121     && (state == last_state
122 sf-exg 1.74 || !(state == SB_STATE_UP || state == SB_STATE_DOWN)))
123 pcg 1.12 return 0;
124 pcg 1.1 }
125    
126 ayin 1.61 ret = (this->*update) (refresh);
127 pcg 1.1
128 ayin 1.60 last_top = top;
129     last_bot = bot;
130     last_state = state;
131 pcg 1.1
132 pcg 1.12 return ret;
133 pcg 1.1 }
134    
135     void
136 ayin 1.50 scrollBar_t::setup (rxvt_term *term)
137 pcg 1.1 {
138 sf-exg 1.73 int i;
139 ayin 1.50 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 pcg 1.1
146 pcg 1.10 # if defined(RXVT_SCROLLBAR)
147 sf-exg 1.74 style = SB_STYLE_RXVT;
148 pcg 1.10 # elif defined(XTERM_SCROLLBAR)
149 sf-exg 1.74 style = SB_STYLE_XTERM;
150 pcg 1.10 # elif defined(NEXT_SCROLLBAR)
151 sf-exg 1.74 style = SB_STYLE_NEXT;
152 pcg 1.10 # elif defined(PLAIN_SCROLLBAR)
153 sf-exg 1.74 style = SB_STYLE_PLAIN;
154 pcg 1.10 #else
155 sf-exg 1.74 style = SB_STYLE_RXVT;
156 pcg 1.1 # endif
157    
158 pcg 1.10 # if (defined(NEXT_SCROLLBAR) || defined(XTERM_SCROLLBAR) || defined(PLAIN_SCROLLBAR))
159 pcg 1.12 if (scrollstyle)
160     {
161 pcg 1.1 # ifdef NEXT_SCROLLBAR
162 root 1.19 if (strncasecmp (scrollstyle, "next", 4) == 0)
163 sf-exg 1.74 style = SB_STYLE_NEXT;
164 pcg 1.1 # endif
165     # ifdef XTERM_SCROLLBAR
166 root 1.19 if (strncasecmp (scrollstyle, "xterm", 5) == 0)
167 sf-exg 1.74 style = SB_STYLE_XTERM;
168 pcg 1.1 # endif
169 pcg 1.10 # ifdef PLAIN_SCROLLBAR
170 root 1.19 if (strncasecmp (scrollstyle, "plain", 5) == 0)
171 sf-exg 1.74 style = SB_STYLE_PLAIN;
172 pcg 1.10 # endif
173 pcg 1.12
174 pcg 1.1 }
175     # endif
176 sf-exg 1.74 if (style == SB_STYLE_NEXT)
177 pcg 1.12 width = SB_WIDTH_NEXT;
178 sf-exg 1.74 else if (style == SB_STYLE_XTERM)
179 pcg 1.12 width = SB_WIDTH_XTERM;
180 sf-exg 1.74 else if (style == SB_STYLE_PLAIN)
181 pcg 1.12 width = SB_WIDTH_PLAIN;
182 sf-exg 1.74 else /* if (style == SB_STYLE_RXVT) */
183 pcg 1.12 width = SB_WIDTH_RXVT;
184 pcg 1.1
185 sf-exg 1.74 if (style != SB_STYLE_NEXT) /* dishonour request - for now */
186 pcg 1.14 if (thickness && (i = atoi (thickness)) >= SB_WIDTH_MINIMUM)
187     width = min (i, SB_WIDTH_MAXIMUM);
188 pcg 1.1
189 sf-exg 1.65 # ifdef RXVT_SCROLLBAR
190 sf-exg 1.74 if (! term->option (Opt_scrollBar_floating) && style == SB_STYLE_RXVT)
191 sf-exg 1.65 shadow = SHADOW_WIDTH;
192     # endif
193    
194 sf-exg 1.74 /* align = SB_ALIGN_CENTRE; */
195 pcg 1.12 if (scrollalign)
196     {
197 root 1.19 if (strncasecmp (scrollalign, "top", 3) == 0)
198 sf-exg 1.74 align = SB_ALIGN_TOP;
199 root 1.19 else if (strncasecmp (scrollalign, "bottom", 6) == 0)
200 sf-exg 1.74 align = SB_ALIGN_BOTTOM;
201 pcg 1.1 }
202 sf-exg 1.74 last_state = SB_STATE_OFF;
203 ayin 1.47 /* cursor scrollBar: Black-on-White */
204 ayin 1.50 leftptr_cursor = XCreateFontCursor (term->dpy, XC_left_ptr);
205 pcg 1.1 }
206    
207 ayin 1.57 void
208 ayin 1.61 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 sf-exg 1.76 int
237     scrollBar_t::color ()
238     {
239 sf-exg 1.78 #ifdef RXVT_SCROLLBAR
240 sf-exg 1.76 if (style == SB_STYLE_RXVT && shadow)
241     return Color_trough;
242     else
243 sf-exg 1.78 #endif
244 sf-exg 1.76 return Color_border;
245     }
246    
247 ayin 1.61 void
248 ayin 1.57 scrollBar_t::update_data ()
249     {
250     #if defined(PLAIN_SCROLLBAR)
251 sf-exg 1.74 if (style == SB_STYLE_PLAIN)
252 ayin 1.57 {
253     beg = 0;
254     end = term->szHint.height;
255 ayin 1.61 update = &scrollBar_t::show_plain;
256 ayin 1.57 }
257     #endif
258     #if defined(XTERM_SCROLLBAR)
259 sf-exg 1.74 if (style == SB_STYLE_XTERM)
260 ayin 1.57 {
261     beg = 0;
262     end = term->szHint.height;
263 ayin 1.61 update = &scrollBar_t::show_xterm;
264 ayin 1.57 }
265     #endif
266     #if defined(NEXT_SCROLLBAR)
267 sf-exg 1.74 if (style == SB_STYLE_NEXT)
268 ayin 1.57 {
269     beg = 0;
270     end = term->szHint.height - (SB_BUTTON_TOTAL_HEIGHT + SB_PADDING);
271 ayin 1.61 update = &scrollBar_t::show_next;
272 ayin 1.57 }
273     #endif
274     #if defined(RXVT_SCROLLBAR)
275 sf-exg 1.74 if (style == SB_STYLE_RXVT)
276 ayin 1.57 {
277     beg = (width + 1) + shadow;
278 sf-exg 1.77 end = term->szHint.height - beg;
279 ayin 1.61 update = &scrollBar_t::show_rxvt;
280 ayin 1.57 }
281     #endif
282     }
283    
284 pcg 1.1 /*----------------------- end-of-file (C source) -----------------------*/
285 pcg 1.10