]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
Refactor workspaces to be stored in a TAILQ instead of an array
[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         if (client->fullscreen) {
365                 LOG("Client is in fullscreen mode\n");
366
367                 Rect child_rect = client->container->workspace->rect;
368                 child_rect.x = child_rect.y = 0;
369                 fake_configure_notify(conn, child_rect, client->child);
370
371                 return 1;
372         }
373
374         fake_absolute_configure_notify(conn, client);
375
376         return 1;
377 }
378
379 /*
380  * Configuration notifies are only handled because we need to set up ignore for the following
381  * enter notify events
382  *
383  */
384 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
385         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
386
387         /* We ignore this sequence twice because events for child and frame should be ignored */
388         add_ignore_event(event->sequence);
389         add_ignore_event(event->sequence);
390
391         if (event->event == root) {
392                 LOG("event->x = %d, ->y = %d, ->width = %d, ->height = %d\n", event->x, event->y, event->width, event->height);
393                 LOG("reconfigure of the root window, need to xinerama\n");
394                 /* FIXME: Somehow, this is occuring too often. Therefore, we check for 0/0,
395                    but is there a better way? */
396                 if (event->x == 0 && event->y == 0)
397                         xinerama_requery_screens(conn);
398                 return 1;
399         }
400
401         return 1;
402 }
403
404 /*
405  * Our window decorations were unmapped. That means, the window will be killed now,
406  * so we better clean up before.
407  *
408  */
409 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
410         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
411
412         add_ignore_event(event->sequence);
413
414         Client *client = table_get(&by_child, event->window);
415         /* First, we need to check if the client is awaiting an unmap-request which
416            was generated by us reparenting the window. In that case, we just ignore it. */
417         if (client != NULL && client->awaiting_useless_unmap) {
418                 client->awaiting_useless_unmap = false;
419                 return 1;
420         }
421
422         LOG("event->window = %08x, event->event = %08x\n", event->window, event->event);
423         LOG("UnmapNotify for 0x%08x (received from 0x%08x)\n", event->window, event->event);
424         if (client == NULL) {
425                 LOG("not a managed window. Ignoring.\n");
426
427                 /* This was most likely the destroyed frame of a client which is
428                  * currently being unmapped, so we add this sequence (again!) to
429                  * the ignore list (enter_notify events will get sent for both,
430                  * the child and its frame). */
431                 add_ignore_event(event->sequence);
432
433                 return 0;
434         }
435
436         client = table_remove(&by_child, event->window);
437
438         /* If this was the fullscreen client, we need to unset it */
439         if (client->fullscreen)
440                 client->workspace->fullscreen_client = NULL;
441
442         /* Clients without a container are either floating or dock windows */
443         if (client->container != NULL) {
444                 Container *con = client->container;
445
446                 /* Remove the client from the list of clients */
447                 client_remove_from_container(conn, client, con, true);
448
449                 /* Set focus to the last focused client in this container */
450                 con->currently_focused = get_last_focused_client(conn, con, NULL);
451
452                 /* Only if this is the active container, we need to really change focus */
453                 if ((con->currently_focused != NULL) && ((con == CUR_CELL) || client->fullscreen))
454                         set_focus(conn, con->currently_focused, true);
455         } else if (client_is_floating(client)) {
456                 LOG("Removing from floating clients\n");
457                 TAILQ_REMOVE(&(client->workspace->floating_clients), client, floating_clients);
458                 SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
459         }
460
461         if (client->dock) {
462                 LOG("Removing from dock clients\n");
463                 SLIST_REMOVE(&(client->workspace->screen->dock_clients), client, Client, dock_clients);
464         }
465
466         LOG("child of 0x%08x.\n", client->frame);
467         xcb_reparent_window(conn, client->child, root, 0, 0);
468
469         client_unmap(conn, client);
470
471         xcb_destroy_window(conn, client->frame);
472         xcb_flush(conn);
473         table_remove(&by_parent, client->frame);
474
475         if (client->container != NULL) {
476                 Workspace *workspace = client->container->workspace;
477                 cleanup_table(conn, workspace);
478                 fix_colrowspan(conn, workspace);
479         }
480
481         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
482         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
483         bool workspace_active = false;
484         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
485
486         /* If this workspace is currently active, we don’t delete it */
487         i3Screen *screen;
488         TAILQ_FOREACH(screen, virtual_screens, screens)
489                 if (screen->current_workspace == client->workspace) {
490                         workspace_active = true;
491                         workspace_empty = false;
492                         break;
493                 }
494
495         if (workspace_empty)
496                 client->workspace->screen = NULL;
497
498         FREE(client->window_class);
499         FREE(client->name);
500         free(client);
501
502         render_layout(conn);
503
504         /* Ensure the focus is set to the next client in the focus stack */
505         if (workspace_active && to_focus != NULL)
506                 set_focus(conn, to_focus, true);
507
508         return 1;
509 }
510
511 /*
512  * Called when a window changes its title
513  *
514  */
515 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
516                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
517         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
518                 LOG("_NET_WM_NAME not specified, not changing\n");
519                 return 1;
520         }
521         Client *client = table_get(&by_child, window);
522         if (client == NULL)
523                 return 1;
524
525         /* Save the old pointer to make the update atomic */
526         char *new_name;
527         int new_len;
528         asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop));
529         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
530         char *ucs2_name = convert_utf8_to_ucs2(new_name, &new_len);
531         LOG("_NET_WM_NAME changed to \"%s\"\n", new_name);
532         free(new_name);
533
534         /* Check if they are the same and don’t update if so.
535            Note the use of new_len * 2 to check all bytes as each glyph takes 2 bytes.
536            Also note the use of memcmp() instead of strncmp() because the latter stops on nullbytes,
537            but UCS-2 uses nullbytes to fill up glyphs which only use one byte. */
538         if ((new_len == client->name_len) &&
539             (client->name != NULL) &&
540             (memcmp(client->name, ucs2_name, new_len * 2) == 0)) {
541                 free(ucs2_name);
542                 return 1;
543         }
544
545         char *old_name = client->name;
546         client->name = ucs2_name;
547         client->name_len = new_len;
548         client->uses_net_wm_name = true;
549
550         FREE(old_name);
551
552         /* If the client is a dock window, we don’t need to render anything */
553         if (client->dock)
554                 return 1;
555
556         if (client->container != NULL &&
557             (client->container->mode == MODE_STACK ||
558              client->container->mode == MODE_TABBED))
559                 render_container(conn, client->container);
560         else decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
561         xcb_flush(conn);
562
563         return 1;
564 }
565
566 /*
567  * We handle legacy window names (titles) which are in COMPOUND_TEXT encoding. However, we
568  * just pass them along, so when containing non-ASCII characters, those will be rendering
569  * incorrectly. In order to correctly render unicode window titles in i3, an application
570  * has to set _NET_WM_NAME, which is in UTF-8 encoding.
571  *
572  * On every update, a message is put out to the user, so he may improve the situation and
573  * update applications which display filenames in their title to correctly use
574  * _NET_WM_NAME and therefore support unicode.
575  *
576  */
577 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
578                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
579         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
580                 LOG("prop == NULL\n");
581                 return 1;
582         }
583         Client *client = table_get(&by_child, window);
584         if (client == NULL)
585                 return 1;
586
587         /* Client capable of _NET_WM_NAME, ignore legacy name changes */
588         if (client->uses_net_wm_name)
589                 return 1;
590
591         /* Save the old pointer to make the update atomic */
592         char *new_name;
593         if (asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop)) == -1) {
594                 perror("Could not get old name");
595                 LOG("Could not get old name\n");
596                 return 1;
597         }
598         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
599         LOG("WM_NAME changed to \"%s\"\n", new_name);
600
601         /* Check if they are the same and don’t update if so. */
602         if (client->name != NULL &&
603             strlen(new_name) == strlen(client->name) &&
604             strcmp(client->name, new_name) == 0) {
605                 free(new_name);
606                 return 1;
607         }
608
609         LOG("Using legacy window title. Note that in order to get Unicode window titles in i3, "
610             "the application has to set _NET_WM_NAME which is in UTF-8 encoding.\n");
611
612         char *old_name = client->name;
613         client->name = new_name;
614         client->name_len = -1;
615
616         if (old_name != NULL)
617                 free(old_name);
618
619         /* If the client is a dock window, we don’t need to render anything */
620         if (client->dock)
621                 return 1;
622
623         if (client->container != NULL &&
624             (client->container->mode == MODE_STACK ||
625              client->container->mode == MODE_TABBED))
626                 render_container(conn, client->container);
627         else decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
628         xcb_flush(conn);
629
630         return 1;
631 }
632
633 /*
634  * Updates the client’s WM_CLASS property
635  *
636  */
637 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
638                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
639         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
640                 LOG("prop == NULL\n");
641                 return 1;
642         }
643         Client *client = table_get(&by_child, window);
644         if (client == NULL)
645                 return 1;
646         char *new_class;
647         if (asprintf(&new_class, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop)) == -1) {
648                 perror("Could not get window class");
649                 LOG("Could not get window class\n");
650                 return 1;
651         }
652
653         LOG("WM_CLASS changed to %s\n", new_class);
654         char *old_class = client->window_class;
655         client->window_class = new_class;
656         FREE(old_class);
657
658         if (!client->initialized)
659                 return 1;
660
661         if (strcmp(new_class, "tools") == 0 || strcmp(new_class, "Dialog") == 0) {
662                 LOG("tool/dialog window, should we put it floating?\n");
663                 if (client->floating == FLOATING_AUTO_OFF)
664                         toggle_floating_mode(conn, client, true);
665         }
666
667         return 1;
668 }
669
670 /*
671  * Expose event means we should redraw our windows (= title bar)
672  *
673  */
674 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
675         /* event->count is the number of minimum remaining expose events for this window, so we
676            skip all events but the last one */
677         if (event->count != 0)
678                 return 1;
679         LOG("window = %08x\n", event->window);
680
681         Client *client = table_get(&by_parent, event->window);
682         if (client == NULL) {
683                 /* There was no client in the table, so this is probably an expose event for
684                    one of our stack_windows. */
685                 struct Stack_Window *stack_win;
686                 SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
687                         if (stack_win->window == event->window) {
688                                 render_container(conn, stack_win->container);
689                                 return 1;
690                         }
691
692                 /* …or one of the bars? */
693                 i3Screen *screen;
694                 TAILQ_FOREACH(screen, virtual_screens, screens)
695                         if (screen->bar == event->window)
696                                 render_layout(conn);
697                 return 1;
698         }
699
700         if (client->dock)
701                 return 1;
702
703         if (client->container == NULL ||
704             (client->container->mode != MODE_STACK &&
705              client->container->mode != MODE_TABBED))
706                 decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
707         else {
708                 uint32_t background_color;
709                 if (client->urgent)
710                         background_color = config.client.urgent.background;
711                 /* Distinguish if the window is currently focused… */
712                 else if (CUR_CELL->currently_focused == client)
713                         background_color = config.client.focused.background;
714                 /* …or if it is the focused window in a not focused container */
715                 else background_color = config.client.focused_inactive.background;
716
717                 /* Set foreground color to current focused color, line width to 2 */
718                 uint32_t values[] = {background_color, 2};
719                 xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
720
721                 /* Draw the border, the ±1 is for line width = 2 */
722                 xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
723                                         {1, client->rect.height-1},                       /* left bottom edge */
724                                         {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
725                                         {client->rect.width-1, 0}};                       /* right upper edge */
726                 xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
727
728                 /* Draw a black background */
729                 xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
730                 xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
731                 xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
732         }
733         xcb_flush(conn);
734         return 1;
735 }
736
737 /*
738  * Handle client messages (EWMH)
739  *
740  */
741 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
742         if (event->type == atoms[_NET_WM_STATE]) {
743                 if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
744                         return 0;
745
746                 Client *client = table_get(&by_child, event->window);
747                 if (client == NULL)
748                         return 0;
749
750                 /* Check if the fullscreen state should be toggled */
751                 if ((client->fullscreen &&
752                      (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
753                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
754                     (!client->fullscreen &&
755                      (event->data.data32[0] == _NET_WM_STATE_ADD ||
756                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
757                         client_toggle_fullscreen(conn, client);
758         } else {
759                 LOG("unhandled clientmessage\n");
760                 return 0;
761         }
762
763         return 1;
764 }
765
766 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
767                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
768         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
769          before changing this property. */
770         LOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
771         return 0;
772 }
773
774 /*
775  * Handles the size hints set by a window, but currently only the part necessary for displaying
776  * clients proportionally inside their frames (mplayer for example)
777  *
778  * See ICCCM 4.1.2.3 for more details
779  *
780  */
781 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
782                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
783         Client *client = table_get(&by_child, window);
784         if (client == NULL) {
785                 LOG("Received WM_SIZE_HINTS for unknown client\n");
786                 return 1;
787         }
788         xcb_size_hints_t size_hints;
789
790         CLIENT_LOG(client);
791
792         /* If the hints were already in this event, use them, if not, request them */
793         if (reply != NULL)
794                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
795         else
796                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
797
798         if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
799                 // TODO: Minimum size is not yet implemented
800                 //LOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
801         }
802
803         if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
804                 bool changed = false;
805
806                 if (size_hints.width_inc > 0)
807                         if (client->width_increment != size_hints.width_inc) {
808                                 client->width_increment = size_hints.width_inc;
809                                 changed = true;
810                         }
811                 if (size_hints.height_inc > 0)
812                         if (client->height_increment != size_hints.height_inc) {
813                                 client->height_increment = size_hints.height_inc;
814                                 changed = true;
815                         }
816
817                 if (changed) {
818                         resize_client(conn, client);
819                         xcb_flush(conn);
820                 }
821         }
822
823         int base_width = 0, base_height = 0;
824
825         /* base_width/height are the desired size of the window.
826            We check if either the program-specified size or the program-specified
827            min-size is available */
828         if (size_hints.flags & XCB_SIZE_HINT_P_SIZE) {
829                 base_width = size_hints.base_width;
830                 base_height = size_hints.base_height;
831         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
832                 base_width = size_hints.min_width;
833                 base_height = size_hints.min_height;
834         }
835
836         client->base_width = base_width;
837         client->base_height = base_height;
838
839         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
840         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
841             (size_hints.min_aspect_num <= 0) ||
842             (size_hints.min_aspect_den <= 0)) {
843                 return 1;
844         }
845
846         double width = client->rect.width - base_width;
847         double height = client->rect.height - base_height;
848         /* Convert numerator/denominator to a double */
849         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
850         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
851
852         LOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
853         LOG("width = %f, height = %f\n", width, height);
854
855         /* Sanity checks, this is user-input, in a way */
856         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
857                 return 1;
858
859         /* Check if we need to set proportional_* variables using the correct ratio */
860         if ((width / height) < min_aspect) {
861                 client->proportional_width = width;
862                 client->proportional_height = width / min_aspect;
863         } else if ((width / height) > max_aspect) {
864                 client->proportional_width = width;
865                 client->proportional_height = width / max_aspect;
866         } else return 1;
867
868         client->force_reconfigure = true;
869
870         if (client->container != NULL) {
871                 render_container(conn, client->container);
872                 xcb_flush(conn);
873         }
874
875         return 1;
876 }
877
878 /*
879  * Handles the WM_HINTS property for extracting the urgency state of the window.
880  *
881  */
882 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
883                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
884         Client *client = table_get(&by_child, window);
885         if (client == NULL) {
886                 LOG("Received WM_HINTS for unknown client\n");
887                 return 1;
888         }
889         xcb_wm_hints_t hints;
890
891         if (reply != NULL) {
892                 if (!xcb_get_wm_hints_from_reply(&hints, reply))
893                         return 1;
894         } else {
895                 if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, client->child), &hints, NULL))
896                         return 1;
897         }
898
899         /* Update the flag on the client directly */
900         client->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
901         CLIENT_LOG(client);
902         LOG("Urgency flag changed to %d\n", client->urgent);
903
904         workspace_update_urgent_flag(client->workspace);
905         redecorate_window(conn, client);
906
907         /* If the workspace this client is on is not visible, we need to redraw
908          * the workspace bar */
909         if (!workspace_is_visible(client->workspace)) {
910                 i3Screen *screen = client->workspace->screen;
911                 render_workspace(conn, screen, screen->current_workspace);
912                 xcb_flush(conn);
913         }
914
915         return 1;
916 }
917
918 /*
919  * Handles the transient for hints set by a window, signalizing that this window is a popup window
920  * for some other window.
921  *
922  * See ICCCM 4.1.2.6 for more details
923  *
924  */
925 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
926                          xcb_atom_t name, xcb_get_property_reply_t *reply) {
927         Client *client = table_get(&by_child, window);
928         if (client == NULL) {
929                 LOG("No such client\n");
930                 return 1;
931         }
932
933         xcb_window_t transient_for;
934
935         if (reply != NULL) {
936                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
937                         return 1;
938         } else {
939                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
940                                                     &transient_for, NULL))
941                         return 1;
942         }
943
944         if (client->floating == FLOATING_AUTO_OFF) {
945                 LOG("This is a popup window, putting into floating\n");
946                 toggle_floating_mode(conn, client, true);
947         }
948
949         return 1;
950 }
951
952 /*
953  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
954  * toolwindow (or similar) and to which window it belongs (logical parent).
955  *
956  */
957 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
958                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
959         if (prop == NULL) {
960                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
961                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
962                 if (prop == NULL)
963                         return 1;
964         }
965
966         Client *client = table_get(&by_child, window);
967         if (client == NULL)
968                 return 1;
969
970         xcb_window_t *leader = xcb_get_property_value(prop);
971         if (leader == NULL || *leader == 0)
972                 return 1;
973
974         LOG("Client leader changed to %08x\n", *leader);
975
976         client->leader = *leader;
977
978         return 1;
979 }