ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar-next.C
Revision: 1.16
Committed: Fri Feb 4 11:41:23 2005 UTC (19 years, 3 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-5_4, rel-5_1, rel-5_0, rel-5_3, rel-5_2
Changes since 1.15: +27 -23 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 /*--------------------------------*-C-*---------------------------------*
2 pcg 1.10 * File: scrollbar-next.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 pcg 1.10 * Copyright (c) 2004 Marc Lehmann <pcg@goof.com>
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     #if defined(NEXT_SCROLLBAR)
31    
32     #define n_stp_width 8
33     #define n_stp_height 2
34     const unsigned char n_stp_bits[] = { 0x55, 0xaa };
35    
36     /*
37     * N*XTSTEP like scrollbar - written by Alfredo K. Kojima
38     */
39     #define SCROLLER_DIMPLE_WIDTH 6
40     #define SCROLLER_DIMPLE_HEIGHT 6
41     #define ARROW_WIDTH 13
42     #define ARROW_HEIGHT 13
43    
44 pcg 1.7 const char *const SCROLLER_DIMPLE[] =
45     {
46 pcg 1.1 ".%###.",
47     "%#%%%%",
48     "#%%...",
49     "#%.. ",
50     "#%. ",
51     ".%. ."
52 pcg 1.7 };
53     const char *const SCROLLER_ARROW_UP[] =
54     {
55 pcg 1.1 ".............",
56     ".............",
57     "......%......",
58     "......#......",
59     ".....%#%.....",
60     ".....###.....",
61     "....%###%....",
62     "....#####....",
63     "...%#####%...",
64     "...#######...",
65     "..%#######%..",
66     ".............",
67     "............."
68 pcg 1.7 };
69     const char *const SCROLLER_ARROW_DOWN[] =
70     {
71 pcg 1.1 ".............",
72     ".............",
73     "..%#######%..",
74     "...#######...",
75     "...%#####%...",
76     "....#####....",
77     "....%###%....",
78     ".....###.....",
79     ".....%#%.....",
80     "......#......",
81     "......%......",
82     ".............",
83     "............."
84 pcg 1.7 };
85     const char *const HI_SCROLLER_ARROW_UP[] =
86     {
87 pcg 1.1 " ",
88     " ",
89     " % ",
90     " % ",
91     " %%% ",
92     " %%% ",
93     " %%%%% ",
94     " %%%%% ",
95     " %%%%%%% ",
96     " %%%%%%% ",
97     " %%%%%%%%% ",
98     " ",
99     " "
100 pcg 1.7 };
101     const char *const HI_SCROLLER_ARROW_DOWN[] =
102     {
103 pcg 1.1 " ",
104     " ",
105     " %%%%%%%%% ",
106     " %%%%%%% ",
107     " %%%%%%% ",
108     " %%%%% ",
109     " %%%%% ",
110     " %%% ",
111     " %%% ",
112     " % ",
113     " % ",
114     " ",
115     " "
116 pcg 1.7 };
117 pcg 1.1
118     Pixmap
119 pcg 1.5 rxvt_term::renderPixmap (const char *const *data, int width, int height)
120 pcg 1.1 {
121 pcg 1.7 char a;
122     int x, y;
123     Pixmap d;
124     GC pointcolour;
125    
126 root 1.11 d = XCreatePixmap (display->display, scrollBar.win, width, height, display->depth);
127 pcg 1.7
128     for (y = 0; y < height; y++)
129     {
130     for (x = 0; x < width; x++)
131     {
132     if ((a = data[y][x]) == ' ' || a == 'w')
133     pointcolour = whiteGC;
134     else if (a == '.' || a == 'l')
135     pointcolour = grayGC;
136     else if (a == '%' || a == 'd')
137     pointcolour = darkGC;
138     else /* if (a == '#' || a == 'b' || a) */
139     pointcolour = blackGC;
140 root 1.16
141 pcg 1.9 XDrawPoint (display->display, d, pointcolour, x, y);
142 pcg 1.7 }
143 pcg 1.1 }
144 pcg 1.7 return d;
145 pcg 1.1 }
146    
147     void
148 pcg 1.5 rxvt_term::init_scrollbar_stuff ()
149 pcg 1.1 {
150 pcg 1.7 XGCValues gcvalue;
151     XColor xcol;
152     Pixmap stipple;
153     unsigned long light, dark;
154 root 1.16 dDisp;
155 pcg 1.7
156     gcvalue.graphics_exposures = False;
157    
158 root 1.15 gcvalue.foreground = pix_colors_focused[Color_Black];
159 root 1.16 blackGC = XCreateGC (disp, scrollBar.win,
160 pcg 1.7 GCForeground | GCGraphicsExposures, &gcvalue);
161    
162 root 1.15 gcvalue.foreground = pix_colors_focused[Color_White];
163 root 1.16 whiteGC = XCreateGC (disp, scrollBar.win,
164 pcg 1.7 GCForeground | GCGraphicsExposures, &gcvalue);
165    
166     xcol.red = 0xaeba;
167     xcol.green = 0xaaaa;
168     xcol.blue = 0xaeba;
169     //if (!rXAllocColor (&xcol, "light gray"))//TODO//D//
170 root 1.15 xcol.pixel = pix_colors_focused[Color_AntiqueWhite];
171 pcg 1.7 light = gcvalue.foreground = xcol.pixel;
172 root 1.16 grayGC = XCreateGC (disp, scrollBar.win,
173 pcg 1.7 GCForeground | GCGraphicsExposures, &gcvalue);
174    
175     xcol.red = 0x51aa;
176     xcol.green = 0x5555;
177     xcol.blue = 0x5144;
178     //if (!rXAllocColor (&xcol, "dark gray"))//TODO//D//
179 root 1.15 xcol.pixel = pix_colors_focused[Color_Grey25];
180 pcg 1.7 dark = gcvalue.foreground = xcol.pixel;
181 root 1.16 darkGC = XCreateGC (disp, scrollBar.win,
182 pcg 1.7 GCForeground | GCGraphicsExposures, &gcvalue);
183    
184 root 1.16 stipple = XCreateBitmapFromData (disp, scrollBar.win,
185 pcg 1.7 (char *)n_stp_bits, n_stp_width,
186     n_stp_height);
187    
188     gcvalue.foreground = dark;
189     gcvalue.background = light;
190     gcvalue.fill_style = FillOpaqueStippled;
191     gcvalue.stipple = stipple;
192    
193 root 1.16 /* XSetWindowBackground (disp, scrollBar.win, pix_colors_focused[Color_Red]); */
194 pcg 1.7
195 root 1.16 stippleGC = XCreateGC (disp, scrollBar.win,
196 pcg 1.7 GCForeground | GCBackground | GCStipple
197     | GCFillStyle | GCGraphicsExposures, &gcvalue);
198    
199     dimple = renderPixmap (SCROLLER_DIMPLE, SCROLLER_DIMPLE_WIDTH,
200     SCROLLER_DIMPLE_HEIGHT);
201    
202     upArrow = renderPixmap (SCROLLER_ARROW_UP, ARROW_WIDTH,
203     ARROW_HEIGHT);
204     downArrow = renderPixmap (SCROLLER_ARROW_DOWN, ARROW_WIDTH,
205     ARROW_HEIGHT);
206     upArrowHi = renderPixmap (HI_SCROLLER_ARROW_UP, ARROW_WIDTH,
207     ARROW_HEIGHT);
208     downArrowHi = renderPixmap (HI_SCROLLER_ARROW_DOWN,
209     ARROW_WIDTH, ARROW_HEIGHT);
210 pcg 1.1 }
211    
212     /* Draw bevel & arrows */
213     void
214 pcg 1.5 rxvt_term::drawBevel (Drawable d, int x1, int y1, int w, int h)
215 pcg 1.1 {
216 root 1.16 int x2, y2;
217     dDisp;
218 pcg 1.1
219 pcg 1.7 x2 = x1 + w - 1; /* right point */
220     y2 = y1 + h - 1; /* bottom point */
221     /* white top and left */
222 root 1.16 XDrawLine (disp, d, whiteGC, x1, y1, x2, y1);
223     XDrawLine (disp, d, whiteGC, x1, y1, x1, y2);
224 pcg 1.7 /* black bottom and right */
225 root 1.16 XDrawLine (disp, d, blackGC, x1, y2, x2, y2);
226     XDrawLine (disp, d, blackGC, x2, y1, x2, y2);
227 pcg 1.7 /* dark inside bottom and right */
228     x1++, y1++, x2--, y2--; /* move in one point */
229 root 1.16 XDrawLine (disp, d, darkGC, x1, y2, x2, y2);
230     XDrawLine (disp, d, darkGC, x2, y1, x2, y2);
231 pcg 1.1 }
232    
233     int
234 pcg 1.5 rxvt_term::scrollbar_show_next (int update, int last_top, int last_bot, int scrollbar_len)
235 pcg 1.1 {
236 root 1.15 int height = scrollBar.end + SB_BUTTON_TOTAL_HEIGHT + SB_PADDING;
237     Drawable s;
238 root 1.16 dDisp;
239 pcg 1.1
240 pcg 1.7 if ((scrollBar.init & R_SB_NEXT) == 0)
241     {
242     scrollBar.init |= R_SB_NEXT;
243     init_scrollbar_stuff ();
244 pcg 1.1 }
245    
246 pcg 1.7 if (TermWin.nscrolled == 0 || !update)
247     {
248 root 1.16 XFillRectangle (disp, scrollBar.win, grayGC, 0, 0,
249 pcg 1.7 SB_WIDTH_NEXT + 1, height);
250 root 1.16 XDrawRectangle (disp, scrollBar.win, blackGC, 0,
251 pcg 1.7 -SB_BORDER_WIDTH, SB_WIDTH_NEXT,
252     height + SB_BORDER_WIDTH);
253 root 1.16 XFillRectangle (disp, scrollBar.win, stippleGC,
254 pcg 1.7 SB_LEFT_PADDING, 0, SB_BUTTON_WIDTH, height);
255 pcg 1.1 }
256 root 1.15
257 pcg 1.7 if (TermWin.nscrolled)
258     {
259     if (last_top < scrollBar.top || !update)
260 root 1.16 XFillRectangle (disp, scrollBar.win, stippleGC,
261 pcg 1.7 SB_LEFT_PADDING, SB_PADDING + last_top,
262     SB_BUTTON_WIDTH, scrollBar.top - last_top);
263 root 1.15
264 pcg 1.7 if (scrollBar.bot < last_bot || !update)
265 root 1.16 XFillRectangle (disp, scrollBar.win, stippleGC,
266 pcg 1.7 SB_LEFT_PADDING, scrollBar.bot + SB_PADDING,
267     SB_BUTTON_WIDTH, (last_bot - scrollBar.bot));
268 root 1.15
269 root 1.16 XFillRectangle (disp, scrollBar.win, grayGC,
270 pcg 1.7 SB_LEFT_PADDING, scrollBar.top + SB_PADDING,
271     SB_BUTTON_WIDTH, scrollbar_len);
272 root 1.15
273 root 1.16 XCopyArea (disp, dimple, scrollBar.win, whiteGC, 0, 0,
274 pcg 1.7 SCROLLER_DIMPLE_WIDTH, SCROLLER_DIMPLE_HEIGHT,
275     (SB_WIDTH_NEXT - SCROLLER_DIMPLE_WIDTH) / 2,
276     scrollBar.top + SB_BEVEL_WIDTH_UPPER_LEFT +
277     (scrollbar_len - SCROLLER_DIMPLE_HEIGHT) / 2);
278    
279     drawBevel (scrollBar.win, SB_BUTTON_BEVEL_X,
280     scrollBar.top + SB_PADDING, SB_BUTTON_WIDTH,
281     scrollbar_len);
282     drawBevel (scrollBar.win, SB_BUTTON_BEVEL_X,
283     height - SB_BUTTON_BOTH_HEIGHT, SB_BUTTON_WIDTH,
284     SB_BUTTON_HEIGHT);
285     drawBevel (scrollBar.win, SB_BUTTON_BEVEL_X,
286     height - SB_BUTTON_SINGLE_HEIGHT, SB_BUTTON_WIDTH,
287     SB_BUTTON_HEIGHT);
288    
289 pcg 1.9 s = (scrollbar_isUp ()) ? upArrowHi : upArrow;
290 root 1.16 XCopyArea (disp, s, scrollBar.win, whiteGC, 0, 0,
291 pcg 1.7 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X,
292     height - SB_BUTTON_BOTH_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT);
293    
294 pcg 1.9 s = (scrollbar_isDn ()) ? downArrowHi : downArrow;
295 root 1.16 XCopyArea (disp, s, scrollBar.win, whiteGC, 0, 0,
296 pcg 1.7 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X,
297     height - SB_BUTTON_SINGLE_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT);
298 pcg 1.1 }
299 root 1.15
300 pcg 1.7 return 1;
301 pcg 1.1 }
302     #endif /* NEXT_SCROLLBAR */
303     /*----------------------- end-of-file (C source) -----------------------*/