Mercurial > dwm-meillo
annotate bar.c @ 31:386649deb651
before leaning things up
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Thu, 13 Jul 2006 01:04:38 +0200 |
parents | e8f627998d6f |
children |
rev | line source |
---|---|
5 | 1 /* |
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | |
3 * See LICENSE file for license details. | |
4 */ | |
5 | |
6 #include "wm.h" | |
7 | |
8 void | |
9 draw_bar() | |
10 { | |
31 | 11 int i; |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
22
diff
changeset
|
12 brush.x = brush.y = 0; |
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
22
diff
changeset
|
13 brush.w = bw; |
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
22
diff
changeset
|
14 brush.h = bh; |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
15 draw(dpy, &brush, False, NULL); |
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
16 |
31 | 17 brush.w = 0; |
18 for(i = 0; i < TLast; i++) { | |
19 brush.x += brush.w; | |
20 brush.w = textw(&brush.font, tags[i]) + bh; | |
21 if(i == tsel) { | |
22 swap((void **)&brush.fg, (void **)&brush.bg); | |
23 draw(dpy, &brush, True, tags[i]); | |
24 swap((void **)&brush.fg, (void **)&brush.bg); | |
25 } | |
26 else | |
27 draw(dpy, &brush, True, tags[i]); | |
28 } | |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
29 if(stack) { |
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
30 swap((void **)&brush.fg, (void **)&brush.bg); |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
22
diff
changeset
|
31 brush.x += brush.w; |
31 | 32 brush.w = textw(&brush.font, stack->name) + bh; |
33 draw(dpy, &brush, True, stack->name); | |
34 swap((void **)&brush.fg, (void **)&brush.bg); | |
16
359b6e563b95
several changes, new stuff
Anselm R. Garbe <garbeam@wmii.de>
parents:
14
diff
changeset
|
35 } |
31 | 36 brush.w = textw(&brush.font, stext) + bh; |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
22
diff
changeset
|
37 brush.x = bx + bw - brush.w; |
31 | 38 draw(dpy, &brush, False, stext); |
26
e8f627998d6f
simplified several portions of code through replacing rect structs with x,y,h,w counterparts (much more readable)
Anselm R. Garbe <garbeam@wmii.de>
parents:
22
diff
changeset
|
39 XCopyArea(dpy, brush.drawable, barwin, brush.gc, 0, 0, bw, bh, 0, 0); |
5 | 40 XFlush(dpy); |
41 } |