added ban() which takes care than a banned window is not banned again... (this reduces the overall ConfigureNotify's to clients)
authorAnselm R. Garbe <arg@suckless.org>
Wed, 14 Feb 2007 14:01:12 +0100
changeset 760 8ed842c35e8d
parent 759 6365c9425b48
child 761 4e835c2a7a12
added ban() which takes care than a banned window is not banned again... (this reduces the overall ConfigureNotify's to clients)
client.c
config.mk
dwm.h
event.c
view.c
--- a/client.c	Wed Feb 14 09:35:48 2007 +0100
+++ b/client.c	Wed Feb 14 14:01:12 2007 +0100
@@ -68,6 +68,14 @@
 /* extern */
 
 void
+ban(Client *c) {
+	if(!c || c->isbanned)
+		return;
+	c->isbanned = True;
+	XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+}
+
+void
 configure(Client *c) {
 	XConfigureEvent ce;
 
@@ -190,7 +198,7 @@
 	c->next = clients;
 	c->snext = stack;
 	stack = clients = c;
-	XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+	ban(c);
 	XMapWindow(dpy, c->win);
 	setclientstate(c, NormalState);
 	if(isvisible(c))
--- a/config.mk	Wed Feb 14 09:35:48 2007 +0100
+++ b/config.mk	Wed Feb 14 14:01:12 2007 +0100
@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 3.5
+VERSION = 3.6
 
 # Customize below to fit your system
 
--- a/dwm.h	Wed Feb 14 09:35:48 2007 +0100
+++ b/dwm.h	Wed Feb 14 14:01:12 2007 +0100
@@ -73,7 +73,7 @@
 	int minax, minay, maxax, maxay;
 	long flags; 
 	unsigned int border;
-	Bool isfixed, isfloat, ismax;
+	Bool isbanned, isfixed, isfloat, ismax;
 	Bool *tags;
 	Client *next;
 	Client *prev;
@@ -99,6 +99,7 @@
 extern Window root, barwin;
 
 /* client.c */
+extern void ban(Client *c);			/* ban c */
 extern void configure(Client *c);		/* send synthetic configure event */
 extern void focus(Client *c);			/* focus c, c may be NULL */
 extern Client *getclient(Window w);		/* return client of w */
--- a/event.c	Wed Feb 14 09:35:48 2007 +0100
+++ b/event.c	Wed Feb 14 14:01:12 2007 +0100
@@ -189,7 +189,7 @@
 				configure(c);
 			resize(c, False);
 			if(!isvisible(c))
-				XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+				ban(c);
 		}
 		else
 			configure(c);
--- a/view.c	Wed Feb 14 09:35:48 2007 +0100
+++ b/view.c	Wed Feb 14 14:01:12 2007 +0100
@@ -55,10 +55,12 @@
 	Client *c;
 
 	for(c = clients; c; c = c->next) {
-		if(isvisible(c))
+		if(isvisible(c)) {
+			c->isbanned = False;
 			resize(c, True);
+		}
 		else
-			XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+			ban(c);
 	}
 	if(!sel || !isvisible(sel)) {
 		for(c = stack; c && !isvisible(c); c = c->snext);
@@ -82,6 +84,7 @@
 
 	for(i = 0, c = clients; c; c = c->next)
 		if(isvisible(c)) {
+			c->isbanned = False;
 			if(c->isfloat) {
 				resize(c, True);
 				continue;
@@ -108,7 +111,7 @@
 			i++;
 		}
 		else
-			XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
+			ban(c);
 	if(!sel || !isvisible(sel)) {
 		for(c = stack; c && !isvisible(c); c = c->snext);
 		focus(c);