aewl

diff bar.c @ 5:e5018cae273f

added several other stuff
author Anselm R. Garbe <garbeam@wmii.de>
date Mon, 10 Jul 2006 22:16:48 +0200
parents
children 5c078b66347b
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bar.c	Mon Jul 10 22:16:48 2006 +0200
     1.3 @@ -0,0 +1,18 @@
     1.4 +/*
     1.5 + * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
     1.6 + * See LICENSE file for license details.
     1.7 + */
     1.8 +
     1.9 +#include "wm.h"
    1.10 +
    1.11 +void
    1.12 +draw_bar()
    1.13 +{
    1.14 +	brush.rect = barrect;
    1.15 +	brush.rect.x = brush.rect.y = 0;
    1.16 +	draw(dpy, &brush, False, 0);
    1.17 +
    1.18 +	XCopyArea(dpy, brush.drawable, barwin, brush.gc, 0, 0, barrect.width,
    1.19 +			barrect.height, 0, 0);
    1.20 +	XFlush(dpy);
    1.21 +}