/branches/librxvt/src/scrollbar-xterm.c
# · C · 86 lines · 47 code · 11 blank · 28 comment · 6 complexity · 94bccc0a4fcba04280668c2f9f01ccf3 MD5 · raw file
- /*--------------------------------*-C-*---------------------------------*
- * File: scrollbar-xterm.c
- *----------------------------------------------------------------------*
- * $Id: scrollbar-xterm.c 943 2000-04-13 23:30:56Z gcw $
- *
- * Copyright (C) 1997,1998 mj olesen <olesen@me.QueensU.CA>
- * Copyright (C) 1999,2000 Geoff Wing <gcw@pobox.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *----------------------------------------------------------------------*/
- #include "../config.h" /* NECESSARY */
- #include "rxvt.h" /* NECESSARY */
- #include "scrollbar-xterm.intpro" /* PROTOS for internal routines */
- /*----------------------------------------------------------------------*
- */
- static GC scrollbarGC;
- static GC ShadowGC;
- static char sb_bits[] = { 0xaa, 0x0a, 0x55, 0x05 }; /* 12x2 bitmap */
- #define SB_WIDTH_USE (SB_WIDTH_XTERM - 1)
- /* EXTPROTO */
- int
- rxvt_scrollbar_show_xterm(rxvt_t *r, int update, int last_top, int last_bot, int scrollbar_len)
- {
- int xsb = 0;
- if (!scrollbar_visible())
- return 0;
- if (scrollbarGC == None) {
- XGCValues gcvalue;
- gcvalue.stipple = XCreateBitmapFromData(r->Xdisplay, r->scrollBar.win,
- sb_bits, 12, 2);
- if (!gcvalue.stipple) {
- rxvt_print_error("can't create bitmap");
- exit(EXIT_FAILURE);
- }
- gcvalue.fill_style = FillOpaqueStippled;
- gcvalue.foreground = r->PixColors[Color_fg];
- gcvalue.background = r->PixColors[Color_bg];
- scrollbarGC = XCreateGC(r->Xdisplay, r->scrollBar.win,
- GCForeground | GCBackground |
- GCFillStyle | GCStipple, &gcvalue);
- gcvalue.foreground = r->PixColors[Color_border];
- ShadowGC = XCreateGC(r->Xdisplay, r->scrollBar.win, GCForeground,
- &gcvalue);
- }
- /* instead of XClearWindow (r->Xdisplay, r->scrollBar.win); */
- xsb = (r->Options & Opt_scrollBar_right) ? 1 : 0;
- if (last_top < r->scrollBar.top)
- XClearArea(r->Xdisplay, r->scrollBar.win,
- r->sb_shadow + xsb, last_top,
- SB_WIDTH_USE, (r->scrollBar.top - last_top), False);
- if (r->scrollBar.bot < last_bot)
- XClearArea(r->Xdisplay, r->scrollBar.win,
- r->sb_shadow + xsb, r->scrollBar.bot,
- SB_WIDTH_USE, (last_bot - r->scrollBar.bot), False);
- /* scrollbar slider */
- XFillRectangle(r->Xdisplay, r->scrollBar.win, scrollbarGC,
- xsb + 1, r->scrollBar.top, SB_WIDTH_USE - 2, scrollbar_len);
- XDrawLine(r->Xdisplay, r->scrollBar.win, ShadowGC,
- xsb ? 0 : SB_WIDTH_USE, r->scrollBar.beg, xsb ? 0 : SB_WIDTH_USE,
- r->scrollBar.end);
- return 1;
- }
- /*----------------------- end-of-file (C source) -----------------------*/