summary refs log tree commit diff
path: root/xutil.c
diff options
context:
space:
mode:
authorokan <okan>2013-05-21 00:29:20 +0000
committerokan <okan>2013-05-21 00:29:20 +0000
commit421bf22ac7a165f0f4d5608ffa22c887ff857d53 (patch)
tree10a4b2aac13d42ef16e8296c1ef72dcba27f2dea /xutil.c
parentc2042cd5238e74bcc3763a1e90917425eb41964e (diff)
downloadcwm-421bf22ac7a165f0f4d5608ffa22c887ff857d53.tar.gz
cwm-421bf22ac7a165f0f4d5608ffa22c887ff857d53.tar.xz
cwm-421bf22ac7a165f0f4d5608ffa22c887ff857d53.zip
handle _NET_WM_STATE ClientMessage; from Alexander Polakov.
Diffstat (limited to 'xutil.c')
-rw-r--r--xutil.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/xutil.c b/xutil.c
index 95bb0d4..2c678dd 100644
--- a/xutil.c
+++ b/xutil.c
@@ -440,6 +440,43 @@ xu_ewmh_get_net_wm_state(struct client_ctx *cc, int *n)
 }
 
 void
+xu_ewmh_handle_net_wm_state_msg(struct client_ctx *cc, int action,
+    Atom first, Atom second)
+{
+	int i;
+	static struct handlers {
+		int atom;
+		int property;
+		void (*toggle)(struct client_ctx *);
+	} handlers[] = {
+		{ _NET_WM_STATE_MAXIMIZED_VERT,
+			CLIENT_VMAXIMIZED,
+			client_vmaximize },
+		{ _NET_WM_STATE_MAXIMIZED_HORZ,
+			CLIENT_HMAXIMIZED,
+			client_hmaximize },
+	};
+
+	for (i = 0; i < nitems(handlers); i++) {
+		if (first != ewmh[handlers[i].atom].atom &&
+		    second != ewmh[handlers[i].atom].atom)
+			continue;
+		switch (action) {
+		case _NET_WM_STATE_ADD:
+			if ((cc->flags & handlers[i].property) == 0)
+				handlers[i].toggle(cc);
+			break;
+		case _NET_WM_STATE_REMOVE:
+			if (cc->flags & handlers[i].property)
+				handlers[i].toggle(cc);
+			break;
+		case _NET_WM_STATE_TOGGLE:
+			handlers[i].toggle(cc);
+		}
+	}
+}
+
+void
 xu_ewmh_restore_net_wm_state(struct client_ctx *cc)
 {
 	Atom	*atoms;