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

Comparing rxvt-unicode/src/scrollbar.h (file contents):
Revision 1.1 by ayin, Sat Dec 29 12:03:39 2007 UTC vs.
Revision 1.9 by ayin, Tue Jan 1 21:14:39 2008 UTC

12 unsigned int end; /* slider sub-window end height */ 12 unsigned int end; /* slider sub-window end height */
13 unsigned int top; /* slider top position */ 13 unsigned int top; /* slider top position */
14 unsigned int bot; /* slider bottom position */ 14 unsigned int bot; /* slider bottom position */
15 unsigned int style; /* style: rxvt, xterm, next */ 15 unsigned int style; /* style: rxvt, xterm, next */
16 unsigned int width; /* scrollbar width */ 16 unsigned int width; /* scrollbar width */
17 int shadow; /* scrollbar shadow width */
18 int last_bot; /* scrollbar last bottom position */
19 int last_top; /* scrollbar last top position */
20 int last_state; /* scrollbar last state */
21 int len;
22 unsigned char align;
17 Window win; 23 Window win;
18 int (rxvt_term::*update)(int, int, int, int); 24 int (rxvt_term::*update)(int, int, int, int);
19 25
20 void setIdle() { state = 1 ; } 26 void setIdle() { state = 1 ; }
21 void setMotion() { state = 'm'; } 27 void setMotion() { state = 'm'; }
22 void setUp() { state = 'U'; } 28 void setUp() { state = 'U'; }
23 void setDn() { state = 'D'; } 29 void setDn() { state = 'D'; }
24} scrollBar_t; 30} scrollBar_t;
25 31
32#define scrollbar_TotalWidth() (scrollBar.width + scrollBar.shadow * 2)
26#define scrollbar_isMotion() (scrollBar.state == 'm') 33#define scrollbar_isMotion() (scrollBar.state == 'm')
27#define scrollbar_isUp() (scrollBar.state == 'U') 34#define scrollbar_isUp() (scrollBar.state == 'U')
28#define scrollbar_isDn() (scrollBar.state == 'D') 35#define scrollbar_isDn() (scrollBar.state == 'D')
29#define scrollbar_isUpDn() isupper (scrollBar.state) 36#define scrollbar_isUpDn() (scrollbar_isUp () || scrollbar_isDn ())
30#define isScrollbarWindow(w) (scrollBar.state && (w) == scrollBar.win)
31 37
32#define scrollbarnext_dnval() (scrollBar.end + (scrollBar.width + 1)) 38#define scrollbarnext_dnval() (scrollBar.end + (scrollBar.width + 1))
33#define scrollbarnext_upButton(y) ((y) > scrollBar.end \ 39#define scrollbarnext_upButton(y) ((y) > scrollBar.end \
34 && (y) <= scrollbarnext_dnval ()) 40 && (y) <= scrollbarnext_dnval ())
35#define scrollbarnext_dnButton(y) ((y) > scrollbarnext_dnval()) 41#define scrollbarnext_dnButton(y) ((y) > scrollbarnext_dnval())
36#define SCROLLNEXT_MINHEIGHT SB_THUMB_MIN_HEIGHT 42#define SCROLLNEXT_MINHEIGHT SB_THUMB_MIN_HEIGHT
37#define scrollbarrxvt_upButton(y) ((y) < scrollBar.beg) 43#define scrollbarrxvt_upButton(y) ((y) < scrollBar.beg)
38#define scrollbarrxvt_dnButton(y) ((y) > scrollBar.end) 44#define scrollbarrxvt_dnButton(y) ((y) > scrollBar.end)
39#define SCROLLRXVT_MINHEIGHT 10 45#define SCROLLRXVT_MINHEIGHT 10
40#define SCROLLXTERM_MINHEIGHT 10
41 46
42#define scrollbar_minheight() (scrollBar.style == R_SB_NEXT \ 47#define scrollbar_minheight() (scrollBar.style == R_SB_NEXT \
43 ? SCROLLNEXT_MINHEIGHT \ 48 ? SCROLLNEXT_MINHEIGHT \
44 : SCROLLRXVT_MINHEIGHT) 49 : SCROLLRXVT_MINHEIGHT)
45#define scrollbar_above_slider(y) ((y) < scrollBar.top) 50#define scrollbar_above_slider(y) ((y) < scrollBar.top)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines