Client

struct Client {
string name;
float mina;
float maxa;
int x;
int y;
int w;
int h;
int oldx;
int oldy;
int oldw;
int oldh;
int basew;
int baseh;
int incw;
int inch;
int maxw;
int maxh;
int minw;
int minh;
int bw;
int oldbw;
uint tags;
bool isfixed;
bool isfloating;
bool isurgent;
bool neverfocus;
bool oldstate;
bool isfullscreen;
Client* next;
Client* snext;
Monitor* mon;
Window win;
}

Members

Structs

ClientRange
struct ClientRange(string NextField)

A range to iterate over the client list via 'next' or 'snext', as specified by the template string.

Meta