]> git.sur5r.net Git - i3/i3/blob - src/commands.c
ff682bd5ed35b20dec55c0bfa3ee64bd92f213b4
[i3/i3] / src / commands.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <stdbool.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <assert.h>
15 #include <unistd.h>
16 #include <string.h>
17
18 #include <xcb/xcb.h>
19
20 #include "util.h"
21 #include "data.h"
22 #include "table.h"
23 #include "layout.h"
24 #include "i3.h"
25 #include "xinerama.h"
26 #include "client.h"
27 #include "floating.h"
28
29 bool focus_window_in_container(xcb_connection_t *conn, Container *container, direction_t direction) {
30         /* If this container is empty, we’re done */
31         if (container->currently_focused == NULL)
32                 return false;
33
34         /* Get the previous/next client or wrap around */
35         Client *candidate = NULL;
36         if (direction == D_UP) {
37                 if ((candidate = CIRCLEQ_PREV_OR_NULL(&(container->clients), container->currently_focused, clients)) == NULL)
38                         candidate = CIRCLEQ_LAST(&(container->clients));
39         }
40         else if (direction == D_DOWN) {
41                 if ((candidate = CIRCLEQ_NEXT_OR_NULL(&(container->clients), container->currently_focused, clients)) == NULL)
42                         candidate = CIRCLEQ_FIRST(&(container->clients));
43         } else LOG("Direction not implemented!\n");
44
45         /* If we could not switch, the container contains exactly one client. We return false */
46         if (candidate == container->currently_focused)
47                 return false;
48
49         /* Set focus */
50         set_focus(conn, candidate, true);
51
52         return true;
53 }
54
55 typedef enum { THING_WINDOW, THING_CONTAINER } thing_t;
56
57 static void focus_thing(xcb_connection_t *conn, direction_t direction, thing_t thing) {
58         LOG("focusing direction %d\n", direction);
59
60         int new_row = current_row,
61             new_col = current_col;
62
63         Container *container = CUR_CELL;
64         Workspace *t_ws = c_ws;
65
66         /* There always is a container. If not, current_col or current_row is wrong */
67         assert(container != NULL);
68
69         if (container->workspace->fullscreen_client != NULL) {
70                 LOG("You're in fullscreen mode. Won't switch focus\n");
71                 return;
72         }
73
74         /* TODO: for horizontal default layout, this has to be expanded to LEFT/RIGHT */
75         if (direction == D_UP || direction == D_DOWN) {
76                 if (thing == THING_WINDOW)
77                         /* Let’s see if we can perform up/down focus in the current container */
78                         if (focus_window_in_container(conn, container, direction))
79                                 return;
80
81                 if (direction == D_DOWN && cell_exists(current_col, current_row+1))
82                         new_row = current_row + t_ws->table[current_col][current_row]->rowspan;
83                 else if (direction == D_UP && cell_exists(current_col, current_row-1)) {
84                         /* Set new_row as a sane default, but it may get overwritten in a second */
85                         new_row--;
86
87                         /* Search from the top to correctly handle rowspanned containers */
88                         for (int rows = 0; rows < current_row; rows += t_ws->table[current_col][rows]->rowspan) {
89                                 if (new_row > (rows + (t_ws->table[current_col][rows]->rowspan - 1)))
90                                         continue;
91
92                                 new_row = rows;
93                                 break;
94                         }
95                 } else {
96                         /* Let’s see if there is a screen down/up there to which we can switch */
97                         LOG("container is at %d with height %d\n", container->y, container->height);
98                         i3Screen *screen;
99                         int destination_y = (direction == D_UP ? (container->y - 1) : (container->y + container->height + 1));
100                         if ((screen = get_screen_containing(container->x, destination_y)) == NULL) {
101                                 LOG("Wrapping screen around vertically\n");
102                                 /* No screen found? Then wrap */
103                                 screen = get_screen_most((direction == D_UP ? D_DOWN : D_UP));
104                         }
105                         t_ws = &(workspaces[screen->current_workspace]);
106                         new_row = (direction == D_UP ? (t_ws->rows - 1) : 0);
107                 }
108         } else if (direction == D_LEFT || direction == D_RIGHT) {
109                 if (direction == D_RIGHT && cell_exists(current_col+1, current_row))
110                         new_col = current_col + t_ws->table[current_col][current_row]->colspan;
111                 else if (direction == D_LEFT && cell_exists(current_col-1, current_row)) {
112                         /* Set new_col as a sane default, but it may get overwritten in a second */
113                         new_col--;
114
115                         /* Search from the left to correctly handle colspanned containers */
116                         for (int cols = 0; cols < current_col; cols += t_ws->table[cols][current_row]->colspan) {
117                                 if (new_col > (cols + (t_ws->table[cols][current_row]->colspan - 1)))
118                                         continue;
119
120                                 new_col = cols;
121                                 break;
122                         }
123                 } else {
124                         /* Let’s see if there is a screen left/right here to which we can switch */
125                         LOG("container is at %d with width %d\n", container->x, container->width);
126                         i3Screen *screen;
127                         int destination_x = (direction == D_LEFT ? (container->x - 1) : (container->x + container->width + 1));
128                         if ((screen = get_screen_containing(destination_x, container->y)) == NULL) {
129                                 LOG("Wrapping screen around horizontally\n");
130                                 screen = get_screen_most((direction == D_LEFT ? D_RIGHT : D_LEFT));
131                         }
132                         t_ws = &(workspaces[screen->current_workspace]);
133                         new_col = (direction == D_LEFT ? (t_ws->cols - 1) : 0);
134                 }
135         } else {
136                 LOG("direction unhandled\n");
137                 return;
138         }
139
140         /* Bounds checking */
141         if (new_col >= t_ws->cols)
142                 new_col = (t_ws->cols - 1);
143         if (new_row >= t_ws->rows)
144                 new_row = (t_ws->rows - 1);
145
146         if (t_ws->table[new_col][new_row]->currently_focused != NULL)
147                 set_focus(conn, t_ws->table[new_col][new_row]->currently_focused, true);
148 }
149
150 /*
151  * Tries to move the window inside its current container.
152  *
153  * Returns true if the window could be moved, false otherwise.
154  *
155  */
156 static bool move_current_window_in_container(xcb_connection_t *conn, Client *client,
157                 direction_t direction) {
158         assert(client->container != NULL);
159
160         Client *other = (direction == D_UP ? CIRCLEQ_PREV(client, clients) :
161                                              CIRCLEQ_NEXT(client, clients));
162
163         if (other == CIRCLEQ_END(&(client->container->clients)))
164                 return false;
165
166         LOG("i can do that\n");
167         /* We can move the client inside its current container */
168         CIRCLEQ_REMOVE(&(client->container->clients), client, clients);
169         if (direction == D_UP)
170                 CIRCLEQ_INSERT_BEFORE(&(client->container->clients), other, client, clients);
171         else CIRCLEQ_INSERT_AFTER(&(client->container->clients), other, client, clients);
172         render_layout(conn);
173         return true;
174 }
175
176 /*
177  * Moves the current window or whole container to the given direction, creating a column/row if
178  * necessary.
179  *
180  */
181 static void move_current_window(xcb_connection_t *conn, direction_t direction) {
182         LOG("moving window to direction %s\n", (direction == D_UP ? "up" : (direction == D_DOWN ? "down" :
183                                             (direction == D_LEFT ? "left" : "right"))));
184         /* Get current window */
185         Container *container = CUR_CELL,
186                   *new = NULL;
187
188         /* There has to be a container, see focus_window() */
189         assert(container != NULL);
190
191         /* If there is no window or the dock window is focused, we’re done */
192         if (container->currently_focused == NULL ||
193             container->currently_focused->dock)
194                 return;
195
196         /* As soon as the client is moved away, the last focused client in the old
197          * container needs to get focus, if any. Therefore, we save it here. */
198         Client *current_client = container->currently_focused;
199         Client *to_focus = get_last_focused_client(conn, container, current_client);
200
201         if (to_focus == NULL) {
202                 to_focus = CIRCLEQ_NEXT_OR_NULL(&(container->clients), current_client, clients);
203                 if (to_focus == NULL)
204                         to_focus = CIRCLEQ_PREV_OR_NULL(&(container->clients), current_client, clients);
205         }
206
207         switch (direction) {
208                 case D_LEFT:
209                         /* If we’re at the left-most position, move the rest of the table right */
210                         if (current_col == 0) {
211                                 expand_table_cols_at_head(c_ws);
212                                 new = CUR_CELL;
213                         } else
214                                 new = CUR_TABLE[--current_col][current_row];
215                         break;
216                 case D_RIGHT:
217                         if (current_col == (c_ws->cols-1))
218                                 expand_table_cols(c_ws);
219
220                         new = CUR_TABLE[++current_col][current_row];
221                         break;
222                 case D_UP:
223                         if (move_current_window_in_container(conn, current_client, D_UP))
224                                 return;
225
226                         /* if we’re at the up-most position, move the rest of the table down */
227                         if (current_row == 0) {
228                                 expand_table_rows_at_head(c_ws);
229                                 new = CUR_CELL;
230                         } else
231                                 new = CUR_TABLE[current_col][--current_row];
232                         break;
233                 case D_DOWN:
234                         if (move_current_window_in_container(conn, current_client, D_DOWN))
235                                 return;
236
237                         if (current_row == (c_ws->rows-1))
238                                 expand_table_rows(c_ws);
239
240                         new = CUR_TABLE[current_col][++current_row];
241                         break;
242                 /* To make static analyzers happy: */
243                 default:
244                         return;
245         }
246
247         /* Remove it from the old container and put it into the new one */
248         client_remove_from_container(conn, current_client, container, true);
249
250         if (new->currently_focused != NULL)
251                 CIRCLEQ_INSERT_AFTER(&(new->clients), new->currently_focused, current_client, clients);
252         else CIRCLEQ_INSERT_TAIL(&(new->clients), current_client, clients);
253         SLIST_INSERT_HEAD(&(new->workspace->focus_stack), current_client, focus_clients);
254
255         /* Update data structures */
256         current_client->container = new;
257         current_client->workspace = new->workspace;
258         container->currently_focused = to_focus;
259         new->currently_focused = current_client;
260
261         Workspace *workspace = container->workspace;
262
263         /* delete all empty columns/rows */
264         cleanup_table(conn, workspace);
265
266         /* Fix colspan/rowspan if it’d overlap */
267         fix_colrowspan(conn, workspace);
268
269         render_workspace(conn, workspace->screen, workspace);
270         xcb_flush(conn);
271
272         set_focus(conn, current_client, true);
273 }
274
275 static void move_current_container(xcb_connection_t *conn, direction_t direction) {
276         LOG("moving container to direction %s\n", (direction == D_UP ? "up" : (direction == D_DOWN ? "down" :
277                                             (direction == D_LEFT ? "left" : "right"))));
278         /* Get current window */
279         Container *container = CUR_CELL,
280                   *new = NULL;
281
282         Container **old = &CUR_CELL;
283
284         /* There has to be a container, see focus_window() */
285         assert(container != NULL);
286
287         switch (direction) {
288                 case D_LEFT:
289                         /* If we’re at the left-most position, move the rest of the table right */
290                         if (current_col == 0) {
291                                 expand_table_cols_at_head(c_ws);
292                                 new = CUR_CELL;
293                                 old = &CUR_TABLE[current_col+1][current_row];
294                         } else
295                                 new = CUR_TABLE[--current_col][current_row];
296                         break;
297                 case D_RIGHT:
298                         if (current_col == (c_ws->cols-1))
299                                 expand_table_cols(c_ws);
300
301                         new = CUR_TABLE[++current_col][current_row];
302                         break;
303                 case D_UP:
304                         /* if we’re at the up-most position, move the rest of the table down */
305                         if (current_row == 0) {
306                                 expand_table_rows_at_head(c_ws);
307                                 new = CUR_CELL;
308                                 old = &CUR_TABLE[current_col][current_row+1];
309                         } else
310                                 new = CUR_TABLE[current_col][--current_row];
311                         break;
312                 case D_DOWN:
313                         if (current_row == (c_ws->rows-1))
314                                 expand_table_rows(c_ws);
315
316                         new = CUR_TABLE[current_col][++current_row];
317                         break;
318                 /* To make static analyzers happy: */
319                 default:
320                         return;
321         }
322
323         LOG("old = %d,%d and new = %d,%d\n", container->col, container->row, new->col, new->row);
324
325         /* Swap the containers */
326         int col = new->col;
327         int row = new->row;
328
329         *old = new;
330         new->col = container->col;
331         new->row = container->row;
332
333         CUR_CELL = container;
334         container->col = col;
335         container->row = row;
336
337         Workspace *workspace = container->workspace;
338
339         /* delete all empty columns/rows */
340         cleanup_table(conn, workspace);
341
342         /* Fix colspan/rowspan if it’d overlap */
343         fix_colrowspan(conn, workspace);
344
345         render_layout(conn);
346 }
347
348 /*
349  * "Snaps" the current container (not possible for windows, because it works at table base)
350  * to the given direction, that is, adjusts cellspan/rowspan
351  *
352  */
353 static void snap_current_container(xcb_connection_t *conn, direction_t direction) {
354         LOG("snapping container to direction %d\n", direction);
355
356         Container *container = CUR_CELL;
357
358         assert(container != NULL);
359
360         switch (direction) {
361                 case D_LEFT:
362                         /* Snap to the left is actually a move to the left and then a snap right */
363                         if (!cell_exists(container->col - 1, container->row) ||
364                             CUR_TABLE[container->col-1][container->row]->currently_focused != NULL) {
365                                 LOG("cannot snap to left - the cell is already used\n");
366                                 return;
367                         }
368
369                         move_current_window(conn, D_LEFT);
370                         snap_current_container(conn, D_RIGHT);
371                         return;
372                 case D_RIGHT: {
373                         /* Check if the cell is used */
374                         int new_col = container->col + container->colspan;
375                         for (int i = 0; i < container->rowspan; i++)
376                                 if (!cell_exists(new_col, container->row + i) ||
377                                     CUR_TABLE[new_col][container->row + i]->currently_focused != NULL) {
378                                         LOG("cannot snap to right - the cell is already used\n");
379                                         return;
380                                 }
381
382                         /* Check if there are other cells with rowspan, which are in our way.
383                          * If so, reduce their rowspan. */
384                         for (int i = container->row-1; i >= 0; i--) {
385                                 LOG("we got cell %d, %d with rowspan %d\n",
386                                                 new_col, i, CUR_TABLE[new_col][i]->rowspan);
387                                 while ((CUR_TABLE[new_col][i]->rowspan-1) >= (container->row - i))
388                                         CUR_TABLE[new_col][i]->rowspan--;
389                                 LOG("new rowspan = %d\n", CUR_TABLE[new_col][i]->rowspan);
390                         }
391
392                         container->colspan++;
393                         break;
394                 }
395                 case D_UP:
396                         if (!cell_exists(container->col, container->row - 1) ||
397                             CUR_TABLE[container->col][container->row-1]->currently_focused != NULL) {
398                                 LOG("cannot snap to top - the cell is already used\n");
399                                 return;
400                         }
401
402                         move_current_window(conn, D_UP);
403                         snap_current_container(conn, D_DOWN);
404                         return;
405                 case D_DOWN: {
406                         LOG("snapping down\n");
407                         int new_row = container->row + container->rowspan;
408                         for (int i = 0; i < container->colspan; i++)
409                                 if (!cell_exists(container->col + i, new_row) ||
410                                     CUR_TABLE[container->col + i][new_row]->currently_focused != NULL) {
411                                         LOG("cannot snap down - the cell is already used\n");
412                                         return;
413                                 }
414
415                         for (int i = container->col-1; i >= 0; i--) {
416                                 LOG("we got cell %d, %d with colspan %d\n",
417                                                 i, new_row, CUR_TABLE[i][new_row]->colspan);
418                                 while ((CUR_TABLE[i][new_row]->colspan-1) >= (container->col - i))
419                                         CUR_TABLE[i][new_row]->colspan--;
420                                 LOG("new colspan = %d\n", CUR_TABLE[i][new_row]->colspan);
421
422                         }
423
424                         container->rowspan++;
425                         break;
426                 }
427                 /* To make static analyzers happy: */
428                 default:
429                         return;
430         }
431
432         render_layout(conn);
433 }
434
435 static void move_floating_window_to_workspace(xcb_connection_t *conn, Client *client, int workspace) {
436         /* t_ws (to workspace) is just a container pointer to the workspace we’re switching to */
437         Workspace *t_ws = &(workspaces[workspace-1]),
438                   *old_ws = client->workspace;
439
440         LOG("moving floating\n");
441
442         if (t_ws->screen == NULL) {
443                 LOG("initializing new workspace, setting num to %d\n", workspace-1);
444                 t_ws->screen = c_ws->screen;
445                 /* Copy the dimensions from the virtual screen */
446                 memcpy(&(t_ws->rect), &(t_ws->screen->rect), sizeof(Rect));
447         } else {
448                 /* Check if there is already a fullscreen client on the destination workspace and
449                  * stop moving if so. */
450                 if (client->fullscreen && (t_ws->fullscreen_client != NULL)) {
451                         LOG("Not moving: Fullscreen client already existing on destination workspace.\n");
452                         return;
453                 }
454         }
455
456         /* Remove from focus stack and list of floating clients */
457         SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
458         TAILQ_REMOVE(&(client->workspace->floating_clients), client, floating_clients);
459
460         if (client->workspace->fullscreen_client == client)
461                 client->workspace->fullscreen_client = NULL;
462
463         /* Insert into destination focus stack and list of floating clients */
464         client->workspace = t_ws;
465         SLIST_INSERT_HEAD(&(t_ws->focus_stack), client, focus_clients);
466         TAILQ_INSERT_TAIL(&(t_ws->floating_clients), client, floating_clients);
467         if (client->fullscreen)
468                 t_ws->fullscreen_client = client;
469
470         /* If we’re moving it to an invisible screen, we need to unmap it */
471         if (t_ws->screen->current_workspace != t_ws->num) {
472                 LOG("This workspace is not visible, unmapping\n");
473                 xcb_unmap_window(conn, client->frame);
474         } else {
475                 /* If this is not the case, we move the window to a workspace
476                  * which is on another screen, so we also need to adjust its
477                  * coordinates. */
478                 LOG("before x = %d, y = %d\n", client->rect.x, client->rect.y);
479                 uint32_t relative_x = client->rect.x - old_ws->rect.x,
480                          relative_y = client->rect.y - old_ws->rect.y;
481                 LOG("rel_x = %d, rel_y = %d\n", relative_x, relative_y);
482                 client->rect.x = t_ws->rect.x + relative_x;
483                 client->rect.y = t_ws->rect.y + relative_y;
484                 LOG("after x = %d, y = %d\n", client->rect.x, client->rect.y);
485                 reposition_client(conn, client);
486                 xcb_flush(conn);
487         }
488
489         LOG("done\n");
490
491         render_layout(conn);
492
493         set_focus(conn, client, true);
494 }
495
496 /*
497  * Moves the currently selected window to the given workspace
498  *
499  */
500 static void move_current_window_to_workspace(xcb_connection_t *conn, int workspace) {
501         LOG("Moving current window to workspace %d\n", workspace);
502
503         Container *container = CUR_CELL;
504
505         assert(container != NULL);
506
507         /* t_ws (to workspace) is just a container pointer to the workspace we’re switching to */
508         Workspace *t_ws = &(workspaces[workspace-1]);
509
510         Client *current_client = container->currently_focused;
511         if (current_client == NULL) {
512                 LOG("No currently focused client in current container.\n");
513                 return;
514         }
515         Client *to_focus = CIRCLEQ_NEXT_OR_NULL(&(container->clients), current_client, clients);
516         if (to_focus == NULL)
517                 to_focus = CIRCLEQ_PREV_OR_NULL(&(container->clients), current_client, clients);
518
519         if (t_ws->screen == NULL) {
520                 LOG("initializing new workspace, setting num to %d\n", workspace-1);
521                 t_ws->screen = container->workspace->screen;
522                 /* Copy the dimensions from the virtual screen */
523                 memcpy(&(t_ws->rect), &(container->workspace->screen->rect), sizeof(Rect));
524         } else {
525                 /* Check if there is already a fullscreen client on the destination workspace and
526                  * stop moving if so. */
527                 if (current_client->fullscreen && (t_ws->fullscreen_client != NULL)) {
528                         LOG("Not moving: Fullscreen client already existing on destination workspace.\n");
529                         return;
530                 }
531         }
532
533         Container *to_container = t_ws->table[t_ws->current_col][t_ws->current_row];
534
535         assert(to_container != NULL);
536
537         client_remove_from_container(conn, current_client, container, true);
538         if (container->workspace->fullscreen_client == current_client)
539                 container->workspace->fullscreen_client = NULL;
540
541         /* TODO: insert it to the correct position */
542         CIRCLEQ_INSERT_TAIL(&(to_container->clients), current_client, clients);
543
544         SLIST_INSERT_HEAD(&(to_container->workspace->focus_stack), current_client, focus_clients);
545         if (current_client->fullscreen)
546                 t_ws->fullscreen_client = current_client;
547         LOG("Moved.\n");
548
549         current_client->container = to_container;
550         current_client->workspace = to_container->workspace;
551         container->currently_focused = to_focus;
552         to_container->currently_focused = current_client;
553
554         /* If we’re moving it to an invisible screen, we need to unmap it */
555         if (to_container->workspace->screen->current_workspace != to_container->workspace->num) {
556                 LOG("This workspace is not visible, unmapping\n");
557                 xcb_unmap_window(conn, current_client->frame);
558         }
559
560         /* delete all empty columns/rows */
561         cleanup_table(conn, container->workspace);
562
563         render_layout(conn);
564 }
565
566 /*
567  * Switches to the given workspace
568  *
569  */
570 void show_workspace(xcb_connection_t *conn, int workspace) {
571         Client *client;
572         bool need_warp = false;
573         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
574         /* t_ws (to workspace) is just a convenience pointer to the workspace we’re switching to */
575         Workspace *t_ws = &(workspaces[workspace-1]);
576
577         LOG("show_workspace(%d)\n", workspace);
578
579         /* Store current_row/current_col */
580         c_ws->current_row = current_row;
581         c_ws->current_col = current_col;
582
583         /* Check if the workspace has not been used yet */
584         if (t_ws->screen == NULL) {
585                 LOG("initializing new workspace, setting num to %d\n", workspace);
586                 t_ws->screen = c_ws->screen;
587                 /* Copy the dimensions from the virtual screen */
588                 memcpy(&(t_ws->rect), &(t_ws->screen->rect), sizeof(Rect));
589         }
590
591         if (c_ws->screen != t_ws->screen) {
592                 /* We need to switch to the other screen first */
593                 LOG("moving over to other screen.\n");
594
595                 /* Store the old client */
596                 Client *old_client = CUR_CELL->currently_focused;
597
598                 c_ws = &(workspaces[t_ws->screen->current_workspace]);
599                 current_col = c_ws->current_col;
600                 current_row = c_ws->current_row;
601                 if (CUR_CELL->currently_focused != NULL)
602                         need_warp = true;
603                 else {
604                         Rect *dims = &(c_ws->screen->rect);
605                         xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
606                                          dims->x + (dims->width / 2), dims->y + (dims->height / 2));
607                 }
608
609                 /* Re-decorate the old client, it’s not focused anymore */
610                 if ((old_client != NULL) && !old_client->dock)
611                         redecorate_window(conn, old_client);
612                 else xcb_flush(conn);
613         }
614
615         /* Check if we need to change something or if we’re already there */
616         if (c_ws->screen->current_workspace == (workspace-1)) {
617                 Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
618                 if (last_focused != SLIST_END(&(c_ws->focus_stack))) {
619                         set_focus(conn, last_focused, true);
620                         if (need_warp) {
621                                 client_warp_pointer_into(conn, last_focused);
622                                 xcb_flush(conn);
623                         }
624                 }
625
626                 return;
627         }
628
629         t_ws->screen->current_workspace = workspace-1;
630         Workspace *old_workspace = c_ws;
631         c_ws = &workspaces[workspace-1];
632
633         /* Unmap all clients of the old workspace */
634         unmap_workspace(conn, old_workspace);
635
636         current_row = c_ws->current_row;
637         current_col = c_ws->current_col;
638         LOG("new current row = %d, current col = %d\n", current_row, current_col);
639
640         ignore_enter_notify_forall(conn, c_ws, true);
641
642         /* Map all clients on the new workspace */
643         FOR_TABLE(c_ws)
644                 CIRCLEQ_FOREACH(client, &(c_ws->table[cols][rows]->clients), clients)
645                         xcb_map_window(conn, client->frame);
646
647         /* Map all floating clients */
648         if (!c_ws->floating_hidden)
649                 TAILQ_FOREACH(client, &(c_ws->floating_clients), floating_clients)
650                         xcb_map_window(conn, client->frame);
651
652         /* Map all stack windows, if any */
653         struct Stack_Window *stack_win;
654         SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
655                 if (stack_win->container->workspace == c_ws)
656                         xcb_map_window(conn, stack_win->window);
657
658         ignore_enter_notify_forall(conn, c_ws, false);
659
660         /* Restore focus on the new workspace */
661         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
662         if (last_focused != SLIST_END(&(c_ws->focus_stack))) {
663                 set_focus(conn, last_focused, true);
664                 if (need_warp) {
665                         client_warp_pointer_into(conn, last_focused);
666                         xcb_flush(conn);
667                 }
668         } else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
669
670         render_layout(conn);
671 }
672
673 /*
674  * Jumps to the given window class / title.
675  * Title is matched using strstr, that is, matches if it appears anywhere
676  * in the string. Regular expressions seem to be a bit overkill here. However,
677  * if we need them for something else somewhen, we may introduce them here, too.
678  *
679  */
680 static void jump_to_window(xcb_connection_t *conn, const char *arguments) {
681         char *classtitle;
682         Client *client;
683
684         /* The first character is a quote, this was checked before */
685         classtitle = sstrdup(arguments+1);
686         /* The last character is a quote, we just set it to NULL */
687         classtitle[strlen(classtitle)-1] = '\0';
688
689         if ((client = get_matching_client(conn, classtitle, NULL)) == NULL) {
690                 free(classtitle);
691                 LOG("No matching client found.\n");
692                 return;
693         }
694
695         free(classtitle);
696         set_focus(conn, client, true);
697 }
698
699 /*
700  * Jump directly to the specified workspace, row and col.
701  * Great for reaching windows that you always keep in the same spot (hello irssi, I'm looking at you)
702  *
703  */
704 static void jump_to_container(xcb_connection_t *conn, const char *arguments) {
705         int ws, row, col;
706         int result;
707
708         result = sscanf(arguments, "%d %d %d", &ws, &col, &row);
709         LOG("Jump called with %d parameters (\"%s\")\n", result, arguments);
710
711         /* No match? Either no arguments were specified, or no numbers */
712         if (result < 1) {
713                 LOG("At least one valid argument required\n");
714                 return;
715         }
716
717         /* Move to the target workspace */
718         show_workspace(conn, ws);
719
720         if (result < 3)
721                 return;
722
723         LOG("Boundary-checking col %d, row %d... (max cols %d, max rows %d)\n", col, row, c_ws->cols, c_ws->rows);
724
725         /* Move to row/col */
726         if (row >= c_ws->rows)
727                 row = c_ws->rows - 1;
728         if (col >= c_ws->cols)
729                 col = c_ws->cols - 1;
730
731         LOG("Jumping to col %d, row %d\n", col, row);
732         if (c_ws->table[col][row]->currently_focused != NULL)
733                 set_focus(conn, c_ws->table[col][row]->currently_focused, true);
734 }
735
736 /*
737  * Travels the focus stack by the given number of times (or once, if no argument
738  * was specified). That is, selects the window you were in before you focused
739  * the current window.
740  *
741  * The special values 'floating' (select the next floating window), 'tiling'
742  * (select the next tiling window), 'ft' (if the current window is floating,
743  * select the next tiling window and vice-versa) are also valid
744  *
745  */
746 static void travel_focus_stack(xcb_connection_t *conn, const char *arguments) {
747         /* Start count at -1 to always skip the first element */
748         int times, count = -1;
749         Client *current;
750         bool floating_criteria;
751
752         /* Either it’s one of the special values… */
753         if (strcasecmp(arguments, "floating") == 0) {
754                 floating_criteria = true;
755         } else if (strcasecmp(arguments, "tiling") == 0) {
756                 floating_criteria = false;
757         } else if (strcasecmp(arguments, "ft") == 0) {
758                 Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
759                 if (last_focused == SLIST_END(&(c_ws->focus_stack))) {
760                         LOG("Cannot select the next floating/tiling client because there is no client at all\n");
761                         return;
762                 }
763
764                 floating_criteria = !client_is_floating(last_focused);
765         } else {
766                 /* …or a number was specified */
767                 if (sscanf(arguments, "%u", &times) != 1) {
768                         LOG("No or invalid argument given (\"%s\"), using default of 1 times\n", arguments);
769                         times = 1;
770                 }
771
772                 SLIST_FOREACH(current, &(CUR_CELL->workspace->focus_stack), focus_clients) {
773                         if (++count < times) {
774                                 LOG("Skipping\n");
775                                 continue;
776                         }
777
778                         LOG("Focussing\n");
779                         set_focus(conn, current, true);
780                         break;
781                 }
782                 return;
783         }
784
785         /* Select the next client matching the criteria parsed above */
786         SLIST_FOREACH(current, &(CUR_CELL->workspace->focus_stack), focus_clients)
787                 if (client_is_floating(current) == floating_criteria) {
788                         set_focus(conn, current, true);
789                         break;
790                 }
791 }
792
793 /*
794  * Goes through the list of arguments (for exec()) and checks if the given argument
795  * is present. If not, it copies the arguments (because we cannot realloc it) and
796  * appends the given argument.
797  *
798  */
799 static char **append_argument(char **original, char *argument) {
800         int num_args;
801         for (num_args = 0; original[num_args] != NULL; num_args++) {
802                 LOG("original argument: \"%s\"\n", original[num_args]);
803                 /* If the argument is already present we return the original pointer */
804                 if (strcmp(original[num_args], argument) == 0)
805                         return original;
806         }
807         /* Copy the original array */
808         char **result = smalloc((num_args+2) * sizeof(char*));
809         memcpy(result, original, num_args * sizeof(char*));
810         result[num_args] = argument;
811         result[num_args+1] = NULL;
812
813         return result;
814 }
815
816 /*
817  * Parses a command, see file CMDMODE for more information
818  *
819  */
820 void parse_command(xcb_connection_t *conn, const char *command) {
821         LOG("--- parsing command \"%s\" ---\n", command);
822         /* Get the first client from focus stack because floating clients are not
823          * in any container, therefore CUR_CELL is not appropriate. */
824         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
825         if (last_focused == SLIST_END(&(c_ws->focus_stack)))
826                 last_focused = NULL;
827
828         /* Hmm, just to be sure */
829         if (command[0] == '\0')
830                 return;
831
832         /* Is it an <exec>? Then execute the given command. */
833         if (STARTS_WITH(command, "exec ")) {
834                 LOG("starting \"%s\"\n", command + strlen("exec "));
835                 start_application(command+strlen("exec "));
836                 return;
837         }
838
839         /* Is it an <exit>? */
840         if (STARTS_WITH(command, "exit")) {
841                 LOG("User issued exit-command, exiting without error.\n");
842                 exit(EXIT_SUCCESS);
843         }
844
845         /* Is it <restart>? Then restart in place. */
846         if (STARTS_WITH(command, "restart")) {
847                 LOG("restarting \"%s\"...\n", start_argv[0]);
848                 /* make sure -a is in the argument list or append it */
849                 start_argv = append_argument(start_argv, "-a");
850
851                 execvp(start_argv[0], start_argv);
852                 /* not reached */
853         }
854
855         if (STARTS_WITH(command, "kill")) {
856                 if (last_focused == NULL) {
857                         LOG("There is no window to kill\n");
858                         return;
859                 }
860
861                 LOG("Killing current window\n");
862                 client_kill(conn, last_focused);
863                 return;
864         }
865
866         /* Is it a jump to a specified workspace, row, col? */
867         if (STARTS_WITH(command, "jump ")) {
868                 const char *arguments = command + strlen("jump ");
869                 if (arguments[0] == '"')
870                         jump_to_window(conn, arguments);
871                 else jump_to_container(conn, arguments);
872                 return;
873         }
874
875         /* Should we travel the focus stack? */
876         if (STARTS_WITH(command, "focus")) {
877                 const char *arguments = command + strlen("focus ");
878                 travel_focus_stack(conn, arguments);
879                 return;
880         }
881
882         /* Is it 'f' for fullscreen? */
883         if (command[0] == 'f') {
884                 if (last_focused == NULL)
885                         return;
886                 client_toggle_fullscreen(conn, last_focused);
887                 return;
888         }
889
890         /* Is it just 's' for stacking or 'd' for default? */
891         if ((command[0] == 's' || command[0] == 'd') && (command[1] == '\0')) {
892                 if (last_focused == NULL || client_is_floating(last_focused)) {
893                         LOG("not switching, this is a floating client\n");
894                         return;
895                 }
896                 LOG("Switching mode for current container\n");
897                 switch_layout_mode(conn, CUR_CELL, (command[0] == 's' ? MODE_STACK : MODE_DEFAULT));
898                 return;
899         }
900
901         if (command[0] == 'H') {
902                 LOG("Hiding all floating windows\n");
903                 floating_toggle_hide(conn, c_ws);
904                 return;
905         }
906
907         enum { WITH_WINDOW, WITH_CONTAINER, WITH_WORKSPACE } with = WITH_WINDOW;
908
909         /* Is it a <with>? */
910         if (command[0] == 'w') {
911                 command++;
912                 /* TODO: implement */
913                 if (command[0] == 'c') {
914                         with = WITH_CONTAINER;
915                         command++;
916                 } else if (command[0] == 'w') {
917                         with = WITH_WORKSPACE;
918                         command++;
919                 } else {
920                         LOG("not yet implemented.\n");
921                         return;
922                 }
923         }
924
925         /* Is it 't' for toggle tiling/floating? */
926         if (command[0] == 't') {
927                 if (with == WITH_WORKSPACE) {
928                         c_ws->auto_float = !c_ws->auto_float;
929                         LOG("autofloat is now %d\n", c_ws->auto_float);
930                         return;
931                 }
932                 if (last_focused == NULL) {
933                         LOG("Cannot toggle tiling/floating: workspace empty\n");
934                         return;
935                 }
936
937                 toggle_floating_mode(conn, last_focused, false);
938                 /* delete all empty columns/rows */
939                 cleanup_table(conn, last_focused->workspace);
940
941                 /* Fix colspan/rowspan if it’d overlap */
942                 fix_colrowspan(conn, last_focused->workspace);
943
944                 render_workspace(conn, last_focused->workspace->screen, last_focused->workspace);
945                 xcb_flush(conn);
946                 return;
947         }
948
949         /* It’s a normal <cmd> */
950         char *rest = NULL;
951         enum { ACTION_FOCUS, ACTION_MOVE, ACTION_SNAP } action = ACTION_FOCUS;
952         direction_t direction;
953         int times = strtol(command, &rest, 10);
954         if (rest == NULL) {
955                 LOG("Invalid command (\"%s\")\n", command);
956                 return;
957         }
958
959         if (*rest == '\0') {
960                 /* No rest? This was a workspace number, not a times specification */
961                 show_workspace(conn, times);
962                 return;
963         }
964
965         if (*rest == 'm' || *rest == 's') {
966                 action = (*rest == 'm' ? ACTION_MOVE : ACTION_SNAP);
967                 rest++;
968         }
969
970         int workspace = strtol(rest, &rest, 10);
971
972         if (rest == NULL) {
973                 LOG("Invalid command (\"%s\")\n", command);
974                 return;
975         }
976
977         if (*rest == '\0') {
978                 if (last_focused != NULL && client_is_floating(last_focused))
979                         move_floating_window_to_workspace(conn, last_focused, workspace);
980                 else move_current_window_to_workspace(conn, workspace);
981                 return;
982         }
983
984         if (last_focused == NULL) {
985                 LOG("Not performing (no window found)\n");
986                 return;
987         }
988
989         if (client_is_floating(last_focused) &&
990             (action != ACTION_FOCUS && action != ACTION_MOVE)) {
991                 LOG("Not performing (floating)\n");
992                 return;
993         }
994
995         /* Now perform action to <where> */
996         while (*rest != '\0') {
997                 if (*rest == 'h')
998                         direction = D_LEFT;
999                 else if (*rest == 'j')
1000                         direction = D_DOWN;
1001                 else if (*rest == 'k')
1002                         direction = D_UP;
1003                 else if (*rest == 'l')
1004                         direction = D_RIGHT;
1005                 else {
1006                         LOG("unknown direction: %c\n", *rest);
1007                         return;
1008                 }
1009                 rest++;
1010
1011                 if (action == ACTION_FOCUS) {
1012                         if (client_is_floating(last_focused)) {
1013                                 floating_focus_direction(conn, last_focused, direction);
1014                                 continue;
1015                         }
1016                         focus_thing(conn, direction, (with == WITH_WINDOW ? THING_WINDOW : THING_CONTAINER));
1017                         continue;
1018                 }
1019
1020                 if (action == ACTION_MOVE) {
1021                         if (client_is_floating(last_focused)) {
1022                                 floating_move(conn, last_focused, direction);
1023                                 continue;
1024                         }
1025                         if (with == WITH_WINDOW)
1026                                 move_current_window(conn, direction);
1027                         else move_current_container(conn, direction);
1028                         continue;
1029                 }
1030
1031                 if (action == ACTION_SNAP) {
1032                         snap_current_container(conn, direction);
1033                         continue;
1034                 }
1035         }
1036
1037         LOG("--- done ---\n");
1038 }