2010-04-13 17:22:34 +02:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2011-05-15 20:10:25 +02:00
|
|
|
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
|
2010-04-13 17:22:34 +02:00
|
|
|
*
|
2011-10-23 00:40:02 +02:00
|
|
|
* window.c: Updates window attributes (X11 hints/properties).
|
|
|
|
*
|
2010-04-13 17:22:34 +02:00
|
|
|
*/
|
|
|
|
#include "all.h"
|
|
|
|
|
2010-04-13 17:46:54 +02:00
|
|
|
/*
|
|
|
|
* Updates the WM_CLASS (consisting of the class and instance) for the
|
|
|
|
* given window.
|
|
|
|
*
|
|
|
|
*/
|
2011-05-15 20:10:25 +02:00
|
|
|
void window_update_class(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
|
2010-04-13 17:22:34 +02:00
|
|
|
if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
|
|
|
|
DLOG("empty property, not updating\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
FREE(prop);
|
2010-04-13 17:22:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We cannot use asprintf here since this property contains two
|
|
|
|
* null-terminated strings (for compatibility reasons). Instead, we
|
|
|
|
* use strdup() on both strings */
|
|
|
|
char *new_class = xcb_get_property_value(prop);
|
|
|
|
|
|
|
|
FREE(win->class_instance);
|
|
|
|
FREE(win->class_class);
|
|
|
|
|
2011-01-04 22:39:13 +01:00
|
|
|
win->class_instance = sstrdup(new_class);
|
2010-04-13 17:22:34 +02:00
|
|
|
if ((strlen(new_class) + 1) < xcb_get_property_value_length(prop))
|
2011-01-04 22:39:13 +01:00
|
|
|
win->class_class = sstrdup(new_class + strlen(new_class) + 1);
|
2010-04-13 17:22:34 +02:00
|
|
|
else win->class_class = NULL;
|
|
|
|
LOG("WM_CLASS changed to %s (instance), %s (class)\n",
|
|
|
|
win->class_instance, win->class_class);
|
2011-05-15 20:10:25 +02:00
|
|
|
|
2011-07-31 17:46:41 +02:00
|
|
|
if (before_mgmt) {
|
|
|
|
free(prop);
|
2011-05-15 20:10:25 +02:00
|
|
|
return;
|
2011-07-31 17:46:41 +02:00
|
|
|
}
|
2011-05-15 20:10:25 +02:00
|
|
|
|
|
|
|
run_assignments(win);
|
2011-07-31 17:12:37 +02:00
|
|
|
|
|
|
|
free(prop);
|
2010-04-13 17:22:34 +02:00
|
|
|
}
|
|
|
|
|
2010-04-13 17:46:54 +02:00
|
|
|
/*
|
|
|
|
* Updates the name by using _NET_WM_NAME (encoded in UTF-8) for the given
|
|
|
|
* window. Further updates using window_update_name_legacy will be ignored.
|
|
|
|
*
|
|
|
|
*/
|
2011-05-15 20:10:25 +02:00
|
|
|
void window_update_name(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
|
2010-04-13 17:22:34 +02:00
|
|
|
if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
|
|
|
|
DLOG("_NET_WM_NAME not specified, not changing\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
FREE(prop);
|
2010-04-13 17:46:54 +02:00
|
|
|
return;
|
2010-04-13 17:22:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Save the old pointer to make the update atomic */
|
2010-04-13 17:46:54 +02:00
|
|
|
char *new_name;
|
|
|
|
if (asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop),
|
|
|
|
(char*)xcb_get_property_value(prop)) == -1) {
|
|
|
|
perror("asprintf()");
|
|
|
|
DLOG("Could not get window name\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
free(prop);
|
2011-02-14 16:33:42 +01:00
|
|
|
return;
|
2010-04-13 17:46:54 +02:00
|
|
|
}
|
2010-04-13 17:22:34 +02:00
|
|
|
/* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
|
2011-02-14 16:33:42 +01:00
|
|
|
int len;
|
|
|
|
char *ucs2_name = convert_utf8_to_ucs2(new_name, &len);
|
|
|
|
if (ucs2_name == NULL) {
|
|
|
|
LOG("Could not convert _NET_WM_NAME to UCS-2, ignoring new hint\n");
|
|
|
|
FREE(new_name);
|
2011-07-31 17:46:41 +02:00
|
|
|
free(prop);
|
2011-02-14 16:33:42 +01:00
|
|
|
return;
|
|
|
|
}
|
2010-04-13 17:46:54 +02:00
|
|
|
FREE(win->name_x);
|
|
|
|
FREE(win->name_json);
|
|
|
|
win->name_json = new_name;
|
2011-02-14 16:33:42 +01:00
|
|
|
win->name_x = ucs2_name;
|
|
|
|
win->name_len = len;
|
2011-03-20 14:07:16 +01:00
|
|
|
win->name_x_changed = true;
|
2010-04-13 17:46:54 +02:00
|
|
|
LOG("_NET_WM_NAME changed to \"%s\"\n", win->name_json);
|
2010-04-13 17:22:34 +02:00
|
|
|
|
|
|
|
win->uses_net_wm_name = true;
|
2011-05-15 20:10:25 +02:00
|
|
|
|
2011-07-31 17:46:41 +02:00
|
|
|
if (before_mgmt) {
|
|
|
|
free(prop);
|
2011-05-15 20:10:25 +02:00
|
|
|
return;
|
2011-07-31 17:46:41 +02:00
|
|
|
}
|
2011-05-15 20:10:25 +02:00
|
|
|
|
|
|
|
run_assignments(win);
|
2011-07-31 17:12:37 +02:00
|
|
|
|
|
|
|
free(prop);
|
2010-04-13 17:22:34 +02:00
|
|
|
}
|
2010-04-13 17:46:54 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Updates the name by using WM_NAME (encoded in COMPOUND_TEXT). We do not
|
|
|
|
* touch what the client sends us but pass it to xcb_image_text_8. To get
|
|
|
|
* proper unicode rendering, the application has to use _NET_WM_NAME (see
|
|
|
|
* window_update_name()).
|
|
|
|
*
|
|
|
|
*/
|
2011-05-15 20:10:25 +02:00
|
|
|
void window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
|
2010-04-13 17:46:54 +02:00
|
|
|
if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
|
|
|
|
DLOG("prop == NULL\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
FREE(prop);
|
2010-04-13 17:46:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ignore update when the window is known to already have a UTF-8 name */
|
2011-07-31 17:46:41 +02:00
|
|
|
if (win->uses_net_wm_name) {
|
|
|
|
free(prop);
|
2010-04-13 17:46:54 +02:00
|
|
|
return;
|
2011-07-31 17:46:41 +02:00
|
|
|
}
|
2010-04-13 17:46:54 +02:00
|
|
|
|
|
|
|
char *new_name;
|
|
|
|
if (asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop),
|
|
|
|
(char*)xcb_get_property_value(prop)) == -1) {
|
|
|
|
perror("asprintf()");
|
|
|
|
DLOG("Could not get legacy window name\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
free(prop);
|
2010-04-13 17:46:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 15:45:34 +02:00
|
|
|
LOG("WM_NAME changed to \"%s\"\n", new_name);
|
2010-04-13 17:46:54 +02:00
|
|
|
LOG("Using legacy window title. Note that in order to get Unicode window "
|
|
|
|
"titles in i3, the application has to set _NET_WM_NAME (UTF-8)\n");
|
|
|
|
|
|
|
|
FREE(win->name_x);
|
|
|
|
FREE(win->name_json);
|
|
|
|
win->name_x = new_name;
|
2011-01-04 22:39:13 +01:00
|
|
|
win->name_json = sstrdup(new_name);
|
2010-04-13 17:46:54 +02:00
|
|
|
win->name_len = strlen(new_name);
|
2011-03-20 14:07:16 +01:00
|
|
|
win->name_x_changed = true;
|
2011-05-15 20:10:25 +02:00
|
|
|
|
2011-07-31 17:46:41 +02:00
|
|
|
if (before_mgmt) {
|
|
|
|
free(prop);
|
2011-05-15 20:10:25 +02:00
|
|
|
return;
|
2011-07-31 17:46:41 +02:00
|
|
|
}
|
2011-05-15 20:10:25 +02:00
|
|
|
|
|
|
|
run_assignments(win);
|
2011-07-31 17:12:37 +02:00
|
|
|
|
|
|
|
free(prop);
|
2010-04-13 17:46:54 +02:00
|
|
|
}
|
2010-11-12 23:46:03 +01:00
|
|
|
|
2011-02-21 14:27:32 +01:00
|
|
|
/*
|
2010-11-12 23:46:03 +01:00
|
|
|
* Updates the CLIENT_LEADER (logical parent window).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop) {
|
|
|
|
if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
|
|
|
|
DLOG("prop == NULL\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
FREE(prop);
|
2010-11-12 23:46:03 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
xcb_window_t *leader = xcb_get_property_value(prop);
|
2011-07-31 17:46:41 +02:00
|
|
|
if (leader == NULL) {
|
|
|
|
free(prop);
|
2010-11-12 23:46:03 +01:00
|
|
|
return;
|
2011-07-31 17:46:41 +02:00
|
|
|
}
|
2010-11-12 23:46:03 +01:00
|
|
|
|
|
|
|
DLOG("Client leader changed to %08x\n", *leader);
|
|
|
|
|
|
|
|
win->leader = *leader;
|
2011-07-31 17:12:37 +02:00
|
|
|
|
|
|
|
free(prop);
|
2010-11-12 23:46:03 +01:00
|
|
|
}
|
2010-11-13 01:19:21 +01:00
|
|
|
|
2011-02-21 14:27:32 +01:00
|
|
|
/*
|
2010-11-13 01:19:21 +01:00
|
|
|
* Updates the TRANSIENT_FOR (logical parent window).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop) {
|
|
|
|
if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
|
|
|
|
DLOG("prop == NULL\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
FREE(prop);
|
2010-11-13 01:19:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
xcb_window_t transient_for;
|
2011-07-31 17:46:41 +02:00
|
|
|
if (!xcb_icccm_get_wm_transient_for_from_reply(&transient_for, prop)) {
|
|
|
|
free(prop);
|
2010-11-13 01:19:21 +01:00
|
|
|
return;
|
2011-07-31 17:46:41 +02:00
|
|
|
}
|
2010-11-13 01:19:21 +01:00
|
|
|
|
|
|
|
DLOG("Transient for changed to %08x\n", transient_for);
|
|
|
|
|
|
|
|
win->transient_for = transient_for;
|
2011-07-31 17:12:37 +02:00
|
|
|
|
|
|
|
free(prop);
|
2010-11-13 01:19:21 +01:00
|
|
|
}
|
2011-02-21 14:27:32 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Updates the _NET_WM_STRUT_PARTIAL (reserved pixels at the screen edges)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_strut_partial(i3Window *win, xcb_get_property_reply_t *prop) {
|
|
|
|
if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
|
|
|
|
DLOG("prop == NULL\n");
|
2011-07-31 17:46:41 +02:00
|
|
|
FREE(prop);
|
2011-02-21 14:27:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t *strut;
|
2011-07-31 17:46:41 +02:00
|
|
|
if (!(strut = xcb_get_property_value(prop))) {
|
|
|
|
free(prop);
|
2011-02-21 14:27:32 +01:00
|
|
|
return;
|
2011-07-31 17:46:41 +02:00
|
|
|
}
|
2011-02-21 14:27:32 +01:00
|
|
|
|
|
|
|
DLOG("Reserved pixels changed to: left = %d, right = %d, top = %d, bottom = %d\n",
|
|
|
|
strut[0], strut[1], strut[2], strut[3]);
|
|
|
|
|
|
|
|
win->reserved = (struct reservedpx){ strut[0], strut[1], strut[2], strut[3] };
|
2011-07-31 17:12:37 +02:00
|
|
|
|
|
|
|
free(prop);
|
2011-02-21 14:27:32 +01:00
|
|
|
}
|
2011-09-18 17:05:10 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Updates the WM_WINDOW_ROLE
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
|
|
|
|
if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
|
|
|
|
DLOG("prop == NULL\n");
|
|
|
|
FREE(prop);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *new_role;
|
|
|
|
if (asprintf(&new_role, "%.*s", xcb_get_property_value_length(prop),
|
|
|
|
(char*)xcb_get_property_value(prop)) == -1) {
|
|
|
|
perror("asprintf()");
|
|
|
|
DLOG("Could not get WM_WINDOW_ROLE\n");
|
|
|
|
free(prop);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
FREE(win->role);
|
|
|
|
win->role = new_role;
|
|
|
|
LOG("WM_WINDOW_ROLE changed to \"%s\"\n", win->role);
|
|
|
|
|
|
|
|
if (before_mgmt) {
|
|
|
|
free(prop);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
run_assignments(win);
|
|
|
|
|
|
|
|
free(prop);
|
|
|
|
}
|