summaryrefslogtreecommitdiffstats
path: root/src/scrollbar.C
blob: 698c582e54aa04045e8eda485f7c86a498c500e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*----------------------------------------------------------------------*
 * File:	scrollbar.C
 *----------------------------------------------------------------------*
 *
 * Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA>
 * Copyright (c) 1998      Alfredo K. Kojima <kojima@windowmaker.org>
 *				- N*XTstep like scrollbars
 * Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>
 * Copyright (c) 2004-2006 Marc Lehmann <schmorp@schmorp.de>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *----------------------------------------------------------------------*/

#include "../config.h"		/* NECESSARY */
#include "rxvt.h"		/* NECESSARY */

/*----------------------------------------------------------------------*/

/*
 * Map or unmap a scrollbar.  Returns non-zero upon change of state
 */
void
scrollBar_t::map (int map)
{
  if (map)
    {
      state = SB_STATE_IDLE;

      if (!win)
        resize ();
      else
        XMapWindow (term->dpy, win);
    }
  else
    {
      state = SB_STATE_OFF;

      if (win)
        XUnmapWindow (term->dpy, win);
    }
}

void
scrollBar_t::resize ()
{
  int delayed_init = 0;
  int window_sb_x = 0;

  if (term->option (Opt_scrollBar_right))
    window_sb_x = term->szHint.width - total_width ();

  update_data ();

  if (!win)
    {
      /* create the scrollbar window */
      win = XCreateSimpleWindow (term->dpy,
                                 term->parent,
                                 window_sb_x, 0,
                                 total_width (),
                                 term->szHint.height,
                                 0,
                                 term->pix_colors[Color_fg],
                                 term->pix_colors[color ()]);
      XDefineCursor (term->dpy, win, leftptr_cursor);

      XSelectInput (term->dpy, win,
                   ExposureMask | ButtonPressMask | ButtonReleaseMask
                   | Button1MotionMask | Button2MotionMask
                   | Button3MotionMask);
      term->scrollbar_ev.start (term->display, win);

      delayed_init = 1;
    }
  else
    XMoveResizeWindow (term->dpy, win,
                       window_sb_x, 0,
                       total_width (), term->szHint.height);

  show (1);

  if (delayed_init)
    XMapWindow (term->dpy, win);
}

/*
 * Update current scrollbar view w.r.t. slider heights, etc.
 */
int
scrollBar_t::show (int refresh)
{
  int ret;

  if (!state)
    return 0;

  if (refresh)
    {
      int sb_top = term->view_start - term->top_row;
      int sb_bot = sb_top + (term->nrow - 1);
      int sb_len = max (term->nrow - 1 - term->top_row, 1);
      int n = min (min_height (), size ());

      top = beg + (sb_top * (size () - n)) / sb_len;
      bot = top + ecb_div_ru ((sb_bot - sb_top) * (size () - n), sb_len) + n;
      /* no change */
      if (top == last_top
          && bot == last_bot
          && (state == last_state
              || !(state == SB_STATE_UP || state == SB_STATE_DOWN)))
        return 0;
    }

  ret = (this->*update) (refresh);

  last_top = top;
  last_bot = bot;
  last_state = state;

  return ret;
}

void
scrollBar_t::setup (rxvt_term *term)
{
  int i;
  const char *scrollalign, *scrollstyle, *thickness;

  this->term = term;
  scrollalign = term->rs[Rs_scrollBar_align];
  scrollstyle = term->rs[Rs_scrollstyle];
  thickness = term->rs[Rs_scrollBar_thickness];

# if defined(RXVT_SCROLLBAR)
  style = SB_STYLE_RXVT;
# elif defined(XTERM_SCROLLBAR)
  style = SB_STYLE_XTERM;
# elif defined(NEXT_SCROLLBAR)
  style = SB_STYLE_NEXT;
# elif defined(PLAIN_SCROLLBAR)
  style = SB_STYLE_PLAIN;
#else
  style = SB_STYLE_RXVT;
# endif

# if (defined(NEXT_SCROLLBAR) || defined(XTERM_SCROLLBAR) || defined(PLAIN_SCROLLBAR))
  if (scrollstyle)
    {
#  ifdef NEXT_SCROLLBAR
      if (strncasecmp (scrollstyle, "next", 4) == 0)
        style = SB_STYLE_NEXT;
#  endif
#  ifdef XTERM_SCROLLBAR
      if (strncasecmp (scrollstyle, "xterm", 5) == 0)
        style = SB_STYLE_XTERM;
#  endif
#  ifdef PLAIN_SCROLLBAR
      if (strncasecmp (scrollstyle, "plain", 5) == 0)
        style = SB_STYLE_PLAIN;
#  endif

    }
# endif
  if (style == SB_STYLE_NEXT)
    width = SB_WIDTH_NEXT;
  else if (style == SB_STYLE_XTERM)
    width = SB_WIDTH_XTERM;
  else if (style == SB_STYLE_PLAIN)
    width = SB_WIDTH_PLAIN;
  else /* if (style == SB_STYLE_RXVT) */
    width = SB_WIDTH_RXVT;

  if (style != SB_STYLE_NEXT)	/* dishonour request - for now */
    if (thickness && (i = atoi (thickness)) >= SB_WIDTH_MINIMUM)
      width = min (i, SB_WIDTH_MAXIMUM);

# ifdef RXVT_SCROLLBAR
  if (! term->option (Opt_scrollBar_floating) && style == SB_STYLE_RXVT)
    shadow = SHADOW_WIDTH;
# endif

  /* align = SB_ALIGN_CENTRE; */
  if (scrollalign)
    {
      if (strncasecmp (scrollalign, "top", 3) == 0)
        align = SB_ALIGN_TOP;
      else if (strncasecmp (scrollalign, "bottom", 6) == 0)
        align = SB_ALIGN_BOTTOM;
    }
  last_state = SB_STATE_OFF;
  /* cursor scrollBar: Black-on-White */
  leftptr_cursor = XCreateFontCursor (term->dpy, XC_left_ptr);
}

void
scrollBar_t::destroy ()
{
#ifdef XTERM_SCROLLBAR
  if (xscrollbarGC) XFreeGC (term->dpy, xscrollbarGC);
  if (ShadowGC)     XFreeGC (term->dpy, ShadowGC);
#endif
#ifdef PLAIN_SCROLLBAR
  if (pscrollbarGC) XFreeGC (term->dpy, pscrollbarGC);
#endif
#ifdef NEXT_SCROLLBAR
  if (blackGC)      XFreeGC (term->dpy, blackGC);
  if (whiteGC)      XFreeGC (term->dpy, whiteGC);
  if (grayGC)       XFreeGC (term->dpy, grayGC);
  if (darkGC)       XFreeGC (term->dpy, darkGC);
  if (stippleGC)    XFreeGC (term->dpy, stippleGC);
  if (dimple)       XFreePixmap (term->dpy, dimple);
  if (upArrow)      XFreePixmap (term->dpy, upArrow);
  if (downArrow)    XFreePixmap (term->dpy, downArrow);
  if (upArrowHi)    XFreePixmap (term->dpy, upArrowHi);
  if (downArrowHi)  XFreePixmap (term->dpy, downArrowHi);
#endif
#ifdef RXVT_SCROLLBAR
  if (topShadowGC)  XFreeGC (term->dpy, topShadowGC);
  if (botShadowGC)  XFreeGC (term->dpy, botShadowGC);
  if (scrollbarGC)  XFreeGC (term->dpy, scrollbarGC);
#endif
}

int
scrollBar_t::color ()
{
#ifdef RXVT_SCROLLBAR
  if (style == SB_STYLE_RXVT && shadow)
    return Color_trough;
  else
#endif
    return Color_border;
}

void
scrollBar_t::update_data ()
{
#if defined(PLAIN_SCROLLBAR)
  if (style == SB_STYLE_PLAIN)
    {
      beg = 0;
      end = term->szHint.height;
      update = &scrollBar_t::show_plain;
    }
#endif
#if defined(XTERM_SCROLLBAR)
  if (style == SB_STYLE_XTERM)
    {
      beg = 0;
      end = term->szHint.height;
      update = &scrollBar_t::show_xterm;
    }
#endif
#if defined(NEXT_SCROLLBAR)
  if (style == SB_STYLE_NEXT)
    {
      beg = 0;
      end = term->szHint.height - (SB_BUTTON_TOTAL_HEIGHT + SB_PADDING);
      update = &scrollBar_t::show_next;
    }
#endif
#if defined(RXVT_SCROLLBAR)
  if (style == SB_STYLE_RXVT)
    {
      beg = (width + 1) + shadow;
      end = term->szHint.height - beg;
      update = &scrollBar_t::show_rxvt;
    }
#endif
}

/*----------------------- end-of-file (C source) -----------------------*/