[hackers] [dwm] applied Peter Hartlichs nice interim Xinerama and map fix patches, for debugging purposes I also added his transient test driver || garbeam

From: <hg_AT_suckless.org>
Date: Fri, 29 Jul 2011 20:01:26 +0200 (CEST)

changeset: 1573:131d4f6a8a1e
tag: tip
user: garbeam_AT_gmail.com
date: Fri Jul 29 20:01:22 2011 +0200
files: LICENSE dwm.c transient.c
description:
applied Peter Hartlichs nice interim Xinerama and map fix patches, for debugging purposes I also added his transient test driver

diff -r b46ae56abe65 -r 131d4f6a8a1e LICENSE
--- a/LICENSE Wed Jul 27 19:59:10 2011 +0200
+++ b/LICENSE Fri Jul 29 20:01:22 2011 +0200
@@ -1,16 +1,17 @@
 MIT/X Consortium License
 
 © 2006-2011 Anselm R Garbe <anselm_AT_garbe.us>
-© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
+© 2007-2011 Peter Hartlich <sgkkr at hartlich dot com>
+© 2010-2011 Connor Lane Smith <cls_AT_lubutu.com>
 © 2006-2009 Jukka Salmi <jukka at salmi dot ch>
 © 2007-2009 Premysl Hruby <dfenze at gmail dot com>
 © 2007-2009 Szabolcs Nagy <nszabolcs at gmail dot com>
 © 2007-2009 Christof Musik <christof at sendfax dot de>
+© 2009 Mate Nagy <mnagy at port70 dot net>
 © 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
-© 2007-2008 Peter Hartlich <sgkkr at hartlich dot com>
 © 2008 Martin Hurton <martin dot hurton at gmail dot com>
 © 2008 Neale Pickett <neale dot woozle dot org>
-© 2009 Mate Nagy <mnagy at port70 dot net>
+© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the "Software"),
diff -r b46ae56abe65 -r 131d4f6a8a1e dwm.c
--- a/dwm.c Wed Jul 27 19:59:10 2011 +0200
+++ b/dwm.c Fri Jul 29 20:01:22 2011 +0200
@@ -389,7 +389,6 @@
                 showhide(m->stack);
         else for(m = mons; m; m = m->next)
                 showhide(m->stack);
- focus(NULL);
         if(m)
                 arrangemon(m);
         else for(m = mons; m; m = m->next)
@@ -598,6 +597,7 @@
                         updatebars();
                         for(m = mons; m; m = m->next)
                                 XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
+ focus(NULL);
                         arrange(NULL);
                 }
         }
@@ -1154,9 +1154,13 @@
         attach(c);
         attachstack(c);
         XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
+ setclientstate(c, NormalState);
+ if (c->mon == selmon)
+ unfocus(selmon->sel, False);
+ c->mon->sel = c;
+ arrange(c->mon);
         XMapWindow(dpy, c->win);
- setclientstate(c, NormalState);
- arrange(c->mon);
+ focus(NULL);
 }
 
 void
@@ -1621,6 +1625,7 @@
 tag(const Arg *arg) {
         if(selmon->sel && arg->ui & TAGMASK) {
                 selmon->sel->tags = arg->ui & TAGMASK;
+ focus(NULL);
                 arrange(selmon);
         }
 }
@@ -1701,6 +1706,7 @@
         newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
         if(newtags) {
                 selmon->sel->tags = newtags;
+ focus(NULL);
                 arrange(selmon);
         }
 }
@@ -1711,6 +1717,7 @@
 
         if(newtagset) {
                 selmon->tagset[selmon->seltags] = newtagset;
+ focus(NULL);
                 arrange(selmon);
         }
 }
@@ -1976,6 +1983,7 @@
         selmon->seltags ^= 1; /* toggle sel tagset */
         if(arg->ui & TAGMASK)
                 selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
+ focus(NULL);
         arrange(selmon);
 }
 
diff -r b46ae56abe65 -r 131d4f6a8a1e transient.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/transient.c Fri Jul 29 20:01:22 2011 +0200
@@ -0,0 +1,42 @@
+/* cc transient.c -o transient -lX11 */
+
+#include <stdlib.h>
+#include <unistd.h>
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+
+int main(void) {
+ Display *d;
+ Window r, f, t = None;
+ XSizeHints h;
+ XEvent e;
+
+ d = XOpenDisplay(NULL);
+ if (!d)
+ exit(1);
+ r = DefaultRootWindow(d);
+
+ f = XCreateSimpleWindow(d, r, 100, 100, 400, 400, 0, 0, 0);
+ h.min_width = h.max_width = h.min_height = h.max_height = 400;
+ h.flags = PMinSize | PMaxSize;
+ XSetWMNormalHints(d, f, &h);
+ XStoreName(d, f, "floating");
+ XMapWindow(d, f);
+
+ XSelectInput(d, f, ExposureMask);
+ while (1) {
+ XNextEvent(d, &e);
+
+ if (t == None) {
+ sleep(5);
+ t = XCreateSimpleWindow(d, r, 50, 50, 100, 100, 0, 0, 0);
+ XSetTransientForHint(d, t, f);
+ XStoreName(d, t, "transient");
+ XMapWindow(d, t);
+ XSelectInput(d, t, ExposureMask);
+ }
+ }
+
+ XCloseDisplay(d);
+ exit(0);
+}
Received on Fri Jul 29 2011 - 20:01:26 CEST

This archive was generated by hypermail 2.2.0 : Fri Jul 29 2011 - 20:12:06 CEST