X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=bar.c;h=ea4b946bb69682b9748573fedd96a45fc1a73558;hb=0e5c8198bc5a69e87b0114b81d6569188828edfa;hp=8d4fb36f38b41747bc3e43ea9a9c14386a2835e9;hpb=439e15d09f6fa9271d3b49ef97194f0c80ebe161;p=dwm.git diff --git a/bar.c b/bar.c index 8d4fb36..ea4b946 100644 --- a/bar.c +++ b/bar.c @@ -3,16 +3,52 @@ * See LICENSE file for license details. */ -#include "wm.h" +#include "dwm.h" + +void +barclick(XButtonPressedEvent *e) +{ + int x = 0; + Arg a; + for(a.i = 0; a.i < TLast; a.i++) { + x += textw(tags[a.i]) + dc.font.height; + if(e->x < x) { + view(&a); + return; + } + } +} void draw_bar() { - brush.rect = barrect; - brush.rect.x = brush.rect.y = 0; - draw(dpy, &brush, False, 0); + int i; + dc.x = dc.y = 0; + dc.w = bw; + drawtext(NULL, False); - XCopyArea(dpy, brush.drawable, barwin, brush.gc, 0, 0, barrect.width, - barrect.height, 0, 0); + dc.w = 0; + for(i = 0; i < TLast; i++) { + dc.x += dc.w; + dc.w = textw(tags[i]) + dc.font.height; + if(i == tsel) { + swap((void **)&dc.fg, (void **)&dc.bg); + drawtext(tags[i], True); + swap((void **)&dc.fg, (void **)&dc.bg); + } + else + drawtext(tags[i], True); + } + if(sel) { + swap((void **)&dc.fg, (void **)&dc.bg); + dc.x += dc.w; + dc.w = textw(sel->name) + dc.font.height; + drawtext(sel->name, True); + swap((void **)&dc.fg, (void **)&dc.bg); + } + dc.w = textw(stext) + dc.font.height; + dc.x = bx + bw - dc.w; + drawtext(stext, False); + XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0); XFlush(dpy); }