comparison dwm.h @ 749:6692d7e7e156

added maxlayout by mitch, moved config.h to config.meillo.h, some smaller modifications
author meillo@marmaro.de
date Sun, 11 Feb 2007 17:20:22 +0100
parents 08b89915c109
children
comparison
equal deleted inserted replaced
748:61821891835c 749:6692d7e7e156
130 extern Client *getnext(Client *c); /* returns next visible client */ 130 extern Client *getnext(Client *c); /* returns next visible client */
131 extern Client *getprev(Client *c); /* returns previous visible client */ 131 extern Client *getprev(Client *c); /* returns previous visible client */
132 extern void settags(Client *c, Client *trans); /* sets tags of c */ 132 extern void settags(Client *c, Client *trans); /* sets tags of c */
133 extern void tag(Arg *arg); /* tags c with arg's index */ 133 extern void tag(Arg *arg); /* tags c with arg's index */
134 extern void toggletag(Arg *arg); /* toggles c tags with arg's index */ 134 extern void toggletag(Arg *arg); /* toggles c tags with arg's index */
135 extern void viewnext(Arg *arg); /* view next tag(s) [code by jukka] */ 135 extern void viewnext(Arg *arg); /* view next tag(s) */
136 136
137 /* util.c */ 137 /* util.c */
138 extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */ 138 extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
139 extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */ 139 extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
140 extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */ 140 extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */
141 141
142 /* view.c */ 142 /* view.c */
143 extern void detach(Client *c); /* detaches c from global client list */ 143 extern void detach(Client *c); /* detaches c from global client list */
144 extern void dofloat(void); /* arranges all windows floating */ 144 extern void dofloat(void); /* arranges all windows floating */
145 extern void dotile(void); /* arranges all windows tiled */ 145 extern void dotile(void); /* arranges all windows tiled */
146 extern void domax(void); /* arranges all windows fullscreen */
146 extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ 147 extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */
147 extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ 148 extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */
148 extern void incnmaster(Arg *arg); /* increments nmaster with arg's index value */ 149 extern void incnmaster(Arg *arg); /* increments nmaster with arg's index value */
149 extern Bool isvisible(Client *c); /* returns True if client is visible */ 150 extern Bool isvisible(Client *c); /* returns True if client is visible */
150 extern void resizemaster(Arg *arg); /* resizes the master percent with arg's index value */ 151 extern void resizemaster(Arg *arg); /* resizes the master percent with arg's index value */