2 #define I3__FILE__ "window.c"
4 * vim:ts=4:sw=4:expandtab
6 * i3 - an improved dynamic tiling window manager
7 * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
9 * window.c: Updates window attributes (X11 hints/properties).
15 * Updates the WM_CLASS (consisting of the class and instance) for the
19 void window_update_class(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
20 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
21 DLOG("WM_CLASS not set.\n");
26 /* We cannot use asprintf here since this property contains two
27 * null-terminated strings (for compatibility reasons). Instead, we
28 * use strdup() on both strings */
29 char *new_class = xcb_get_property_value(prop);
31 FREE(win->class_instance);
32 FREE(win->class_class);
34 win->class_instance = sstrdup(new_class);
35 if ((strlen(new_class) + 1) < (size_t)xcb_get_property_value_length(prop))
36 win->class_class = sstrdup(new_class + strlen(new_class) + 1);
38 win->class_class = NULL;
39 LOG("WM_CLASS changed to %s (instance), %s (class)\n",
40 win->class_instance, win->class_class);
53 * Updates the name by using _NET_WM_NAME (encoded in UTF-8) for the given
54 * window. Further updates using window_update_name_legacy will be ignored.
57 void window_update_name(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
58 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
59 DLOG("_NET_WM_NAME not specified, not changing\n");
64 i3string_free(win->name);
65 win->name = i3string_from_utf8_with_length(xcb_get_property_value(prop),
66 xcb_get_property_value_length(prop));
67 win->name_x_changed = true;
68 LOG("_NET_WM_NAME changed to \"%s\"\n", i3string_as_utf8(win->name));
70 win->uses_net_wm_name = true;
83 * Updates the name by using WM_NAME (encoded in COMPOUND_TEXT). We do not
84 * touch what the client sends us but pass it to xcb_image_text_8. To get
85 * proper unicode rendering, the application has to use _NET_WM_NAME (see
86 * window_update_name()).
89 void window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
90 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
91 DLOG("WM_NAME not set (_NET_WM_NAME is what you want anyways).\n");
96 /* ignore update when the window is known to already have a UTF-8 name */
97 if (win->uses_net_wm_name) {
102 i3string_free(win->name);
103 win->name = i3string_from_utf8_with_length(xcb_get_property_value(prop),
104 xcb_get_property_value_length(prop));
106 LOG("WM_NAME changed to \"%s\"\n", i3string_as_utf8(win->name));
107 LOG("Using legacy window title. Note that in order to get Unicode window "
108 "titles in i3, the application has to set _NET_WM_NAME (UTF-8)\n");
110 win->name_x_changed = true;
117 run_assignments(win);
123 * Updates the CLIENT_LEADER (logical parent window).
126 void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop) {
127 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
128 DLOG("CLIENT_LEADER not set on window 0x%08x.\n", win->id);
129 win->leader = XCB_NONE;
134 xcb_window_t *leader = xcb_get_property_value(prop);
135 if (leader == NULL) {
140 DLOG("Client leader changed to %08x\n", *leader);
142 win->leader = *leader;
148 * Updates the TRANSIENT_FOR (logical parent window).
151 void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop) {
152 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
153 DLOG("TRANSIENT_FOR not set on window 0x%08x.\n", win->id);
154 win->transient_for = XCB_NONE;
159 xcb_window_t transient_for;
160 if (!xcb_icccm_get_wm_transient_for_from_reply(&transient_for, prop)) {
165 DLOG("Transient for changed to 0x%08x (window 0x%08x)\n", transient_for, win->id);
167 win->transient_for = transient_for;
173 * Updates the _NET_WM_STRUT_PARTIAL (reserved pixels at the screen edges)
176 void window_update_strut_partial(i3Window *win, xcb_get_property_reply_t *prop) {
177 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
178 DLOG("_NET_WM_STRUT_PARTIAL not set.\n");
184 if (!(strut = xcb_get_property_value(prop))) {
189 DLOG("Reserved pixels changed to: left = %d, right = %d, top = %d, bottom = %d\n",
190 strut[0], strut[1], strut[2], strut[3]);
192 win->reserved = (struct reservedpx) {strut[0], strut[1], strut[2], strut[3]};
198 * Updates the WM_WINDOW_ROLE
201 void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
202 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
203 DLOG("WM_WINDOW_ROLE not set.\n");
209 if (asprintf(&new_role, "%.*s", xcb_get_property_value_length(prop),
210 (char *)xcb_get_property_value(prop)) == -1) {
211 perror("asprintf()");
212 DLOG("Could not get WM_WINDOW_ROLE\n");
217 win->role = new_role;
218 LOG("WM_WINDOW_ROLE changed to \"%s\"\n", win->role);
225 run_assignments(win);
231 * Updates the WM_HINTS (we only care about the input focus handling part).
234 void window_update_hints(i3Window *win, xcb_get_property_reply_t *prop, bool *urgency_hint) {
235 if (urgency_hint != NULL)
236 *urgency_hint = false;
238 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
239 DLOG("WM_HINTS not set.\n");
244 xcb_icccm_wm_hints_t hints;
246 if (!xcb_icccm_get_wm_hints_from_reply(&hints, prop)) {
247 DLOG("Could not get WM_HINTS\n");
252 win->doesnt_accept_focus = !hints.input;
253 LOG("WM_HINTS.input changed to \"%d\"\n", hints.input);
255 if (urgency_hint != NULL)
256 *urgency_hint = (xcb_icccm_wm_hints_get_urgency(&hints) != 0);
262 * Updates the MOTIF_WM_HINTS. The container's border style should be set to
263 * `motif_border_style' if border style is not BS_NORMAL.
265 * i3 only uses this hint when it specifies a window should have no
266 * title bar, or no decorations at all, which is how most window managers
269 * The EWMH spec intended to replace Motif hints with _NET_WM_WINDOW_TYPE, but
270 * it is still in use by popular widget toolkits such as GTK+ and Java AWT.
273 void window_update_motif_hints(i3Window *win, xcb_get_property_reply_t *prop, border_style_t *motif_border_style) {
274 /* This implementation simply mirrors Gnome's Metacity. Official
275 * documentation of this hint is nowhere to be found.
276 * For more information see:
277 * https://people.gnome.org/~tthurman/docs/metacity/xprops_8h-source.html
278 * http://stackoverflow.com/questions/13787553/detect-if-a-x11-window-has-decorations
280 #define MWM_HINTS_DECORATIONS (1 << 1)
281 #define MWM_DECOR_ALL (1 << 0)
282 #define MWM_DECOR_BORDER (1 << 1)
283 #define MWM_DECOR_TITLE (1 << 3)
285 if (motif_border_style != NULL)
286 *motif_border_style = BS_NORMAL;
288 if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
293 /* The property consists of an array of 5 uint64_t's. The first value is a bit
294 * mask of what properties the hint will specify. We are only interested in
295 * MWM_HINTS_DECORATIONS because it indicates that the second value of the
296 * array tells us which decorations the window should have, each flag being
297 * a particular decoration. */
298 uint64_t *motif_hints = (uint64_t *)xcb_get_property_value(prop);
300 if (motif_border_style != NULL && motif_hints[0] & MWM_HINTS_DECORATIONS) {
301 if (motif_hints[1] & MWM_DECOR_ALL || motif_hints[1] & MWM_DECOR_TITLE)
302 *motif_border_style = BS_NORMAL;
303 else if (motif_hints[1] & MWM_DECOR_BORDER)
304 *motif_border_style = BS_PIXEL;
306 *motif_border_style = BS_NONE;
311 #undef MWM_HINTS_DECORATIONS
313 #undef MWM_DECOR_BORDER
314 #undef MWM_DECOR_TITLE