]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
Added focus_follows_mouse config option
[i3/i3] / src / handlers.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <stdio.h>
12 #include <assert.h>
13 #include <string.h>
14 #include <stdlib.h>
15 #include <time.h>
16
17 #include <xcb/xcb.h>
18 #include <xcb/xcb_atom.h>
19 #include <xcb/xcb_icccm.h>
20
21 #include <X11/XKBlib.h>
22
23 #include "i3.h"
24 #include "debug.h"
25 #include "table.h"
26 #include "layout.h"
27 #include "commands.h"
28 #include "data.h"
29 #include "xcb.h"
30 #include "util.h"
31 #include "xinerama.h"
32 #include "config.h"
33 #include "queue.h"
34 #include "resize.h"
35 #include "client.h"
36 #include "manage.h"
37 #include "floating.h"
38 #include "workspace.h"
39 #include "log.h"
40 #include "container.h"
41
42 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
43    since it’d trigger an infinite loop of switching between the different windows when
44    changing workspaces */
45 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
46
47 static void add_ignore_event(const int sequence) {
48         struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
49
50         event->sequence = sequence;
51         event->added = time(NULL);
52
53         SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
54 }
55
56 /*
57  * Checks if the given sequence is ignored and returns true if so.
58  *
59  */
60 static bool event_is_ignored(const int sequence) {
61         struct Ignore_Event *event;
62         time_t now = time(NULL);
63         for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
64                 if ((now - event->added) > 5) {
65                         struct Ignore_Event *save = event;
66                         event = SLIST_NEXT(event, ignore_events);
67                         SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
68                         free(save);
69                 } else event = SLIST_NEXT(event, ignore_events);
70         }
71
72         SLIST_FOREACH(event, &ignore_events, ignore_events) {
73                 if (event->sequence == sequence) {
74                         SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
75                         free(event);
76                         return true;
77                 }
78         }
79
80         return false;
81 }
82
83 /*
84  * Due to bindings like Mode_switch + <a>, we need to bind some keys in XCB_GRAB_MODE_SYNC.
85  * Therefore, we just replay all key presses.
86  *
87  */
88 int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event) {
89         xcb_allow_events(conn, XCB_ALLOW_REPLAY_KEYBOARD, event->time);
90         xcb_flush(conn);
91         return 1;
92 }
93
94 /*
95  * There was a key press. We compare this key code with our bindings table and pass
96  * the bound action to parse_command().
97  *
98  */
99 int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
100         DLOG("Keypress %d, state raw = %d\n", event->detail, event->state);
101
102         /* Remove the numlock bit, all other bits are modifiers we can bind to */
103         uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
104         DLOG("(removed numlock, state = %d)\n", state_filtered);
105         /* Only use the lower 8 bits of the state (modifier masks) so that mouse
106          * button masks are filtered out */
107         state_filtered &= 0xFF;
108         DLOG("(removed upper 8 bits, state = %d)\n", state_filtered);
109
110         if (xkb_supported) {
111                 /* We need to get the keysym group (There are group 1 to group 4, each holding
112                    two keysyms (without shift and with shift) using Xkb because X fails to
113                    provide them reliably (it works in Xephyr, it does not in real X) */
114                 XkbStateRec state;
115                 if (XkbGetState(xkbdpy, XkbUseCoreKbd, &state) == Success && (state.group+1) == 2)
116                         state_filtered |= BIND_MODE_SWITCH;
117         }
118
119         DLOG("(checked mode_switch, state %d)\n", state_filtered);
120
121         /* Find the binding */
122         Binding *bind;
123         TAILQ_FOREACH(bind, bindings, bindings) {
124                 /* First compare the modifiers */
125                 if (bind->mods != state_filtered)
126                         continue;
127
128                 /* If a symbol was specified by the user, we need to look in
129                  * the array of translated keycodes for the event’s keycode */
130                 if (bind->symbol != NULL) {
131                         if (memmem(bind->translated_to,
132                                    bind->number_keycodes * sizeof(xcb_keycode_t),
133                                    &(event->detail), sizeof(xcb_keycode_t)) != NULL)
134                                 break;
135                 } else {
136                         /* This case is easier: The user specified a keycode */
137                         if (bind->keycode == event->detail)
138                                 break;
139                 }
140         }
141
142         /* No match? Then it was an actively grabbed key, that is with Mode_switch, and
143            the user did not press Mode_switch, so just pass it… */
144         if (bind == TAILQ_END(bindings)) {
145                 xcb_allow_events(conn, ReplayKeyboard, event->time);
146                 xcb_flush(conn);
147                 return 1;
148         }
149
150         parse_command(conn, bind->command);
151         if (state_filtered & BIND_MODE_SWITCH) {
152                 DLOG("Mode_switch -> allow_events(SyncKeyboard)\n");
153                 xcb_allow_events(conn, SyncKeyboard, event->time);
154                 xcb_flush(conn);
155         }
156         return 1;
157 }
158
159 /*
160  * Called with coordinates of an enter_notify event or motion_notify event
161  * to check if the user crossed virtual screen boundaries and adjust the
162  * current workspace, if so.
163  *
164  */
165 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
166         i3Screen *screen;
167
168         if ((screen = get_screen_containing(x, y)) == NULL) {
169                 ELOG("ERROR: No such screen\n");
170                 return;
171         }
172         if (screen == c_ws->screen)
173                 return;
174
175         c_ws->current_row = current_row;
176         c_ws->current_col = current_col;
177         c_ws = screen->current_workspace;
178         current_row = c_ws->current_row;
179         current_col = c_ws->current_col;
180         DLOG("We're now on virtual screen number %d\n", screen->num);
181 }
182
183 /*
184  * When the user moves the mouse pointer onto a window, this callback gets called.
185  *
186  */
187 int handle_enter_notify(void *ignored, xcb_connection_t *conn, xcb_enter_notify_event_t *event) {
188         DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n", event->event, event->mode, event->detail, event->sequence);
189         if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
190                 DLOG("This was not a normal notify, ignoring\n");
191                 return 1;
192         }
193         /* Some events are not interesting, because they were not generated actively by the
194            user, but by reconfiguration of windows */
195         if (event_is_ignored(event->sequence))
196                 return 1;
197
198         /* This was either a focus for a client’s parent (= titlebar)… */
199         Client *client = table_get(&by_parent, event->event);
200         /* …or the client itself */
201         if (client == NULL)
202                 client = table_get(&by_child, event->event);
203
204         /* Check for stack windows */
205         if (client == NULL) {
206                 struct Stack_Window *stack_win;
207                 SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
208                         if (stack_win->window == event->event) {
209                                 client = stack_win->container->currently_focused;
210                                 break;
211                         }
212         }
213
214
215         /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
216         if (client == NULL) {
217                 DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
218                 check_crossing_screen_boundary(event->root_x, event->root_y);
219                 return 1;
220         }
221
222         /* Do plausibility checks: This event may be useless for us if it occurs on a window
223            which is in a stacked container but not the focused one */
224         if (client->container != NULL &&
225             client->container->mode == MODE_STACK &&
226             client->container->currently_focused != client) {
227                 DLOG("Plausibility check says: no\n");
228                 return 1;
229         }
230
231         if (client->workspace != c_ws && client->workspace->screen == c_ws->screen) {
232                 /* This can happen when a client gets assigned to a different workspace than
233                  * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
234                  * an enter_notify will follow. */
235                 DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
236                 return 1;
237         }
238
239         if (config.focus_follows_mouse)
240                 set_focus(conn, client, false);
241
242         return 1;
243 }
244
245 /*
246  * When the user moves the mouse but does not change the active window
247  * (e.g. when having no windows opened but moving mouse on the root screen
248  * and crossing virtual screen boundaries), this callback gets called.
249  *
250  */
251 int handle_motion_notify(void *ignored, xcb_connection_t *conn, xcb_motion_notify_event_t *event) {
252         /* Skip events where the pointer was over a child window, we are only
253          * interested in events on the root window. */
254         if (event->child != 0)
255                 return 1;
256
257         check_crossing_screen_boundary(event->root_x, event->root_y);
258
259         return 1;
260 }
261
262 /*
263  * Called when the keyboard mapping changes (for example by using Xmodmap),
264  * we need to update our key bindings then (re-translate symbols).
265  *
266  */
267 int handle_mapping_notify(void *ignored, xcb_connection_t *conn, xcb_mapping_notify_event_t *event) {
268         if (event->request != XCB_MAPPING_KEYBOARD &&
269             event->request != XCB_MAPPING_MODIFIER)
270                 return 0;
271
272         DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
273         xcb_refresh_keyboard_mapping(keysyms, event);
274
275         xcb_get_numlock_mask(conn);
276
277         ungrab_all_keys(conn);
278         grab_all_keys(conn);
279
280         return 0;
281 }
282
283 /*
284  * A new window appeared on the screen (=was mapped), so let’s manage it.
285  *
286  */
287 int handle_map_request(void *prophs, xcb_connection_t *conn, xcb_map_request_event_t *event) {
288         xcb_get_window_attributes_cookie_t cookie;
289
290         cookie = xcb_get_window_attributes_unchecked(conn, event->window);
291
292         DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
293         add_ignore_event(event->sequence);
294
295         manage_window(prophs, conn, event->window, cookie, false);
296         return 1;
297 }
298
299 /*
300  * Configure requests are received when the application wants to resize windows on their own.
301  *
302  * We generate a synthethic configure notify event to signalize the client its "new" position.
303  *
304  */
305 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
306         DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
307             event->window, event->x, event->y, event->width, event->height);
308
309         Client *client = table_get(&by_child, event->window);
310         if (client == NULL) {
311                 uint32_t mask = 0;
312                 uint32_t values[7];
313                 int c = 0;
314 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
315                 if (event->value_mask & mask_member) { \
316                         mask |= mask_member; \
317                         values[c++] = event->event_member; \
318                 } \
319 } while (0)
320
321                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
322                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
323                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
324                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
325                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
326                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
327                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
328
329                 xcb_configure_window(conn, event->window, mask, values);
330                 xcb_flush(conn);
331
332                 return 1;
333         }
334
335         if (client->fullscreen) {
336                 DLOG("Client is in fullscreen mode\n");
337
338                 Rect child_rect = client->workspace->rect;
339                 child_rect.x = child_rect.y = 0;
340                 fake_configure_notify(conn, child_rect, client->child);
341
342                 return 1;
343         }
344
345         /* Floating clients can be reconfigured */
346         if (client_is_floating(client)) {
347                 i3Font *font = load_font(conn, config.font);
348                 int mode = (client->container != NULL ? client->container->mode : MODE_DEFAULT);
349
350                 if (event->value_mask & XCB_CONFIG_WINDOW_X)
351                         client->rect.x = event->x;
352                 if (event->value_mask & XCB_CONFIG_WINDOW_Y)
353                         client->rect.y = event->y;
354                 if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
355                         if (mode == MODE_STACK || mode == MODE_TABBED) {
356                                 client->rect.width = event->width + 2 + 2;
357                         } else {
358                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
359                                         client->rect.width = event->width;
360                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
361                                         client->rect.width = event->width + (1 + 1);
362                                 else client->rect.width = event->width + (2 + 2);
363                         }
364                 }
365                 if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
366                         if (mode == MODE_STACK || mode == MODE_TABBED) {
367                                 client->rect.height = event->height + 2;
368                         } else {
369                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
370                                         client->rect.height = event->height;
371                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
372                                         client->rect.height = event->height + (1 + 1);
373                                 else client->rect.height = event->height + (font->height + 2 + 2) + 2;
374                         }
375                 }
376
377                 DLOG("Accepted new position/size for floating client: (%d, %d) size %d x %d\n",
378                     client->rect.x, client->rect.y, client->rect.width, client->rect.height);
379
380                 /* Push the new position/size to X11 */
381                 reposition_client(conn, client);
382                 resize_client(conn, client);
383                 xcb_flush(conn);
384
385                 return 1;
386         }
387
388         /* Dock clients can be reconfigured in their height */
389         if (client->dock) {
390                 DLOG("Reconfiguring height of this dock client\n");
391
392                 if (!(event->value_mask & XCB_CONFIG_WINDOW_HEIGHT)) {
393                         DLOG("Ignoring configure request, no height given\n");
394                         return 1;
395                 }
396
397                 client->desired_height = event->height;
398                 render_workspace(conn, c_ws->screen, c_ws);
399                 xcb_flush(conn);
400
401                 return 1;
402         }
403
404         if (client->fullscreen) {
405                 DLOG("Client is in fullscreen mode\n");
406
407                 Rect child_rect = client->container->workspace->rect;
408                 child_rect.x = child_rect.y = 0;
409                 fake_configure_notify(conn, child_rect, client->child);
410
411                 return 1;
412         }
413
414         fake_absolute_configure_notify(conn, client);
415
416         return 1;
417 }
418
419 /*
420  * Configuration notifies are only handled because we need to set up ignore for the following
421  * enter notify events
422  *
423  */
424 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
425         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
426
427         /* We ignore this sequence twice because events for child and frame should be ignored */
428         add_ignore_event(event->sequence);
429         add_ignore_event(event->sequence);
430
431         if (event->event == root) {
432                 DLOG("event->x = %d, ->y = %d, ->width = %d, ->height = %d\n", event->x, event->y, event->width, event->height);
433                 DLOG("reconfigure of the root window, need to xinerama\n");
434                 /* FIXME: Somehow, this is occuring too often. Therefore, we check for 0/0,
435                    but is there a better way? */
436                 if (event->x == 0 && event->y == 0)
437                         xinerama_requery_screens(conn);
438                 return 1;
439         }
440
441         return 1;
442 }
443
444 /*
445  * Our window decorations were unmapped. That means, the window will be killed now,
446  * so we better clean up before.
447  *
448  */
449 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
450         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
451
452         add_ignore_event(event->sequence);
453
454         Client *client = table_get(&by_child, event->window);
455         /* First, we need to check if the client is awaiting an unmap-request which
456            was generated by us reparenting the window. In that case, we just ignore it. */
457         if (client != NULL && client->awaiting_useless_unmap) {
458                 client->awaiting_useless_unmap = false;
459                 return 1;
460         }
461
462         DLOG("event->window = %08x, event->event = %08x\n", event->window, event->event);
463         DLOG("UnmapNotify for 0x%08x (received from 0x%08x)\n", event->window, event->event);
464         if (client == NULL) {
465                 DLOG("not a managed window. Ignoring.\n");
466
467                 /* This was most likely the destroyed frame of a client which is
468                  * currently being unmapped, so we add this sequence (again!) to
469                  * the ignore list (enter_notify events will get sent for both,
470                  * the child and its frame). */
471                 add_ignore_event(event->sequence);
472
473                 return 0;
474         }
475
476         client = table_remove(&by_child, event->window);
477
478         /* If this was the fullscreen client, we need to unset it */
479         if (client->fullscreen)
480                 client->workspace->fullscreen_client = NULL;
481
482         /* Clients without a container are either floating or dock windows */
483         if (client->container != NULL) {
484                 Container *con = client->container;
485
486                 /* Remove the client from the list of clients */
487                 client_remove_from_container(conn, client, con, true);
488
489                 /* Set focus to the last focused client in this container */
490                 con->currently_focused = get_last_focused_client(conn, con, NULL);
491
492                 /* Only if this is the active container, we need to really change focus */
493                 if ((con->currently_focused != NULL) && ((con == CUR_CELL) || client->fullscreen))
494                         set_focus(conn, con->currently_focused, true);
495         } else if (client_is_floating(client)) {
496                 DLOG("Removing from floating clients\n");
497                 TAILQ_REMOVE(&(client->workspace->floating_clients), client, floating_clients);
498                 SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
499         }
500
501         if (client->dock) {
502                 DLOG("Removing from dock clients\n");
503                 SLIST_REMOVE(&(client->workspace->screen->dock_clients), client, Client, dock_clients);
504         }
505
506         DLOG("child of 0x%08x.\n", client->frame);
507         xcb_reparent_window(conn, client->child, root, 0, 0);
508
509         client_unmap(conn, client);
510
511         xcb_destroy_window(conn, client->frame);
512         xcb_flush(conn);
513         table_remove(&by_parent, client->frame);
514
515         if (client->container != NULL) {
516                 Workspace *workspace = client->container->workspace;
517                 cleanup_table(conn, workspace);
518                 fix_colrowspan(conn, workspace);
519         }
520
521         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
522         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
523         bool workspace_active = false;
524         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
525
526         /* If this workspace is currently active, we don’t delete it */
527         i3Screen *screen;
528         TAILQ_FOREACH(screen, virtual_screens, screens)
529                 if (screen->current_workspace == client->workspace) {
530                         workspace_active = true;
531                         workspace_empty = false;
532                         break;
533                 }
534
535         if (workspace_empty)
536                 client->workspace->screen = NULL;
537
538         /* Remove the urgency flag if set */
539         client->urgent = false;
540         workspace_update_urgent_flag(client->workspace);
541
542         FREE(client->window_class);
543         FREE(client->name);
544         free(client);
545
546         render_layout(conn);
547
548         /* Ensure the focus is set to the next client in the focus stack or to
549          * the screen itself (if we do not focus the screen, it can happen that
550          * the focus is "nowhere" and thus keypress events will not be received
551          * by i3, thus the user cannot use any hotkeys). */
552         if (workspace_active) {
553                 if (to_focus != NULL)
554                         set_focus(conn, to_focus, true);
555                 else {
556                         DLOG("Restoring focus to root screen\n");
557                         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
558                         xcb_flush(conn);
559                 }
560         }
561
562         return 1;
563 }
564
565 /*
566  * Called when a window changes its title
567  *
568  */
569 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
570                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
571         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
572                 DLOG("_NET_WM_NAME not specified, not changing\n");
573                 return 1;
574         }
575         Client *client = table_get(&by_child, window);
576         if (client == NULL)
577                 return 1;
578
579         /* Save the old pointer to make the update atomic */
580         char *new_name;
581         int new_len;
582         asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop));
583         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
584         char *ucs2_name = convert_utf8_to_ucs2(new_name, &new_len);
585         LOG("_NET_WM_NAME changed to \"%s\"\n", new_name);
586         free(new_name);
587
588         /* Check if they are the same and don’t update if so.
589            Note the use of new_len * 2 to check all bytes as each glyph takes 2 bytes.
590            Also note the use of memcmp() instead of strncmp() because the latter stops on nullbytes,
591            but UCS-2 uses nullbytes to fill up glyphs which only use one byte. */
592         if ((new_len == client->name_len) &&
593             (client->name != NULL) &&
594             (memcmp(client->name, ucs2_name, new_len * 2) == 0)) {
595                 free(ucs2_name);
596                 return 1;
597         }
598
599         char *old_name = client->name;
600         client->name = ucs2_name;
601         client->name_len = new_len;
602         client->uses_net_wm_name = true;
603
604         FREE(old_name);
605
606         /* If the client is a dock window, we don’t need to render anything */
607         if (client->dock)
608                 return 1;
609
610         int mode = container_mode(client->container, true);
611         if (mode == MODE_STACK || mode == MODE_TABBED)
612                 render_container(conn, client->container);
613         else decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
614         xcb_flush(conn);
615
616         return 1;
617 }
618
619 /*
620  * We handle legacy window names (titles) which are in COMPOUND_TEXT encoding. However, we
621  * just pass them along, so when containing non-ASCII characters, those will be rendering
622  * incorrectly. In order to correctly render unicode window titles in i3, an application
623  * has to set _NET_WM_NAME, which is in UTF-8 encoding.
624  *
625  * On every update, a message is put out to the user, so he may improve the situation and
626  * update applications which display filenames in their title to correctly use
627  * _NET_WM_NAME and therefore support unicode.
628  *
629  */
630 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
631                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
632         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
633                 DLOG("prop == NULL\n");
634                 return 1;
635         }
636         Client *client = table_get(&by_child, window);
637         if (client == NULL)
638                 return 1;
639
640         /* Client capable of _NET_WM_NAME, ignore legacy name changes */
641         if (client->uses_net_wm_name)
642                 return 1;
643
644         /* Save the old pointer to make the update atomic */
645         char *new_name;
646         if (asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop)) == -1) {
647                 perror("Could not get old name");
648                 DLOG("Could not get old name\n");
649                 return 1;
650         }
651         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
652         LOG("WM_NAME changed to \"%s\"\n", new_name);
653
654         /* Check if they are the same and don’t update if so. */
655         if (client->name != NULL &&
656             strlen(new_name) == strlen(client->name) &&
657             strcmp(client->name, new_name) == 0) {
658                 free(new_name);
659                 return 1;
660         }
661
662         LOG("Using legacy window title. Note that in order to get Unicode window titles in i3, "
663             "the application has to set _NET_WM_NAME which is in UTF-8 encoding.\n");
664
665         char *old_name = client->name;
666         client->name = new_name;
667         client->name_len = -1;
668
669         if (old_name != NULL)
670                 free(old_name);
671
672         /* If the client is a dock window, we don’t need to render anything */
673         if (client->dock)
674                 return 1;
675
676         if (client->container != NULL &&
677             (client->container->mode == MODE_STACK ||
678              client->container->mode == MODE_TABBED))
679                 render_container(conn, client->container);
680         else decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
681         xcb_flush(conn);
682
683         return 1;
684 }
685
686 /*
687  * Updates the client’s WM_CLASS property
688  *
689  */
690 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
691                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
692         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
693                 DLOG("prop == NULL\n");
694                 return 1;
695         }
696         Client *client = table_get(&by_child, window);
697         if (client == NULL)
698                 return 1;
699         char *new_class;
700         if (asprintf(&new_class, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop)) == -1) {
701                 perror("Could not get window class");
702                 DLOG("Could not get window class\n");
703                 return 1;
704         }
705
706         LOG("WM_CLASS changed to %s\n", new_class);
707         char *old_class = client->window_class;
708         client->window_class = new_class;
709         FREE(old_class);
710
711         if (!client->initialized)
712                 return 1;
713
714         if (strcmp(new_class, "tools") == 0 || strcmp(new_class, "Dialog") == 0) {
715                 DLOG("tool/dialog window, should we put it floating?\n");
716                 if (client->floating == FLOATING_AUTO_OFF)
717                         toggle_floating_mode(conn, client, true);
718         }
719
720         return 1;
721 }
722
723 /*
724  * Expose event means we should redraw our windows (= title bar)
725  *
726  */
727 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
728         /* event->count is the number of minimum remaining expose events for this window, so we
729            skip all events but the last one */
730         if (event->count != 0)
731                 return 1;
732         DLOG("window = %08x\n", event->window);
733
734         Client *client = table_get(&by_parent, event->window);
735         if (client == NULL) {
736                 /* There was no client in the table, so this is probably an expose event for
737                    one of our stack_windows. */
738                 struct Stack_Window *stack_win;
739                 SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
740                         if (stack_win->window == event->window) {
741                                 render_container(conn, stack_win->container);
742                                 return 1;
743                         }
744
745                 /* …or one of the bars? */
746                 i3Screen *screen;
747                 TAILQ_FOREACH(screen, virtual_screens, screens)
748                         if (screen->bar == event->window)
749                                 render_layout(conn);
750                 return 1;
751         }
752
753         if (client->dock)
754                 return 1;
755
756         if (container_mode(client->container, true) == MODE_DEFAULT)
757                 decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
758         else {
759                 uint32_t background_color;
760                 if (client->urgent)
761                         background_color = config.client.urgent.background;
762                 /* Distinguish if the window is currently focused… */
763                 else if (CUR_CELL != NULL && CUR_CELL->currently_focused == client)
764                         background_color = config.client.focused.background;
765                 /* …or if it is the focused window in a not focused container */
766                 else background_color = config.client.focused_inactive.background;
767
768                 /* Set foreground color to current focused color, line width to 2 */
769                 uint32_t values[] = {background_color, 2};
770                 xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
771
772                 /* Draw the border, the ±1 is for line width = 2 */
773                 xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
774                                         {1, client->rect.height-1},                       /* left bottom edge */
775                                         {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
776                                         {client->rect.width-1, 0}};                       /* right upper edge */
777                 xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
778
779                 /* Draw a black background */
780                 xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
781                 if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
782                         xcb_rectangle_t crect = {1, 0, client->rect.width - (1 + 1), client->rect.height - 1};
783                         xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
784                 } else {
785                         xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
786                         xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
787                 }
788         }
789         xcb_flush(conn);
790         return 1;
791 }
792
793 /*
794  * Handle client messages (EWMH)
795  *
796  */
797 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
798         if (event->type == atoms[_NET_WM_STATE]) {
799                 if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
800                         return 0;
801
802                 Client *client = table_get(&by_child, event->window);
803                 if (client == NULL)
804                         return 0;
805
806                 /* Check if the fullscreen state should be toggled */
807                 if ((client->fullscreen &&
808                      (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
809                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
810                     (!client->fullscreen &&
811                      (event->data.data32[0] == _NET_WM_STATE_ADD ||
812                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
813                         client_toggle_fullscreen(conn, client);
814         } else {
815                 ELOG("unhandled clientmessage\n");
816                 return 0;
817         }
818
819         return 1;
820 }
821
822 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
823                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
824         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
825          before changing this property. */
826         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
827         return 0;
828 }
829
830 /*
831  * Handles the size hints set by a window, but currently only the part necessary for displaying
832  * clients proportionally inside their frames (mplayer for example)
833  *
834  * See ICCCM 4.1.2.3 for more details
835  *
836  */
837 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
838                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
839         Client *client = table_get(&by_child, window);
840         if (client == NULL) {
841                 DLOG("Received WM_SIZE_HINTS for unknown client\n");
842                 return 1;
843         }
844         xcb_size_hints_t size_hints;
845
846         CLIENT_LOG(client);
847
848         /* If the hints were already in this event, use them, if not, request them */
849         if (reply != NULL)
850                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
851         else
852                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
853
854         if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
855                 // TODO: Minimum size is not yet implemented
856                 //LOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
857         }
858
859         if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
860                 bool changed = false;
861
862                 if (size_hints.width_inc > 0)
863                         if (client->width_increment != size_hints.width_inc) {
864                                 client->width_increment = size_hints.width_inc;
865                                 changed = true;
866                         }
867                 if (size_hints.height_inc > 0)
868                         if (client->height_increment != size_hints.height_inc) {
869                                 client->height_increment = size_hints.height_inc;
870                                 changed = true;
871                         }
872
873                 if (changed) {
874                         resize_client(conn, client);
875                         xcb_flush(conn);
876                 }
877         }
878
879         int base_width = 0, base_height = 0;
880
881         /* base_width/height are the desired size of the window.
882            We check if either the program-specified size or the program-specified
883            min-size is available */
884         if (size_hints.flags & XCB_SIZE_HINT_P_SIZE) {
885                 base_width = size_hints.base_width;
886                 base_height = size_hints.base_height;
887         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
888                 base_width = size_hints.min_width;
889                 base_height = size_hints.min_height;
890         }
891
892         if (base_width != client->base_width ||
893             base_height != client->base_height) {
894                 client->base_width = base_width;
895                 client->base_height = base_height;
896                 DLOG("client's base_height changed to %d\n", base_height);
897                 if (client->fullscreen)
898                         DLOG("Not resizing client, it is in fullscreen mode\n");
899                 else
900                         resize_client(conn, client);
901         }
902
903         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
904         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
905             (size_hints.min_aspect_num <= 0) ||
906             (size_hints.min_aspect_den <= 0)) {
907                 return 1;
908         }
909
910         double width = client->rect.width - base_width;
911         double height = client->rect.height - base_height;
912         /* Convert numerator/denominator to a double */
913         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
914         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
915
916         DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
917         DLOG("width = %f, height = %f\n", width, height);
918
919         /* Sanity checks, this is user-input, in a way */
920         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
921                 return 1;
922
923         /* Check if we need to set proportional_* variables using the correct ratio */
924         if ((width / height) < min_aspect) {
925                 client->proportional_width = width;
926                 client->proportional_height = width / min_aspect;
927         } else if ((width / height) > max_aspect) {
928                 client->proportional_width = width;
929                 client->proportional_height = width / max_aspect;
930         } else return 1;
931
932         client->force_reconfigure = true;
933
934         if (client->container != NULL) {
935                 render_container(conn, client->container);
936                 xcb_flush(conn);
937         }
938
939         return 1;
940 }
941
942 /*
943  * Handles the WM_HINTS property for extracting the urgency state of the window.
944  *
945  */
946 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
947                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
948         Client *client = table_get(&by_child, window);
949         if (client == NULL) {
950                 DLOG("Received WM_HINTS for unknown client\n");
951                 return 1;
952         }
953         xcb_wm_hints_t hints;
954
955         if (reply != NULL) {
956                 if (!xcb_get_wm_hints_from_reply(&hints, reply))
957                         return 1;
958         } else {
959                 if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, client->child), &hints, NULL))
960                         return 1;
961         }
962
963         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
964         if (!client->urgent && client == last_focused) {
965                 DLOG("Ignoring urgency flag for current client\n");
966                 return 1;
967         }
968
969         /* Update the flag on the client directly */
970         client->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
971         CLIENT_LOG(client);
972         LOG("Urgency flag changed to %d\n", client->urgent);
973
974         workspace_update_urgent_flag(client->workspace);
975         redecorate_window(conn, client);
976
977         /* If the workspace this client is on is not visible, we need to redraw
978          * the workspace bar */
979         if (!workspace_is_visible(client->workspace)) {
980                 i3Screen *screen = client->workspace->screen;
981                 render_workspace(conn, screen, screen->current_workspace);
982                 xcb_flush(conn);
983         }
984
985         return 1;
986 }
987
988 /*
989  * Handles the transient for hints set by a window, signalizing that this window is a popup window
990  * for some other window.
991  *
992  * See ICCCM 4.1.2.6 for more details
993  *
994  */
995 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
996                          xcb_atom_t name, xcb_get_property_reply_t *reply) {
997         Client *client = table_get(&by_child, window);
998         if (client == NULL) {
999                 DLOG("No such client\n");
1000                 return 1;
1001         }
1002
1003         xcb_window_t transient_for;
1004
1005         if (reply != NULL) {
1006                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
1007                         return 1;
1008         } else {
1009                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
1010                                                     &transient_for, NULL))
1011                         return 1;
1012         }
1013
1014         if (client->floating == FLOATING_AUTO_OFF) {
1015                 DLOG("This is a popup window, putting into floating\n");
1016                 toggle_floating_mode(conn, client, true);
1017         }
1018
1019         return 1;
1020 }
1021
1022 /*
1023  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
1024  * toolwindow (or similar) and to which window it belongs (logical parent).
1025  *
1026  */
1027 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1028                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
1029         if (prop == NULL) {
1030                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
1031                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
1032                 if (prop == NULL)
1033                         return 1;
1034         }
1035
1036         Client *client = table_get(&by_child, window);
1037         if (client == NULL)
1038                 return 1;
1039
1040         xcb_window_t *leader = xcb_get_property_value(prop);
1041         if (leader == NULL || *leader == 0)
1042                 return 1;
1043
1044         DLOG("Client leader changed to %08x\n", *leader);
1045
1046         client->leader = *leader;
1047
1048         return 1;
1049 }