Mercurial > dwm-meillo
comparison dwm.h @ 178:e848966a1ac6
removed TLast tag enum, now tags is simple defined as char *[] array, the rest is calculated correctly, rules take an int array for the tags
author | arg@10ksloc.org |
---|---|
date | Thu, 03 Aug 2006 12:12:26 +0200 |
parents | 1db04019684e |
children | 523df4a3c1c4 |
comparison
equal
deleted
inserted
replaced
177:e890cee887d1 | 178:e848966a1ac6 |
---|---|
58 int grav; | 58 int grav; |
59 long flags; | 59 long flags; |
60 unsigned int border; | 60 unsigned int border; |
61 Bool isfloat; | 61 Bool isfloat; |
62 Bool ismax; | 62 Bool ismax; |
63 Bool tags[TLast]; | 63 Bool *tags; |
64 Client *next; | 64 Client *next; |
65 Client *prev; | 65 Client *prev; |
66 Window win; | 66 Window win; |
67 Window title; | 67 Window title; |
68 }; | 68 }; |
69 | 69 |
70 extern const char *tags[TLast]; | 70 extern const char *tags[]; |
71 extern char stext[1024]; | 71 extern char stext[1024]; |
72 extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw; | 72 extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw; |
73 extern unsigned int ntags; | |
73 extern void (*handler[LASTEvent])(XEvent *); | 74 extern void (*handler[LASTEvent])(XEvent *); |
74 extern void (*arrange)(Arg *); | 75 extern void (*arrange)(Arg *); |
75 extern Atom wmatom[WMLast], netatom[NetLast]; | 76 extern Atom wmatom[WMLast], netatom[NetLast]; |
76 extern Bool running, issel; | 77 extern Bool running, issel; |
77 extern Client *clients, *sel; | 78 extern Client *clients, *sel; |