dwm.h
changeset 164 21071ae1fe68
parent 157 93012e947eae
child 166 e0535db04dfe
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;