ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar-plain.C
Revision: 1.3
Committed: Sun Feb 1 01:34:41 2004 UTC (20 years, 3 months ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: after_astyle
Changes since 1.2: +29 -28 lines
Log Message:
*** empty log message ***

File Contents

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