summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2010-05-22 22:32:08 +0000
committerokan <okan>2010-05-22 22:32:08 +0000
commite0c965777381ab74e54f84aac99f3fbd73e8573a (patch)
treea05918c36c552ac4a42723f9cbce6b9303eb9ad6
parentf769df540d901b5b113a30de5356098aab81f427 (diff)
parent85a53083cbe06c33cdea95b6a9fcb953bcc3afa2 (diff)
downloadcwm-e0c965777381ab74e54f84aac99f3fbd73e8573a.tar.gz
cwm-e0c965777381ab74e54f84aac99f3fbd73e8573a.tar.xz
cwm-e0c965777381ab74e54f84aac99f3fbd73e8573a.zip
cvsimport
-rw-r--r--calmwm.h2
-rw-r--r--client.c7
-rw-r--r--xutil.c32
3 files changed, 37 insertions, 4 deletions
diff --git a/calmwm.h b/calmwm.h
index 88bde09..0b01c00 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -405,7 +405,7 @@ void			 xu_key_grab(Window, int, int);
 void			 xu_key_ungrab(Window, int, int);
 void			 xu_sendmsg(Window, Atom, long);
 int			 xu_getprop(Window, Atom, Atom, long, u_char **);
-char			*xu_getstrprop(struct client_ctx *, Atom atm);
+int			 xu_getstrprop(Window, Atom, char **);
 void			 xu_setstate(struct client_ctx *, int);
 int			 xu_getstate(struct client_ctx *, int *);
 unsigned long		 xu_getcolor(struct screen_ctx *, char *);
diff --git a/client.c b/client.c
index d2c89c9..95d9d75 100644
--- a/client.c
+++ b/client.c
@@ -183,7 +183,7 @@ client_delete(struct client_ctx *cc)
 	while ((wn = TAILQ_FIRST(&cc->nameq)) != NULL) {
 		TAILQ_REMOVE(&cc->nameq, wn, entry);
 		if (wn->name != emptystring)
-			XFree(wn->name);
+			xfree(wn->name);
 		xfree(wn);
 	}
 
@@ -523,7 +523,8 @@ client_setname(struct client_ctx *cc)
 	struct winname	*wn;
 	char		*newname;
 
-	XFetchName(X_Dpy, cc->win, &newname);
+	if (!xu_getstrprop(cc->win, _NET_WM_NAME, &newname))
+		xu_getstrprop(cc->win, XA_WM_NAME, &newname);
 	if (newname == NULL)
 		newname = emptystring;
 
@@ -549,7 +550,7 @@ match:
 		assert(wn != NULL);
 		TAILQ_REMOVE(&cc->nameq, wn, entry);
 		if (wn->name != emptystring)
-			XFree(wn->name);
+			xfree(wn->name);
 		xfree(wn);
 		cc->nameqlen--;
 	}
diff --git a/xutil.c b/xutil.c
index cbe7562..c57bea7 100644
--- a/xutil.c
+++ b/xutil.c
@@ -152,6 +152,38 @@ xu_getprop(Window win, Atom atm, Atom type, long len, u_char **p)
 }
 
 int
+xu_getstrprop(Window win, Atom atm, char **text) {
+	XTextProperty	 prop;
+	char		**list;
+	int		 nitems = 0;
+
+	*text = NULL;
+
+	XGetTextProperty(X_Dpy, win, &prop, atm);
+	if (!prop.nitems)
+		return (0);
+
+	if (Xutf8TextPropertyToTextList(X_Dpy, &prop, &list,
+	    &nitems) == Success && nitems > 0 && *list) {
+		if (nitems > 1) {
+			XTextProperty    prop2;
+			if (Xutf8TextListToTextProperty(X_Dpy, list, nitems,
+			    XUTF8StringStyle, &prop2) == Success) {
+				*text = xstrdup(prop2.value);
+				XFree(prop2.value);
+			}
+		} else {
+			*text = xstrdup(*list);
+		}
+		XFreeStringList(list);
+	}
+
+	XFree(prop.value);
+
+	return (nitems);
+}
+
+int
 xu_getstate(struct client_ctx *cc, int *state)
 {
 	long	*p = NULL;