]> git.sur5r.net Git - i3/i3/blob - src/click.c
Bugfix: Fix tabbed container resizing check (Thanks julien)
[i3/i3] / src / click.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * click.c: Button press (mouse click) events.
8  *
9  */
10 #include "all.h"
11
12 #include <time.h>
13 #include <math.h>
14
15 #include <xcb/xcb_atom.h>
16 #include <xcb/xcb_icccm.h>
17
18 #include <X11/XKBlib.h>
19
20 typedef enum { CLICK_BORDER = 0, CLICK_DECORATION = 1, CLICK_INSIDE = 2 } click_destination_t;
21
22 /*
23  * Finds the correct pair of first/second cons between the resize will take
24  * place according to the passed border position (top, left, right, bottom),
25  * then calls resize_graphical_handler().
26  *
27  */
28 static bool tiling_resize_for_border(Con *con, border_t border, const xcb_button_press_event_t *event) {
29     DLOG("border = %d\n", border);
30     char way = (border == BORDER_TOP || border == BORDER_LEFT ? 'p' : 'n');
31     orientation_t orientation = (border == BORDER_TOP || border == BORDER_BOTTOM ? VERT : HORIZ);
32
33     /* look for a parent container with the right orientation */
34     Con *first = NULL, *second = NULL;
35     Con *resize_con = con;
36     while (resize_con->type != CT_WORKSPACE &&
37            resize_con->type != CT_FLOATING_CON &&
38            resize_con->parent->orientation != orientation)
39         resize_con = resize_con->parent;
40
41     if (resize_con->type != CT_WORKSPACE &&
42         resize_con->type != CT_FLOATING_CON &&
43         resize_con->parent->orientation == orientation) {
44         first = resize_con;
45         second = (way == 'n') ? TAILQ_NEXT(first, nodes) : TAILQ_PREV(first, nodes_head, nodes);
46         if (second == TAILQ_END(&(first->nodes_head))) {
47             second = NULL;
48         }
49         else if (way == 'p') {
50             Con *tmp = first;
51             first = second;
52             second = tmp;
53         }
54     }
55
56     if (first == NULL || second == NULL) {
57         DLOG("Resize not possible\n");
58         return false;
59     }
60     else {
61         assert(first != second);
62         assert(first->parent == second->parent);
63         resize_graphical_handler(first, second, orientation, event);
64     }
65
66     DLOG("After resize handler, rendering\n");
67     tree_render();
68     return true;
69 }
70
71 /*
72  * Called when the user clicks using the floating_modifier, but the client is in
73  * tiling layout.
74  *
75  * Returns false if it does not do anything (that is, the click should be sent
76  * to the client).
77  *
78  */
79 static bool floating_mod_on_tiled_client(Con *con, const xcb_button_press_event_t *event) {
80     /* The client is in tiling layout. We can still initiate a resize with the
81      * right mouse button, by chosing the border which is the most near one to
82      * the position of the mouse pointer */
83     int to_right = con->rect.width - event->event_x,
84         to_left = event->event_x,
85         to_top = event->event_y,
86         to_bottom = con->rect.height - event->event_y;
87
88     DLOG("click was %d px to the right, %d px to the left, %d px to top, %d px to bottom\n",
89                     to_right, to_left, to_top, to_bottom);
90
91     if (to_right < to_left &&
92         to_right < to_top &&
93         to_right < to_bottom)
94         return tiling_resize_for_border(con, BORDER_RIGHT, event);
95
96     if (to_left < to_right &&
97         to_left < to_top &&
98         to_left < to_bottom)
99         return tiling_resize_for_border(con, BORDER_LEFT, event);
100
101     if (to_top < to_right &&
102         to_top < to_left &&
103         to_top < to_bottom)
104         return tiling_resize_for_border(con, BORDER_TOP, event);
105
106     if (to_bottom < to_right &&
107         to_bottom < to_left &&
108         to_bottom < to_top)
109         return tiling_resize_for_border(con, BORDER_BOTTOM, event);
110
111     return false;
112 }
113
114 /*
115  * Finds out which border was clicked on and calls tiling_resize_for_border().
116  *
117  */
118 static bool tiling_resize(Con *con, const xcb_button_press_event_t *event, const click_destination_t dest) {
119     /* check if this was a click on the window border (and on which one) */
120     Rect bsr = con_border_style_rect(con);
121     DLOG("BORDER x = %d, y = %d for con %p, window 0x%08x\n",
122             event->event_x, event->event_y, con, event->event);
123     DLOG("checks for right >= %d\n", con->window_rect.x + con->window_rect.width);
124     if (dest == CLICK_DECORATION) {
125         /* The user clicked on a window decoration. We ignore the following case:
126          * The container is a h-split, tabbed or stacked container with > 1
127          * window. Decorations will end up next to each other and the user
128          * expects to switch to a window by clicking on its decoration. */
129
130         /* Since the container might either be the child *or* already a split
131          * container (in the case of a nested split container), we need to make
132          * sure that we are dealing with the split container here. */
133         if (con_is_leaf(con))
134             con = con->parent;
135
136         if ((con->layout == L_STACKED ||
137              con->layout == L_TABBED ||
138              con->orientation == HORIZ) &&
139             con_num_children(con) > 1) {
140             DLOG("Not handling this resize, this container has > 1 child.\n");
141             return false;
142         }
143         return tiling_resize_for_border(con, BORDER_TOP, event);
144     }
145
146     if (event->event_x >= 0 && event->event_x <= bsr.x &&
147         event->event_y >= bsr.y && event->event_y <= con->rect.height + bsr.height)
148         return tiling_resize_for_border(con, BORDER_LEFT, event);
149
150     if (event->event_x >= (con->window_rect.x + con->window_rect.width) &&
151         event->event_y >= bsr.y && event->event_y <= con->rect.height + bsr.height)
152         return tiling_resize_for_border(con, BORDER_RIGHT, event);
153
154     if (event->event_y >= (con->window_rect.y + con->window_rect.height))
155         return tiling_resize_for_border(con, BORDER_BOTTOM, event);
156
157     return false;
158 }
159
160 /*
161  * Being called by handle_button_press, this function calls the appropriate
162  * functions for resizing/dragging.
163  *
164  */
165 static int route_click(Con *con, const xcb_button_press_event_t *event, const bool mod_pressed, const click_destination_t dest) {
166     DLOG("--> click properties: mod = %d, destination = %d\n", mod_pressed, dest);
167     DLOG("--> OUTCOME = %p\n", con);
168     DLOG("type = %d, name = %s\n", con->type, con->name);
169
170     /* don’t handle dockarea cons, they must not be focused */
171     if (con->parent->type == CT_DOCKAREA)
172         goto done;
173
174     /* get the floating con */
175     Con *floatingcon = con_inside_floating(con);
176     const bool proportional = (event->state & BIND_SHIFT);
177     const bool in_stacked = (con->parent->layout == L_STACKED || con->parent->layout == L_TABBED);
178
179     /* 1: see if the user scrolled on the decoration of a stacked/tabbed con */
180     if (in_stacked &&
181         dest == CLICK_DECORATION &&
182         (event->detail == XCB_BUTTON_INDEX_4 ||
183          event->detail == XCB_BUTTON_INDEX_5)) {
184         DLOG("Scrolling on a window decoration\n");
185         orientation_t orientation = (con->parent->layout == L_STACKED ? VERT : HORIZ);
186         if (event->detail == XCB_BUTTON_INDEX_4)
187             tree_next('p', orientation);
188         else tree_next('n', orientation);
189         goto done;
190     }
191
192     /* 2: focus this con */
193     con_focus(con);
194
195     /* 3: For floating containers, we also want to raise them on click.
196      * We will skip handling events on floating cons in fullscreen mode */
197     Con *ws = con_get_workspace(con);
198     Con *fs = (ws ? con_get_fullscreen_con(ws, CF_OUTPUT) : NULL);
199     if (floatingcon != NULL && fs == NULL) {
200         floating_raise_con(floatingcon);
201
202         /* 4: floating_modifier plus left mouse button drags */
203         if (mod_pressed && event->detail == 1) {
204             floating_drag_window(floatingcon, event);
205             return 1;
206         }
207
208         /* 5: resize (floating) if this was a click on the left/right/bottom
209          * border. also try resizing (tiling) if it was a click on the top
210          * border, but continue if that does not work */
211         if (mod_pressed && event->detail == 3) {
212             DLOG("floating resize due to floatingmodifier\n");
213             floating_resize_window(floatingcon, proportional, event);
214             return 1;
215         }
216
217         if (!in_stacked && dest == CLICK_DECORATION) {
218             /* try tiling resize, but continue if it doesn’t work */
219             DLOG("tiling resize with fallback\n");
220             if (tiling_resize(con, event, dest))
221                 goto done;
222         }
223
224         if (dest == CLICK_BORDER) {
225             DLOG("floating resize due to border click\n");
226             floating_resize_window(floatingcon, proportional, event);
227             return 1;
228         }
229
230         /* 6: dragging, if this was a click on a decoration (which did not lead
231          * to a resize) */
232         if (!in_stacked && dest == CLICK_DECORATION) {
233             floating_drag_window(floatingcon, event);
234             return 1;
235         }
236
237         goto done;
238     }
239
240     if (in_stacked) {
241         /* for stacked/tabbed cons, the resizing applies to the parent
242          * container */
243         con = con->parent;
244     }
245
246     /* 7: floating modifier pressed, initiate a resize */
247     if (mod_pressed && event->detail == 3) {
248         if (floating_mod_on_tiled_client(con, event))
249             return 1;
250     }
251     /* 8: otherwise, check for border/decoration clicks and resize */
252     else if (dest == CLICK_BORDER || dest == CLICK_DECORATION) {
253         DLOG("Trying to resize (tiling)\n");
254         tiling_resize(con, event, dest);
255     }
256
257 done:
258     xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, event->time);
259     xcb_flush(conn);
260     tree_render();
261     return 0;
262 }
263
264 /*
265  * The button press X callback. This function determines whether the floating
266  * modifier is pressed and where the user clicked (decoration, border, inside
267  * the window).
268  *
269  * Then, route_click is called on the appropriate con.
270  *
271  */
272 int handle_button_press(xcb_button_press_event_t *event) {
273     Con *con;
274     DLOG("Button %d pressed on window 0x%08x\n", event->state, event->event);
275
276     last_timestamp = event->time;
277
278     const uint32_t mod = config.floating_modifier;
279     const bool mod_pressed = (mod != 0 && (event->state & mod) == mod);
280     DLOG("floating_mod = %d, detail = %d\n", mod_pressed, event->detail);
281     if ((con = con_by_window_id(event->event)))
282         return route_click(con, event, mod_pressed, CLICK_INSIDE);
283
284     if (!(con = con_by_frame_id(event->event))) {
285         ELOG("Clicked into unknown window?!\n");
286         xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, event->time);
287         xcb_flush(conn);
288         return 0;
289     }
290
291     /* Check if the click was on the decoration of a child */
292     Con *child;
293     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
294         if (!rect_contains(child->deco_rect, event->event_x, event->event_y))
295             continue;
296
297         return route_click(child, event, mod_pressed, CLICK_DECORATION);
298     }
299
300     return route_click(con, event, mod_pressed, CLICK_BORDER);
301 }