dwm.h
changeset 956 484245788760
parent 953 d7de5c7bdbe4
child 960 b5f856fcef4c
equal deleted inserted replaced
955:b2518e01f7e3 956:484245788760
   112 /* event.c */
   112 /* event.c */
   113 void grabkeys(void);			/* grab all keys defined in config.h */
   113 void grabkeys(void);			/* grab all keys defined in config.h */
   114 
   114 
   115 /* layout.c */
   115 /* layout.c */
   116 void arrange(void);			/* arranges all windows depending on the layout in use */
   116 void arrange(void);			/* arranges all windows depending on the layout in use */
   117 void focusclient(const char *arg);	/* focuses next(1)/previous(-1) visible client */
   117 void focusnext(const char *arg);	/* focuses next visible client */
       
   118 void focusprev(const char *arg);	/* focuses prev visible client */
   118 const char *getsymbol(void);		/* returns symbol of enabled layout */
   119 const char *getsymbol(void);		/* returns symbol of enabled layout */
   119 Bool isfloating(void);			/* returns True if floating layout is enabled */
   120 Bool isfloating(void);			/* returns True if floating layout is enabled */
   120 Bool isarrange(void (*func)());		/* returns True if func is the layout function in use */
   121 Bool isarrange(void (*func)());		/* returns True if func is the layout function in use */
   121 void initlayouts(void);			/* initialize layout array */
   122 void initlayouts(void);			/* initialize layout array */
   122 Client *nexttiled(Client *c);		/* returns tiled successor of c */
   123 Client *nexttiled(Client *c);		/* returns tiled successor of c */