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

Comparing rxvt-unicode/src/scrollbar-xterm.C (file contents):
Revision 1.5 by pcg, Sat Jan 31 04:12:10 2004 UTC vs.
Revision 1.26 by ayin, Tue Dec 18 11:08:45 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines