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.19 by root, Wed Jan 25 21:09:21 2006 UTC vs.
Revision 1.20 by root, Thu Feb 2 18:04:46 2006 UTC

40 if ((scrollBar.init & R_SB_XTERM) == 0) 40 if ((scrollBar.init & R_SB_XTERM) == 0)
41 { 41 {
42 XGCValues gcvalue; 42 XGCValues gcvalue;
43 43
44 scrollBar.init |= R_SB_XTERM; 44 scrollBar.init |= R_SB_XTERM;
45 gcvalue.stipple = XCreateBitmapFromData (xdisp, scrollBar.win, 45 gcvalue.stipple = XCreateBitmapFromData (dpy, scrollBar.win,
46 (char *)x_stp_bits, x_stp_width, 46 (char *)x_stp_bits, x_stp_width,
47 x_stp_height); 47 x_stp_height);
48 if (!gcvalue.stipple) 48 if (!gcvalue.stipple)
49 rxvt_fatal ("can't create bitmap\n"); 49 rxvt_fatal ("can't create bitmap\n");
50 50
51 gcvalue.fill_style = FillOpaqueStippled; 51 gcvalue.fill_style = FillOpaqueStippled;
52 gcvalue.foreground = pix_colors_focused[Color_fg]; 52 gcvalue.foreground = pix_colors_focused[Color_fg];
53 gcvalue.background = pix_colors_focused[Color_bg]; 53 gcvalue.background = pix_colors_focused[Color_bg];
54 54
55 xscrollbarGC = XCreateGC (xdisp, 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 = pix_colors_focused[Color_border]; 58 gcvalue.foreground = pix_colors_focused[Color_border];
59 ShadowGC = XCreateGC (xdisp, scrollBar.win, GCForeground, &gcvalue); 59 ShadowGC = XCreateGC (dpy, scrollBar.win, GCForeground, &gcvalue);
60 } 60 }
61 61
62 if (update) 62 if (update)
63 { 63 {
64 xsb = OPTION (Opt_scrollBar_right) ? 1 : 0; 64 xsb = OPTION (Opt_scrollBar_right) ? 1 : 0;
65 if (last_top < scrollBar.top) 65 if (last_top < scrollBar.top)
66 XClearArea (xdisp, scrollBar.win, 66 XClearArea (dpy, scrollBar.win,
67 sb_shadow + xsb, last_top, 67 sb_shadow + xsb, last_top,
68 sbwidth, (scrollBar.top - last_top), False); 68 sbwidth, (scrollBar.top - last_top), False);
69 69
70 if (scrollBar.bot < last_bot) 70 if (scrollBar.bot < last_bot)
71 XClearArea (xdisp, scrollBar.win, 71 XClearArea (dpy, scrollBar.win,
72 sb_shadow + xsb, scrollBar.bot, 72 sb_shadow + xsb, scrollBar.bot,
73 sbwidth, (last_bot - scrollBar.bot), False); 73 sbwidth, (last_bot - scrollBar.bot), False);
74 } 74 }
75 else 75 else
76 XClearWindow (xdisp, scrollBar.win); 76 XClearWindow (dpy, scrollBar.win);
77 77
78 /* scrollbar slider */ 78 /* scrollbar slider */
79 XFillRectangle (xdisp, scrollBar.win, xscrollbarGC, 79 XFillRectangle (dpy, scrollBar.win, xscrollbarGC,
80 xsb + 1, scrollBar.top, sbwidth - 2, scrollbar_len); 80 xsb + 1, scrollBar.top, sbwidth - 2, scrollbar_len);
81 81
82 XDrawLine (xdisp, scrollBar.win, ShadowGC, 82 XDrawLine (dpy, scrollBar.win, ShadowGC,
83 xsb ? 0 : sbwidth, scrollBar.beg, 83 xsb ? 0 : sbwidth, scrollBar.beg,
84 xsb ? 0 : sbwidth, scrollBar.end); 84 xsb ? 0 : sbwidth, scrollBar.end);
85 return 1; 85 return 1;
86} 86}
87#endif /* XTERM_SCROLLBAR */ 87#endif /* XTERM_SCROLLBAR */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines