X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=view.c;h=21efa164f0a1c818a5d672de1a6e6153444549b7;hb=d39d00057ce609e726b2769f953485dc4c7403cc;hp=aa0a23a6cdfd780a07197e4aea1b99706db778b1;hpb=4c368bcd24172166aab32948fc63feaa6a1bec93;p=dwm.git diff --git a/view.c b/view.c index aa0a23a..21efa16 100644 --- a/view.c +++ b/view.c @@ -57,10 +57,11 @@ detach(Client *c) void dofloat(Arg *arg) { - Client *c; + Client *c, *fc; + + maximized = False; for(c = clients; c; c = c->next) { - c->ismax = False; if(isvisible(c)) { resize(c, True, TopLeft); } @@ -68,11 +69,7 @@ dofloat(Arg *arg) ban(c); } if(!sel || !isvisible(sel)) - sel = getnext(clients); - if(sel) - focus(sel); - else - XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); + focus(getnext(clients)); restack(); } @@ -80,7 +77,9 @@ void dotile(Arg *arg) { int h, i, n, w; - Client *c; + Client *c, *fc; + + maximized = False; w = sw - mw; for(n = 0, c = clients; c; c = c->next) @@ -93,7 +92,6 @@ dotile(Arg *arg) h = sh - bh; for(i = 0, c = clients; c; c = c->next) { - c->ismax = False; if(isvisible(c)) { if(c->isfloat) { resize(c, True, TopLeft); @@ -133,11 +131,7 @@ dotile(Arg *arg) ban(c); } if(!sel || !isvisible(sel)) - sel = getnext(clients); - if(sel) - focus(sel); - else - XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); + focus(getnext(clients)); restack(); } @@ -273,12 +267,23 @@ view(Arg *arg) arrange(NULL); } +void +viewall(Arg *arg) +{ + unsigned int i; + + for(i = 0; i < ntags; i++) + seltag[i] = True; + reorder(); + arrange(NULL); +} + void zoom(Arg *arg) { Client *c = sel; - if(!c || (arrange != dotile) || c->isfloat || c->ismax) + if(!c || (arrange != dotile) || c->isfloat || maximized) return; if(c == getnext(clients))