]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
refactor font caching to just save the ID instead of mainting a cache with pattern...
[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 /*
106  * Called with coordinates of an enter_notify event or motion_notify event
107  * to check if the user crossed virtual screen boundaries and adjust the
108  * current workspace, if so.
109  *
110  */
111 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
112     Output *output;
113
114     /* If the user disable focus follows mouse, we have nothing to do here */
115     if (config.disable_focus_follows_mouse)
116         return;
117
118     if ((output = get_output_containing(x, y)) == NULL) {
119         ELOG("ERROR: No such screen\n");
120         return;
121     }
122
123     if (output->con == NULL) {
124         ELOG("ERROR: The screen is not recognized by i3 (no container associated)\n");
125         return;
126     }
127
128     /* Focus the output on which the user moved his cursor */
129     Con *old_focused = focused;
130     con_focus(con_descend_focused(output_get_content(output->con)));
131
132     /* If the focus changed, we re-render to get updated decorations */
133     if (old_focused != focused)
134         tree_render();
135 }
136
137 /*
138  * When the user moves the mouse pointer onto a window, this callback gets called.
139  *
140  */
141 int handle_enter_notify(void *ignored, xcb_connection_t *conn,
142                         xcb_enter_notify_event_t *event) {
143     Con *con;
144
145     DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n",
146          event->event, event->mode, event->detail, event->sequence);
147     DLOG("coordinates %d, %d\n", event->event_x, event->event_y);
148     if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
149         DLOG("This was not a normal notify, ignoring\n");
150         return 1;
151     }
152     /* Some events are not interesting, because they were not generated
153      * actively by the user, but by reconfiguration of windows */
154     if (event_is_ignored(event->sequence))
155         return 1;
156
157     bool enter_child = false;
158     /* Get container by frame or by child window */
159     if ((con = con_by_frame_id(event->event)) == NULL) {
160         con = con_by_window_id(event->event);
161         enter_child = true;
162     }
163
164     /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
165     if (con == NULL) {
166         DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
167         check_crossing_screen_boundary(event->root_x, event->root_y);
168         return 1;
169     }
170
171     if (con->parent->type == CT_DOCKAREA) {
172         DLOG("Ignoring, this is a dock client\n");
173         return 1;
174     }
175
176     /* see if the user entered the window on a certain window decoration */
177     int layout = (enter_child ? con->parent->layout : con->layout);
178     Con *child;
179     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
180         if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
181             LOG("using child %p / %s instead!\n", child, child->name);
182             con = child;
183             break;
184         }
185
186     /* for stacked/tabbed layout we do not want to change focus when the user
187      * enters the window at the decoration of any child window. */
188     if (layout == L_STACKED || layout == L_TABBED) {
189         con = TAILQ_FIRST(&(con->parent->focus_head));
190         LOG("using focused %p / %s instead\n", con, con->name);
191     }
192
193 #if 0
194     if (client->workspace != c_ws && client->workspace->output == c_ws->output) {
195             /* This can happen when a client gets assigned to a different workspace than
196              * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
197              * an enter_notify will follow. */
198             DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
199             return 1;
200     }
201 #endif
202
203     if (config.disable_focus_follows_mouse)
204         return 1;
205
206     con_focus(con_descend_focused(con));
207     tree_render();
208
209     return 1;
210 }
211
212 /*
213  * When the user moves the mouse but does not change the active window
214  * (e.g. when having no windows opened but moving mouse on the root screen
215  * and crossing virtual screen boundaries), this callback gets called.
216  *
217  */
218 int handle_motion_notify(void *ignored, xcb_connection_t *conn, xcb_motion_notify_event_t *event) {
219     /* Skip events where the pointer was over a child window, we are only
220      * interested in events on the root window. */
221     if (event->child != 0)
222         return 1;
223
224     Con *con;
225     if ((con = con_by_frame_id(event->event)) == NULL) {
226         check_crossing_screen_boundary(event->root_x, event->root_y);
227         return 1;
228     }
229
230     if (config.disable_focus_follows_mouse)
231         return 1;
232
233     if (con->layout != L_DEFAULT)
234         return 1;
235
236     /* see over which rect the user is */
237     Con *current;
238     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
239         if (!rect_contains(current->deco_rect, event->event_x, event->event_y))
240             continue;
241
242         /* We found the rect, let’s see if this window is focused */
243         if (TAILQ_FIRST(&(con->focus_head)) == current)
244             return 1;
245
246         con_focus(current);
247         x_push_changes(croot);
248         return 1;
249     }
250
251     return 1;
252 }
253
254 #if 0
255 /*
256  * Called when the keyboard mapping changes (for example by using Xmodmap),
257  * we need to update our key bindings then (re-translate symbols).
258  *
259  */
260 int handle_mapping_notify(void *ignored, xcb_connection_t *conn, xcb_mapping_notify_event_t *event) {
261         if (event->request != XCB_MAPPING_KEYBOARD &&
262             event->request != XCB_MAPPING_MODIFIER)
263                 return 0;
264
265         DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
266         xcb_refresh_keyboard_mapping(keysyms, event);
267
268         xcb_get_numlock_mask(conn);
269
270         ungrab_all_keys(conn);
271         translate_keysyms();
272         grab_all_keys(conn, false);
273
274         return 0;
275 }
276
277 #endif
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     DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
288     add_ignore_event(event->sequence);
289
290     manage_window(event->window, cookie, false);
291     x_push_changes(croot);
292     return 1;
293 }
294
295 /*
296  * Configure requests are received when the application wants to resize windows on their own.
297  *
298  * We generate a synthethic configure notify event to signalize the client its "new" position.
299  *
300  */
301 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
302     Con *con;
303
304     DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
305         event->window, event->x, event->y, event->width, event->height);
306
307     /* For unmanaged windows, we just execute the configure request. As soon as
308      * it gets mapped, we will take over anyways. */
309     if ((con = con_by_window_id(event->window)) == NULL) {
310         DLOG("Configure request for unmanaged window, can do that.\n");
311
312         uint32_t mask = 0;
313         uint32_t values[7];
314         int c = 0;
315 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
316         if (event->value_mask & mask_member) { \
317             mask |= mask_member; \
318             values[c++] = event->event_member; \
319         } \
320 } while (0)
321
322         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
323         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
324         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
325         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
326         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
327         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
328         COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
329
330         xcb_configure_window(conn, event->window, mask, values);
331         xcb_flush(conn);
332
333         return 1;
334     }
335
336     DLOG("Configure request!\n");
337     if (con_is_floating(con) && con_is_leaf(con)) {
338         /* find the height for the decorations */
339         int deco_height = config.font.height + 5;
340         /* we actually need to apply the size/position changes to the *parent*
341          * container */
342         Rect bsr = con_border_style_rect(con);
343         if (con->border_style == BS_NORMAL) {
344             bsr.y += deco_height;
345             bsr.height -= deco_height;
346         }
347         con = con->parent;
348         DLOG("Container is a floating leaf node, will do that.\n");
349         if (event->value_mask & XCB_CONFIG_WINDOW_X) {
350             con->rect.x = event->x + (-1) * bsr.x;
351             DLOG("proposed x = %d, new x is %d\n", event->x, con->rect.x);
352         }
353         if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
354             con->rect.y = event->y + (-1) * bsr.y;
355             DLOG("proposed y = %d, new y is %d\n", event->y, con->rect.y);
356         }
357         if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
358             con->rect.width = event->width + (-1) * bsr.width;
359             DLOG("proposed width = %d, new width is %d\n", event->width, con->rect.width);
360         }
361         if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
362             con->rect.height = event->height + (-1) * bsr.height;
363             DLOG("proposed height = %d, new height is %d\n", event->height, con->rect.height);
364         }
365         tree_render();
366     }
367
368     fake_absolute_configure_notify(con);
369
370     return 1;
371 #if 0
372         /* Dock clients can be reconfigured in their height */
373         if (client->dock) {
374                 DLOG("Reconfiguring height of this dock client\n");
375
376                 if (!(event->value_mask & XCB_CONFIG_WINDOW_HEIGHT)) {
377                         DLOG("Ignoring configure request, no height given\n");
378                         return 1;
379                 }
380
381                 client->desired_height = event->height;
382                 render_workspace(conn, c_ws->output, c_ws);
383                 xcb_flush(conn);
384
385                 return 1;
386         }
387
388         if (client->fullscreen) {
389                 DLOG("Client is in fullscreen mode\n");
390
391                 Rect child_rect = client->container->workspace->rect;
392                 child_rect.x = child_rect.y = 0;
393                 fake_configure_notify(conn, child_rect, client->child);
394
395                 return 1;
396         }
397
398         fake_absolute_configure_notify(conn, client);
399
400         return 1;
401 #endif
402 }
403 #if 0
404
405 /*
406  * Configuration notifies are only handled because we need to set up ignore for
407  * the following enter notify events.
408  *
409  */
410 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
411     DLOG("configure_event, sequence %d\n", event->sequence);
412         /* We ignore this sequence twice because events for child and frame should be ignored */
413         add_ignore_event(event->sequence);
414         add_ignore_event(event->sequence);
415
416         return 1;
417 }
418 #endif
419
420 /*
421  * Gets triggered upon a RandR screen change event, that is when the user
422  * changes the screen configuration in any way (mode, position, …)
423  *
424  */
425 int handle_screen_change(void *prophs, xcb_connection_t *conn,
426                          xcb_generic_event_t *e) {
427     DLOG("RandR screen change\n");
428
429     randr_query_outputs();
430
431     ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
432
433     return 1;
434 }
435
436 /*
437  * Our window decorations were unmapped. That means, the window will be killed
438  * now, so we better clean up before.
439  *
440  */
441 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
442
443     /* FIXME: we cannot ignore this sequence because more UnmapNotifys with the same sequence
444      * numbers but different window IDs may follow */
445     /* we need to ignore EnterNotify events which will be generated because a
446      * different window is visible now */
447     //add_ignore_event(event->sequence);
448
449     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
450     Con *con = con_by_window_id(event->window);
451     if (con == NULL) {
452         /* This could also be an UnmapNotify for the frame. We need to
453          * decrement the ignore_unmap counter. */
454         con = con_by_frame_id(event->window);
455         if (con == NULL) {
456             LOG("Not a managed window, ignoring UnmapNotify event\n");
457             return 1;
458         }
459         if (con->ignore_unmap > 0)
460             con->ignore_unmap--;
461         DLOG("ignore_unmap = %d for frame of container %p\n", con->ignore_unmap, con);
462         return 1;
463     }
464
465     if (con->ignore_unmap > 0) {
466         DLOG("ignore_unmap = %d, dec\n", con->ignore_unmap);
467         con->ignore_unmap--;
468         return 1;
469     }
470
471     tree_close(con, false, false);
472     tree_render();
473     x_push_changes(croot);
474     return 1;
475
476 #if 0
477         if (client == NULL) {
478                 DLOG("not a managed window. Ignoring.\n");
479
480                 /* This was most likely the destroyed frame of a client which is
481                  * currently being unmapped, so we add this sequence (again!) to
482                  * the ignore list (enter_notify events will get sent for both,
483                  * the child and its frame). */
484                 add_ignore_event(event->sequence);
485
486                 return 0;
487         }
488 #endif
489
490
491 #if 0
492         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
493         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
494         bool workspace_focused = (c_ws == client->workspace);
495         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
496
497         /* If this workspace is currently visible, we don’t delete it */
498         if (workspace_is_visible(client->workspace))
499                 workspace_empty = false;
500
501         if (workspace_empty) {
502                 client->workspace->output = NULL;
503                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
504         }
505
506         /* Remove the urgency flag if set */
507         client->urgent = false;
508         workspace_update_urgent_flag(client->workspace);
509
510         render_layout(conn);
511 #endif
512
513         return 1;
514 }
515
516 /*
517  * A destroy notify event is sent when the window is not unmapped, but
518  * immediately destroyed (for example when starting a window and immediately
519  * killing the program which started it).
520  *
521  * We just pass on the event to the unmap notify handler (by copying the
522  * important fields in the event data structure).
523  *
524  */
525 int handle_destroy_notify_event(void *data, xcb_connection_t *conn, xcb_destroy_notify_event_t *event) {
526     DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
527
528     xcb_unmap_notify_event_t unmap;
529     unmap.sequence = event->sequence;
530     unmap.event = event->event;
531     unmap.window = event->window;
532
533     return handle_unmap_notify_event(NULL, conn, &unmap);
534 }
535
536 /*
537  * Called when a window changes its title
538  *
539  */
540 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
541                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
542     Con *con;
543     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
544         return 1;
545
546     window_update_name(con->window, prop);
547
548     x_push_changes(croot);
549
550     return 1;
551 }
552
553 /*
554  * Handles legacy window name updates (WM_NAME), see also src/window.c,
555  * window_update_name_legacy().
556  *
557  */
558 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
559                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
560     Con *con;
561     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
562         return 1;
563
564     window_update_name_legacy(con->window, prop);
565
566     x_push_changes(croot);
567
568     return 1;
569 }
570
571 /*
572  * Updates the client’s WM_CLASS property
573  *
574  */
575 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
576                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
577     Con *con;
578     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
579         return 1;
580
581     window_update_class(con->window, prop);
582
583     return 0;
584 }
585
586 /*
587  * Expose event means we should redraw our windows (= title bar)
588  *
589  */
590 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
591     Con *parent, *con;
592
593     /* event->count is the number of minimum remaining expose events for this
594      * window, so we skip all events but the last one */
595     if (event->count != 0)
596         return 1;
597
598     DLOG("window = %08x\n", event->window);
599
600     if ((parent = con_by_frame_id(event->window)) == NULL) {
601         LOG("expose event for unknown window, ignoring\n");
602         return 1;
603     }
604
605     if (parent->window)
606         x_draw_decoration(parent);
607
608     TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
609         DLOG("expose for con %p / %s\n", con, con->name);
610         if (con->window)
611             x_draw_decoration(con);
612     }
613
614     /* We also need to render the decorations of other Cons nearby the Con
615      * itself to not get overlapping decorations */
616     TAILQ_FOREACH(con, &(parent->parent->nodes_head), nodes) {
617         DLOG("expose for con %p / %s\n", con, con->name);
618         if (con->window)
619             x_draw_decoration(con);
620     }
621     xcb_flush(conn);
622
623     return 1;
624 }
625
626 /*
627  * Handle client messages (EWMH)
628  *
629  */
630 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
631     LOG("ClientMessage for window 0x%08x\n", event->window);
632     if (event->type == atoms[_NET_WM_STATE]) {
633         if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN]) {
634             DLOG("atom in clientmessage is %d, fullscreen is %d\n",
635                     event->data.data32[1], atoms[_NET_WM_STATE_FULLSCREEN]);
636             DLOG("not about fullscreen atom\n");
637             return 0;
638         }
639
640         Con *con = con_by_window_id(event->window);
641         if (con == NULL) {
642             DLOG("Could not get window for client message\n");
643             return 0;
644         }
645
646         /* Check if the fullscreen state should be toggled */
647         if ((con->fullscreen_mode != CF_NONE &&
648              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
649               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
650             (con->fullscreen_mode == CF_NONE &&
651              (event->data.data32[0] == _NET_WM_STATE_ADD ||
652               event->data.data32[0] == _NET_WM_STATE_TOGGLE))) {
653             DLOG("toggling fullscreen\n");
654             con_toggle_fullscreen(con);
655         }
656
657         tree_render();
658         x_push_changes(croot);
659     } else {
660         ELOG("unhandled clientmessage\n");
661         return 0;
662     }
663
664     return 1;
665 }
666
667 #if 0
668 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
669                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
670         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
671          before changing this property. */
672         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
673         return 0;
674 }
675 #endif
676
677 /*
678  * Handles the size hints set by a window, but currently only the part necessary for displaying
679  * clients proportionally inside their frames (mplayer for example)
680  *
681  * See ICCCM 4.1.2.3 for more details
682  *
683  */
684 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
685                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
686     Con *con = con_by_window_id(window);
687     if (con == NULL) {
688         DLOG("Received WM_NORMAL_HINTS for unknown client\n");
689         return 1;
690     }
691
692     xcb_size_hints_t size_hints;
693
694         //CLIENT_LOG(client);
695
696     /* If the hints were already in this event, use them, if not, request them */
697     if (reply != NULL)
698         xcb_get_wm_size_hints_from_reply(&size_hints, reply);
699     else
700         xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, con->window->id), &size_hints, NULL);
701
702     if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
703         // TODO: Minimum size is not yet implemented
704         DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
705     }
706
707     bool changed = false;
708     if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
709         if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
710             if (con->width_increment != size_hints.width_inc) {
711                 con->width_increment = size_hints.width_inc;
712                 changed = true;
713             }
714         if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
715             if (con->height_increment != size_hints.height_inc) {
716                 con->height_increment = size_hints.height_inc;
717                 changed = true;
718             }
719
720         if (changed)
721             DLOG("resize increments changed\n");
722     }
723
724     int base_width = 0, base_height = 0;
725
726     /* base_width/height are the desired size of the window.
727        We check if either the program-specified size or the program-specified
728        min-size is available */
729     if (size_hints.flags & XCB_SIZE_HINT_BASE_SIZE) {
730         base_width = size_hints.base_width;
731         base_height = size_hints.base_height;
732     } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
733         /* TODO: is this right? icccm says not */
734         base_width = size_hints.min_width;
735         base_height = size_hints.min_height;
736     }
737
738     if (base_width != con->base_width ||
739         base_height != con->base_height) {
740         con->base_width = base_width;
741         con->base_height = base_height;
742         DLOG("client's base_height changed to %d\n", base_height);
743         DLOG("client's base_width changed to %d\n", base_width);
744     }
745
746     /* If no aspect ratio was set or if it was invalid, we ignore the hints */
747     if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
748         (size_hints.min_aspect_num <= 0) ||
749         (size_hints.min_aspect_den <= 0)) {
750         goto render_and_return;
751     }
752
753     /* XXX: do we really use rect here, not window_rect? */
754     double width = con->rect.width - base_width;
755     double height = con->rect.height - base_height;
756     /* Convert numerator/denominator to a double */
757     double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
758     double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
759
760     DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
761     DLOG("width = %f, height = %f\n", width, height);
762
763     /* Sanity checks, this is user-input, in a way */
764     if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
765         goto render_and_return;
766
767     /* Check if we need to set proportional_* variables using the correct ratio */
768     if ((width / height) < min_aspect) {
769         con->proportional_width = width;
770         con->proportional_height = width / min_aspect;
771     } else if ((width / height) > max_aspect) {
772         con->proportional_width = width;
773         con->proportional_height = width / max_aspect;
774     } else goto render_and_return;
775
776 render_and_return:
777     tree_render();
778     return 1;
779 }
780
781 /*
782  * Handles the WM_HINTS property for extracting the urgency state of the window.
783  *
784  */
785 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
786                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
787     Con *con = con_by_window_id(window);
788     if (con == NULL) {
789         DLOG("Received WM_HINTS for unknown client\n");
790         return 1;
791     }
792
793     xcb_wm_hints_t hints;
794
795     if (reply != NULL) {
796         if (!xcb_get_wm_hints_from_reply(&hints, reply))
797             return 1;
798     } else {
799         if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, con->window->id), &hints, NULL))
800             return 1;
801     }
802
803     if (!con->urgent && focused == con) {
804         DLOG("Ignoring urgency flag for current client\n");
805         return 1;
806     }
807
808     /* Update the flag on the client directly */
809     con->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
810     //CLIENT_LOG(con);
811     LOG("Urgency flag changed to %d\n", con->urgent);
812
813     workspace_update_urgent_flag(con_get_workspace(con));
814
815 #if 0
816     /* If the workspace this client is on is not visible, we need to redraw
817      * the workspace bar */
818     if (!workspace_is_visible(client->workspace)) {
819             Output *output = client->workspace->output;
820             render_workspace(conn, output, output->current_workspace);
821             xcb_flush(conn);
822     }
823 #endif
824
825     return 1;
826 }
827
828 /*
829  * Handles the transient for hints set by a window, signalizing that this window is a popup window
830  * for some other window.
831  *
832  * See ICCCM 4.1.2.6 for more details
833  *
834  */
835 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
836                          xcb_atom_t name, xcb_get_property_reply_t *prop) {
837     Con *con;
838
839     if ((con = con_by_window_id(window)) == NULL || con->window == NULL) {
840         DLOG("No such window\n");
841         return 1;
842     }
843
844     if (prop == NULL) {
845         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
846                                 false, window, WM_TRANSIENT_FOR, WINDOW, 0, 32), NULL);
847         if (prop == NULL)
848             return 1;
849     }
850
851     window_update_transient_for(con->window, prop);
852
853     // TODO: put window in floating mode if con->window->transient_for != XCB_NONE:
854 #if 0
855     if (client->floating == FLOATING_AUTO_OFF) {
856         DLOG("This is a popup window, putting into floating\n");
857         toggle_floating_mode(conn, client, true);
858     }
859 #endif
860
861     return 1;
862 }
863
864 /*
865  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
866  * toolwindow (or similar) and to which window it belongs (logical parent).
867  *
868  */
869 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
870                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
871     Con *con;
872     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
873         return 1;
874
875     if (prop == NULL) {
876         prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
877                                 false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
878         if (prop == NULL)
879             return 1;
880     }
881
882     window_update_leader(con->window, prop);
883
884     return 1;
885 }