dwm-meillo
diff dwm.h @ 115:329fd7dae530
removed c->f{x,y,w,h} and c->t{x,y,w,h} in favor for the new rule handling remembering two kinds of geometries is unnecessary, removed the randomized (x,y) setting on dofloat startup, was kind too random und unpredictable
author | arg@10ksloc.org |
---|---|
date | Thu, 20 Jul 2006 07:26:23 +0200 |
parents | dfa5cd0969a6 |
children | 75576e44c1d8 |
line diff
1.1 --- a/dwm.h Wed Jul 19 17:42:08 2006 +0200 1.2 +++ b/dwm.h Thu Jul 20 07:26:23 2006 +0200 1.3 @@ -67,10 +67,8 @@ 1.4 char name[256]; 1.5 char *tags[TLast]; 1.6 int proto; 1.7 - int *x, *y, *w, *h; /* current geom */ 1.8 - int bx, by, bw, bh; /* title bar */ 1.9 - int fx, fy, fw, fh; /* floating geom */ 1.10 - int tx, ty, tw, th; /* tiled geom */ 1.11 + int x, y, w, h; 1.12 + int tx, ty, tw, th; /* title */ 1.13 int basew, baseh, incw, inch, maxw, maxh, minw, minh; 1.14 int grav; 1.15 unsigned int border; 1.16 @@ -109,7 +107,6 @@ 1.17 extern void maximize(Arg *arg); 1.18 extern void pop(Client *c); 1.19 extern void resize(Client *c, Bool inc, Corner sticky); 1.20 -extern void setgeom(Client *c); 1.21 extern void setsize(Client *c); 1.22 extern void settitle(Client *c); 1.23 extern void unmanage(Client *c);