X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=dwm.h;h=60f9201ec18fb8dd1c725a993a5c5dd8612d8bb1;hb=d800ec05ff63451193a0b858c114f5144534c2a1;hp=b31a91dd0715ad723e3a778323b5689ddbdeef8d;hpb=551d6bb23dd4772a1a53a99d8d823ada5de9c3b6;p=dwm.git diff --git a/dwm.h b/dwm.h index b31a91d..60f9201 100644 --- a/dwm.h +++ b/dwm.h @@ -9,7 +9,7 @@ * allowed to select for this event mask. * * Calls to fetch an X event from the event queue are blocking. Due reading - * status text from standard input, a select-driven main loop has been + * status text from standard input, a select()-driven main loop has been * implemented which selects for reads on the X connection and STDIN_FILENO to * handle all data smoothly. The event handlers of dwm are organized in an * array which is accessed whenever a new event has been fetched. This allows @@ -26,8 +26,8 @@ * Keys and tagging rules are organized as arrays and defined in the config.h * file. These arrays are kept static in event.o and tag.o respectively, * because no other part of dwm needs access to them. The current mode is - * represented by the arrange function pointer, which wether points to dofloat - * or dotile. + * represented by the arrange() function pointer, which wether points to + * dofloat() or dotile(). * * To understand everything else, start reading main.c:main(). */ @@ -78,6 +78,7 @@ struct Client { int proto; int x, y, w, h; int tx, ty, tw, th; /* title window geometry */ + int rx, ry, rw, rh; /* revert geometry */ int basew, baseh, incw, inch, maxw, maxh, minw, minh; int grav; long flags; @@ -99,7 +100,7 @@ extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */ extern void (*handler[LASTEvent])(XEvent *); /* event handler */ extern void (*arrange)(Arg *); /* arrange function, indicates mode */ extern Atom wmatom[WMLast], netatom[NetLast]; -extern Bool running, issel, maximized, *seltag; /* seltag is array of Bool */ +extern Bool running, issel, *seltag; /* seltag is array of Bool */ extern Client *clients, *sel, *stack; /* global cleint list and stack */ extern Cursor cursor[CurLast]; extern DC dc; /* global draw context */ @@ -117,7 +118,6 @@ extern void manage(Window w, XWindowAttributes *wa); /* manage new client */ extern void resize(Client *c, Bool sizehints, Corner sticky); /* resize c*/ extern void updatesize(Client *c); /* update the size structs of c */ extern void updatetitle(Client *c); /* update the name of c */ -extern void togglemax(Arg *arg); /* (un)maximize c */ extern void unmanage(Client *c); /* destroy c */ /* draw.c */