doc update for client.h

This commit is contained in:
Julien Danjou 2007-09-26 16:30:17 +02:00
parent 4f65ea5fcd
commit d34146fcec
1 changed files with 6 additions and 1 deletions

View File

@ -38,14 +38,19 @@ struct Client
int rx, ry, rw, rh;
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
int minax, maxax, minay, maxay;
/** True if client is unmapped */
Bool unmapped;
long flags;
int border, oldborder;
Bool isbanned, isfixed, ismax, isfloating, wasfloating;
/** Tags for the client */
Bool *tags;
/** Next client */
Client *next;
/** Previous client */
Client *prev;
Client *snext;
/** Window of the client */
Window win;
/** Client display */
Display *display;