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.14 by ayin, Tue Jan 29 14:45:55 2008 UTC vs.
Revision 1.22 by ayin, Tue Feb 19 17:49:36 2008 UTC

7 7
8#define R_SB_NEXT 1 8#define R_SB_NEXT 1
9#define R_SB_XTERM 2 9#define R_SB_XTERM 2
10#define R_SB_PLAIN 4 10#define R_SB_PLAIN 4
11#define R_SB_RXVT 8 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 {
21 rxvt_term *term;
22 char state; /* scrollbar state */
23 char init; /* scrollbar has been initialised */
24 unsigned int beg; /* slider sub-window begin height */
25 unsigned int end; /* slider sub-window end height */
26 unsigned int top; /* slider top position */
27 unsigned int bot; /* slider bottom position */
28 unsigned int style; /* style: rxvt, xterm, next */
29 unsigned int width; /* scrollbar width */
30 int shadow; /* scrollbar shadow width */
31 int last_bot; /* scrollbar last bottom position */
32 int last_top; /* scrollbar last top position */
33 int last_state; /* scrollbar last state */
34 int len;
35 unsigned char align;
36 Window win;
37 Cursor leftptr_cursor;
38 int (rxvt_term::*update)(int, int, int, int);
39 void setup (rxvt_term *);
40
41 bool upButton (int y)
42 {
43 if (style == R_SB_NEXT)
44 return y > end && y <= end + width + 1;
45 if (style == R_SB_RXVT)
46 return y < beg;
47 return false;
48 }
49 bool dnButton (int y)
50 {
51 if (style == R_SB_NEXT)
52 return y > end + width + 1;
53 if (style == R_SB_RXVT)
54 return y > end;
55 return false;
56 }
57};
58
59#define scrollbar_TotalWidth() (scrollBar.width + scrollBar.shadow * 2)
60
61#define SCROLLNEXT_MINHEIGHT SB_THUMB_MIN_HEIGHT
62#define SCROLLRXVT_MINHEIGHT 10
63
64#define scrollbar_minheight() (scrollBar.style == R_SB_NEXT \
65 ? SCROLLNEXT_MINHEIGHT \
66 : SCROLLRXVT_MINHEIGHT)
67#define scrollbar_above_slider(y) ((y) < scrollBar.top)
68#define scrollbar_below_slider(y) ((y) > scrollBar.bot)
69#define scrollbar_position(y) ((y) - scrollBar.beg)
70#define scrollbar_size() (scrollBar.end - scrollBar.beg \
71 - scrollbar_minheight ())
72 12
73#define R_SB_ALIGN_CENTRE 0 13#define R_SB_ALIGN_CENTRE 0
74#define R_SB_ALIGN_TOP 1 14#define R_SB_ALIGN_TOP 1
75#define R_SB_ALIGN_BOTTOM 2 15#define R_SB_ALIGN_BOTTOM 2
76 16
96#define SB_BUTTON_BOTH_HEIGHT (SB_BUTTON_SINGLE_HEIGHT * 2) 36#define SB_BUTTON_BOTH_HEIGHT (SB_BUTTON_SINGLE_HEIGHT * 2)
97#define SB_BUTTON_TOTAL_HEIGHT (SB_BUTTON_BOTH_HEIGHT + SB_PADDING) 37#define SB_BUTTON_TOTAL_HEIGHT (SB_BUTTON_BOTH_HEIGHT + SB_PADDING)
98#define SB_BUTTON_BEVEL_X (SB_LEFT_PADDING) 38#define SB_BUTTON_BEVEL_X (SB_LEFT_PADDING)
99#define SB_BUTTON_FACE_X (SB_BUTTON_BEVEL_X + SB_BEVEL_WIDTH_UPPER_LEFT) 39#define SB_BUTTON_FACE_X (SB_BUTTON_BEVEL_X + SB_BEVEL_WIDTH_UPPER_LEFT)
100#define SB_THUMB_MIN_HEIGHT (SB_BUTTON_WIDTH - (SB_PADDING * 2)) 40#define SB_THUMB_MIN_HEIGHT (SB_BUTTON_WIDTH - (SB_PADDING * 2))
41
42enum sb_state {
43 STATE_IDLE = 1,
44 STATE_MOTION,
45 STATE_UP,
46 STATE_DOWN,
47};
48
49struct scrollBar_t {
50 rxvt_term *term;
51 char state; /* scrollbar state */
52 char init; /* scrollbar has been initialised */
53 unsigned int beg; /* slider sub-window begin height */
54 unsigned int end; /* slider sub-window end height */
55 unsigned int top; /* slider top position */
56 unsigned int bot; /* slider bottom position */
57 unsigned int style; /* style: rxvt, xterm, next */
58 unsigned int width; /* scrollbar width */
59 int shadow; /* scrollbar shadow width */
60 int last_bot; /* scrollbar last bottom position */
61 int last_top; /* scrollbar last top position */
62 int last_state; /* scrollbar last state */
63 unsigned char align;
64 Window win;
65 Cursor leftptr_cursor;
66 int (scrollBar_t::*update)(int);
67 void setup (rxvt_term *);
68 void resize ();
69 int map (int);
70 int show (int);
71 void destroy ();
72
73 bool upButton (int y)
74 {
75 if (style == R_SB_NEXT)
76 return y > end && y <= end + width + 1;
77 if (style == R_SB_RXVT)
78 return y < beg;
79 return false;
80 }
81 bool dnButton (int y)
82 {
83 if (style == R_SB_NEXT)
84 return y > end + width + 1;
85 if (style == R_SB_RXVT)
86 return y > end;
87 return false;
88 }
89 unsigned min_height ()
90 {
91 return style == R_SB_NEXT ? SB_THUMB_MIN_HEIGHT : 10;
92 }
93 unsigned size ()
94 {
95 return end - beg - min_height ();
96 }
97 unsigned total_width ()
98 {
99 return width + shadow * 2;
100 }
101
102#if defined(NEXT_SCROLLBAR)
103 GC blackGC,
104 whiteGC,
105 grayGC,
106 darkGC,
107 stippleGC;
108 Pixmap dimple,
109 upArrow,
110 downArrow,
111 upArrowHi,
112 downArrowHi;
113#endif
114
115#if defined(RXVT_SCROLLBAR)
116 GC scrollbarGC,
117 topShadowGC,
118 botShadowGC;
119#endif
120
121#if defined(XTERM_SCROLLBAR)
122 GC xscrollbarGC,
123 ShadowGC;
124#endif
125
126#if defined(PLAIN_SCROLLBAR)
127 GC pscrollbarGC;
128#endif
129
130private:
131 // update style dependent data
132 void update_data ();
133
134 // scrollbar-next.C
135 int show_next (int);
136 // scrollbar-rxvt.C
137 int show_rxvt (int);
138 // scrollbar-xterm.C
139 int show_xterm (int);
140 // scrollbar-plain.C
141 int show_plain (int);
142
143 void init_next ();
144};
145
146#define scrollbar_above_slider(y) ((y) < scrollBar.top)
147#define scrollbar_below_slider(y) ((y) > scrollBar.bot)
148#define scrollbar_position(y) ((y) - scrollBar.beg)
149
101 /* 150 /*
102 * +-------------+ 151 * +-------------+
103 * | | <---< SB_PADDING 152 * | | <---< SB_PADDING
104 * | ::::::::::: | 153 * | ::::::::::: |
105 * | ::::::::::: | 154 * | ::::::::::: |

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines