|
@@ -10,6 +10,14 @@
|
|
|
|
|
|
|
|
/* static functions */
|
|
/* static functions */
|
|
|
|
|
|
|
|
|
|
+static void
|
|
|
|
|
+detachstack(Client *c)
|
|
|
|
|
+{
|
|
|
|
|
+ Client **tc;
|
|
|
|
|
+ for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext);
|
|
|
|
|
+ *tc = c->snext;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
static void
|
|
static void
|
|
|
grabbuttons(Client *c, Bool focus)
|
|
grabbuttons(Client *c, Bool focus)
|
|
|
{
|
|
{
|
|
@@ -99,6 +107,9 @@ focus(Client *c)
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
if(c) {
|
|
if(c) {
|
|
|
|
|
+ detachstack(c);
|
|
|
|
|
+ c->snext = stack;
|
|
|
|
|
+ stack = c;
|
|
|
grabbuttons(c, True);
|
|
grabbuttons(c, True);
|
|
|
drawtitle(c);
|
|
drawtitle(c);
|
|
|
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
|
|
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
|
|
@@ -198,7 +209,6 @@ killclient(Arg *arg)
|
|
|
void
|
|
void
|
|
|
manage(Window w, XWindowAttributes *wa)
|
|
manage(Window w, XWindowAttributes *wa)
|
|
|
{
|
|
{
|
|
|
- unsigned int i;
|
|
|
|
|
Client *c;
|
|
Client *c;
|
|
|
Window trans;
|
|
Window trans;
|
|
|
XSetWindowAttributes twa;
|
|
XSetWindowAttributes twa;
|
|
@@ -247,7 +257,8 @@ manage(Window w, XWindowAttributes *wa)
|
|
|
if(clients)
|
|
if(clients)
|
|
|
clients->prev = c;
|
|
clients->prev = c;
|
|
|
c->next = clients;
|
|
c->next = clients;
|
|
|
- clients = c;
|
|
|
|
|
|
|
+ c->snext = stack;
|
|
|
|
|
+ stack = clients = c;
|
|
|
|
|
|
|
|
settitle(c);
|
|
settitle(c);
|
|
|
ban(c);
|
|
ban(c);
|
|
@@ -421,6 +432,7 @@ unmanage(Client *c)
|
|
|
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
|
|
XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
|
|
|
XDestroyWindow(dpy, c->twin);
|
|
XDestroyWindow(dpy, c->twin);
|
|
|
|
|
|
|
|
|
|
+ detachstack(c);
|
|
|
free(c->tags);
|
|
free(c->tags);
|
|
|
free(c);
|
|
free(c);
|
|
|
|
|
|