Mercurial > dwm-meillo
comparison dwm.h @ 164:21071ae1fe68
made fullscreen apps working fine in floating mode (there is no sane way to make them work in tiled mode, thus I switch to floating mode if I run such kind of app), also fixed the xterm issue reported by Sander
author | arg@10ksloc.org |
---|---|
date | Wed, 02 Aug 2006 16:32:05 +0200 |
parents | 93012e947eae |
children | e0535db04dfe |
comparison
equal
deleted
inserted
replaced
163:e2e1de08341d | 164:21071ae1fe68 |
---|---|
1 /* | 1 /* |
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | 2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> |
3 * See LICENSE file for license details. | 3 * See LICENSE file for license details. |
4 */ | 4 */ |
5 | 5 |
6 #include CONFIG | |
6 #include <X11/Xlib.h> | 7 #include <X11/Xlib.h> |
7 #include CONFIG | |
8 | 8 |
9 /* mask shorthands, used in event.c and client.c */ | 9 /* mask shorthands, used in event.c and client.c */ |
10 #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) | 10 #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) |
11 #define MOUSEMASK (BUTTONMASK | PointerMotionMask) | 11 #define MOUSEMASK (BUTTONMASK | PointerMotionMask) |
12 #define PROTODELWIN 1 | 12 #define PROTODELWIN 1 |
55 int proto; | 55 int proto; |
56 int x, y, w, h; | 56 int x, y, w, h; |
57 int tx, ty, tw, th; /* title */ | 57 int tx, ty, tw, th; /* title */ |
58 int basew, baseh, incw, inch, maxw, maxh, minw, minh; | 58 int basew, baseh, incw, inch, maxw, maxh, minw, minh; |
59 int grav; | 59 int grav; |
60 long flags; | |
60 unsigned int border; | 61 unsigned int border; |
61 long flags; | |
62 Bool isfloat; | 62 Bool isfloat; |
63 Bool ismax; | 63 Bool ismax; |
64 Client *next; | 64 Client *next; |
65 Client *prev; | 65 Client *prev; |
66 Window win; | 66 Window win; |