]> git.sur5r.net Git - i3/i3/blob - src/commands.c
Bugfix: Obey colspan/rowspan when checking if containers can be snapped to the right...
[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
27 bool focus_window_in_container(xcb_connection_t *conn, Container *container, direction_t direction) {
28         /* If this container is empty, we’re done */
29         if (container->currently_focused == NULL)
30                 return false;
31
32         /* Get the previous/next client or wrap around */
33         Client *candidate = NULL;
34         if (direction == D_UP) {
35                 if ((candidate = CIRCLEQ_PREV_OR_NULL(&(container->clients), container->currently_focused, clients)) == NULL)
36                         candidate = CIRCLEQ_LAST(&(container->clients));
37         }
38         else if (direction == D_DOWN) {
39                 if ((candidate = CIRCLEQ_NEXT_OR_NULL(&(container->clients), container->currently_focused, clients)) == NULL)
40                         candidate = CIRCLEQ_FIRST(&(container->clients));
41         } else LOG("Direction not implemented!\n");
42
43         /* If we could not switch, the container contains exactly one client. We return false */
44         if (candidate == container->currently_focused)
45                 return false;
46
47         /* Set focus */
48         set_focus(conn, candidate, true);
49
50         return true;
51 }
52
53 typedef enum { THING_WINDOW, THING_CONTAINER } thing_t;
54
55 static void focus_thing(xcb_connection_t *conn, direction_t direction, thing_t thing) {
56         LOG("focusing direction %d\n", direction);
57
58         int new_row = current_row,
59             new_col = current_col;
60
61         Container *container = CUR_CELL;
62         Workspace *t_ws = c_ws;
63
64         /* There always is a container. If not, current_col or current_row is wrong */
65         assert(container != NULL);
66
67         if (container->workspace->fullscreen_client != NULL) {
68                 LOG("You're in fullscreen mode. Won't switch focus\n");
69                 return;
70         }
71
72         /* TODO: for horizontal default layout, this has to be expanded to LEFT/RIGHT */
73         if (direction == D_UP || direction == D_DOWN) {
74                 if (thing == THING_WINDOW)
75                         /* Let’s see if we can perform up/down focus in the current container */
76                         if (focus_window_in_container(conn, container, direction))
77                                 return;
78
79                 if (direction == D_DOWN && cell_exists(current_col, current_row+1))
80                         new_row = current_row + t_ws->table[current_col][current_row]->rowspan;
81                 else if (direction == D_UP && cell_exists(current_col, current_row-1)) {
82                         /* Set new_row as a sane default, but it may get overwritten in a second */
83                         new_row--;
84
85                         /* Search from the top to correctly handle rowspanned containers */
86                         for (int rows = 0; rows < current_row; rows += t_ws->table[current_col][rows]->rowspan) {
87                                 if (new_row > (rows + (t_ws->table[current_col][rows]->rowspan - 1)))
88                                         continue;
89
90                                 new_row = rows;
91                                 break;
92                         }
93                 } else {
94                         /* Let’s see if there is a screen down/up there to which we can switch */
95                         LOG("container is at %d with height %d\n", container->y, container->height);
96                         i3Screen *screen;
97                         int destination_y = (direction == D_UP ? (container->y - 1) : (container->y + container->height + 1));
98                         if ((screen = get_screen_containing(container->x, destination_y)) == NULL) {
99                                 LOG("Wrapping screen around vertically\n");
100                                 /* No screen found? Then wrap */
101                                 screen = get_screen_most((direction == D_UP ? D_DOWN : D_UP));
102                         }
103                         t_ws = &(workspaces[screen->current_workspace]);
104                         new_row = (direction == D_UP ? (t_ws->rows - 1) : 0);
105                 }
106         } else if (direction == D_LEFT || direction == D_RIGHT) {
107                 if (direction == D_RIGHT && cell_exists(current_col+1, current_row))
108                         new_col = current_col + t_ws->table[current_col][current_row]->colspan;
109                 else if (direction == D_LEFT && cell_exists(current_col-1, current_row)) {
110                         /* Set new_col as a sane default, but it may get overwritten in a second */
111                         new_col--;
112
113                         /* Search from the left to correctly handle colspanned containers */
114                         for (int cols = 0; cols < current_col; cols += t_ws->table[cols][current_row]->colspan) {
115                                 if (new_col > (cols + (t_ws->table[cols][current_row]->colspan - 1)))
116                                         continue;
117
118                                 new_col = cols;
119                                 break;
120                         }
121                 } else {
122                         /* Let’s see if there is a screen left/right here to which we can switch */
123                         LOG("container is at %d with width %d\n", container->x, container->width);
124                         i3Screen *screen;
125                         int destination_x = (direction == D_LEFT ? (container->x - 1) : (container->x + container->width + 1));
126                         if ((screen = get_screen_containing(destination_x, container->y)) == NULL) {
127                                 LOG("Wrapping screen around horizontally\n");
128                                 screen = get_screen_most((direction == D_LEFT ? D_RIGHT : D_LEFT));
129                         }
130                         t_ws = &(workspaces[screen->current_workspace]);
131                         new_col = (direction == D_LEFT ? (t_ws->cols - 1) : 0);
132                 }
133         } else {
134                 LOG("direction unhandled\n");
135                 return;
136         }
137
138         /* Bounds checking */
139         if (new_col >= t_ws->cols)
140                 new_col = (t_ws->cols - 1);
141         if (new_row >= t_ws->rows)
142                 new_row = (t_ws->rows - 1);
143
144         if (t_ws->table[new_col][new_row]->currently_focused != NULL)
145                 set_focus(conn, t_ws->table[new_col][new_row]->currently_focused, true);
146 }
147
148 /*
149  * Tries to move the window inside its current container.
150  *
151  * Returns true if the window could be moved, false otherwise.
152  *
153  */
154 static bool move_current_window_in_container(xcb_connection_t *conn, Client *client,
155                 direction_t direction) {
156         assert(client->container != NULL);
157
158         Client *other = (direction == D_UP ? CIRCLEQ_PREV(client, clients) :
159                                              CIRCLEQ_NEXT(client, clients));
160
161         if (other == CIRCLEQ_END(&(client->container->clients)))
162                 return false;
163
164         LOG("i can do that\n");
165         /* We can move the client inside its current container */
166         CIRCLEQ_REMOVE(&(client->container->clients), client, clients);
167         if (direction == D_UP)
168                 CIRCLEQ_INSERT_BEFORE(&(client->container->clients), other, client, clients);
169         else CIRCLEQ_INSERT_AFTER(&(client->container->clients), other, client, clients);
170         render_layout(conn);
171         return true;
172 }
173
174 /*
175  * Moves the current window or whole container to the given direction, creating a column/row if
176  * necessary.
177  *
178  */
179 static void move_current_window(xcb_connection_t *conn, direction_t direction) {
180         LOG("moving window to direction %s\n", (direction == D_UP ? "up" : (direction == D_DOWN ? "down" :
181                                             (direction == D_LEFT ? "left" : "right"))));
182         /* Get current window */
183         Container *container = CUR_CELL,
184                   *new = NULL;
185
186         /* There has to be a container, see focus_window() */
187         assert(container != NULL);
188
189         /* If there is no window or the dock window is focused, we’re done */
190         if (container->currently_focused == NULL ||
191             container->currently_focused->dock)
192                 return;
193
194         /* As soon as the client is moved away, the last focused client in the old
195          * container needs to get focus, if any. Therefore, we save it here. */
196         Client *current_client = container->currently_focused;
197         Client *to_focus = get_last_focused_client(conn, container, current_client);
198
199         if (to_focus == NULL) {
200                 to_focus = CIRCLEQ_NEXT_OR_NULL(&(container->clients), current_client, clients);
201                 if (to_focus == NULL)
202                         to_focus = CIRCLEQ_PREV_OR_NULL(&(container->clients), current_client, clients);
203         }
204
205         switch (direction) {
206                 case D_LEFT:
207                         /* If we’re at the left-most position, move the rest of the table right */
208                         if (current_col == 0) {
209                                 expand_table_cols_at_head(c_ws);
210                                 new = CUR_CELL;
211                         } else
212                                 new = CUR_TABLE[--current_col][current_row];
213                         break;
214                 case D_RIGHT:
215                         if (current_col == (c_ws->cols-1))
216                                 expand_table_cols(c_ws);
217
218                         new = CUR_TABLE[++current_col][current_row];
219                         break;
220                 case D_UP:
221                         if (move_current_window_in_container(conn, current_client, D_UP))
222                                 return;
223
224                         /* if we’re at the up-most position, move the rest of the table down */
225                         if (current_row == 0) {
226                                 expand_table_rows_at_head(c_ws);
227                                 new = CUR_CELL;
228                         } else
229                                 new = CUR_TABLE[current_col][--current_row];
230                         break;
231                 case D_DOWN:
232                         if (move_current_window_in_container(conn, current_client, D_DOWN))
233                                 return;
234
235                         if (current_row == (c_ws->rows-1))
236                                 expand_table_rows(c_ws);
237
238                         new = CUR_TABLE[current_col][++current_row];
239                         break;
240         }
241
242         /* Remove it from the old container and put it into the new one */
243         remove_client_from_container(conn, current_client, container);
244
245         if (new->currently_focused != NULL)
246                 CIRCLEQ_INSERT_AFTER(&(new->clients), new->currently_focused, current_client, clients);
247         else CIRCLEQ_INSERT_TAIL(&(new->clients), current_client, clients);
248         SLIST_INSERT_HEAD(&(new->workspace->focus_stack), current_client, focus_clients);
249
250         /* Update data structures */
251         current_client->container = new;
252         current_client->workspace = new->workspace;
253         container->currently_focused = to_focus;
254         new->currently_focused = current_client;
255
256         Workspace *workspace = container->workspace;
257
258         /* delete all empty columns/rows */
259         cleanup_table(conn, workspace);
260
261         /* Fix colspan/rowspan if it’d overlap */
262         fix_colrowspan(conn, workspace);
263
264         render_layout(conn);
265
266         set_focus(conn, current_client, true);
267 }
268
269 static void move_current_container(xcb_connection_t *conn, direction_t direction) {
270         LOG("moving container to direction %s\n", (direction == D_UP ? "up" : (direction == D_DOWN ? "down" :
271                                             (direction == D_LEFT ? "left" : "right"))));
272         /* Get current window */
273         Container *container = CUR_CELL,
274                   *new = NULL;
275
276         Container **old = &CUR_CELL;
277
278         /* There has to be a container, see focus_window() */
279         assert(container != NULL);
280
281         switch (direction) {
282                 case D_LEFT:
283                         /* If we’re at the left-most position, move the rest of the table right */
284                         if (current_col == 0) {
285                                 expand_table_cols_at_head(c_ws);
286                                 new = CUR_CELL;
287                                 old = &CUR_TABLE[current_col+1][current_row];
288                         } else
289                                 new = CUR_TABLE[--current_col][current_row];
290                         break;
291                 case D_RIGHT:
292                         if (current_col == (c_ws->cols-1))
293                                 expand_table_cols(c_ws);
294
295                         new = CUR_TABLE[++current_col][current_row];
296                         break;
297                 case D_UP:
298                         /* if we’re at the up-most position, move the rest of the table down */
299                         if (current_row == 0) {
300                                 expand_table_rows_at_head(c_ws);
301                                 new = CUR_CELL;
302                                 old = &CUR_TABLE[current_col][current_row+1];
303                         } else
304                                 new = CUR_TABLE[current_col][--current_row];
305                         break;
306                 case D_DOWN:
307                         if (current_row == (c_ws->rows-1))
308                                 expand_table_rows(c_ws);
309
310                         new = CUR_TABLE[current_col][++current_row];
311                         break;
312         }
313
314         LOG("old = %d,%d and new = %d,%d\n", container->col, container->row, new->col, new->row);
315
316         /* Swap the containers */
317         int col = new->col;
318         int row = new->row;
319
320         *old = new;
321         new->col = container->col;
322         new->row = container->row;
323
324         CUR_CELL = container;
325         container->col = col;
326         container->row = row;
327
328         Workspace *workspace = container->workspace;
329
330         /* delete all empty columns/rows */
331         cleanup_table(conn, workspace);
332
333         /* Fix colspan/rowspan if it’d overlap */
334         fix_colrowspan(conn, workspace);
335
336         render_layout(conn);
337 }
338
339 /*
340  * "Snaps" the current container (not possible for windows, because it works at table base)
341  * to the given direction, that is, adjusts cellspan/rowspan
342  *
343  */
344 static void snap_current_container(xcb_connection_t *conn, direction_t direction) {
345         LOG("snapping container to direction %d\n", direction);
346
347         Container *container = CUR_CELL;
348
349         assert(container != NULL);
350
351         switch (direction) {
352                 case D_LEFT:
353                         /* Snap to the left is actually a move to the left and then a snap right */
354                         if (!cell_exists(container->col - 1, container->row) ||
355                             CUR_TABLE[container->col-1][container->row]->currently_focused != NULL) {
356                                 LOG("cannot snap to left - the cell is already used\n");
357                                 return;
358                         }
359
360                         move_current_window(conn, D_LEFT);
361                         snap_current_container(conn, D_RIGHT);
362                         return;
363                 case D_RIGHT: {
364                         /* Check if the cell is used */
365                         int new_col = container->col + container->colspan;
366                         for (int i = 0; i < container->rowspan; i++)
367                                 if (!cell_exists(new_col, container->row + i) ||
368                                     CUR_TABLE[new_col][container->row + i]->currently_focused != NULL) {
369                                         LOG("cannot snap to right - the cell is already used\n");
370                                         return;
371                                 }
372
373                         /* Check if there are other cells with rowspan, which are in our way.
374                          * If so, reduce their rowspan. */
375                         for (int i = container->row-1; i >= 0; i--) {
376                                 LOG("we got cell %d, %d with rowspan %d\n",
377                                                 new_col, i, CUR_TABLE[new_col][i]->rowspan);
378                                 while ((CUR_TABLE[new_col][i]->rowspan-1) >= (container->row - i))
379                                         CUR_TABLE[new_col][i]->rowspan--;
380                                 LOG("new rowspan = %d\n", CUR_TABLE[new_col][i]->rowspan);
381                         }
382
383                         container->colspan++;
384                         break;
385                 }
386                 case D_UP:
387                         if (!cell_exists(container->col, container->row - 1) ||
388                             CUR_TABLE[container->col][container->row-1]->currently_focused != NULL) {
389                                 LOG("cannot snap to top - the cell is already used\n");
390                                 return;
391                         }
392
393                         move_current_window(conn, D_UP);
394                         snap_current_container(conn, D_DOWN);
395                         return;
396                 case D_DOWN: {
397                         LOG("snapping down\n");
398                         int new_row = container->row + container->rowspan;
399                         for (int i = 0; i < container->colspan; i++)
400                                 if (!cell_exists(container->col + i, new_row) ||
401                                     CUR_TABLE[container->col + i][new_row]->currently_focused != NULL) {
402                                         LOG("cannot snap down - the cell is already used\n");
403                                         return;
404                                 }
405
406                         for (int i = container->col-1; i >= 0; i--) {
407                                 LOG("we got cell %d, %d with colspan %d\n",
408                                                 i, new_row, CUR_TABLE[i][new_row]->colspan);
409                                 while ((CUR_TABLE[i][new_row]->colspan-1) >= (container->col - i))
410                                         CUR_TABLE[i][new_row]->colspan--;
411                                 LOG("new colspan = %d\n", CUR_TABLE[i][new_row]->colspan);
412
413                         }
414
415                         container->rowspan++;
416                         break;
417                 }
418         }
419
420         render_layout(conn);
421 }
422
423 /*
424  * Moves the currently selected window to the given workspace
425  *
426  */
427 static void move_current_window_to_workspace(xcb_connection_t *conn, int workspace) {
428         LOG("Moving current window to workspace %d\n", workspace);
429
430         Container *container = CUR_CELL;
431
432         assert(container != NULL);
433
434         /* t_ws (to workspace) is just a container pointer to the workspace we’re switching to */
435         Workspace *t_ws = &(workspaces[workspace-1]);
436
437         Client *current_client = container->currently_focused;
438         if (current_client == NULL) {
439                 LOG("No currently focused client in current container.\n");
440                 return;
441         }
442         Client *to_focus = CIRCLEQ_NEXT_OR_NULL(&(container->clients), current_client, clients);
443         if (to_focus == NULL)
444                 to_focus = CIRCLEQ_PREV_OR_NULL(&(container->clients), current_client, clients);
445
446         if (t_ws->screen == NULL) {
447                 LOG("initializing new workspace, setting num to %d\n", workspace-1);
448                 t_ws->screen = container->workspace->screen;
449                 /* Copy the dimensions from the virtual screen */
450                 memcpy(&(t_ws->rect), &(container->workspace->screen->rect), sizeof(Rect));
451         } else {
452                 /* Check if there is already a fullscreen client on the destination workspace and
453                  * stop moving if so. */
454                 if (current_client->fullscreen && (t_ws->fullscreen_client != NULL)) {
455                         LOG("Not moving: Fullscreen client already existing on destination workspace.\n");
456                         return;
457                 }
458         }
459
460         Container *to_container = t_ws->table[t_ws->current_col][t_ws->current_row];
461
462         assert(to_container != NULL);
463
464         remove_client_from_container(conn, current_client, container);
465         if (container->workspace->fullscreen_client == current_client)
466                 container->workspace->fullscreen_client = NULL;
467
468         CIRCLEQ_INSERT_TAIL(&(to_container->clients), current_client, clients);
469         SLIST_INSERT_HEAD(&(to_container->workspace->focus_stack), current_client, focus_clients);
470         if (current_client->fullscreen)
471                 t_ws->fullscreen_client = current_client;
472         LOG("Moved.\n");
473
474         current_client->container = to_container;
475         current_client->workspace = to_container->workspace;
476         container->currently_focused = to_focus;
477         to_container->currently_focused = current_client;
478
479         /* If we’re moving it to an invisible screen, we need to unmap it */
480         if (to_container->workspace->screen->current_workspace != to_container->workspace->num) {
481                 LOG("This workspace is not visible, unmapping\n");
482                 xcb_unmap_window(conn, current_client->frame);
483         }
484
485         /* delete all empty columns/rows */
486         cleanup_table(conn, container->workspace);
487
488         render_layout(conn);
489 }
490
491 /*
492  * Switches to the given workspace
493  *
494  */
495 void show_workspace(xcb_connection_t *conn, int workspace) {
496         Client *client;
497         bool need_warp = false;
498         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
499         /* t_ws (to workspace) is just a convenience pointer to the workspace we’re switching to */
500         Workspace *t_ws = &(workspaces[workspace-1]);
501
502         LOG("show_workspace(%d)\n", workspace);
503
504         /* Store current_row/current_col */
505         c_ws->current_row = current_row;
506         c_ws->current_col = current_col;
507
508         /* Check if the workspace has not been used yet */
509         if (t_ws->screen == NULL) {
510                 LOG("initializing new workspace, setting num to %d\n", workspace);
511                 t_ws->screen = c_ws->screen;
512                 /* Copy the dimensions from the virtual screen */
513                 memcpy(&(t_ws->rect), &(t_ws->screen->rect), sizeof(Rect));
514         }
515
516         if (c_ws->screen != t_ws->screen) {
517                 /* We need to switch to the other screen first */
518                 LOG("moving over to other screen.\n");
519
520                 /* Store the old client */
521                 Client *old_client = CUR_CELL->currently_focused;
522
523                 c_ws = &(workspaces[t_ws->screen->current_workspace]);
524                 current_col = c_ws->current_col;
525                 current_row = c_ws->current_row;
526                 if (CUR_CELL->currently_focused != NULL)
527                         need_warp = true;
528                 else {
529                         Rect *dims = &(c_ws->screen->rect);
530                         xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
531                                          dims->x + (dims->width / 2), dims->y + (dims->height / 2));
532                 }
533
534                 /* Re-decorate the old client, it’s not focused anymore */
535                 if ((old_client != NULL) && !old_client->dock)
536                         redecorate_window(conn, old_client);
537                 else xcb_flush(conn);
538         }
539
540         /* Check if we need to change something or if we’re already there */
541         if (c_ws->screen->current_workspace == (workspace-1)) {
542                 if (CUR_CELL->currently_focused != NULL) {
543                         set_focus(conn, CUR_CELL->currently_focused, true);
544                         if (need_warp) {
545                                 warp_pointer_into(conn, CUR_CELL->currently_focused);
546                                 xcb_flush(conn);
547                         }
548                 }
549                 return;
550         }
551
552         t_ws->screen->current_workspace = workspace-1;
553
554         /* Unmap all clients of the current workspace */
555         unmap_workspace(conn, c_ws);
556
557         c_ws = &workspaces[workspace-1];
558         current_row = c_ws->current_row;
559         current_col = c_ws->current_col;
560         LOG("new current row = %d, current col = %d\n", current_row, current_col);
561
562         ignore_enter_notify_forall(conn, c_ws, true);
563
564         /* Map all clients on the new workspace */
565         FOR_TABLE(c_ws)
566                 CIRCLEQ_FOREACH(client, &(c_ws->table[cols][rows]->clients), clients)
567                         xcb_map_window(conn, client->frame);
568
569         /* Map all stack windows, if any */
570         struct Stack_Window *stack_win;
571         SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
572                 if (stack_win->container->workspace == c_ws)
573                         xcb_map_window(conn, stack_win->window);
574
575         ignore_enter_notify_forall(conn, c_ws, false);
576
577         /* Restore focus on the new workspace */
578         if (CUR_CELL->currently_focused != NULL) {
579                 set_focus(conn, CUR_CELL->currently_focused, true);
580                 if (need_warp) {
581                         warp_pointer_into(conn, CUR_CELL->currently_focused);
582                         xcb_flush(conn);
583                 }
584         } else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
585
586         render_layout(conn);
587 }
588
589 /*
590  * Parses a command, see file CMDMODE for more information
591  *
592  */
593 void parse_command(xcb_connection_t *conn, const char *command) {
594         LOG("--- parsing command \"%s\" ---\n", command);
595         /* Hmm, just to be sure */
596         if (command[0] == '\0')
597                 return;
598
599         /* Is it an <exec>? Then execute the given command. */
600         if (STARTS_WITH(command, "exec ")) {
601                 LOG("starting \"%s\"\n", command + strlen("exec "));
602                 start_application(command+strlen("exec "));
603                 return;
604         }
605
606         /* Is it an <exit>? */
607         if (STARTS_WITH(command, "exit")) {
608                 LOG("User issued exit-command, exiting without error.\n");
609                 exit(EXIT_SUCCESS);
610         }
611
612         /* Is it <restart>? Then restart in place. */
613         if (STARTS_WITH(command, "restart")) {
614                 LOG("restarting \"%s\"...\n", start_argv[0]);
615                 execvp(start_argv[0], start_argv);
616                 /* not reached */
617         }
618
619         if (STARTS_WITH(command, "kill")) {
620                 if (CUR_CELL->currently_focused == NULL) {
621                         LOG("There is no window to kill\n");
622                         return;
623                 }
624
625                 LOG("Killing current window\n");
626                 kill_window(conn, CUR_CELL->currently_focused);
627                 return;
628         }
629
630         /* Is it 'f' for fullscreen? */
631         if (command[0] == 'f') {
632                 if (CUR_CELL->currently_focused == NULL)
633                         return;
634                 toggle_fullscreen(conn, CUR_CELL->currently_focused);
635                 return;
636         }
637
638         /* Is it just 's' for stacking or 'd' for default? */
639         if ((command[0] == 's' || command[0] == 'd') && (command[1] == '\0')) {
640                 LOG("Switching mode for current container\n");
641                 switch_layout_mode(conn, CUR_CELL, (command[0] == 's' ? MODE_STACK : MODE_DEFAULT));
642                 return;
643         }
644
645         enum { WITH_WINDOW, WITH_CONTAINER } with = WITH_WINDOW;
646
647         /* Is it a <with>? */
648         if (command[0] == 'w') {
649                 command++;
650                 /* TODO: implement */
651                 if (command[0] == 'c') {
652                         with = WITH_CONTAINER;
653                         command++;
654                 } else {
655                         LOG("not yet implemented.\n");
656                         return;
657                 }
658         }
659
660         /* It's a normal <cmd> */
661         char *rest = NULL;
662         enum { ACTION_FOCUS, ACTION_MOVE, ACTION_SNAP } action = ACTION_FOCUS;
663         direction_t direction;
664         int times = strtol(command, &rest, 10);
665         if (rest == NULL) {
666                 LOG("Invalid command (\"%s\")\n", command);
667                 return;
668         }
669
670         if (*rest == '\0') {
671                 /* No rest? This was a tag number, not a times specification */
672                 show_workspace(conn, times);
673                 return;
674         }
675
676         if (*rest == 'm' || *rest == 's') {
677                 action = (*rest == 'm' ? ACTION_MOVE : ACTION_SNAP);
678                 rest++;
679         }
680
681         int workspace = strtol(rest, &rest, 10);
682
683         if (rest == NULL) {
684                 LOG("Invalid command (\"%s\")\n", command);
685                 return;
686         }
687
688         if (*rest == '\0') {
689                 move_current_window_to_workspace(conn, workspace);
690                 return;
691         }
692
693         /* Now perform action to <where> */
694         while (*rest != '\0') {
695                 if (*rest == 'h')
696                         direction = D_LEFT;
697                 else if (*rest == 'j')
698                         direction = D_DOWN;
699                 else if (*rest == 'k')
700                         direction = D_UP;
701                 else if (*rest == 'l')
702                         direction = D_RIGHT;
703                 else {
704                         LOG("unknown direction: %c\n", *rest);
705                         return;
706                 }
707
708                 if (action == ACTION_FOCUS)
709                         focus_thing(conn, direction, (with == WITH_WINDOW ? THING_WINDOW : THING_CONTAINER));
710                 else if (action == ACTION_MOVE) {
711                         if (with == WITH_WINDOW)
712                                 move_current_window(conn, direction);
713                         else move_current_container(conn, direction);
714                 }
715                 else if (action == ACTION_SNAP)
716                         snap_current_container(conn, direction);
717
718                 rest++;
719         }
720
721         LOG("--- done ---\n");
722 }