Mercurial > dwm-meillo
diff client.c @ 446:a2e587651c79
using a global stack for focus recovery on arrange() - seems to work great
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Thu, 07 Sep 2006 17:53:40 +0200 |
parents | 056a5072c70a |
children | 16c4e4c5fb15 |
line wrap: on
line diff
--- a/client.c Thu Sep 07 09:26:01 2006 +0200 +++ b/client.c Thu Sep 07 17:53:40 2006 +0200 @@ -11,6 +11,14 @@ /* static functions */ static void +detachstack(Client *c) +{ + Client **tc; + for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext); + *tc = c->snext; +} + +static void grabbuttons(Client *c, Bool focus) { XUngrabButton(dpy, AnyButton, AnyModifier, c->win); @@ -99,6 +107,9 @@ } } if(c) { + detachstack(c); + c->snext = stack; + stack = c; grabbuttons(c, True); drawtitle(c); XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); @@ -198,7 +209,6 @@ void manage(Window w, XWindowAttributes *wa) { - unsigned int i; Client *c; Window trans; XSetWindowAttributes twa; @@ -247,7 +257,8 @@ if(clients) clients->prev = c; c->next = clients; - clients = c; + c->snext = stack; + stack = clients = c; settitle(c); ban(c); @@ -421,6 +432,7 @@ XUngrabButton(dpy, AnyButton, AnyModifier, c->win); XDestroyWindow(dpy, c->twin); + detachstack(c); free(c->tags); free(c);