]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
a339abdf3591352aa286c39760bd53be6d7e2e38
[i3/i3] / src / handlers.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include <time.h>
9
10 #include <xcb/xcb_atom.h>
11 #include <xcb/randr.h>
12
13 #include <X11/XKBlib.h>
14
15 #include "all.h"
16
17 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
18    since it’d trigger an infinite loop of switching between the different windows when
19    changing workspaces */
20 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
21
22 void add_ignore_event(const int sequence) {
23     struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
24
25     event->sequence = sequence;
26     event->added = time(NULL);
27
28     SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
29 }
30
31 /*
32  * Checks if the given sequence is ignored and returns true if so.
33  *
34  */
35 static bool event_is_ignored(const int sequence) {
36     struct Ignore_Event *event;
37     time_t now = time(NULL);
38     for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
39         if ((now - event->added) > 5) {
40             struct Ignore_Event *save = event;
41             event = SLIST_NEXT(event, ignore_events);
42             SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
43             free(save);
44         } else event = SLIST_NEXT(event, ignore_events);
45     }
46
47     SLIST_FOREACH(event, &ignore_events, ignore_events) {
48         if (event->sequence != sequence)
49             continue;
50
51         /* instead of removing a sequence number we better wait until it gets
52          * garbage collected. it may generate multiple events (there are multiple
53          * enter_notifies for one configure_request, for example). */
54         //SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
55         //free(event);
56         return true;
57     }
58
59     return false;
60 }
61
62 /*
63  * There was a key press. We compare this key code with our bindings table and pass
64  * the bound action to parse_command().
65  *
66  */
67 int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
68     DLOG("Keypress %d, state raw = %d\n", event->detail, event->state);
69
70     /* Remove the numlock bit, all other bits are modifiers we can bind to */
71     uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
72     DLOG("(removed numlock, state = %d)\n", state_filtered);
73     /* Only use the lower 8 bits of the state (modifier masks) so that mouse
74      * button masks are filtered out */
75     state_filtered &= 0xFF;
76     DLOG("(removed upper 8 bits, state = %d)\n", state_filtered);
77
78     if (xkb_current_group == XkbGroup2Index)
79         state_filtered |= BIND_MODE_SWITCH;
80
81     DLOG("(checked mode_switch, state %d)\n", state_filtered);
82
83     /* Find the binding */
84     Binding *bind = get_binding(state_filtered, event->detail);
85
86     /* No match? Then the user has Mode_switch enabled but does not have a
87      * specific keybinding. Fall back to the default keybindings (without
88      * Mode_switch). Makes it much more convenient for users of a hybrid
89      * layout (like us, ru). */
90     if (bind == NULL) {
91         state_filtered &= ~(BIND_MODE_SWITCH);
92         DLOG("no match, new state_filtered = %d\n", state_filtered);
93         if ((bind = get_binding(state_filtered, event->detail)) == NULL) {
94             ELOG("Could not lookup key binding (modifiers %d, keycode %d)\n",
95                  state_filtered, event->detail);
96             return 1;
97         }
98     }
99
100     parse_cmd(bind->command);
101     tree_render();
102     return 1;
103 }
104
105 #if 0
106
107 /*
108  * Called with coordinates of an enter_notify event or motion_notify event
109  * to check if the user crossed virtual screen boundaries and adjust the
110  * current workspace, if so.
111  *
112  */
113 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
114         Output *output;
115
116         if ((output = get_output_containing(x, y)) == NULL) {
117                 ELOG("ERROR: No such screen\n");
118                 return;
119         }
120         if (output == c_ws->output)
121                 return;
122
123         c_ws->current_row = current_row;
124         c_ws->current_col = current_col;
125         c_ws = output->current_workspace;
126         current_row = c_ws->current_row;
127         current_col = c_ws->current_col;
128         DLOG("We're now on output %p\n", output);
129
130         /* While usually this function is only called when the user switches
131          * to a different output using his mouse (and thus the output is
132          * empty), it may be that the following race condition occurs:
133          * 1) the user actives a new output (say VGA1).
134          * 2) the cursor is sent to the first pixel of the new VGA1, thus
135          *    generating an enter_notify for the screen (the enter_notify
136          *    is not yet received by i3).
137          * 3) i3 requeries screen configuration and maps a workspace onto the
138          *    new output.
139          * 4) the enter_notify event arrives and c_ws is set to the new
140          *    workspace but the existing windows on the new workspace are not
141          *    focused.
142          *
143          * Therefore, we re-set the focus here to be sure it’s correct. */
144         Client *first_client = SLIST_FIRST(&(c_ws->focus_stack));
145         if (first_client != NULL)
146                 set_focus(global_conn, first_client, true);
147 }
148 #endif
149
150 /*
151  * When the user moves the mouse pointer onto a window, this callback gets called.
152  *
153  */
154 int handle_enter_notify(void *ignored, xcb_connection_t *conn,
155                         xcb_enter_notify_event_t *event) {
156     Con *con;
157
158     DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n",
159          event->event, event->mode, event->detail, event->sequence);
160     DLOG("coordinates %d, %d\n", event->event_x, event->event_y);
161     if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
162         DLOG("This was not a normal notify, ignoring\n");
163         return 1;
164     }
165     /* Some events are not interesting, because they were not generated
166      * actively by the user, but by reconfiguration of windows */
167     if (event_is_ignored(event->sequence))
168         return 1;
169
170     /* Get container by frame or by child window */
171     if ((con = con_by_frame_id(event->event)) == NULL)
172         con = con_by_window_id(event->event);
173
174     /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
175     if (con == NULL) {
176         DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
177         //check_crossing_screen_boundary(event->root_x, event->root_y);
178         return 1;
179     }
180
181     /* see if the user entered the window on a certain window decoration */
182     int layout = con->layout;
183     Con *child;
184     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
185         if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
186             LOG("using child %p / %s instead!\n", child, child->name);
187             con = child;
188             break;
189         }
190
191     /* for stacked/tabbed layout we do not want to change focus when the user
192      * enters the window at the decoration of any child window. */
193     if (layout == L_STACKED || layout == L_TABBED) {
194         con = TAILQ_FIRST(&(con->parent->focus_head));
195         LOG("using focused %p / %s instead\n", con, con->name);
196     }
197
198 #if 0
199     if (client->workspace != c_ws && client->workspace->output == c_ws->output) {
200             /* This can happen when a client gets assigned to a different workspace than
201              * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
202              * an enter_notify will follow. */
203             DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
204             return 1;
205     }
206 #endif
207
208     if (config.disable_focus_follows_mouse)
209         return 1;
210     Con *next = con;
211     while (!TAILQ_EMPTY(&(next->focus_head)))
212         next = TAILQ_FIRST(&(next->focus_head));
213
214     con_focus(next);
215     x_push_changes(croot);
216
217     return 1;
218 }
219 #if 0
220
221 /*
222  * When the user moves the mouse but does not change the active window
223  * (e.g. when having no windows opened but moving mouse on the root screen
224  * and crossing virtual screen boundaries), this callback gets called.
225  *
226  */
227 int handle_motion_notify(void *ignored, xcb_connection_t *conn, xcb_motion_notify_event_t *event) {
228         /* Skip events where the pointer was over a child window, we are only
229          * interested in events on the root window. */
230         if (event->child != 0)
231                 return 1;
232
233         check_crossing_screen_boundary(event->root_x, event->root_y);
234
235         return 1;
236 }
237
238 /*
239  * Called when the keyboard mapping changes (for example by using Xmodmap),
240  * we need to update our key bindings then (re-translate symbols).
241  *
242  */
243 int handle_mapping_notify(void *ignored, xcb_connection_t *conn, xcb_mapping_notify_event_t *event) {
244         if (event->request != XCB_MAPPING_KEYBOARD &&
245             event->request != XCB_MAPPING_MODIFIER)
246                 return 0;
247
248         DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
249         xcb_refresh_keyboard_mapping(keysyms, event);
250
251         xcb_get_numlock_mask(conn);
252
253         ungrab_all_keys(conn);
254         translate_keysyms();
255         grab_all_keys(conn, false);
256
257         return 0;
258 }
259
260 #endif
261 /*
262  * A new window appeared on the screen (=was mapped), so let’s manage it.
263  *
264  */
265 int handle_map_request(void *prophs, xcb_connection_t *conn, xcb_map_request_event_t *event) {
266     xcb_get_window_attributes_cookie_t cookie;
267
268     cookie = xcb_get_window_attributes_unchecked(conn, event->window);
269
270     DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
271     add_ignore_event(event->sequence);
272
273     manage_window(event->window, cookie, false);
274     x_push_changes(croot);
275     return 1;
276 }
277
278 /*
279  * Configure requests are received when the application wants to resize windows on their own.
280  *
281  * We generate a synthethic configure notify event to signalize the client its "new" position.
282  *
283  */
284 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
285     Con *con;
286
287     DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
288         event->window, event->x, event->y, event->width, event->height);
289
290     /* For unmanaged windows, we just execute the configure request. As soon as
291      * it gets mapped, we will take over anyways. */
292     if ((con = con_by_window_id(event->window)) == NULL) {
293         DLOG("Configure request for unmanaged window, can do that.\n");
294
295         uint32_t mask = 0;
296         uint32_t values[7];
297         int c = 0;
298 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
299         if (event->value_mask & mask_member) { \
300                 mask |= mask_member; \
301                 values[c++] = event->event_member; \
302         } \
303 } while (0)
304
305         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
306         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
307         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
308         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
309         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
310         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
311         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
312
313         xcb_configure_window(conn, event->window, mask, values);
314         xcb_flush(conn);
315
316         return 1;
317     }
318
319     DLOG("Configure request!\n");
320     if (con_is_floating(con) && con_is_leaf(con)) {
321         /* we actually need to apply the size/position changes to the *parent*
322          * container */
323         Rect bsr = con_border_style_rect(con);
324         if (con->border_style == BS_NORMAL)
325             bsr.height -= 17;
326         con = con->parent;
327         DLOG("Container is a floating leaf node, will do that.\n");
328         if (event->value_mask & XCB_CONFIG_WINDOW_X) {
329             con->rect.x = event->x + (-1) * bsr.x;
330             DLOG("proposed x = %d, new x is %d\n", event->x, con->rect.x);
331         }
332         if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
333             con->rect.y = event->y + (-1) * bsr.y;
334             DLOG("proposed y = %d, new y is %d\n", event->y, con->rect.y);
335         }
336         if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
337             con->rect.width = event->width + (-1) * bsr.width;
338             DLOG("proposed width = %d, new width is %d\n", event->width, con->rect.width);
339         }
340         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
341             con->rect.height = event->height + (-1) * bsr.height;
342             DLOG("proposed height = %d, new height is %d\n", event->height, con->rect.height);
343         }
344         tree_render();
345     }
346
347     return 1;
348 #if 0
349         /* Dock clients can be reconfigured in their height */
350         if (client->dock) {
351                 DLOG("Reconfiguring height of this dock client\n");
352
353                 if (!(event->value_mask & XCB_CONFIG_WINDOW_HEIGHT)) {
354                         DLOG("Ignoring configure request, no height given\n");
355                         return 1;
356                 }
357
358                 client->desired_height = event->height;
359                 render_workspace(conn, c_ws->output, c_ws);
360                 xcb_flush(conn);
361
362                 return 1;
363         }
364
365         if (client->fullscreen) {
366                 DLOG("Client is in fullscreen mode\n");
367
368                 Rect child_rect = client->container->workspace->rect;
369                 child_rect.x = child_rect.y = 0;
370                 fake_configure_notify(conn, child_rect, client->child);
371
372                 return 1;
373         }
374
375         fake_absolute_configure_notify(conn, client);
376
377         return 1;
378 #endif
379 }
380 #if 0
381
382 /*
383  * Configuration notifies are only handled because we need to set up ignore for
384  * the following enter notify events.
385  *
386  */
387 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
388     DLOG("configure_event, sequence %d\n", event->sequence);
389         /* We ignore this sequence twice because events for child and frame should be ignored */
390         add_ignore_event(event->sequence);
391         add_ignore_event(event->sequence);
392
393         return 1;
394 }
395
396 /*
397  * Gets triggered upon a RandR screen change event, that is when the user
398  * changes the screen configuration in any way (mode, position, …)
399  *
400  */
401 int handle_screen_change(void *prophs, xcb_connection_t *conn,
402                          xcb_generic_event_t *e) {
403         DLOG("RandR screen change\n");
404
405         randr_query_outputs(conn);
406
407         ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
408
409         return 1;
410 }
411 #endif
412
413 /*
414  * Our window decorations were unmapped. That means, the window will be killed
415  * now, so we better clean up before.
416  *
417  */
418 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
419
420     bool ignored = event_is_ignored(event->sequence);
421
422     /* FIXME: we cannot ignore this sequence because more UnmapNotifys with the same sequence
423      * numbers but different window IDs may follow */
424     /* we need to ignore EnterNotify events which will be generated because a
425      * different window is visible now */
426     //add_ignore_event(event->sequence);
427
428     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
429     if (ignored) {
430         DLOG("Ignoring UnmapNotify (generated by reparenting)\n");
431         return 1;
432     }
433     Con *con = con_by_window_id(event->window);
434     if (con == NULL) {
435         LOG("Not a managed window, ignoring\n");
436         return 1;
437     }
438
439     tree_close(con, false);
440     tree_render();
441     x_push_changes(croot);
442     return 1;
443
444 #if 0
445         if (client == NULL) {
446                 DLOG("not a managed window. Ignoring.\n");
447
448                 /* This was most likely the destroyed frame of a client which is
449                  * currently being unmapped, so we add this sequence (again!) to
450                  * the ignore list (enter_notify events will get sent for both,
451                  * the child and its frame). */
452                 add_ignore_event(event->sequence);
453
454                 return 0;
455         }
456 #endif
457
458
459 #if 0
460         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
461         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
462         bool workspace_focused = (c_ws == client->workspace);
463         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
464
465         /* If this workspace is currently visible, we don’t delete it */
466         if (workspace_is_visible(client->workspace))
467                 workspace_empty = false;
468
469         if (workspace_empty) {
470                 client->workspace->output = NULL;
471                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
472         }
473
474         /* Remove the urgency flag if set */
475         client->urgent = false;
476         workspace_update_urgent_flag(client->workspace);
477
478         render_layout(conn);
479 #endif
480
481         return 1;
482 }
483
484 /*
485  * A destroy notify event is sent when the window is not unmapped, but
486  * immediately destroyed (for example when starting a window and immediately
487  * killing the program which started it).
488  *
489  * We just pass on the event to the unmap notify handler (by copying the
490  * important fields in the event data structure).
491  *
492  */
493 int handle_destroy_notify_event(void *data, xcb_connection_t *conn, xcb_destroy_notify_event_t *event) {
494     DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
495
496     xcb_unmap_notify_event_t unmap;
497     unmap.sequence = event->sequence;
498     unmap.event = event->event;
499     unmap.window = event->window;
500
501     return handle_unmap_notify_event(NULL, conn, &unmap);
502 }
503
504 /*
505  * Called when a window changes its title
506  *
507  */
508 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
509                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
510     Con *con;
511     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
512         return 1;
513
514     window_update_name(con->window, prop);
515
516     x_push_changes(croot);
517
518     return 1;
519 }
520
521 /*
522  * Handles legacy window name updates (WM_NAME), see also src/window.c,
523  * window_update_name_legacy().
524  *
525  */
526 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
527                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
528     Con *con;
529     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
530         return 1;
531
532     window_update_name_legacy(con->window, prop);
533
534     x_push_changes(croot);
535
536     return 1;
537 }
538
539 /*
540  * Updates the client’s WM_CLASS property
541  *
542  */
543 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
544                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
545     Con *con;
546     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
547         return 1;
548
549     window_update_class(con->window, prop);
550
551     return 0;
552 }
553
554 /*
555  * Expose event means we should redraw our windows (= title bar)
556  *
557  */
558 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
559     Con *parent, *con;
560
561     /* event->count is the number of minimum remaining expose events for this
562      * window, so we skip all events but the last one */
563     if (event->count != 0)
564         return 1;
565
566     DLOG("window = %08x\n", event->window);
567
568     if ((parent = con_by_frame_id(event->window)) == NULL) {
569         LOG("expose event for unknown window, ignoring\n");
570         return 1;
571     }
572
573     TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
574         LOG("expose for con %p / %s\n", con, con->name);
575         if (con->window)
576             x_draw_decoration(con);
577     }
578     xcb_flush(conn);
579
580     return 1;
581
582 #if 0
583     else {
584             uint32_t background_color;
585             if (client->urgent)
586                     background_color = config.client.urgent.background;
587             /* Distinguish if the window is currently focused… */
588             else if (CUR_CELL != NULL && CUR_CELL->currently_focused == client)
589                     background_color = config.client.focused.background;
590             /* …or if it is the focused window in a not focused container */
591             else background_color = config.client.focused_inactive.background;
592
593             /* Set foreground color to current focused color, line width to 2 */
594             uint32_t values[] = {background_color, 2};
595             xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
596
597             /* Draw the border, the ±1 is for line width = 2 */
598             xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
599                                     {1, client->rect.height-1},                       /* left bottom edge */
600                                     {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
601                                     {client->rect.width-1, 0}};                       /* right upper edge */
602             xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
603
604             /* Draw a black background */
605             xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
606             if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
607                     xcb_rectangle_t crect = {1, 0, client->rect.width - (1 + 1), client->rect.height - 1};
608                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
609             } else {
610                     xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
611                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
612             }
613     }
614     xcb_flush(conn);
615     return 1;
616 #endif
617 }
618
619 /*
620  * Handle client messages (EWMH)
621  *
622  */
623 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
624     LOG("ClientMessage for window 0x%08x\n", event->window);
625     if (event->type == atoms[_NET_WM_STATE]) {
626         if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
627             return 0;
628
629         Con *con = con_by_window_id(event->window);
630         if (con == NULL)
631             return 0;
632
633         /* Check if the fullscreen state should be toggled */
634         if ((con->fullscreen_mode != CF_NONE &&
635              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
636               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
637             (con->fullscreen_mode == CF_NONE &&
638              (event->data.data32[0] == _NET_WM_STATE_ADD ||
639               event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
640                 con_toggle_fullscreen(con);
641
642         tree_render();
643         x_push_changes(croot);
644     } else {
645         ELOG("unhandled clientmessage\n");
646         return 0;
647     }
648
649     return 1;
650 }
651
652 #if 0
653 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
654                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
655         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
656          before changing this property. */
657         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
658         return 0;
659 }
660 #endif
661
662 /*
663  * Handles the size hints set by a window, but currently only the part necessary for displaying
664  * clients proportionally inside their frames (mplayer for example)
665  *
666  * See ICCCM 4.1.2.3 for more details
667  *
668  */
669 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
670                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
671     Con *con = con_by_window_id(window);
672     if (con == NULL) {
673         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
674         return 1;
675     }
676
677     xcb_size_hints_t size_hints;
678
679         //CLIENT_LOG(client);
680
681     /* If the hints were already in this event, use them, if not, request them */
682     if (reply != NULL)
683         xcb_get_wm_size_hints_from_reply(&size_hints, reply);
684     else
685         xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
686
687     if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
688         // TODO: Minimum size is not yet implemented
689         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
690     }
691
692     bool changed = false;
693     if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
694         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
695             if (con->width_increment != size_hints.width_inc) {
696                 con->width_increment = size_hints.width_inc;
697                 changed = true;
698             }
699         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
700             if (con->height_increment != size_hints.height_inc) {
701                 con->height_increment = size_hints.height_inc;
702                 changed = true;
703             }
704
705         if (changed)
706             DLOG("resize increments changed\n");
707     }
708
709     int base_width = 0, base_height = 0;
710
711     /* base_width/height are the desired size of the window.
712        We check if either the program-specified size or the program-specified
713        min-size is available */
714     if (size_hints.flags & XCB_SIZE_HINT_BASE_SIZE) {
715         base_width = size_hints.base_width;
716         base_height = size_hints.base_height;
717     } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
718         /* TODO: is this right? icccm says not */
719         base_width = size_hints.min_width;
720         base_height = size_hints.min_height;
721     }
722
723     if (base_width != con->base_width ||
724         base_height != con->base_height) {
725         con->base_width = base_width;
726         con->base_height = base_height;
727         DLOG("client's base_height changed to %d\n", base_height);
728         DLOG("client's base_width changed to %d\n", base_width);
729         changed = true;
730     }
731
732     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
733     if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
734         (size_hints.min_aspect_num <= 0) ||
735         (size_hints.min_aspect_den <= 0)) {
736         goto render_and_return;
737     }
738
739     /* XXX: do we really use rect here, not window_rect? */
740     double width = con->rect.width - base_width;
741     double height = con->rect.height - base_height;
742     /* Convert numerator/denominator to a double */
743     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
744     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
745
746     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
747     DLOG("width = %f, height = %f\n", width, height);
748
749     /* Sanity checks, this is user-input, in a way */
750     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
751         goto render_and_return;
752
753     /* Check if we need to set proportional_* variables using the correct ratio */
754     if ((width / height) < min_aspect) {
755         con->proportional_width = width;
756         con->proportional_height = width / min_aspect;
757     } else if ((width / height) > max_aspect) {
758         con->proportional_width = width;
759         con->proportional_height = width / max_aspect;
760     } else goto render_and_return;
761
762 render_and_return:
763     tree_render();
764     return 1;
765 }
766
767 /*
768  * Handles the WM_HINTS property for extracting the urgency state of the window.
769  *
770  */
771 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
772                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
773     Con *con = con_by_window_id(window);
774     if (con == NULL) {
775         DLOG("Received WM_HINTS for unknown client\n");
776         return 1;
777     }
778
779     xcb_wm_hints_t hints;
780
781     if (reply != NULL) {
782         if (!xcb_get_wm_hints_from_reply(&hints, reply))
783             return 1;
784     } else {
785         if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, con->window->id), &hints, NULL))
786             return 1;
787     }
788
789     if (!con->urgent && focused == con) {
790         DLOG("Ignoring urgency flag for current client\n");
791         return 1;
792     }
793
794     /* Update the flag on the client directly */
795     con->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
796     //CLIENT_LOG(con);
797     LOG("Urgency flag changed to %d\n", con->urgent);
798
799     workspace_update_urgent_flag(con_get_workspace(con));
800
801 #if 0
802     /* If the workspace this client is on is not visible, we need to redraw
803      * the workspace bar */
804     if (!workspace_is_visible(client->workspace)) {
805             Output *output = client->workspace->output;
806             render_workspace(conn, output, output->current_workspace);
807             xcb_flush(conn);
808     }
809 #endif
810
811     return 1;
812 }
813
814 #if 0
815
816 /*
817  * Handles the transient for hints set by a window, signalizing that this window is a popup window
818  * for some other window.
819  *
820  * See ICCCM 4.1.2.6 for more details
821  *
822  */
823 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
824                          xcb_atom_t name, xcb_get_property_reply_t *reply) {
825         Client *client = table_get(&by_child, window);
826         if (client == NULL) {
827                 DLOG("No such client\n");
828                 return 1;
829         }
830
831         xcb_window_t transient_for;
832
833         if (reply != NULL) {
834                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
835                         return 1;
836         } else {
837                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
838                                                     &transient_for, NULL))
839                         return 1;
840         }
841
842         if (client->floating == FLOATING_AUTO_OFF) {
843                 DLOG("This is a popup window, putting into floating\n");
844                 toggle_floating_mode(conn, client, true);
845         }
846
847         return 1;
848 }
849
850 /*
851  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
852  * toolwindow (or similar) and to which window it belongs (logical parent).
853  *
854  */
855 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
856                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
857         if (prop == NULL) {
858                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
859                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
860                 if (prop == NULL)
861                         return 1;
862         }
863
864         Client *client = table_get(&by_child, window);
865         if (client == NULL)
866                 return 1;
867
868         xcb_window_t *leader = xcb_get_property_value(prop);
869         if (leader == NULL)
870                 return 1;
871
872         DLOG("Client leader changed to %08x\n", *leader);
873
874         client->leader = *leader;
875
876         return 1;
877 }
878 #endif