ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar-next.C
(Generate patch)

Comparing rxvt-unicode/src/scrollbar-next.C (file contents):
Revision 1.3 by pcg, Tue Nov 25 11:52:42 2003 UTC vs.
Revision 1.6 by pcg, Sat Jan 31 04:12:10 2004 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*--------------------------------*-C-*---------------------------------*
2 * File: scrollbar-next.c 2 * File: scrollbar-next.c
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * $Id: scrollbar-next.C,v 1.3 2003/11/25 11:52:42 pcg Exp $
5 * 4 *
6 * Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA> 5 * Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA>
7 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org> 6 * Copyright (c) 1998 Alfredo K. Kojima <kojima@windowmaker.org>
8 * - N*XTstep like scrollbars 7 * - N*XTstep like scrollbars
9 * Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com> 8 * Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>
109 " % ", 108 " % ",
110 " ", 109 " ",
111 " " 110 " "
112}; 111};
113 112
114/* INTPROTO */
115Pixmap 113Pixmap
116rxvt_renderPixmap(pR_ const char *const *data, int width, int height) 114rxvt_term::renderPixmap (const char *const *data, int width, int height)
117{ 115{
118 char a; 116 char a;
119 int x, y; 117 int x, y;
120 Pixmap d; 118 Pixmap d;
121 GC pointcolour; 119 GC pointcolour;
122 120
123 d = XCreatePixmap(R->Xdisplay, R->scrollBar.win, width, height, XDEPTH); 121 d = XCreatePixmap(Xdisplay, scrollBar.win, width, height, XDEPTH);
124 122
125 for (y = 0; y < height; y++) { 123 for (y = 0; y < height; y++) {
126 for (x = 0; x < width; x++) { 124 for (x = 0; x < width; x++) {
127 if ((a = data[y][x]) == ' ' || a == 'w') 125 if ((a = data[y][x]) == ' ' || a == 'w')
128 pointcolour = R->whiteGC; 126 pointcolour = whiteGC;
129 else if (a == '.' || a == 'l') 127 else if (a == '.' || a == 'l')
130 pointcolour = R->grayGC; 128 pointcolour = grayGC;
131 else if (a == '%' || a == 'd') 129 else if (a == '%' || a == 'd')
132 pointcolour = R->darkGC; 130 pointcolour = darkGC;
133 else /* if (a == '#' || a == 'b' || a) */ 131 else /* if (a == '#' || a == 'b' || a) */
134 pointcolour = R->blackGC; 132 pointcolour = blackGC;
135 XDrawPoint(R->Xdisplay, d, pointcolour, x, y); 133 XDrawPoint(Xdisplay, d, pointcolour, x, y);
136 } 134 }
137 } 135 }
138 return d; 136 return d;
139} 137}
140 138
141/* INTPROTO */
142void 139void
143rxvt_init_scrollbar_stuff(pR) 140rxvt_term::init_scrollbar_stuff ()
144{ 141{
145 XGCValues gcvalue; 142 XGCValues gcvalue;
146 XColor xcol; 143 XColor xcol;
147 Pixmap stipple; 144 Pixmap stipple;
148 unsigned long light, dark; 145 unsigned long light, dark;
149 146
150 gcvalue.graphics_exposures = False; 147 gcvalue.graphics_exposures = False;
151 148
152 gcvalue.foreground = R->PixColors[Color_Black]; 149 gcvalue.foreground = PixColors[Color_Black];
153 R->blackGC = XCreateGC(R->Xdisplay, R->scrollBar.win, 150 blackGC = XCreateGC(Xdisplay, scrollBar.win,
154 GCForeground | GCGraphicsExposures, &gcvalue); 151 GCForeground | GCGraphicsExposures, &gcvalue);
155 152
156 gcvalue.foreground = R->PixColors[Color_White]; 153 gcvalue.foreground = PixColors[Color_White];
157 R->whiteGC = XCreateGC(R->Xdisplay, R->scrollBar.win, 154 whiteGC = XCreateGC(Xdisplay, scrollBar.win,
158 GCForeground | GCGraphicsExposures, &gcvalue); 155 GCForeground | GCGraphicsExposures, &gcvalue);
159 156
160 xcol.red = 0xaeba; 157 xcol.red = 0xaeba;
161 xcol.green = 0xaaaa; 158 xcol.green = 0xaaaa;
162 xcol.blue = 0xaeba; 159 xcol.blue = 0xaeba;
163 if (!rxvt_rXAllocColor(aR_ &xcol, "light gray")) 160 //if (!rXAllocColor (&xcol, "light gray"))//TODO//D//
164 xcol.pixel = R->PixColors[Color_AntiqueWhite]; 161 xcol.pixel = PixColors[Color_AntiqueWhite];
165 light = gcvalue.foreground = xcol.pixel; 162 light = gcvalue.foreground = xcol.pixel;
166 R->grayGC = XCreateGC(R->Xdisplay, R->scrollBar.win, 163 grayGC = XCreateGC(Xdisplay, scrollBar.win,
167 GCForeground | GCGraphicsExposures, &gcvalue); 164 GCForeground | GCGraphicsExposures, &gcvalue);
168 165
169 xcol.red = 0x51aa; 166 xcol.red = 0x51aa;
170 xcol.green = 0x5555; 167 xcol.green = 0x5555;
171 xcol.blue = 0x5144; 168 xcol.blue = 0x5144;
172 if (!rxvt_rXAllocColor(aR_ &xcol, "dark gray")) 169 //if (!rXAllocColor (&xcol, "dark gray"))//TODO//D//
173 xcol.pixel = R->PixColors[Color_Grey25]; 170 xcol.pixel = PixColors[Color_Grey25];
174 dark = gcvalue.foreground = xcol.pixel; 171 dark = gcvalue.foreground = xcol.pixel;
175 R->darkGC = XCreateGC(R->Xdisplay, R->scrollBar.win, 172 darkGC = XCreateGC(Xdisplay, scrollBar.win,
176 GCForeground | GCGraphicsExposures, &gcvalue); 173 GCForeground | GCGraphicsExposures, &gcvalue);
177 174
178 stipple = XCreateBitmapFromData(R->Xdisplay, R->scrollBar.win, 175 stipple = XCreateBitmapFromData(Xdisplay, scrollBar.win,
179 (char *)n_stp_bits, n_stp_width, 176 (char *)n_stp_bits, n_stp_width,
180 n_stp_height); 177 n_stp_height);
181 178
182 gcvalue.foreground = dark; 179 gcvalue.foreground = dark;
183 gcvalue.background = light; 180 gcvalue.background = light;
184 gcvalue.fill_style = FillOpaqueStippled; 181 gcvalue.fill_style = FillOpaqueStippled;
185 gcvalue.stipple = stipple; 182 gcvalue.stipple = stipple;
186 183
187/* XSetWindowBackground(R->Xdisplay, R->scrollBar.win, R->PixColors[Color_Red]); */ 184/* XSetWindowBackground(Xdisplay, scrollBar.win, PixColors[Color_Red]); */
188 185
189 R->stippleGC = XCreateGC(R->Xdisplay, R->scrollBar.win, 186 stippleGC = XCreateGC(Xdisplay, scrollBar.win,
190 GCForeground | GCBackground | GCStipple 187 GCForeground | GCBackground | GCStipple
191 | GCFillStyle | GCGraphicsExposures, &gcvalue); 188 | GCFillStyle | GCGraphicsExposures, &gcvalue);
192 189
193 R->dimple = rxvt_renderPixmap(aR_ SCROLLER_DIMPLE, SCROLLER_DIMPLE_WIDTH, 190 dimple = renderPixmap (SCROLLER_DIMPLE, SCROLLER_DIMPLE_WIDTH,
194 SCROLLER_DIMPLE_HEIGHT); 191 SCROLLER_DIMPLE_HEIGHT);
195 192
196 R->upArrow = rxvt_renderPixmap(aR_ SCROLLER_ARROW_UP, ARROW_WIDTH, 193 upArrow = renderPixmap (SCROLLER_ARROW_UP, ARROW_WIDTH,
197 ARROW_HEIGHT); 194 ARROW_HEIGHT);
198 R->downArrow = rxvt_renderPixmap(aR_ SCROLLER_ARROW_DOWN, ARROW_WIDTH, 195 downArrow = renderPixmap (SCROLLER_ARROW_DOWN, ARROW_WIDTH,
199 ARROW_HEIGHT); 196 ARROW_HEIGHT);
200 R->upArrowHi = rxvt_renderPixmap(aR_ HI_SCROLLER_ARROW_UP, ARROW_WIDTH, 197 upArrowHi = renderPixmap (HI_SCROLLER_ARROW_UP, ARROW_WIDTH,
201 ARROW_HEIGHT); 198 ARROW_HEIGHT);
202 R->downArrowHi = rxvt_renderPixmap(aR_ HI_SCROLLER_ARROW_DOWN, 199 downArrowHi = renderPixmap (HI_SCROLLER_ARROW_DOWN,
203 ARROW_WIDTH, ARROW_HEIGHT); 200 ARROW_WIDTH, ARROW_HEIGHT);
204} 201}
205 202
206/* Draw bevel & arrows */ 203/* Draw bevel & arrows */
207/* INTPROTO */
208void 204void
209rxvt_drawBevel(pR_ Drawable d, int x1, int y1, int w, int h) 205rxvt_term::drawBevel (Drawable d, int x1, int y1, int w, int h)
210{ 206{
211 int x2, y2; 207 int x2, y2;
212 208
213 x2 = x1 + w - 1; /* right point */ 209 x2 = x1 + w - 1; /* right point */
214 y2 = y1 + h - 1; /* bottom point */ 210 y2 = y1 + h - 1; /* bottom point */
215/* white top and left */ 211/* white top and left */
216 XDrawLine(R->Xdisplay, d, R->whiteGC, x1, y1, x2, y1); 212 XDrawLine(Xdisplay, d, whiteGC, x1, y1, x2, y1);
217 XDrawLine(R->Xdisplay, d, R->whiteGC, x1, y1, x1, y2); 213 XDrawLine(Xdisplay, d, whiteGC, x1, y1, x1, y2);
218/* black bottom and right */ 214/* black bottom and right */
219 XDrawLine(R->Xdisplay, d, R->blackGC, x1, y2, x2, y2); 215 XDrawLine(Xdisplay, d, blackGC, x1, y2, x2, y2);
220 XDrawLine(R->Xdisplay, d, R->blackGC, x2, y1, x2, y2); 216 XDrawLine(Xdisplay, d, blackGC, x2, y1, x2, y2);
221/* dark inside bottom and right */ 217/* dark inside bottom and right */
222 x1++, y1++, x2--, y2--; /* move in one point */ 218 x1++, y1++, x2--, y2--; /* move in one point */
223 XDrawLine(R->Xdisplay, d, R->darkGC, x1, y2, x2, y2); 219 XDrawLine(Xdisplay, d, darkGC, x1, y2, x2, y2);
224 XDrawLine(R->Xdisplay, d, R->darkGC, x2, y1, x2, y2); 220 XDrawLine(Xdisplay, d, darkGC, x2, y1, x2, y2);
225} 221}
226 222
227/* EXTPROTO */
228int 223int
229rxvt_scrollbar_show_next(pR_ int update, int last_top, int last_bot, int scrollbar_len) 224rxvt_term::scrollbar_show_next (int update, int last_top, int last_bot, int scrollbar_len)
230{ 225{
231 int height = R->scrollBar.end + SB_BUTTON_TOTAL_HEIGHT + SB_PADDING; 226 int height = scrollBar.end + SB_BUTTON_TOTAL_HEIGHT + SB_PADDING;
232 Drawable s; 227 Drawable s;
233 228
234 if ((R->scrollBar.init & R_SB_NEXT) == 0) { 229 if ((scrollBar.init & R_SB_NEXT) == 0) {
235 R->scrollBar.init |= R_SB_NEXT; 230 scrollBar.init |= R_SB_NEXT;
236 rxvt_init_scrollbar_stuff(aR); 231 init_scrollbar_stuff ();
237 } 232 }
238 233
239 if (R->TermWin.nscrolled == 0 || !update) { 234 if (TermWin.nscrolled == 0 || !update) {
240 XFillRectangle(R->Xdisplay, R->scrollBar.win, R->grayGC, 0, 0, 235 XFillRectangle(Xdisplay, scrollBar.win, grayGC, 0, 0,
241 SB_WIDTH_NEXT + 1, height); 236 SB_WIDTH_NEXT + 1, height);
242 XDrawRectangle(R->Xdisplay, R->scrollBar.win, R->blackGC, 0, 237 XDrawRectangle(Xdisplay, scrollBar.win, blackGC, 0,
243 -SB_BORDER_WIDTH, SB_WIDTH_NEXT, 238 -SB_BORDER_WIDTH, SB_WIDTH_NEXT,
244 height + SB_BORDER_WIDTH); 239 height + SB_BORDER_WIDTH);
245 XFillRectangle(R->Xdisplay, R->scrollBar.win, R->stippleGC, 240 XFillRectangle(Xdisplay, scrollBar.win, stippleGC,
246 SB_LEFT_PADDING, 0, SB_BUTTON_WIDTH, height); 241 SB_LEFT_PADDING, 0, SB_BUTTON_WIDTH, height);
247 } 242 }
248 if (R->TermWin.nscrolled) { 243 if (TermWin.nscrolled) {
249 if (last_top < R->scrollBar.top || !update) 244 if (last_top < scrollBar.top || !update)
250 XFillRectangle(R->Xdisplay, R->scrollBar.win, R->stippleGC, 245 XFillRectangle(Xdisplay, scrollBar.win, stippleGC,
251 SB_LEFT_PADDING, SB_PADDING + last_top, 246 SB_LEFT_PADDING, SB_PADDING + last_top,
252 SB_BUTTON_WIDTH, R->scrollBar.top - last_top); 247 SB_BUTTON_WIDTH, scrollBar.top - last_top);
253 if (R->scrollBar.bot < last_bot || !update) 248 if (scrollBar.bot < last_bot || !update)
254 XFillRectangle(R->Xdisplay, R->scrollBar.win, R->stippleGC, 249 XFillRectangle(Xdisplay, scrollBar.win, stippleGC,
255 SB_LEFT_PADDING, R->scrollBar.bot + SB_PADDING, 250 SB_LEFT_PADDING, scrollBar.bot + SB_PADDING,
256 SB_BUTTON_WIDTH, (last_bot - R->scrollBar.bot)); 251 SB_BUTTON_WIDTH, (last_bot - scrollBar.bot));
257 XFillRectangle(R->Xdisplay, R->scrollBar.win, R->grayGC, 252 XFillRectangle(Xdisplay, scrollBar.win, grayGC,
258 SB_LEFT_PADDING, R->scrollBar.top + SB_PADDING, 253 SB_LEFT_PADDING, scrollBar.top + SB_PADDING,
259 SB_BUTTON_WIDTH, scrollbar_len); 254 SB_BUTTON_WIDTH, scrollbar_len);
260 XCopyArea(R->Xdisplay, R->dimple, R->scrollBar.win, R->whiteGC, 0, 0, 255 XCopyArea(Xdisplay, dimple, scrollBar.win, whiteGC, 0, 0,
261 SCROLLER_DIMPLE_WIDTH, SCROLLER_DIMPLE_HEIGHT, 256 SCROLLER_DIMPLE_WIDTH, SCROLLER_DIMPLE_HEIGHT,
262 (SB_WIDTH_NEXT - SCROLLER_DIMPLE_WIDTH) / 2, 257 (SB_WIDTH_NEXT - SCROLLER_DIMPLE_WIDTH) / 2,
263 R->scrollBar.top + SB_BEVEL_WIDTH_UPPER_LEFT + 258 scrollBar.top + SB_BEVEL_WIDTH_UPPER_LEFT +
264 (scrollbar_len - SCROLLER_DIMPLE_HEIGHT) / 2); 259 (scrollbar_len - SCROLLER_DIMPLE_HEIGHT) / 2);
265 260
266 rxvt_drawBevel(aR_ R->scrollBar.win, SB_BUTTON_BEVEL_X, 261 drawBevel (scrollBar.win, SB_BUTTON_BEVEL_X,
267 R->scrollBar.top + SB_PADDING, SB_BUTTON_WIDTH, 262 scrollBar.top + SB_PADDING, SB_BUTTON_WIDTH,
268 scrollbar_len); 263 scrollbar_len);
269 rxvt_drawBevel(aR_ R->scrollBar.win, SB_BUTTON_BEVEL_X, 264 drawBevel (scrollBar.win, SB_BUTTON_BEVEL_X,
270 height - SB_BUTTON_BOTH_HEIGHT, SB_BUTTON_WIDTH, 265 height - SB_BUTTON_BOTH_HEIGHT, SB_BUTTON_WIDTH,
271 SB_BUTTON_HEIGHT); 266 SB_BUTTON_HEIGHT);
272 rxvt_drawBevel(aR_ R->scrollBar.win, SB_BUTTON_BEVEL_X, 267 drawBevel (scrollBar.win, SB_BUTTON_BEVEL_X,
273 height - SB_BUTTON_SINGLE_HEIGHT, SB_BUTTON_WIDTH, 268 height - SB_BUTTON_SINGLE_HEIGHT, SB_BUTTON_WIDTH,
274 SB_BUTTON_HEIGHT); 269 SB_BUTTON_HEIGHT);
275 270
276 s = (scrollbar_isUp()) ? R->upArrowHi : R->upArrow; 271 s = (scrollbar_isUp()) ? upArrowHi : upArrow;
277 XCopyArea(R->Xdisplay, s, R->scrollBar.win, R->whiteGC, 0, 0, 272 XCopyArea(Xdisplay, s, scrollBar.win, whiteGC, 0, 0,
278 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X, 273 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X,
279 height - SB_BUTTON_BOTH_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT); 274 height - SB_BUTTON_BOTH_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT);
280 275
281 s = (scrollbar_isDn()) ? R->downArrowHi : R->downArrow; 276 s = (scrollbar_isDn()) ? downArrowHi : downArrow;
282 XCopyArea(R->Xdisplay, s, R->scrollBar.win, R->whiteGC, 0, 0, 277 XCopyArea(Xdisplay, s, scrollBar.win, whiteGC, 0, 0,
283 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X, 278 ARROW_WIDTH, ARROW_HEIGHT, SB_BUTTON_FACE_X,
284 height - SB_BUTTON_SINGLE_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT); 279 height - SB_BUTTON_SINGLE_HEIGHT + SB_BEVEL_WIDTH_UPPER_LEFT);
285 } 280 }
286 return 1; 281 return 1;
287} 282}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines