]> git.sur5r.net Git - i3/i3/blob - src/resize.c
Merge branch 'next' into master
[i3/i3] / src / resize.c
1 #undef I3__FILE__
2 #define I3__FILE__ "resize.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * resize.c: Interactive resizing.
10  *
11  */
12 #include "all.h"
13
14 /*
15  * This is an ugly data structure which we need because there is no standard
16  * way of having nested functions (only available as a gcc extension at the
17  * moment, clang doesn’t support it) or blocks (only available as a clang
18  * extension and only on Mac OS X systems at the moment).
19  *
20  */
21 struct callback_params {
22     orientation_t orientation;
23     Con *output;
24     xcb_window_t helpwin;
25     uint32_t *new_position;
26 };
27
28 DRAGGING_CB(resize_callback) {
29     const struct callback_params *params = extra;
30     Con *output = params->output;
31     DLOG("new x = %d, y = %d\n", new_x, new_y);
32     if (params->orientation == HORIZ) {
33         /* Check if the new coordinates are within screen boundaries */
34         if (new_x > (output->rect.x + output->rect.width - 25) ||
35             new_x < (output->rect.x + 25))
36             return;
37
38         *(params->new_position) = new_x;
39         xcb_configure_window(conn, params->helpwin, XCB_CONFIG_WINDOW_X, params->new_position);
40     } else {
41         if (new_y > (output->rect.y + output->rect.height - 25) ||
42             new_y < (output->rect.y + 25))
43             return;
44
45         *(params->new_position) = new_y;
46         xcb_configure_window(conn, params->helpwin, XCB_CONFIG_WINDOW_Y, params->new_position);
47     }
48
49     xcb_flush(conn);
50 }
51
52 bool resize_find_tiling_participants(Con **current, Con **other, direction_t direction) {
53     DLOG("Find two participants for resizing container=%p in direction=%i\n", other, direction);
54     Con *first = *current;
55     Con *second = NULL;
56     if (first == NULL) {
57         DLOG("Current container is NULL, aborting.\n");
58         return false;
59     }
60
61     /* Go up in the tree and search for a container to resize */
62     const orientation_t search_orientation = ((direction == D_LEFT || direction == D_RIGHT) ? HORIZ : VERT);
63     const bool dir_backwards = (direction == D_UP || direction == D_LEFT);
64     while (first->type != CT_WORKSPACE &&
65            first->type != CT_FLOATING_CON &&
66            second == NULL) {
67         /* get the appropriate first container with the matching
68          * orientation (skip stacked/tabbed cons) */
69         if ((con_orientation(first->parent) != search_orientation) ||
70             (first->parent->layout == L_STACKED) ||
71             (first->parent->layout == L_TABBED)) {
72             first = first->parent;
73             continue;
74         }
75
76         /* get the counterpart for this resizement */
77         if (dir_backwards) {
78             second = TAILQ_PREV(first, nodes_head, nodes);
79         } else {
80             second = TAILQ_NEXT(first, nodes);
81         }
82
83         if (second == NULL) {
84             DLOG("No second container in this direction found, trying to look further up in the tree...\n");
85             first = first->parent;
86         }
87     }
88
89     DLOG("Found participants: first=%p and second=%p.\n", first, second);
90     *current = first;
91     *other = second;
92     if (first == NULL || second == NULL) {
93         DLOG("Could not find two participants for this resize request.\n");
94         return false;
95     }
96
97     return true;
98 }
99
100 int resize_graphical_handler(Con *first, Con *second, orientation_t orientation, const xcb_button_press_event_t *event) {
101     DLOG("resize handler\n");
102
103     /* TODO: previously, we were getting a rect containing all screens. why? */
104     Con *output = con_get_output(first);
105     DLOG("x = %d, width = %d\n", output->rect.x, output->rect.width);
106
107     x_mask_event_mask(~XCB_EVENT_MASK_ENTER_WINDOW);
108     xcb_flush(conn);
109
110     uint32_t mask = 0;
111     uint32_t values[2];
112
113     mask = XCB_CW_OVERRIDE_REDIRECT;
114     values[0] = 1;
115
116     /* Open a new window, the resizebar. Grab the pointer and move the window around
117        as the user moves the pointer. */
118     xcb_window_t grabwin = create_window(conn, output->rect, XCB_COPY_FROM_PARENT, XCB_COPY_FROM_PARENT,
119                                          XCB_WINDOW_CLASS_INPUT_ONLY, XCURSOR_CURSOR_POINTER, true, mask, values);
120
121     /* Keep track of the coordinate orthogonal to motion so we can determine
122      * the length of the resize afterward. */
123     uint32_t initial_position, new_position;
124
125     /* Configure the resizebar and snap the pointer. The resizebar runs along
126      * the rect of the second con and follows the motion of the pointer. */
127     Rect helprect;
128     if (orientation == HORIZ) {
129         helprect.x = second->rect.x;
130         helprect.y = second->rect.y;
131         helprect.width = logical_px(2);
132         helprect.height = second->rect.height;
133         initial_position = second->rect.x;
134         xcb_warp_pointer(conn, XCB_NONE, event->root, 0, 0, 0, 0,
135                          second->rect.x, event->root_y);
136     } else {
137         helprect.x = second->rect.x;
138         helprect.y = second->rect.y;
139         helprect.width = second->rect.width;
140         helprect.height = logical_px(2);
141         initial_position = second->rect.y;
142         xcb_warp_pointer(conn, XCB_NONE, event->root, 0, 0, 0, 0,
143                          event->root_x, second->rect.y);
144     }
145
146     mask = XCB_CW_BACK_PIXEL;
147     values[0] = config.client.focused.border.colorpixel;
148
149     mask |= XCB_CW_OVERRIDE_REDIRECT;
150     values[1] = 1;
151
152     xcb_window_t helpwin = create_window(conn, helprect, XCB_COPY_FROM_PARENT, XCB_COPY_FROM_PARENT,
153                                          XCB_WINDOW_CLASS_INPUT_OUTPUT, (orientation == HORIZ ? XCURSOR_CURSOR_RESIZE_HORIZONTAL : XCURSOR_CURSOR_RESIZE_VERTICAL), true, mask, values);
154
155     xcb_circulate_window(conn, XCB_CIRCULATE_RAISE_LOWEST, helpwin);
156
157     xcb_flush(conn);
158
159     /* `new_position' will be updated by the `resize_callback'. */
160     new_position = initial_position;
161
162     const struct callback_params params = {orientation, output, helpwin, &new_position};
163
164     /* `drag_pointer' blocks until the drag is completed. */
165     drag_result_t drag_result = drag_pointer(NULL, event, grabwin, BORDER_TOP, 0, resize_callback, &params);
166
167     xcb_destroy_window(conn, helpwin);
168     xcb_destroy_window(conn, grabwin);
169     xcb_flush(conn);
170
171     /* User cancelled the drag so no action should be taken. */
172     if (drag_result == DRAG_REVERT)
173         return 0;
174
175     int pixels = (new_position - initial_position);
176
177     DLOG("Done, pixels = %d\n", pixels);
178
179     // if we got thus far, the containers must have
180     // percentages associated with them
181     assert(first->percent > 0.0);
182     assert(second->percent > 0.0);
183
184     // calculate the new percentage for the first container
185     double new_percent, difference;
186     double percent = first->percent;
187     DLOG("percent = %f\n", percent);
188     int original = (orientation == HORIZ ? first->rect.width : first->rect.height);
189     DLOG("original = %d\n", original);
190     new_percent = (original + pixels) * (percent / original);
191     difference = percent - new_percent;
192     DLOG("difference = %f\n", difference);
193     DLOG("new percent = %f\n", new_percent);
194     first->percent = new_percent;
195
196     // calculate the new percentage for the second container
197     double s_percent = second->percent;
198     second->percent = s_percent + difference;
199     DLOG("second->percent = %f\n", second->percent);
200
201     // now we must make sure that the sum of the percentages remain 1.0
202     con_fix_percent(first->parent);
203
204     return 0;
205 }