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