dwm.h
changeset 760 8ed842c35e8d
parent 734 6283adb1fcf2
child 761 4e835c2a7a12
equal deleted inserted replaced
759:6365c9425b48 760:8ed842c35e8d
    71 	int rx, ry, rw, rh; /* revert geometry */
    71 	int rx, ry, rw, rh; /* revert geometry */
    72 	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
    72 	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
    73 	int minax, minay, maxax, maxay;
    73 	int minax, minay, maxax, maxay;
    74 	long flags; 
    74 	long flags; 
    75 	unsigned int border;
    75 	unsigned int border;
    76 	Bool isfixed, isfloat, ismax;
    76 	Bool isbanned, isfixed, isfloat, ismax;
    77 	Bool *tags;
    77 	Bool *tags;
    78 	Client *next;
    78 	Client *next;
    79 	Client *prev;
    79 	Client *prev;
    80 	Client *snext;
    80 	Client *snext;
    81 	Window win;
    81 	Window win;
    97 extern DC dc;					/* global draw context */
    97 extern DC dc;					/* global draw context */
    98 extern Display *dpy;
    98 extern Display *dpy;
    99 extern Window root, barwin;
    99 extern Window root, barwin;
   100 
   100 
   101 /* client.c */
   101 /* client.c */
       
   102 extern void ban(Client *c);			/* ban c */
   102 extern void configure(Client *c);		/* send synthetic configure event */
   103 extern void configure(Client *c);		/* send synthetic configure event */
   103 extern void focus(Client *c);			/* focus c, c may be NULL */
   104 extern void focus(Client *c);			/* focus c, c may be NULL */
   104 extern Client *getclient(Window w);		/* return client of w */
   105 extern Client *getclient(Window w);		/* return client of w */
   105 extern Bool isprotodel(Client *c);		/* returns True if c->win supports wmatom[WMDelete] */
   106 extern Bool isprotodel(Client *c);		/* returns True if c->win supports wmatom[WMDelete] */
   106 extern void killclient(Arg *arg);		/* kill c nicely */
   107 extern void killclient(Arg *arg);		/* kill c nicely */