| 1 |
pcg |
1.4 |
/*----------------------------------------------------------------------* |
| 2 |
pcg |
1.6 |
* File: scrollbar-plain.C |
| 3 |
pcg |
1.1 |
*----------------------------------------------------------------------* |
| 4 |
|
|
* |
| 5 |
|
|
* Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA> |
| 6 |
|
|
* Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com> |
| 7 |
pcg |
1.6 |
* Copyright (c) 2004 Marc Lehmann <pcg@goof.com> |
| 8 |
pcg |
1.1 |
* |
| 9 |
|
|
* This program is free software; you can redistribute it and/or modify |
| 10 |
|
|
* it under the terms of the GNU General Public License as published by |
| 11 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
| 12 |
|
|
* (at your option) any later version. |
| 13 |
|
|
* |
| 14 |
|
|
* This program is distributed in the hope that it will be useful, |
| 15 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 |
|
|
* GNU General Public License for more details. |
| 18 |
|
|
* |
| 19 |
|
|
* You should have received a copy of the GNU General Public License |
| 20 |
|
|
* along with this program; if not, write to the Free Software |
| 21 |
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 |
|
|
*----------------------------------------------------------------------*/ |
| 23 |
|
|
|
| 24 |
|
|
#include "../config.h" /* NECESSARY */ |
| 25 |
|
|
#include "rxvt.h" /* NECESSARY */ |
| 26 |
|
|
|
| 27 |
|
|
/*----------------------------------------------------------------------*/ |
| 28 |
|
|
#if defined(PLAIN_SCROLLBAR) |
| 29 |
|
|
|
| 30 |
|
|
int |
| 31 |
root |
1.13 |
rxvt_term::scrollbar_show_plain (int update, int last_top, int last_bot, int scrollbar_len) |
| 32 |
pcg |
1.1 |
{ |
| 33 |
pcg |
1.4 |
int xsb = 0; |
| 34 |
|
|
int sbwidth = scrollBar.width - 1; |
| 35 |
pcg |
1.1 |
|
| 36 |
pcg |
1.3 |
if ((scrollBar.init & R_SB_PLAIN) == 0) |
| 37 |
|
|
{ |
| 38 |
pcg |
1.4 |
XGCValues gcvalue; |
| 39 |
pcg |
1.3 |
|
| 40 |
|
|
scrollBar.init |= R_SB_PLAIN; |
| 41 |
root |
1.13 |
gcvalue.foreground = pix_colors_focused[Color_scroll]; |
| 42 |
pcg |
1.3 |
|
| 43 |
root |
1.15 |
pscrollbarGC = XCreateGC (xdisp, scrollBar.win, |
| 44 |
root |
1.13 |
GCForeground, &gcvalue); |
| 45 |
pcg |
1.1 |
} |
| 46 |
root |
1.13 |
|
| 47 |
root |
1.14 |
xsb = OPTION (Opt_scrollBar_right) ? 1 : 0; |
| 48 |
root |
1.13 |
|
| 49 |
|
|
if (update) |
| 50 |
|
|
{ |
| 51 |
|
|
if (last_top < scrollBar.top) |
| 52 |
root |
1.15 |
XClearArea (xdisp, scrollBar.win, |
| 53 |
root |
1.13 |
sb_shadow + xsb, last_top, |
| 54 |
|
|
sbwidth + 1, (scrollBar.top - last_top), False); |
| 55 |
|
|
|
| 56 |
|
|
if (scrollBar.bot < last_bot) |
| 57 |
root |
1.15 |
XClearArea (xdisp, scrollBar.win, |
| 58 |
root |
1.13 |
sb_shadow + xsb, scrollBar.bot, |
| 59 |
|
|
sbwidth + 1, (last_bot - scrollBar.bot), False); |
| 60 |
|
|
} |
| 61 |
|
|
else |
| 62 |
root |
1.15 |
XClearWindow (xdisp, scrollBar.win); |
| 63 |
pcg |
1.3 |
|
| 64 |
|
|
/* scrollbar slider */ |
| 65 |
root |
1.15 |
XFillRectangle (xdisp, scrollBar.win, pscrollbarGC, |
| 66 |
root |
1.16 |
1 - xsb, scrollBar.top, sbwidth, scrollbar_len); |
| 67 |
pcg |
1.1 |
|
| 68 |
pcg |
1.3 |
return 1; |
| 69 |
pcg |
1.1 |
} |
| 70 |
pcg |
1.4 |
|
| 71 |
|
|
#endif |
| 72 |
|
|
|