]> git.sur5r.net Git - i3/i3/blob - src/window.c
Added missing newlines in log statements.
[i3/i3] / src / window.c
1 #undef I3__FILE__
2 #define I3__FILE__ "window.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * window.c: Updates window attributes (X11 hints/properties).
10  *
11  */
12 #include "all.h"
13
14 /*
15  * Updates the WM_CLASS (consisting of the class and instance) for the
16  * given window.
17  *
18  */
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");
22         FREE(prop);
23         return;
24     }
25
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     const size_t prop_length = xcb_get_property_value_length(prop);
30     char *new_class = xcb_get_property_value(prop);
31     const size_t class_class_index = strnlen(new_class, prop_length) + 1;
32
33     FREE(win->class_instance);
34     FREE(win->class_class);
35
36     win->class_instance = sstrndup(new_class, prop_length);
37     if (class_class_index < prop_length)
38         win->class_class = sstrndup(new_class + class_class_index, prop_length - class_class_index);
39     else
40         win->class_class = NULL;
41     LOG("WM_CLASS changed to %s (instance), %s (class)\n",
42         win->class_instance, win->class_class);
43
44     if (before_mgmt) {
45         free(prop);
46         return;
47     }
48
49     run_assignments(win);
50
51     free(prop);
52 }
53
54 /*
55  * Updates the name by using _NET_WM_NAME (encoded in UTF-8) for the given
56  * window. Further updates using window_update_name_legacy will be ignored.
57  *
58  */
59 void window_update_name(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
60     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
61         DLOG("_NET_WM_NAME not specified, not changing\n");
62         FREE(prop);
63         return;
64     }
65
66     i3string_free(win->name);
67     win->name = i3string_from_utf8_with_length(xcb_get_property_value(prop),
68                                                xcb_get_property_value_length(prop));
69     win->name_x_changed = true;
70     LOG("_NET_WM_NAME changed to \"%s\"\n", i3string_as_utf8(win->name));
71
72     win->uses_net_wm_name = true;
73
74     if (before_mgmt) {
75         free(prop);
76         return;
77     }
78
79     run_assignments(win);
80
81     free(prop);
82 }
83
84 /*
85  * Updates the name by using WM_NAME (encoded in COMPOUND_TEXT). We do not
86  * touch what the client sends us but pass it to xcb_image_text_8. To get
87  * proper unicode rendering, the application has to use _NET_WM_NAME (see
88  * window_update_name()).
89  *
90  */
91 void window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
92     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
93         DLOG("WM_NAME not set (_NET_WM_NAME is what you want anyways).\n");
94         FREE(prop);
95         return;
96     }
97
98     /* ignore update when the window is known to already have a UTF-8 name */
99     if (win->uses_net_wm_name) {
100         free(prop);
101         return;
102     }
103
104     i3string_free(win->name);
105     win->name = i3string_from_utf8_with_length(xcb_get_property_value(prop),
106                                                xcb_get_property_value_length(prop));
107
108     LOG("WM_NAME changed to \"%s\"\n", i3string_as_utf8(win->name));
109     LOG("Using legacy window title. Note that in order to get Unicode window "
110         "titles in i3, the application has to set _NET_WM_NAME (UTF-8)\n");
111
112     win->name_x_changed = true;
113
114     if (before_mgmt) {
115         free(prop);
116         return;
117     }
118
119     run_assignments(win);
120
121     free(prop);
122 }
123
124 /*
125  * Updates the CLIENT_LEADER (logical parent window).
126  *
127  */
128 void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop) {
129     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
130         DLOG("CLIENT_LEADER not set on window 0x%08x.\n", win->id);
131         win->leader = XCB_NONE;
132         FREE(prop);
133         return;
134     }
135
136     xcb_window_t *leader = xcb_get_property_value(prop);
137     if (leader == NULL) {
138         free(prop);
139         return;
140     }
141
142     DLOG("Client leader changed to %08x\n", *leader);
143
144     win->leader = *leader;
145
146     free(prop);
147 }
148
149 /*
150  * Updates the TRANSIENT_FOR (logical parent window).
151  *
152  */
153 void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop) {
154     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
155         DLOG("TRANSIENT_FOR not set on window 0x%08x.\n", win->id);
156         win->transient_for = XCB_NONE;
157         FREE(prop);
158         return;
159     }
160
161     xcb_window_t transient_for;
162     if (!xcb_icccm_get_wm_transient_for_from_reply(&transient_for, prop)) {
163         free(prop);
164         return;
165     }
166
167     DLOG("Transient for changed to 0x%08x (window 0x%08x)\n", transient_for, win->id);
168
169     win->transient_for = transient_for;
170
171     free(prop);
172 }
173
174 /*
175  * Updates the _NET_WM_STRUT_PARTIAL (reserved pixels at the screen edges)
176  *
177  */
178 void window_update_strut_partial(i3Window *win, xcb_get_property_reply_t *prop) {
179     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
180         DLOG("_NET_WM_STRUT_PARTIAL not set.\n");
181         FREE(prop);
182         return;
183     }
184
185     uint32_t *strut;
186     if (!(strut = xcb_get_property_value(prop))) {
187         free(prop);
188         return;
189     }
190
191     DLOG("Reserved pixels changed to: left = %d, right = %d, top = %d, bottom = %d\n",
192          strut[0], strut[1], strut[2], strut[3]);
193
194     win->reserved = (struct reservedpx){strut[0], strut[1], strut[2], strut[3]};
195
196     free(prop);
197 }
198
199 /*
200  * Updates the WM_WINDOW_ROLE
201  *
202  */
203 void window_update_role(i3Window *win, xcb_get_property_reply_t *prop, bool before_mgmt) {
204     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
205         DLOG("WM_WINDOW_ROLE not set.\n");
206         FREE(prop);
207         return;
208     }
209
210     char *new_role;
211     if (asprintf(&new_role, "%.*s", xcb_get_property_value_length(prop),
212                  (char *)xcb_get_property_value(prop)) == -1) {
213         perror("asprintf()");
214         DLOG("Could not get WM_WINDOW_ROLE\n");
215         free(prop);
216         return;
217     }
218     FREE(win->role);
219     win->role = new_role;
220     LOG("WM_WINDOW_ROLE changed to \"%s\"\n", win->role);
221
222     if (before_mgmt) {
223         free(prop);
224         return;
225     }
226
227     run_assignments(win);
228
229     free(prop);
230 }
231
232 /*
233  * Updates the _NET_WM_WINDOW_TYPE property.
234  *
235  */
236 void window_update_type(i3Window *window, xcb_get_property_reply_t *reply) {
237     xcb_atom_t new_type = xcb_get_preferred_window_type(reply);
238     if (new_type == XCB_NONE) {
239         DLOG("cannot read _NET_WM_WINDOW_TYPE from window.\n");
240         return;
241     }
242
243     window->window_type = new_type;
244     LOG("_NET_WM_WINDOW_TYPE changed to %i.\n", window->window_type);
245
246     run_assignments(window);
247 }
248
249 /*
250  * Updates the WM_HINTS (we only care about the input focus handling part).
251  *
252  */
253 void window_update_hints(i3Window *win, xcb_get_property_reply_t *prop, bool *urgency_hint) {
254     if (urgency_hint != NULL)
255         *urgency_hint = false;
256
257     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
258         DLOG("WM_HINTS not set.\n");
259         FREE(prop);
260         return;
261     }
262
263     xcb_icccm_wm_hints_t hints;
264
265     if (!xcb_icccm_get_wm_hints_from_reply(&hints, prop)) {
266         DLOG("Could not get WM_HINTS\n");
267         free(prop);
268         return;
269     }
270
271     if (hints.flags & XCB_ICCCM_WM_HINT_INPUT) {
272         win->doesnt_accept_focus = !hints.input;
273         LOG("WM_HINTS.input changed to \"%d\"\n", hints.input);
274     }
275
276     if (urgency_hint != NULL)
277         *urgency_hint = (xcb_icccm_wm_hints_get_urgency(&hints) != 0);
278
279     free(prop);
280 }
281
282 /*
283  * Updates the MOTIF_WM_HINTS. The container's border style should be set to
284  * `motif_border_style' if border style is not BS_NORMAL.
285  *
286  * i3 only uses this hint when it specifies a window should have no
287  * title bar, or no decorations at all, which is how most window managers
288  * handle it.
289  *
290  * The EWMH spec intended to replace Motif hints with _NET_WM_WINDOW_TYPE, but
291  * it is still in use by popular widget toolkits such as GTK+ and Java AWT.
292  *
293  */
294 void window_update_motif_hints(i3Window *win, xcb_get_property_reply_t *prop, border_style_t *motif_border_style) {
295 /* This implementation simply mirrors Gnome's Metacity. Official
296      * documentation of this hint is nowhere to be found.
297      * For more information see:
298      * https://people.gnome.org/~tthurman/docs/metacity/xprops_8h-source.html
299      * http://stackoverflow.com/questions/13787553/detect-if-a-x11-window-has-decorations
300      */
301 #define MWM_HINTS_DECORATIONS (1 << 1)
302 #define MWM_DECOR_ALL (1 << 0)
303 #define MWM_DECOR_BORDER (1 << 1)
304 #define MWM_DECOR_TITLE (1 << 3)
305
306     if (motif_border_style != NULL)
307         *motif_border_style = BS_NORMAL;
308
309     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
310         FREE(prop);
311         return;
312     }
313
314     /* The property consists of an array of 5 uint64_t's. The first value is a bit
315      * mask of what properties the hint will specify. We are only interested in
316      * MWM_HINTS_DECORATIONS because it indicates that the second value of the
317      * array tells us which decorations the window should have, each flag being
318      * a particular decoration. */
319     uint64_t *motif_hints = (uint64_t *)xcb_get_property_value(prop);
320
321     if (motif_border_style != NULL && motif_hints[0] & MWM_HINTS_DECORATIONS) {
322         if (motif_hints[1] & MWM_DECOR_ALL || motif_hints[1] & MWM_DECOR_TITLE)
323             *motif_border_style = BS_NORMAL;
324         else if (motif_hints[1] & MWM_DECOR_BORDER)
325             *motif_border_style = BS_PIXEL;
326         else
327             *motif_border_style = BS_NONE;
328     }
329
330     FREE(prop);
331
332 #undef MWM_HINTS_DECORATIONS
333 #undef MWM_DECOR_ALL
334 #undef MWM_DECOR_BORDER
335 #undef MWM_DECOR_TITLE
336 }