aboutsummaryrefslogtreecommitdiffstats
path: root/bar.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-14 22:33:38 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-14 22:33:38 +0200
commit29355bd38284ed9aec8d3ffabde61db73947c9f9 (patch)
treee8c9d94e52b57df9c93bc58bdd5c37b9e3262e65 /bar.c
parent91a1f6926e2594156219c1caaf4729c5d86498a5 (diff)
downloaddwm-29355bd38284ed9aec8d3ffabde61db73947c9f9.tar.gz
rearranged
Diffstat (limited to 'bar.c')
-rw-r--r--bar.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/bar.c b/bar.c
deleted file mode 100644
index 3027bc2..0000000
--- a/bar.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
- * See LICENSE file for license details.
- */
-
-#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()
-{
- int i, modw;
- char *mode = arrange == tiling ? "#" : "~";
-
- dc.x = dc.y = 0;
- dc.w = bw;
- drawtext(NULL, False, False);
-
- modw = textw(mode) + dc.font.height;
- dc.w = 0;
- for(i = 0; i < TLast; i++) {
- dc.x += dc.w;
- dc.w = textw(tags[i]) + dc.font.height;
- drawtext(tags[i], i == tsel, True);
- }
- if(sel) {
- dc.x += dc.w;
- dc.w = textw(sel->name) + dc.font.height;
- drawtext(sel->name, True, True);
- }
- dc.w = textw(stext) + dc.font.height;
- dc.x = bx + bw - dc.w - modw;
- drawtext(stext, False, False);
-
- dc.x = bx + bw - modw;
- dc.w = modw;
- drawtext(mode, True, True);
-
- XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
- XFlush(dpy);
-}