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.3 by ayin, Sat Dec 29 14:43:44 2007 UTC vs.
Revision 1.13 by ayin, Tue Jan 29 13:57:23 2008 UTC

3 3
4#include <X11/Xlib.h> 4#include <X11/Xlib.h>
5 5
6struct rxvt_term; 6struct rxvt_term;
7 7
8typedef struct { 8#define R_SB_NEXT 1
9#define R_SB_XTERM 2
10#define R_SB_PLAIN 4
11#define R_SB_RXVT 8
12
13enum sb_state {
14 STATE_IDLE = 1,
15 STATE_MOTION,
16 STATE_UP,
17 STATE_DOWN,
18};
19
20struct scrollBar_t {
9 char state; /* scrollbar state */ 21 char state; /* scrollbar state */
10 char init; /* scrollbar has been initialised */ 22 char init; /* scrollbar has been initialised */
11 unsigned int beg; /* slider sub-window begin height */ 23 unsigned int beg; /* slider sub-window begin height */
12 unsigned int end; /* slider sub-window end height */ 24 unsigned int end; /* slider sub-window end height */
13 unsigned int top; /* slider top position */ 25 unsigned int top; /* slider top position */
14 unsigned int bot; /* slider bottom position */ 26 unsigned int bot; /* slider bottom position */
15 unsigned int style; /* style: rxvt, xterm, next */ 27 unsigned int style; /* style: rxvt, xterm, next */
16 unsigned int width; /* scrollbar width */ 28 unsigned int width; /* scrollbar width */
17 int shadow; /* scrollbar shadow width */ 29 int shadow; /* scrollbar shadow width */
30 int last_bot; /* scrollbar last bottom position */
31 int last_top; /* scrollbar last top position */
32 int last_state; /* scrollbar last state */
33 int len;
34 unsigned char align;
18 Window win; 35 Window win;
36 Cursor leftptr_cursor;
19 int (rxvt_term::*update)(int, int, int, int); 37 int (rxvt_term::*update)(int, int, int, int);
20 38
21 void setIdle() { state = 1 ; } 39 bool upButton (int y)
22 void setMotion() { state = 'm'; } 40 {
23 void setUp() { state = 'U'; } 41 if (style == R_SB_NEXT)
24 void setDn() { state = 'D'; } 42 return y > end && y <= end + width + 1;
25} scrollBar_t; 43 if (style == R_SB_RXVT)
44 return y < beg;
45 return false;
46 }
47 bool dnButton (int y)
48 {
49 if (style == R_SB_NEXT)
50 return y > end + width + 1;
51 if (style == R_SB_RXVT)
52 return y > end;
53 return false;
54 }
55};
26 56
27#define scrollbar_TotalWidth() (scrollBar.width + scrollBar.shadow * 2) 57#define scrollbar_TotalWidth() (scrollBar.width + scrollBar.shadow * 2)
28#define scrollbar_isMotion() (scrollBar.state == 'm')
29#define scrollbar_isUp() (scrollBar.state == 'U')
30#define scrollbar_isDn() (scrollBar.state == 'D')
31#define scrollbar_isUpDn() isupper (scrollBar.state)
32#define isScrollbarWindow(w) (scrollBar.state && (w) == scrollBar.win)
33 58
34#define scrollbarnext_dnval() (scrollBar.end + (scrollBar.width + 1))
35#define scrollbarnext_upButton(y) ((y) > scrollBar.end \
36 && (y) <= scrollbarnext_dnval ())
37#define scrollbarnext_dnButton(y) ((y) > scrollbarnext_dnval())
38#define SCROLLNEXT_MINHEIGHT SB_THUMB_MIN_HEIGHT 59#define SCROLLNEXT_MINHEIGHT SB_THUMB_MIN_HEIGHT
39#define scrollbarrxvt_upButton(y) ((y) < scrollBar.beg)
40#define scrollbarrxvt_dnButton(y) ((y) > scrollBar.end)
41#define SCROLLRXVT_MINHEIGHT 10 60#define SCROLLRXVT_MINHEIGHT 10
42#define SCROLLXTERM_MINHEIGHT 10
43 61
44#define scrollbar_minheight() (scrollBar.style == R_SB_NEXT \ 62#define scrollbar_minheight() (scrollBar.style == R_SB_NEXT \
45 ? SCROLLNEXT_MINHEIGHT \ 63 ? SCROLLNEXT_MINHEIGHT \
46 : SCROLLRXVT_MINHEIGHT) 64 : SCROLLRXVT_MINHEIGHT)
47#define scrollbar_above_slider(y) ((y) < scrollBar.top) 65#define scrollbar_above_slider(y) ((y) < scrollBar.top)
51 - scrollbar_minheight ()) 69 - scrollbar_minheight ())
52 70
53#define R_SB_ALIGN_CENTRE 0 71#define R_SB_ALIGN_CENTRE 0
54#define R_SB_ALIGN_TOP 1 72#define R_SB_ALIGN_TOP 1
55#define R_SB_ALIGN_BOTTOM 2 73#define R_SB_ALIGN_BOTTOM 2
56
57#define R_SB_NEXT 1
58#define R_SB_XTERM 2
59#define R_SB_PLAIN 4
60#define R_SB_RXVT 8
61 74
62#define SB_WIDTH_NEXT 19 75#define SB_WIDTH_NEXT 19
63#define SB_WIDTH_XTERM 15 76#define SB_WIDTH_XTERM 15
64#define SB_WIDTH_PLAIN 7 77#define SB_WIDTH_PLAIN 7
65#ifndef SB_WIDTH_RXVT 78#ifndef SB_WIDTH_RXVT

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines