dwm-meillo
diff dwm.h @ 687:a76799907854
removed client title bar
author | Anselm R. Garbe <arg@suckless.org> |
---|---|
date | Sun, 14 Jan 2007 22:27:29 +0100 |
parents | 1438e35b622e |
children | 39fa5308d73f |
line diff
1.1 --- a/dwm.h Fri Jan 12 21:56:01 2007 +0100 1.2 +++ b/dwm.h Sun Jan 14 22:27:29 2007 +0100 1.3 @@ -78,7 +78,6 @@ 1.4 int proto; 1.5 int x, y, w, h; 1.6 int rx, ry, rw, rh; /* revert geometry */ 1.7 - int tx, ty, tw, th; /* title window geometry */ 1.8 int basew, baseh, incw, inch, maxw, maxh, minw, minh; 1.9 long flags; 1.10 unsigned int border; 1.11 @@ -88,7 +87,6 @@ 1.12 Client *prev; 1.13 Client *snext; 1.14 Window win; 1.15 - Window twin; 1.16 }; 1.17 1.18 extern const char *tags[]; /* all tags */ 1.19 @@ -110,15 +108,12 @@ 1.20 extern Window root, barwin; 1.21 1.22 /* client.c */ 1.23 -extern void ban(Client *c); /* ban c from screen */ 1.24 extern void configure(Client *c); /* send synthetic configure event */ 1.25 extern void focus(Client *c); /* focus c, c may be NULL */ 1.26 extern Client *getclient(Window w); /* return client of w */ 1.27 -extern Client *getctitle(Window w); /* return client of title window */ 1.28 extern void killclient(Arg *arg); /* kill c nicely */ 1.29 extern void manage(Window w, XWindowAttributes *wa); /* manage new client */ 1.30 extern void resize(Client *c, Bool sizehints, Corner sticky); /* resize c*/ 1.31 -extern void resizetitle(Client *c); /* resizes c->twin correctly */ 1.32 extern void updatesizehints(Client *c); /* update the size hint variables of c */ 1.33 extern void updatetitle(Client *c); /* update the name of c */ 1.34 extern void unmanage(Client *c); /* destroy c */