ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar-plain.C
Revision: 1.6
Committed: Thu Apr 8 20:31:45 2004 UTC (20 years, 1 month ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_8, rel-3_6, rel-3_5, rel-3_4, rel-3_3, rel-3_2, rel-3_0
Changes since 1.5: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
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     #include "scrollbar-plain.intpro" /* PROTOS for internal routines */
27    
28     /*----------------------------------------------------------------------*/
29     #if defined(PLAIN_SCROLLBAR)
30    
31     int
32 pcg 1.5 rxvt_term::scrollbar_show_plain (int update __attribute__ ((unused)), int last_top, int last_bot, int scrollbar_len)
33 pcg 1.1 {
34 pcg 1.4 int xsb = 0;
35     int sbwidth = scrollBar.width - 1;
36 pcg 1.1
37 pcg 1.3 if ((scrollBar.init & R_SB_PLAIN) == 0)
38     {
39 pcg 1.4 XGCValues gcvalue;
40 pcg 1.3
41     scrollBar.init |= R_SB_PLAIN;
42     gcvalue.foreground = PixColors[Color_fg];
43     gcvalue.background = PixColors[Color_bg];
44    
45 pcg 1.4 pscrollbarGC = XCreateGC (display->display, scrollBar.win,
46     GCForeground | GCBackground, &gcvalue);
47 pcg 1.1 }
48 pcg 1.4 /* instead of XClearWindow (display->display, scrollBar.win); */
49 pcg 1.3 xsb = (Options & Opt_scrollBar_right) ? 1 : 0;
50     if (last_top < scrollBar.top)
51 pcg 1.4 XClearArea (display->display, scrollBar.win,
52     sb_shadow + xsb, last_top,
53     sbwidth + 1, (scrollBar.top - last_top), False);
54 pcg 1.3
55     if (scrollBar.bot < last_bot)
56 pcg 1.4 XClearArea (display->display, scrollBar.win,
57     sb_shadow + xsb, scrollBar.bot,
58     sbwidth + 1, (last_bot - scrollBar.bot), False);
59 pcg 1.3
60     /* scrollbar slider */
61 pcg 1.4 XFillRectangle (display->display, scrollBar.win, pscrollbarGC,
62     xsb + 1, scrollBar.top, sbwidth, scrollbar_len);
63 pcg 1.1
64 pcg 1.3 return 1;
65 pcg 1.1 }
66 pcg 1.4
67     #endif
68