mirror of https://github.com/E-Almqvist/ewm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
485 B
20 lines
485 B
/* See LICENSE file for copyright and license details. */
|
|
#include <X11/Xlib.h>
|
|
|
|
/* typedefs */
|
|
typedef struct Client Client;
|
|
struct Client {
|
|
char name[256];
|
|
int x, y, w, h;
|
|
int rx, ry, rw, rh; /* revert geometry */
|
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
|
int minax, maxax, minay, maxay;
|
|
long flags;
|
|
unsigned int border, oldborder;
|
|
Bool isbanned, isfixed, ismax, isfloating, wasfloating;
|
|
Bool *tags;
|
|
Client *next;
|
|
Client *prev;
|
|
Client *snext;
|
|
Window win;
|
|
};
|
|
|