]> git.sur5r.net Git - i3/i3/blob - src/move.c
Update copyright notices and get rid of ranges
[i3/i3] / src / move.c
1 #undef I3__FILE__
2 #define I3__FILE__ "move.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  * move.c: Moving containers into some direction.
10  *
11  */
12 #include "all.h"
13
14 typedef enum { BEFORE,
15                AFTER } position_t;
16
17 /*
18  * This function detaches 'con' from its parent and inserts it either before or
19  * after 'target'.
20  *
21  */
22 static void insert_con_into(Con *con, Con *target, position_t position) {
23     Con *parent = target->parent;
24     /* We need to preserve the old con->parent. While it might still be used to
25      * insert the entry before/after it, we call the on_remove_child callback
26      * afterwards which might then close the con if it is empty. */
27     Con *old_parent = con->parent;
28
29     con_detach(con);
30     con_fix_percent(con->parent);
31
32     /* When moving to a workspace, we respect the user’s configured
33      * workspace_layout */
34     if (parent->type == CT_WORKSPACE) {
35         Con *split = workspace_attach_to(parent);
36         if (split != parent) {
37             DLOG("Got a new split con, using that one instead\n");
38             con->parent = split;
39             con_attach(con, split, false);
40             DLOG("attached\n");
41             con->percent = 0.0;
42             con_fix_percent(split);
43             con = split;
44             DLOG("ok, continuing with con %p instead\n", con);
45             con_detach(con);
46         }
47     }
48
49     con->parent = parent;
50
51     if (position == BEFORE) {
52         TAILQ_INSERT_BEFORE(target, con, nodes);
53         TAILQ_INSERT_HEAD(&(parent->focus_head), con, focused);
54     } else if (position == AFTER) {
55         TAILQ_INSERT_AFTER(&(parent->nodes_head), target, con, nodes);
56         TAILQ_INSERT_HEAD(&(parent->focus_head), con, focused);
57     }
58
59     /* Pretend the con was just opened with regards to size percent values.
60      * Since the con is moved to a completely different con, the old value
61      * does not make sense anyways. */
62     con->percent = 0.0;
63     con_fix_percent(parent);
64
65     CALL(old_parent, on_remove_child);
66 }
67
68 /*
69  * This function detaches 'con' from its parent and puts it in the given
70  * workspace. Position is determined by the direction of movement into the
71  * workspace container.
72  *
73  */
74 static void attach_to_workspace(Con *con, Con *ws, direction_t direction) {
75     con_detach(con);
76     con_fix_percent(con->parent);
77
78     CALL(con->parent, on_remove_child);
79
80     con->parent = ws;
81
82     if (direction == D_RIGHT || direction == D_DOWN) {
83         TAILQ_INSERT_HEAD(&(ws->nodes_head), con, nodes);
84         TAILQ_INSERT_HEAD(&(ws->focus_head), con, focused);
85     } else {
86         TAILQ_INSERT_TAIL(&(ws->nodes_head), con, nodes);
87         TAILQ_INSERT_TAIL(&(ws->focus_head), con, focused);
88     }
89
90     /* Pretend the con was just opened with regards to size percent values.
91      * Since the con is moved to a completely different con, the old value
92      * does not make sense anyways. */
93     con->percent = 0.0;
94     con_fix_percent(ws);
95 }
96
97 /*
98  * Moves the given container to the closest output in the given direction if
99  * such an output exists.
100  *
101  */
102 static void move_to_output_directed(Con *con, direction_t direction) {
103     Con *old_ws = con_get_workspace(con);
104     Con *current_output_con = con_get_output(con);
105     Output *current_output = get_output_by_name(current_output_con->name);
106     Output *output = get_output_next(direction, current_output, CLOSEST_OUTPUT);
107
108     if (!output) {
109         DLOG("No output in this direction found. Not moving.\n");
110         return;
111     }
112
113     Con *ws = NULL;
114     GREP_FIRST(ws, output_get_content(output->con), workspace_is_visible(child));
115
116     if (!ws) {
117         DLOG("No workspace on output in this direction found. Not moving.\n");
118         return;
119     }
120
121     attach_to_workspace(con, ws, direction);
122
123     /* fix the focus stack */
124     con_focus(con);
125
126     /* force re-painting the indicators */
127     FREE(con->deco_render_params);
128
129     tree_flatten(croot);
130
131     ipc_send_workspace_event("focus", ws, old_ws);
132 }
133
134 /*
135  * Moves the given container in the given direction (D_LEFT, D_RIGHT,
136  * D_UP, D_DOWN).
137  *
138  */
139 void tree_move(Con *con, int direction) {
140     position_t position;
141     Con *target;
142
143     DLOG("Moving in direction %d\n", direction);
144
145     /* 1: get the first parent with the same orientation */
146
147     if (con->type == CT_WORKSPACE) {
148         DLOG("Not moving workspace\n");
149         return;
150     }
151
152     if (con->parent->type == CT_WORKSPACE && con_num_children(con->parent) == 1) {
153         /* This is the only con on this workspace */
154         move_to_output_directed(con, direction);
155         return;
156     }
157
158     orientation_t o = (direction == D_LEFT || direction == D_RIGHT ? HORIZ : VERT);
159
160     Con *same_orientation = con_parent_with_orientation(con, o);
161     /* The do {} while is used to 'restart' at this point with a different
162      * same_orientation, see the very last lines before the end of this block
163      * */
164     do {
165         /* There is no parent container with the same orientation */
166         if (!same_orientation) {
167             if (con_is_floating(con)) {
168                 /* this is a floating con, we just disable floating */
169                 floating_disable(con, true);
170                 return;
171             }
172             if (con_inside_floating(con)) {
173                 /* 'con' should be moved out of a floating container */
174                 DLOG("Inside floating, moving to workspace\n");
175                 attach_to_workspace(con, con_get_workspace(con), direction);
176                 goto end;
177             }
178             DLOG("Force-changing orientation\n");
179             ws_force_orientation(con_get_workspace(con), o);
180             same_orientation = con_parent_with_orientation(con, o);
181         }
182
183         /* easy case: the move is within this container */
184         if (same_orientation == con->parent) {
185             DLOG("We are in the same container\n");
186             Con *swap;
187             if ((swap = (direction == D_LEFT || direction == D_UP ? TAILQ_PREV(con, nodes_head, nodes) : TAILQ_NEXT(con, nodes)))) {
188                 if (!con_is_leaf(swap)) {
189                     DLOG("Moving into our bordering branch\n");
190                     target = con_descend_direction(swap, direction);
191                     position = (con_orientation(target->parent) != o ||
192                                         direction == D_UP ||
193                                         direction == D_LEFT
194                                     ? AFTER
195                                     : BEFORE);
196                     insert_con_into(con, target, position);
197                     goto end;
198                 }
199                 if (direction == D_LEFT || direction == D_UP)
200                     TAILQ_SWAP(swap, con, &(swap->parent->nodes_head), nodes);
201                 else
202                     TAILQ_SWAP(con, swap, &(swap->parent->nodes_head), nodes);
203
204                 TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
205                 TAILQ_INSERT_HEAD(&(swap->parent->focus_head), con, focused);
206
207                 DLOG("Swapped.\n");
208                 ipc_send_window_event("move", con);
209                 return;
210             }
211
212             if (con->parent == con_get_workspace(con)) {
213                 /*  If we couldn't find a place to move it on this workspace,
214                  *  try to move it to a workspace on a different output */
215                 move_to_output_directed(con, direction);
216                 ipc_send_window_event("move", con);
217                 return;
218             }
219
220             /* If there was no con with which we could swap the current one,
221              * search again, but starting one level higher. */
222             same_orientation = con_parent_with_orientation(con->parent, o);
223         }
224     } while (same_orientation == NULL);
225
226     /* this time, we have to move to another container */
227     /* This is the container *above* 'con' (an ancestor of con) which is inside
228      * 'same_orientation' */
229     Con *above = con;
230     while (above->parent != same_orientation)
231         above = above->parent;
232
233     /* Enforce the fullscreen focus restrictions. */
234     if (!con_fullscreen_permits_focusing(above->parent)) {
235         LOG("Cannot move out of fullscreen container\n");
236         return;
237     }
238
239     DLOG("above = %p\n", above);
240
241     Con *next = (direction == D_UP || direction == D_LEFT ? TAILQ_PREV(above, nodes_head, nodes) : TAILQ_NEXT(above, nodes));
242
243     if (next && !con_is_leaf(next)) {
244         DLOG("Moving into the bordering branch of our adjacent container\n");
245         target = con_descend_direction(next, direction);
246         position = (con_orientation(target->parent) != o ||
247                             direction == D_UP ||
248                             direction == D_LEFT
249                         ? AFTER
250                         : BEFORE);
251         insert_con_into(con, target, position);
252     } else if (con->parent->parent->type == CT_WORKSPACE &&
253                con->parent->layout != L_DEFAULT &&
254                con_num_children(con->parent) == 1) {
255         /* Con is the lone child of a non-default layout container at the edge
256          * of the workspace. Treat it as though the workspace is its parent
257          * and move it to the next output. */
258         DLOG("Grandparent is workspace\n");
259         move_to_output_directed(con, direction);
260     } else {
261         DLOG("Moving into container above\n");
262         position = (direction == D_UP || direction == D_LEFT ? BEFORE : AFTER);
263         insert_con_into(con, above, position);
264     }
265
266 end:
267     /* We need to call con_focus() to fix the focus stack "above" the container
268      * we just inserted the focused container into (otherwise, the parent
269      * container(s) would still point to the old container(s)). */
270     con_focus(con);
271
272     /* force re-painting the indicators */
273     FREE(con->deco_render_params);
274
275     tree_flatten(croot);
276     ipc_send_window_event("move", con);
277 }