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

Comparing rxvt-unicode/src/scrollbar-rxvt.C (file contents):
Revision 1.17 by root, Fri Feb 4 11:41:23 2005 UTC vs.
Revision 1.20 by root, Tue Jan 3 02:43:33 2006 UTC

25#include "rxvt.h" /* NECESSARY */ 25#include "rxvt.h" /* NECESSARY */
26 26
27/*----------------------------------------------------------------------*/ 27/*----------------------------------------------------------------------*/
28#if defined(RXVT_SCROLLBAR) 28#if defined(RXVT_SCROLLBAR)
29 29
30/* draw triangular button with a shadow of SHADOW (1 or 2) pixels */ 30/* draw triangular button with a shadow of MENU_SHADOW (1 or 2) pixels */
31void 31void
32rxvt_term::Draw_button (int x, int y, int state, int dirn) 32rxvt_term::Draw_button (int x, int y, int state, int dirn)
33{ 33{
34 unsigned int sz, sz2; 34 unsigned int sz, sz2;
35 XPoint pt[3]; 35 XPoint pt[3];
78 pt[1].x = x + sz2 - 1; 78 pt[1].x = x + sz2 - 1;
79 pt[1].y = y + (dirn == UP ? 0 : sz - 1); 79 pt[1].y = y + (dirn == UP ? 0 : sz - 1);
80 XDrawLine (display->display, scrollBar.win, top, 80 XDrawLine (display->display, scrollBar.win, top,
81 pt[0].x, pt[0].y, pt[1].x, pt[1].y); 81 pt[0].x, pt[0].y, pt[1].x, pt[1].y);
82 82
83#if (SHADOW > 1) 83#if (MENU_SHADOW > 1)
84 /* doubled */ 84 /* doubled */
85 pt[0].x++; 85 pt[0].x++;
86 86
87 if (dirn == UP) 87 if (dirn == UP)
88 { 88 {
104 pt[1].y = y + (dirn == UP ? sz - 1 : 0); 104 pt[1].y = y + (dirn == UP ? sz - 1 : 0);
105 pt[2].y = y + (dirn == UP ? 0 : sz - 1); 105 pt[2].y = y + (dirn == UP ? 0 : sz - 1);
106 XDrawLine (display->display, scrollBar.win, bot, 106 XDrawLine (display->display, scrollBar.win, bot,
107 pt[2].x, pt[2].y, pt[1].x, pt[1].y); 107 pt[2].x, pt[2].y, pt[1].x, pt[1].y);
108 108
109#if (SHADOW > 1) 109#if (MENU_SHADOW > 1)
110 /* doubled */ 110 /* doubled */
111 pt[1].x--; 111 pt[1].x--;
112 if (dirn == UP) 112 if (dirn == UP)
113 { 113 {
114 pt[2].y++; 114 pt[2].y++;
132 int sbwidth = (int)scrollBar.width; 132 int sbwidth = (int)scrollBar.width;
133 133
134 if ((scrollBar.init & R_SB_RXVT) == 0) 134 if ((scrollBar.init & R_SB_RXVT) == 0)
135 { 135 {
136 scrollBar.init |= R_SB_RXVT; 136 scrollBar.init |= R_SB_RXVT;
137
137 if (sbshadow) 138 if (sbshadow)
138 { 139 {
139 XSetWindowBackground (display->display, scrollBar.win, pix_colors_focused[Color_trough]); 140 XSetWindowBackground (display->display, scrollBar.win, pix_colors_focused[Color_trough]);
140 XClearWindow (display->display, scrollBar.win); 141 XClearWindow (display->display, scrollBar.win);
141 } 142 }
163 /* scrollbar slider */ 164 /* scrollbar slider */
164#ifdef SB_BORDER 165#ifdef SB_BORDER
165 { 166 {
166 int xofs; 167 int xofs;
167 168
168 if (options & Opt_scrollBar_right) 169 if (OPTION (Opt_scrollBar_right))
169 xofs = 0; 170 xofs = 0;
170 else 171 else
171 xofs = sbshadow ? sbwidth : sbwidth - 1; 172 xofs = sbshadow ? sbwidth : sbwidth - 1;
172 173
173 XDrawLine (display->display, scrollBar.win, botShadowGC, 174 XDrawLine (display->display, scrollBar.win, botShadowGC,
199 200
200 return 1; 201 return 1;
201} 202}
202#endif /* RXVT_SCROLLBAR */ 203#endif /* RXVT_SCROLLBAR */
203/*----------------------- end-of-file (C source) -----------------------*/ 204/*----------------------- end-of-file (C source) -----------------------*/
205

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines