aboutsummaryrefslogtreecommitdiffstats
path: root/xevents.c
diff options
context:
space:
mode:
authoroga2008-09-29 23:16:46 +0000
committeroga2008-09-29 23:16:46 +0000
commita45b63cfb2ae8afa0152a8e8ebc59e605cf09713 (patch)
tree274e39637d074c40f57c08c158a2ee0043392712 /xevents.c
parent9809202df5c965b7710ef1770d36c25c586e4249 (diff)
downloadcwm-a45b63cfb2ae8afa0152a8e8ebc59e605cf09713.tar.gz
Xinerama and XRandR dual head support for cwm(1). Now we detect the xrandr
reconfiguration events and change our sizes depending on that. We also detect the xinerama screens for maximize, vertmaximize and initial window placement. This could be improved by automatically resizing maximized windows when the screen resolution changes and by moving windows that would be hidden into visible space. Said changes will come shortly. Tested by many. matthieu@ didn't oppose.
Diffstat (limited to 'xevents.c')
-rw-r--r--xevents.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/xevents.c b/xevents.c
index 6427a29..57e2ef2 100644
--- a/xevents.c
+++ b/xevents.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: xevents.c,v 1.28 2008/09/22 14:28:04 oga Exp $
+ * $Id: xevents.c,v 1.29 2008/09/29 23:16:46 oga Exp $
*/
/*
@@ -375,6 +375,22 @@ xev_handle_shape(struct xevent *xev, XEvent *ee)
client_do_shape(cc);
}
+void
+xev_handle_randr(struct xevent *xev, XEvent *ee)
+{
+ XRRScreenChangeNotifyEvent *rev = (XRRScreenChangeNotifyEvent *)ee;
+ struct client_ctx *cc;
+ struct screen_ctx *sc;
+
+ if ((cc = client_find(rev->window)) != NULL) {
+ XRRUpdateConfiguration(ee);
+ sc = CCTOSC(cc);
+ sc->xmax = rev->width;
+ sc->ymax = rev->height;
+ screen_init_xinerama(sc);
+ }
+}
+
/*
* Called when the keymap has changed.
* Ungrab all keys, reload keymap and then regrab
@@ -525,6 +541,8 @@ xev_loop(void)
default:
if (e.type == Shape_ev)
xev_handle_shape(xev, &e);
+ else if (e.type == Randr_ev)
+ xev_handle_randr(xev, &e);
break;
}