ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar-next.C
Revision: 1.33
Committed: Thu May 22 18:54:33 2014 UTC (10 years ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.32: +1 -1 lines
Log Message:
GPLv3

File Contents

# User Rev Content
1 root 1.25 /*----------------------------------------------------------------------*
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 root 1.31 * 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 root 1.33 * the Free Software Foundation; either version 3 of the License, or
14 pcg 1.1 * (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 ayin 1.29 static Pixmap
119     renderPixmap (scrollBar_t *sb, 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 ayin 1.29 d = XCreatePixmap (sb->term->dpy, sb->win, width, height, sb->term->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 ayin 1.29 pointcolour = sb->whiteGC;
134 pcg 1.7 else if (a == '.' || a == 'l')
135 ayin 1.29 pointcolour = sb->grayGC;
136 pcg 1.7 else if (a == '%' || a == 'd')
137 ayin 1.29 pointcolour = sb->darkGC;
138 pcg 1.7 else /* if (a == '#' || a == 'b' || a) */
139 ayin 1.29 pointcolour = sb->blackGC;
140 root 1.16
141 ayin 1.29 XDrawPoint (sb->term->dpy, 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 ayin 1.29 scrollBar_t::init_next ()
149 pcg 1.1 {
150 pcg 1.7 XGCValues gcvalue;
151     XColor xcol;
152     Pixmap stipple;
153     unsigned long light, dark;
154    
155     gcvalue.graphics_exposures = False;
156    
157 ayin 1.29 gcvalue.foreground = term->pix_colors_focused[Color_Black];
158     blackGC = XCreateGC (term->dpy, win,
159 root 1.21 GCForeground | GCGraphicsExposures, &gcvalue);
160 pcg 1.7
161 ayin 1.29 gcvalue.foreground = term->pix_colors_focused[Color_White];
162     whiteGC = XCreateGC (term->dpy, win,
163 root 1.21 GCForeground | GCGraphicsExposures, &gcvalue);
164 pcg 1.7
165     xcol.red = 0xaeba;
166     xcol.green = 0xaaaa;
167     xcol.blue = 0xaeba;
168 ayin 1.29 xcol.pixel = term->pix_colors_focused[Color_scroll];
169 pcg 1.7 light = gcvalue.foreground = xcol.pixel;
170 ayin 1.29 grayGC = XCreateGC (term->dpy, win,
171 root 1.21 GCForeground | GCGraphicsExposures, &gcvalue);
172 pcg 1.7
173     xcol.red = 0x51aa;
174     xcol.green = 0x5555;
175     xcol.blue = 0x5144;
176     //if (!rXAllocColor (&xcol, "dark gray"))//TODO//D//
177 ayin 1.29 xcol.pixel = term->pix_colors_focused[Color_Grey25];
178 pcg 1.7 dark = gcvalue.foreground = xcol.pixel;
179 ayin 1.29 darkGC = XCreateGC (term->dpy, win,
180 pcg 1.7 GCForeground | GCGraphicsExposures, &gcvalue);
181    
182 ayin 1.29 stipple = XCreateBitmapFromData (term->dpy, win,
183 root 1.21 (char *)n_stp_bits, n_stp_width,
184     n_stp_height);
185 pcg 1.7
186     gcvalue.foreground = dark;
187     gcvalue.background = light;
188     gcvalue.fill_style = FillOpaqueStippled;
189     gcvalue.stipple = stipple;
190    
191 root 1.23 /* XSetWindowBackground (dpy, scrollBar.win, pix_colors_focused[Color_Red]); */
192 pcg 1.7
193 ayin 1.29 stippleGC = XCreateGC (term->dpy, win,
194 root 1.21 GCForeground | GCBackground | GCStipple
195     | GCFillStyle | GCGraphicsExposures, &gcvalue);
196 pcg 1.7
197 ayin 1.29 dimple = renderPixmap (this, SCROLLER_DIMPLE, SCROLLER_DIMPLE_WIDTH,
198 pcg 1.7 SCROLLER_DIMPLE_HEIGHT);
199    
200 ayin 1.29 upArrow = renderPixmap (this, SCROLLER_ARROW_UP, ARROW_WIDTH,
201 pcg 1.7 ARROW_HEIGHT);
202 ayin 1.29 downArrow = renderPixmap (this, SCROLLER_ARROW_DOWN, ARROW_WIDTH,
203 pcg 1.7 ARROW_HEIGHT);
204 ayin 1.29 upArrowHi = renderPixmap (this, HI_SCROLLER_ARROW_UP, ARROW_WIDTH,
205 pcg 1.7 ARROW_HEIGHT);
206 ayin 1.29 downArrowHi = renderPixmap (this, HI_SCROLLER_ARROW_DOWN,
207 pcg 1.7 ARROW_WIDTH, ARROW_HEIGHT);
208 pcg 1.1 }
209    
210     /* Draw bevel & arrows */
211 ayin 1.29 static void
212     drawBevel (scrollBar_t *sb, int x1, int y1, int w, int h)
213 pcg 1.1 {
214 root 1.16 int x2, y2;
215 ayin 1.29 Drawable d = sb->win;
216     Display *dpy = sb->term->dpy;
217 pcg 1.1
218 pcg 1.7 x2 = x1 + w - 1; /* right point */
219     y2 = y1 + h - 1; /* bottom point */
220     /* white top and left */
221 ayin 1.29 XDrawLine (dpy, d, sb->whiteGC, x1, y1, x2, y1);
222     XDrawLine (dpy, d, sb->whiteGC, x1, y1, x1, y2);
223 pcg 1.7 /* black bottom and right */
224 ayin 1.29 XDrawLine (dpy, d, sb->blackGC, x1, y2, x2, y2);
225     XDrawLine (dpy, d, sb->blackGC, x2, y1, x2, y2);
226 pcg 1.7 /* dark inside bottom and right */
227     x1++, y1++, x2--, y2--; /* move in one point */
228 ayin 1.29 XDrawLine (dpy, d, sb->darkGC, x1, y2, x2, y2);
229     XDrawLine (dpy, d, sb->darkGC, x2, y1, x2, y2);
230 pcg 1.1 }
231    
232     int
233 ayin 1.29 scrollBar_t::show_next (int update)
234 pcg 1.1 {
235 ayin 1.29 int height = end + SB_BUTTON_TOTAL_HEIGHT + SB_PADDING;
236 ayin 1.28 Drawable src;
237 pcg 1.1
238 sf-exg 1.32 if ((init & SB_STYLE_NEXT) == 0)
239 pcg 1.7 {
240 sf-exg 1.32 init |= SB_STYLE_NEXT;
241 ayin 1.29 init_next ();
242 pcg 1.1 }
243    
244 ayin 1.29 if (term->top_row == 0 || !update)
245 pcg 1.7 {
246 ayin 1.29 XFillRectangle (term->dpy, win, grayGC, 0, 0,
247 root 1.21 SB_WIDTH_NEXT + 1, height);
248 ayin 1.29 XDrawRectangle (term->dpy, win, blackGC, 0,
249 root 1.21 -SB_BORDER_WIDTH, SB_WIDTH_NEXT,
250     height + SB_BORDER_WIDTH);
251 ayin 1.29 XFillRectangle (term->dpy, win, stippleGC,
252 root 1.21 SB_LEFT_PADDING, 0, SB_BUTTON_WIDTH, height);
253 pcg 1.1 }
254 root 1.15
255 ayin 1.29 if (term->top_row)
256 pcg 1.7 {
257 ayin 1.29 if (last_top < top || !update)
258     XFillRectangle (term->dpy, win, stippleGC,
259 root 1.21 SB_LEFT_PADDING, SB_PADDING + last_top,
260 ayin 1.29 SB_BUTTON_WIDTH, top - last_top);
261 root 1.15
262 ayin 1.29 if (bot < last_bot || !update)
263     XFillRectangle (term->dpy, win, stippleGC,
264     SB_LEFT_PADDING, bot + SB_PADDING,
265     SB_BUTTON_WIDTH, (last_bot - bot));
266    
267     XFillRectangle (term->dpy, win, grayGC,
268     SB_LEFT_PADDING, top + SB_PADDING,
269 ayin 1.30 SB_BUTTON_WIDTH, bot - top);
270 root 1.21
271 ayin 1.29 XCopyArea (term->dpy, dimple, win, whiteGC, 0, 0,
272 root 1.21 SCROLLER_DIMPLE_WIDTH, SCROLLER_DIMPLE_HEIGHT,
273     (SB_WIDTH_NEXT - SCROLLER_DIMPLE_WIDTH) / 2,
274 ayin 1.29 top + SB_BEVEL_WIDTH_UPPER_LEFT +
275 ayin 1.30 (bot - top - SCROLLER_DIMPLE_HEIGHT) / 2);
276 pcg 1.7
277 ayin 1.29 drawBevel (this, SB_BUTTON_BEVEL_X,
278     top + SB_PADDING, SB_BUTTON_WIDTH,
279 ayin 1.30 bot - top);
280 ayin 1.29 drawBevel (this, SB_BUTTON_BEVEL_X,
281 pcg 1.7 height - SB_BUTTON_BOTH_HEIGHT, SB_BUTTON_WIDTH,
282     SB_BUTTON_HEIGHT);
283 ayin 1.29 drawBevel (this, SB_BUTTON_BEVEL_X,
284 pcg 1.7 height - SB_BUTTON_SINGLE_HEIGHT, SB_BUTTON_WIDTH,
285     SB_BUTTON_HEIGHT);
286    
287 sf-exg 1.32 src = state == SB_STATE_UP ? upArrowHi : upArrow;
288 ayin 1.29 XCopyArea (term->dpy, src, win, whiteGC, 0, 0,
289 root 1.21 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X,
290     height - SB_BUTTON_BOTH_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT);
291 pcg 1.7
292 sf-exg 1.32 src = state == SB_STATE_DOWN ? downArrowHi : downArrow;
293 ayin 1.29 XCopyArea (term->dpy, src, win, whiteGC, 0, 0,
294 root 1.21 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X,
295     height - SB_BUTTON_SINGLE_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT);
296 pcg 1.1 }
297 root 1.15
298 pcg 1.7 return 1;
299 pcg 1.1 }
300 ayin 1.26 #endif /* NEXT_SCROLLBAR */
301 pcg 1.1 /*----------------------- end-of-file (C source) -----------------------*/