ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar-xterm.C
Revision: 1.9
Committed: Wed Mar 17 03:47:14 2004 UTC (20 years, 2 months ago) by pcg
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_7, rel-2_5
Changes since 1.8: +2 -4 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 /*--------------------------------*-C-*---------------------------------*
2     * File: scrollbar-xterm.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-xterm.intpro" /* PROTOS for internal routines */
26    
27     /*----------------------------------------------------------------------*/
28     #if defined(XTERM_SCROLLBAR)
29    
30     #define x_stp_width 8
31     #define x_stp_height 2
32 pcg 1.5 const unsigned char x_stp_bits[] = { 0xaa, 0x55 };
33 pcg 1.1
34     int
35 pcg 1.8 rxvt_term::scrollbar_show_xterm (int update __attribute__ ((unused)), int last_top, int last_bot, int scrollbar_len)
36 pcg 1.1 {
37 pcg 1.6 int xsb = 0;
38     int sbwidth = scrollBar.width - 1;
39 pcg 1.1
40 pcg 1.6 if ((scrollBar.init & R_SB_XTERM) == 0)
41     {
42     XGCValues gcvalue;
43    
44     scrollBar.init |= R_SB_XTERM;
45 pcg 1.8 gcvalue.stipple = XCreateBitmapFromData (display->display, scrollBar.win,
46 pcg 1.6 (char *)x_stp_bits, x_stp_width,
47     x_stp_height);
48     if (!gcvalue.stipple)
49 pcg 1.9 rxvt_fatal ("can't create bitmap");
50    
51 pcg 1.6 gcvalue.fill_style = FillOpaqueStippled;
52     gcvalue.foreground = PixColors[Color_fg];
53     gcvalue.background = PixColors[Color_bg];
54    
55 pcg 1.8 xscrollbarGC = XCreateGC (display->display, scrollBar.win,
56 pcg 1.6 GCForeground | GCBackground
57     | GCFillStyle | GCStipple, &gcvalue);
58     gcvalue.foreground = PixColors[Color_border];
59 pcg 1.8 ShadowGC = XCreateGC (display->display, scrollBar.win, GCForeground, &gcvalue);
60 pcg 1.1 }
61 pcg 1.7 /* instead of XClearWindow (display->display, scrollBar.win); */
62 pcg 1.6 xsb = (Options & Opt_scrollBar_right) ? 1 : 0;
63     if (last_top < scrollBar.top)
64 pcg 1.8 XClearArea (display->display, scrollBar.win,
65 pcg 1.6 sb_shadow + xsb, last_top,
66     sbwidth, (scrollBar.top - last_top), False);
67    
68     if (scrollBar.bot < last_bot)
69 pcg 1.8 XClearArea (display->display, scrollBar.win,
70 pcg 1.6 sb_shadow + xsb, scrollBar.bot,
71     sbwidth, (last_bot - scrollBar.bot), False);
72    
73     /* scrollbar slider */
74 pcg 1.8 XFillRectangle (display->display, scrollBar.win, xscrollbarGC,
75 pcg 1.6 xsb + 1, scrollBar.top, sbwidth - 2, scrollbar_len);
76    
77 pcg 1.8 XDrawLine (display->display, scrollBar.win, ShadowGC,
78 pcg 1.6 xsb ? 0 : sbwidth, scrollBar.beg,
79     xsb ? 0 : sbwidth, scrollBar.end);
80     return 1;
81 pcg 1.1 }
82     #endif /* XTERM_SCROLLBAR */
83     /*----------------------- end-of-file (C source) -----------------------*/