ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/scrollbar-plain.C
(Generate patch)

Comparing rxvt-unicode/src/scrollbar-plain.C (file contents):
Revision 1.1 by pcg, Sat Jan 31 04:12:10 2004 UTC vs.
Revision 1.14 by root, Sat Dec 31 17:16:17 2005 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*----------------------------------------------------------------------*
2 * File: scrollbar-plain.c 2 * File: scrollbar-plain.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA> 5 * Copyright (c) 1997,1998 mj olesen <olesen@me.QueensU.CA>
6 * Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com> 6 * Copyright (c) 1999-2001 Geoff Wing <gcw@pobox.com>
7 * Copyright (c) 2004 Marc Lehmann <pcg@goof.com>
7 * 8 *
8 * This program is free software; you can redistribute it and/or modify 9 * 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 * 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 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 12 * (at your option) any later version.
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *----------------------------------------------------------------------*/ 22 *----------------------------------------------------------------------*/
22 23
23#include "../config.h" /* NECESSARY */ 24#include "../config.h" /* NECESSARY */
24#include "rxvt.h" /* NECESSARY */ 25#include "rxvt.h" /* NECESSARY */
25#include "scrollbar-plain.intpro" /* PROTOS for internal routines */
26 26
27/*----------------------------------------------------------------------*/ 27/*----------------------------------------------------------------------*/
28#if defined(PLAIN_SCROLLBAR) 28#if defined(PLAIN_SCROLLBAR)
29 29
30int 30int
31rxvt_term::scrollbar_show_plain (int update __attribute__((unused)), int last_top, int last_bot, int scrollbar_len) 31rxvt_term::scrollbar_show_plain (int update, int last_top, int last_bot, int scrollbar_len)
32{ 32{
33 int xsb = 0; 33 int xsb = 0;
34 int sbwidth = scrollBar.width - 1; 34 int sbwidth = scrollBar.width - 1;
35 35
36 if ((scrollBar.init & R_SB_PLAIN) == 0) { 36 if ((scrollBar.init & R_SB_PLAIN) == 0)
37 XGCValues gcvalue; 37 {
38 XGCValues gcvalue;
38 39
39 scrollBar.init |= R_SB_PLAIN; 40 scrollBar.init |= R_SB_PLAIN;
40 gcvalue.foreground = PixColors[Color_fg]; 41 gcvalue.foreground = pix_colors_focused[Color_scroll];
41 gcvalue.background = PixColors[Color_bg];
42 42
43 pscrollbarGC = XCreateGC(Xdisplay, scrollBar.win, 43 pscrollbarGC = XCreateGC (display->display, scrollBar.win,
44 GCForeground | GCBackground 44 GCForeground, &gcvalue);
45 | GCFillStyle, &gcvalue);
46 gcvalue.foreground = PixColors[Color_border];
47 pShadowGC = XCreateGC(Xdisplay, scrollBar.win, GCForeground, &gcvalue);
48 } 45 }
49/* instead of XClearWindow (Xdisplay, scrollBar.win); */
50 xsb = (Options & Opt_scrollBar_right) ? 1 : 0;
51 if (last_top < scrollBar.top)
52 XClearArea(Xdisplay, scrollBar.win,
53 sb_shadow + xsb, last_top,
54 sbwidth + 1, (scrollBar.top - last_top), False);
55 46
56 if (scrollBar.bot < last_bot) 47 xsb = OPTION (Opt_scrollBar_right) ? 1 : 0;
57 XClearArea(Xdisplay, scrollBar.win,
58 sb_shadow + xsb, scrollBar.bot,
59 sbwidth + 1, (last_bot - scrollBar.bot), False);
60 48
61/* scrollbar slider */ 49 if (update)
62 XFillRectangle(Xdisplay, scrollBar.win, xscrollbarGC, 50 {
63 xsb + 1, scrollBar.top, sbwidth, scrollbar_len); 51 if (last_top < scrollBar.top)
52 XClearArea (display->display, scrollBar.win,
53 sb_shadow + xsb, last_top,
54 sbwidth + 1, (scrollBar.top - last_top), False);
64 55
56 if (scrollBar.bot < last_bot)
57 XClearArea (display->display, scrollBar.win,
58 sb_shadow + xsb, scrollBar.bot,
59 sbwidth + 1, (last_bot - scrollBar.bot), False);
60 }
61 else
62 XClearWindow (display->display, scrollBar.win);
63
64 /* scrollbar slider */
65 XFillRectangle (display->display, scrollBar.win, pscrollbarGC,
66 xsb + 1, scrollBar.top, sbwidth, scrollbar_len);
67
65 return 1; 68 return 1;
66} 69}
67#endif /* XTERM_SCROLLBAR */ 70
68/*----------------------- end-of-file (C source) -----------------------*/ 71#endif
72

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines