diff options
author | Anselm R. Garbe <arg@10kloc.org> | 2006-09-29 12:38:27 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@10kloc.org> | 2006-09-29 12:38:27 +0200 |
commit | 14d05e7c725a4a07136ceb123cf760272afc1a87 (patch) | |
tree | 39328e09b357c05afb8951c5aaccaeb844b2b14d /dwm.h | |
parent | a118a57fe3fd13036f24ebe093a5c329608a0600 (diff) | |
download | dwm-14d05e7c725a4a07136ceb123cf760272afc1a87.tar.gz |
first step to a more flexible dotile() algorithm
Diffstat (limited to 'dwm.h')
-rw-r--r-- | dwm.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dwm.h b/dwm.h index 234a734..0d2ed3f 100644 --- a/dwm.h +++ b/dwm.h @@ -48,6 +48,10 @@ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */ enum { ColFG, ColBG, ColLast }; /* color */ typedef enum { + StackLeft, StackBottom, StackRight +} StackPos; /* stack position*/ + +typedef enum { TopLeft, TopRight, BotLeft, BotRight } Corner; /* window corners */ @@ -97,16 +101,18 @@ struct Client { extern const char *tags[]; /* all tags */ extern char stext[1024]; /* status text */ extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */ -extern int mw, screen, sx, sy, sw, sh; /* screen geometry, master width */ +extern int master, screen, sx, sy, sw, sh; /* screen geometry, master width */ extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */ extern void (*handler[LASTEvent])(XEvent *); /* event handler */ extern void (*arrange)(Arg *); /* arrange function, indicates mode */ extern Atom wmatom[WMLast], netatom[NetLast]; extern Bool running, issel, *seltag; /* seltag is array of Bool */ +extern Bool isvertical; /* stack direction */ extern Client *clients, *sel, *stack; /* global client list and stack */ extern Cursor cursor[CurLast]; extern DC dc; /* global draw context */ extern Display *dpy; +extern StackPos stackpos; extern Window root, barwin; /* client.c */ |