2009-02-13 20:33:31 -05:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
2009-02-14 21:07:29 -05:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors
|
2009-02-13 20:33:31 -05:00
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-02-13 13:04:45 -05:00
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
#include "data.h"
|
|
|
|
|
#include "table.h"
|
|
|
|
|
#include "layout.h"
|
|
|
|
|
#include "i3.h"
|
2009-03-04 07:06:14 -05:00
|
|
|
|
#include "xinerama.h"
|
2009-05-16 11:32:36 -04:00
|
|
|
|
#include "client.h"
|
2009-05-23 10:34:03 -04:00
|
|
|
|
#include "floating.h"
|
2009-02-13 13:04:45 -05:00
|
|
|
|
|
2009-04-01 06:31:13 -04:00
|
|
|
|
bool focus_window_in_container(xcb_connection_t *conn, Container *container, direction_t direction) {
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* If this container is empty, we’re done */
|
|
|
|
|
if (container->currently_focused == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
|
2009-03-04 17:45:44 -05:00
|
|
|
|
/* Get the previous/next client or wrap around */
|
2009-03-03 17:51:02 -05:00
|
|
|
|
Client *candidate = NULL;
|
2009-03-04 17:45:44 -05:00
|
|
|
|
if (direction == D_UP) {
|
|
|
|
|
if ((candidate = CIRCLEQ_PREV_OR_NULL(&(container->clients), container->currently_focused, clients)) == NULL)
|
|
|
|
|
candidate = CIRCLEQ_LAST(&(container->clients));
|
|
|
|
|
}
|
|
|
|
|
else if (direction == D_DOWN) {
|
|
|
|
|
if ((candidate = CIRCLEQ_NEXT_OR_NULL(&(container->clients), container->currently_focused, clients)) == NULL)
|
|
|
|
|
candidate = CIRCLEQ_FIRST(&(container->clients));
|
2009-03-06 00:46:43 -05:00
|
|
|
|
} else LOG("Direction not implemented!\n");
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
2009-03-05 13:47:16 -05:00
|
|
|
|
/* If we could not switch, the container contains exactly one client. We return false */
|
|
|
|
|
if (candidate == container->currently_focused)
|
|
|
|
|
return false;
|
|
|
|
|
|
2009-03-04 17:45:44 -05:00
|
|
|
|
/* Set focus */
|
2009-04-01 06:50:42 -04:00
|
|
|
|
set_focus(conn, candidate, true);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
return true;
|
2009-02-13 13:04:45 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 17:45:44 -05:00
|
|
|
|
typedef enum { THING_WINDOW, THING_CONTAINER } thing_t;
|
|
|
|
|
|
|
|
|
|
static void focus_thing(xcb_connection_t *conn, direction_t direction, thing_t thing) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("focusing direction %d\n", direction);
|
2009-03-02 20:28:26 -05:00
|
|
|
|
|
|
|
|
|
int new_row = current_row,
|
|
|
|
|
new_col = current_col;
|
|
|
|
|
|
2009-03-04 07:06:14 -05:00
|
|
|
|
Container *container = CUR_CELL;
|
|
|
|
|
Workspace *t_ws = c_ws;
|
|
|
|
|
|
|
|
|
|
/* There always is a container. If not, current_col or current_row is wrong */
|
|
|
|
|
assert(container != NULL);
|
|
|
|
|
|
2009-03-06 10:53:47 -05:00
|
|
|
|
if (container->workspace->fullscreen_client != NULL) {
|
|
|
|
|
LOG("You're in fullscreen mode. Won't switch focus\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* TODO: for horizontal default layout, this has to be expanded to LEFT/RIGHT */
|
|
|
|
|
if (direction == D_UP || direction == D_DOWN) {
|
2009-03-04 17:45:44 -05:00
|
|
|
|
if (thing == THING_WINDOW)
|
|
|
|
|
/* Let’s see if we can perform up/down focus in the current container */
|
|
|
|
|
if (focus_window_in_container(conn, container, direction))
|
|
|
|
|
return;
|
2009-02-22 19:41:26 -05:00
|
|
|
|
|
|
|
|
|
if (direction == D_DOWN && cell_exists(current_col, current_row+1))
|
2009-05-09 13:59:36 -04:00
|
|
|
|
new_row = current_row + t_ws->table[current_col][current_row]->rowspan;
|
|
|
|
|
else if (direction == D_UP && cell_exists(current_col, current_row-1)) {
|
|
|
|
|
/* Set new_row as a sane default, but it may get overwritten in a second */
|
2009-03-02 20:28:26 -05:00
|
|
|
|
new_row--;
|
2009-05-09 13:59:36 -04:00
|
|
|
|
|
|
|
|
|
/* Search from the top to correctly handle rowspanned containers */
|
|
|
|
|
for (int rows = 0; rows < current_row; rows += t_ws->table[current_col][rows]->rowspan) {
|
|
|
|
|
if (new_row > (rows + (t_ws->table[current_col][rows]->rowspan - 1)))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
new_row = rows;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2009-03-04 07:06:14 -05:00
|
|
|
|
/* Let’s see if there is a screen down/up there to which we can switch */
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("container is at %d with height %d\n", container->y, container->height);
|
2009-03-04 07:06:14 -05:00
|
|
|
|
i3Screen *screen;
|
|
|
|
|
int destination_y = (direction == D_UP ? (container->y - 1) : (container->y + container->height + 1));
|
|
|
|
|
if ((screen = get_screen_containing(container->x, destination_y)) == NULL) {
|
2009-03-09 02:39:19 -04:00
|
|
|
|
LOG("Wrapping screen around vertically\n");
|
|
|
|
|
/* No screen found? Then wrap */
|
|
|
|
|
screen = get_screen_most((direction == D_UP ? D_DOWN : D_UP));
|
2009-03-04 07:06:14 -05:00
|
|
|
|
}
|
|
|
|
|
t_ws = &(workspaces[screen->current_workspace]);
|
|
|
|
|
new_row = (direction == D_UP ? (t_ws->rows - 1) : 0);
|
|
|
|
|
}
|
2009-02-13 20:33:31 -05:00
|
|
|
|
} else if (direction == D_LEFT || direction == D_RIGHT) {
|
|
|
|
|
if (direction == D_RIGHT && cell_exists(current_col+1, current_row))
|
2009-05-09 13:59:36 -04:00
|
|
|
|
new_col = current_col + t_ws->table[current_col][current_row]->colspan;
|
|
|
|
|
else if (direction == D_LEFT && cell_exists(current_col-1, current_row)) {
|
|
|
|
|
/* Set new_col as a sane default, but it may get overwritten in a second */
|
2009-03-02 20:28:26 -05:00
|
|
|
|
new_col--;
|
2009-05-09 13:59:36 -04:00
|
|
|
|
|
|
|
|
|
/* Search from the left to correctly handle colspanned containers */
|
|
|
|
|
for (int cols = 0; cols < current_col; cols += t_ws->table[cols][current_row]->colspan) {
|
|
|
|
|
if (new_col > (cols + (t_ws->table[cols][current_row]->colspan - 1)))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
new_col = cols;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2009-03-04 07:06:14 -05:00
|
|
|
|
/* Let’s see if there is a screen left/right here to which we can switch */
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("container is at %d with width %d\n", container->x, container->width);
|
2009-03-04 07:06:14 -05:00
|
|
|
|
i3Screen *screen;
|
|
|
|
|
int destination_x = (direction == D_LEFT ? (container->x - 1) : (container->x + container->width + 1));
|
|
|
|
|
if ((screen = get_screen_containing(destination_x, container->y)) == NULL) {
|
2009-03-09 02:39:19 -04:00
|
|
|
|
LOG("Wrapping screen around horizontally\n");
|
|
|
|
|
screen = get_screen_most((direction == D_LEFT ? D_RIGHT : D_LEFT));
|
2009-03-04 07:06:14 -05:00
|
|
|
|
}
|
|
|
|
|
t_ws = &(workspaces[screen->current_workspace]);
|
|
|
|
|
new_col = (direction == D_LEFT ? (t_ws->cols - 1) : 0);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("direction unhandled\n");
|
2009-02-22 19:41:26 -05:00
|
|
|
|
return;
|
2009-02-13 20:33:31 -05:00
|
|
|
|
}
|
2009-02-22 19:41:26 -05:00
|
|
|
|
|
2009-03-09 02:39:19 -04:00
|
|
|
|
/* Bounds checking */
|
|
|
|
|
if (new_col >= t_ws->cols)
|
|
|
|
|
new_col = (t_ws->cols - 1);
|
|
|
|
|
if (new_row >= t_ws->rows)
|
|
|
|
|
new_row = (t_ws->rows - 1);
|
|
|
|
|
|
2009-03-04 07:06:14 -05:00
|
|
|
|
if (t_ws->table[new_col][new_row]->currently_focused != NULL)
|
2009-04-01 06:50:42 -04:00
|
|
|
|
set_focus(conn, t_ws->table[new_col][new_row]->currently_focused, true);
|
2009-02-13 13:04:45 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Tries to move the window inside its current container.
|
|
|
|
|
*
|
|
|
|
|
* Returns true if the window could be moved, false otherwise.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 09:45:12 -05:00
|
|
|
|
static bool move_current_window_in_container(xcb_connection_t *conn, Client *client,
|
2009-02-13 20:33:31 -05:00
|
|
|
|
direction_t direction) {
|
2009-02-22 21:44:10 -05:00
|
|
|
|
assert(client->container != NULL);
|
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
Client *other = (direction == D_UP ? CIRCLEQ_PREV(client, clients) :
|
2009-03-03 17:51:02 -05:00
|
|
|
|
CIRCLEQ_NEXT(client, clients));
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
if (other == CIRCLEQ_END(&(client->container->clients)))
|
|
|
|
|
return false;
|
|
|
|
|
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("i can do that\n");
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* We can move the client inside its current container */
|
|
|
|
|
CIRCLEQ_REMOVE(&(client->container->clients), client, clients);
|
|
|
|
|
if (direction == D_UP)
|
|
|
|
|
CIRCLEQ_INSERT_BEFORE(&(client->container->clients), other, client, clients);
|
|
|
|
|
else CIRCLEQ_INSERT_AFTER(&(client->container->clients), other, client, clients);
|
2009-03-04 09:45:12 -05:00
|
|
|
|
render_layout(conn);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return true;
|
2009-02-13 13:04:45 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2009-03-11 13:56:31 -04:00
|
|
|
|
* Moves the current window or whole container to the given direction, creating a column/row if
|
|
|
|
|
* necessary.
|
2009-02-13 13:04:45 -05:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 09:45:12 -05:00
|
|
|
|
static void move_current_window(xcb_connection_t *conn, direction_t direction) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("moving window to direction %s\n", (direction == D_UP ? "up" : (direction == D_DOWN ? "down" :
|
2009-03-11 13:56:31 -04:00
|
|
|
|
(direction == D_LEFT ? "left" : "right"))));
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* Get current window */
|
|
|
|
|
Container *container = CUR_CELL,
|
2009-02-14 19:58:09 -05:00
|
|
|
|
*new = NULL;
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
/* There has to be a container, see focus_window() */
|
|
|
|
|
assert(container != NULL);
|
|
|
|
|
|
2009-02-22 19:41:26 -05:00
|
|
|
|
/* If there is no window or the dock window is focused, we’re done */
|
|
|
|
|
if (container->currently_focused == NULL ||
|
|
|
|
|
container->currently_focused->dock)
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
|
|
|
|
|
2009-04-07 10:48:42 -04:00
|
|
|
|
/* As soon as the client is moved away, the last focused client in the old
|
2009-02-13 20:33:31 -05:00
|
|
|
|
* container needs to get focus, if any. Therefore, we save it here. */
|
|
|
|
|
Client *current_client = container->currently_focused;
|
2009-04-11 08:08:19 -04:00
|
|
|
|
Client *to_focus = get_last_focused_client(conn, container, current_client);
|
2009-04-07 10:48:42 -04:00
|
|
|
|
|
|
|
|
|
if (to_focus == NULL) {
|
|
|
|
|
to_focus = CIRCLEQ_NEXT_OR_NULL(&(container->clients), current_client, clients);
|
|
|
|
|
if (to_focus == NULL)
|
|
|
|
|
to_focus = CIRCLEQ_PREV_OR_NULL(&(container->clients), current_client, clients);
|
|
|
|
|
}
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
switch (direction) {
|
|
|
|
|
case D_LEFT:
|
2009-03-10 20:55:10 -04:00
|
|
|
|
/* If we’re at the left-most position, move the rest of the table right */
|
|
|
|
|
if (current_col == 0) {
|
|
|
|
|
expand_table_cols_at_head(c_ws);
|
2009-03-11 13:56:31 -04:00
|
|
|
|
new = CUR_CELL;
|
2009-03-10 20:55:10 -04:00
|
|
|
|
} else
|
|
|
|
|
new = CUR_TABLE[--current_col][current_row];
|
2009-02-13 20:33:31 -05:00
|
|
|
|
break;
|
|
|
|
|
case D_RIGHT:
|
|
|
|
|
if (current_col == (c_ws->cols-1))
|
|
|
|
|
expand_table_cols(c_ws);
|
|
|
|
|
|
|
|
|
|
new = CUR_TABLE[++current_col][current_row];
|
|
|
|
|
break;
|
|
|
|
|
case D_UP:
|
2009-03-11 13:56:31 -04:00
|
|
|
|
if (move_current_window_in_container(conn, current_client, D_UP))
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
|
|
|
|
|
2009-03-11 13:56:31 -04:00
|
|
|
|
/* if we’re at the up-most position, move the rest of the table down */
|
|
|
|
|
if (current_row == 0) {
|
|
|
|
|
expand_table_rows_at_head(c_ws);
|
|
|
|
|
new = CUR_CELL;
|
|
|
|
|
} else
|
|
|
|
|
new = CUR_TABLE[current_col][--current_row];
|
2009-02-13 20:33:31 -05:00
|
|
|
|
break;
|
|
|
|
|
case D_DOWN:
|
2009-03-04 09:45:12 -05:00
|
|
|
|
if (move_current_window_in_container(conn, current_client, D_DOWN))
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (current_row == (c_ws->rows-1))
|
|
|
|
|
expand_table_rows(c_ws);
|
|
|
|
|
|
|
|
|
|
new = CUR_TABLE[current_col][++current_row];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove it from the old container and put it into the new one */
|
2009-05-16 11:32:36 -04:00
|
|
|
|
client_remove_from_container(conn, current_client, container);
|
2009-05-03 10:24:12 -04:00
|
|
|
|
|
|
|
|
|
if (new->currently_focused != NULL)
|
|
|
|
|
CIRCLEQ_INSERT_AFTER(&(new->clients), new->currently_focused, current_client, clients);
|
|
|
|
|
else CIRCLEQ_INSERT_TAIL(&(new->clients), current_client, clients);
|
2009-04-01 06:02:22 -04:00
|
|
|
|
SLIST_INSERT_HEAD(&(new->workspace->focus_stack), current_client, focus_clients);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
/* Update data structures */
|
|
|
|
|
current_client->container = new;
|
2009-05-27 06:27:29 -04:00
|
|
|
|
current_client->workspace = new->workspace;
|
2009-02-13 20:33:31 -05:00
|
|
|
|
container->currently_focused = to_focus;
|
|
|
|
|
new->currently_focused = current_client;
|
|
|
|
|
|
2009-03-09 03:14:00 -04:00
|
|
|
|
Workspace *workspace = container->workspace;
|
|
|
|
|
|
2009-02-24 14:29:30 -05:00
|
|
|
|
/* delete all empty columns/rows */
|
2009-03-09 03:14:00 -04:00
|
|
|
|
cleanup_table(conn, workspace);
|
2009-03-05 11:17:37 -05:00
|
|
|
|
|
|
|
|
|
/* Fix colspan/rowspan if it’d overlap */
|
2009-03-09 03:14:00 -04:00
|
|
|
|
fix_colrowspan(conn, workspace);
|
2009-03-05 11:17:37 -05:00
|
|
|
|
|
2009-05-26 11:16:51 -04:00
|
|
|
|
render_workspace(conn, workspace->screen, workspace);
|
|
|
|
|
xcb_flush(conn);
|
2009-02-22 19:41:26 -05:00
|
|
|
|
|
2009-04-01 06:50:42 -04:00
|
|
|
|
set_focus(conn, current_client, true);
|
2009-02-13 13:04:45 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-11 13:56:31 -04:00
|
|
|
|
static void move_current_container(xcb_connection_t *conn, direction_t direction) {
|
|
|
|
|
LOG("moving container to direction %s\n", (direction == D_UP ? "up" : (direction == D_DOWN ? "down" :
|
|
|
|
|
(direction == D_LEFT ? "left" : "right"))));
|
|
|
|
|
/* Get current window */
|
|
|
|
|
Container *container = CUR_CELL,
|
|
|
|
|
*new = NULL;
|
|
|
|
|
|
|
|
|
|
Container **old = &CUR_CELL;
|
|
|
|
|
|
|
|
|
|
/* There has to be a container, see focus_window() */
|
|
|
|
|
assert(container != NULL);
|
|
|
|
|
|
|
|
|
|
switch (direction) {
|
|
|
|
|
case D_LEFT:
|
|
|
|
|
/* If we’re at the left-most position, move the rest of the table right */
|
|
|
|
|
if (current_col == 0) {
|
|
|
|
|
expand_table_cols_at_head(c_ws);
|
|
|
|
|
new = CUR_CELL;
|
|
|
|
|
old = &CUR_TABLE[current_col+1][current_row];
|
|
|
|
|
} else
|
|
|
|
|
new = CUR_TABLE[--current_col][current_row];
|
|
|
|
|
break;
|
|
|
|
|
case D_RIGHT:
|
|
|
|
|
if (current_col == (c_ws->cols-1))
|
|
|
|
|
expand_table_cols(c_ws);
|
|
|
|
|
|
|
|
|
|
new = CUR_TABLE[++current_col][current_row];
|
|
|
|
|
break;
|
|
|
|
|
case D_UP:
|
|
|
|
|
/* if we’re at the up-most position, move the rest of the table down */
|
|
|
|
|
if (current_row == 0) {
|
|
|
|
|
expand_table_rows_at_head(c_ws);
|
|
|
|
|
new = CUR_CELL;
|
|
|
|
|
old = &CUR_TABLE[current_col][current_row+1];
|
|
|
|
|
} else
|
|
|
|
|
new = CUR_TABLE[current_col][--current_row];
|
|
|
|
|
break;
|
|
|
|
|
case D_DOWN:
|
|
|
|
|
if (current_row == (c_ws->rows-1))
|
|
|
|
|
expand_table_rows(c_ws);
|
|
|
|
|
|
|
|
|
|
new = CUR_TABLE[current_col][++current_row];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG("old = %d,%d and new = %d,%d\n", container->col, container->row, new->col, new->row);
|
|
|
|
|
|
|
|
|
|
/* Swap the containers */
|
|
|
|
|
int col = new->col;
|
|
|
|
|
int row = new->row;
|
|
|
|
|
|
|
|
|
|
*old = new;
|
|
|
|
|
new->col = container->col;
|
|
|
|
|
new->row = container->row;
|
|
|
|
|
|
|
|
|
|
CUR_CELL = container;
|
|
|
|
|
container->col = col;
|
|
|
|
|
container->row = row;
|
|
|
|
|
|
|
|
|
|
Workspace *workspace = container->workspace;
|
|
|
|
|
|
|
|
|
|
/* delete all empty columns/rows */
|
|
|
|
|
cleanup_table(conn, workspace);
|
|
|
|
|
|
|
|
|
|
/* Fix colspan/rowspan if it’d overlap */
|
|
|
|
|
fix_colrowspan(conn, workspace);
|
|
|
|
|
|
|
|
|
|
render_layout(conn);
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-13 13:04:45 -05:00
|
|
|
|
/*
|
|
|
|
|
* "Snaps" the current container (not possible for windows, because it works at table base)
|
|
|
|
|
* to the given direction, that is, adjusts cellspan/rowspan
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 09:45:12 -05:00
|
|
|
|
static void snap_current_container(xcb_connection_t *conn, direction_t direction) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("snapping container to direction %d\n", direction);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
Container *container = CUR_CELL;
|
|
|
|
|
|
|
|
|
|
assert(container != NULL);
|
|
|
|
|
|
|
|
|
|
switch (direction) {
|
|
|
|
|
case D_LEFT:
|
|
|
|
|
/* Snap to the left is actually a move to the left and then a snap right */
|
2009-03-05 11:17:37 -05:00
|
|
|
|
if (!cell_exists(container->col - 1, container->row) ||
|
|
|
|
|
CUR_TABLE[container->col-1][container->row]->currently_focused != NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("cannot snap to left - the cell is already used\n");
|
2009-03-05 11:17:37 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 09:45:12 -05:00
|
|
|
|
move_current_window(conn, D_LEFT);
|
|
|
|
|
snap_current_container(conn, D_RIGHT);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
2009-03-05 11:23:13 -05:00
|
|
|
|
case D_RIGHT: {
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* Check if the cell is used */
|
2009-03-05 11:23:13 -05:00
|
|
|
|
int new_col = container->col + container->colspan;
|
|
|
|
|
if (!cell_exists(new_col, container->row) ||
|
|
|
|
|
CUR_TABLE[new_col][container->row]->currently_focused != NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("cannot snap to right - the cell is already used\n");
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if there are other cells with rowspan, which are in our way.
|
|
|
|
|
* If so, reduce their rowspan. */
|
2009-02-14 20:30:18 -05:00
|
|
|
|
for (int i = container->row-1; i >= 0; i--) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("we got cell %d, %d with rowspan %d\n",
|
2009-03-05 11:23:13 -05:00
|
|
|
|
new_col, i, CUR_TABLE[new_col][i]->rowspan);
|
|
|
|
|
while ((CUR_TABLE[new_col][i]->rowspan-1) >= (container->row - i))
|
|
|
|
|
CUR_TABLE[new_col][i]->rowspan--;
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("new rowspan = %d\n", CUR_TABLE[new_col][i]->rowspan);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
container->colspan++;
|
|
|
|
|
break;
|
2009-03-05 11:23:13 -05:00
|
|
|
|
}
|
2009-02-13 20:33:31 -05:00
|
|
|
|
case D_UP:
|
2009-03-05 11:23:13 -05:00
|
|
|
|
if (!cell_exists(container->col, container->row - 1) ||
|
|
|
|
|
CUR_TABLE[container->col][container->row-1]->currently_focused != NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("cannot snap to top - the cell is already used\n");
|
2009-03-05 11:23:13 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 09:45:12 -05:00
|
|
|
|
move_current_window(conn, D_UP);
|
|
|
|
|
snap_current_container(conn, D_DOWN);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
2009-03-05 11:23:13 -05:00
|
|
|
|
case D_DOWN: {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("snapping down\n");
|
2009-03-05 11:23:13 -05:00
|
|
|
|
int new_row = container->row + container->rowspan;
|
|
|
|
|
if (!cell_exists(container->col, new_row) ||
|
|
|
|
|
CUR_TABLE[container->col][new_row]->currently_focused != NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("cannot snap down - the cell is already used\n");
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-14 20:30:18 -05:00
|
|
|
|
for (int i = container->col-1; i >= 0; i--) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("we got cell %d, %d with colspan %d\n",
|
2009-03-05 11:23:13 -05:00
|
|
|
|
i, new_row, CUR_TABLE[i][new_row]->colspan);
|
|
|
|
|
while ((CUR_TABLE[i][new_row]->colspan-1) >= (container->col - i))
|
|
|
|
|
CUR_TABLE[i][new_row]->colspan--;
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("new colspan = %d\n", CUR_TABLE[i][new_row]->colspan);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
container->rowspan++;
|
|
|
|
|
break;
|
2009-03-05 11:23:13 -05:00
|
|
|
|
}
|
2009-02-13 20:33:31 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 09:45:12 -05:00
|
|
|
|
render_layout(conn);
|
2009-02-13 13:04:45 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-05-23 10:34:03 -04:00
|
|
|
|
static void move_floating_window_to_workspace(xcb_connection_t *conn, Client *client, int workspace) {
|
|
|
|
|
/* t_ws (to workspace) is just a container pointer to the workspace we’re switching to */
|
|
|
|
|
Workspace *t_ws = &(workspaces[workspace-1]);
|
|
|
|
|
|
|
|
|
|
LOG("moving floating\n");
|
|
|
|
|
|
|
|
|
|
if (t_ws->screen == NULL) {
|
|
|
|
|
LOG("initializing new workspace, setting num to %d\n", workspace-1);
|
|
|
|
|
t_ws->screen = c_ws->screen;
|
|
|
|
|
/* Copy the dimensions from the virtual screen */
|
|
|
|
|
memcpy(&(t_ws->rect), &(t_ws->screen->rect), sizeof(Rect));
|
|
|
|
|
} else {
|
|
|
|
|
/* Check if there is already a fullscreen client on the destination workspace and
|
|
|
|
|
* stop moving if so. */
|
|
|
|
|
if (client->fullscreen && (t_ws->fullscreen_client != NULL)) {
|
|
|
|
|
LOG("Not moving: Fullscreen client already existing on destination workspace.\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove from focus stack */
|
|
|
|
|
SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
|
|
|
|
|
|
|
|
|
|
if (client->workspace->fullscreen_client == client)
|
|
|
|
|
client->workspace->fullscreen_client = NULL;
|
|
|
|
|
|
|
|
|
|
/* Insert into destination focus stack */
|
|
|
|
|
client->workspace = t_ws;
|
|
|
|
|
SLIST_INSERT_HEAD(&(t_ws->focus_stack), client, focus_clients);
|
|
|
|
|
if (client->fullscreen)
|
|
|
|
|
t_ws->fullscreen_client = client;
|
|
|
|
|
|
|
|
|
|
/* If we’re moving it to an invisible screen, we need to unmap it */
|
|
|
|
|
if (t_ws->screen->current_workspace != t_ws->num) {
|
|
|
|
|
LOG("This workspace is not visible, unmapping\n");
|
|
|
|
|
xcb_unmap_window(conn, client->frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG("done\n");
|
|
|
|
|
|
|
|
|
|
render_layout(conn);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 02:59:03 -05:00
|
|
|
|
/*
|
|
|
|
|
* Moves the currently selected window to the given workspace
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 09:45:12 -05:00
|
|
|
|
static void move_current_window_to_workspace(xcb_connection_t *conn, int workspace) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("Moving current window to workspace %d\n", workspace);
|
2009-03-04 02:59:03 -05:00
|
|
|
|
|
|
|
|
|
Container *container = CUR_CELL;
|
|
|
|
|
|
|
|
|
|
assert(container != NULL);
|
|
|
|
|
|
|
|
|
|
/* t_ws (to workspace) is just a container pointer to the workspace we’re switching to */
|
|
|
|
|
Workspace *t_ws = &(workspaces[workspace-1]);
|
|
|
|
|
|
|
|
|
|
Client *current_client = container->currently_focused;
|
|
|
|
|
if (current_client == NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("No currently focused client in current container.\n");
|
2009-03-04 02:59:03 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Client *to_focus = CIRCLEQ_NEXT_OR_NULL(&(container->clients), current_client, clients);
|
|
|
|
|
if (to_focus == NULL)
|
|
|
|
|
to_focus = CIRCLEQ_PREV_OR_NULL(&(container->clients), current_client, clients);
|
|
|
|
|
|
|
|
|
|
if (t_ws->screen == NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("initializing new workspace, setting num to %d\n", workspace-1);
|
2009-03-04 02:59:03 -05:00
|
|
|
|
t_ws->screen = container->workspace->screen;
|
|
|
|
|
/* Copy the dimensions from the virtual screen */
|
|
|
|
|
memcpy(&(t_ws->rect), &(container->workspace->screen->rect), sizeof(Rect));
|
2009-04-17 15:01:33 -04:00
|
|
|
|
} else {
|
|
|
|
|
/* Check if there is already a fullscreen client on the destination workspace and
|
|
|
|
|
* stop moving if so. */
|
|
|
|
|
if (current_client->fullscreen && (t_ws->fullscreen_client != NULL)) {
|
|
|
|
|
LOG("Not moving: Fullscreen client already existing on destination workspace.\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-03-04 02:59:03 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Container *to_container = t_ws->table[t_ws->current_col][t_ws->current_row];
|
|
|
|
|
|
|
|
|
|
assert(to_container != NULL);
|
|
|
|
|
|
2009-05-16 11:32:36 -04:00
|
|
|
|
client_remove_from_container(conn, current_client, container);
|
2009-04-17 15:01:33 -04:00
|
|
|
|
if (container->workspace->fullscreen_client == current_client)
|
|
|
|
|
container->workspace->fullscreen_client = NULL;
|
2009-03-04 19:48:30 -05:00
|
|
|
|
|
2009-05-23 10:34:03 -04:00
|
|
|
|
/* TODO: insert it to the correct position */
|
2009-03-04 02:59:03 -05:00
|
|
|
|
CIRCLEQ_INSERT_TAIL(&(to_container->clients), current_client, clients);
|
2009-05-23 10:34:03 -04:00
|
|
|
|
|
2009-03-04 19:48:30 -05:00
|
|
|
|
SLIST_INSERT_HEAD(&(to_container->workspace->focus_stack), current_client, focus_clients);
|
2009-04-17 15:01:33 -04:00
|
|
|
|
if (current_client->fullscreen)
|
|
|
|
|
t_ws->fullscreen_client = current_client;
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("Moved.\n");
|
2009-03-04 02:59:03 -05:00
|
|
|
|
|
|
|
|
|
current_client->container = to_container;
|
2009-05-27 06:27:29 -04:00
|
|
|
|
current_client->workspace = to_container->workspace;
|
2009-03-04 02:59:03 -05:00
|
|
|
|
container->currently_focused = to_focus;
|
|
|
|
|
to_container->currently_focused = current_client;
|
|
|
|
|
|
|
|
|
|
/* If we’re moving it to an invisible screen, we need to unmap it */
|
|
|
|
|
if (to_container->workspace->screen->current_workspace != to_container->workspace->num) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("This workspace is not visible, unmapping\n");
|
2009-03-04 09:45:12 -05:00
|
|
|
|
xcb_unmap_window(conn, current_client->frame);
|
2009-03-04 02:59:03 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* delete all empty columns/rows */
|
2009-03-04 09:45:12 -05:00
|
|
|
|
cleanup_table(conn, container->workspace);
|
2009-03-04 02:59:03 -05:00
|
|
|
|
|
2009-03-04 09:45:12 -05:00
|
|
|
|
render_layout(conn);
|
2009-03-04 02:59:03 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-15 12:49:25 -04:00
|
|
|
|
/*
|
|
|
|
|
* Switches to the given workspace
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void show_workspace(xcb_connection_t *conn, int workspace) {
|
2009-02-13 20:33:31 -05:00
|
|
|
|
Client *client;
|
2009-04-11 05:36:58 -04:00
|
|
|
|
bool need_warp = false;
|
2009-02-13 20:33:31 -05:00
|
|
|
|
xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
|
2009-02-14 19:58:09 -05:00
|
|
|
|
/* t_ws (to workspace) is just a convenience pointer to the workspace we’re switching to */
|
|
|
|
|
Workspace *t_ws = &(workspaces[workspace-1]);
|
|
|
|
|
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("show_workspace(%d)\n", workspace);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
/* Store current_row/current_col */
|
|
|
|
|
c_ws->current_row = current_row;
|
|
|
|
|
c_ws->current_col = current_col;
|
|
|
|
|
|
2009-02-14 19:58:09 -05:00
|
|
|
|
/* Check if the workspace has not been used yet */
|
|
|
|
|
if (t_ws->screen == NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("initializing new workspace, setting num to %d\n", workspace);
|
2009-02-14 19:58:09 -05:00
|
|
|
|
t_ws->screen = c_ws->screen;
|
|
|
|
|
/* Copy the dimensions from the virtual screen */
|
|
|
|
|
memcpy(&(t_ws->rect), &(t_ws->screen->rect), sizeof(Rect));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c_ws->screen != t_ws->screen) {
|
|
|
|
|
/* We need to switch to the other screen first */
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("moving over to other screen.\n");
|
2009-03-15 16:13:15 -04:00
|
|
|
|
|
|
|
|
|
/* Store the old client */
|
|
|
|
|
Client *old_client = CUR_CELL->currently_focused;
|
|
|
|
|
|
2009-02-14 19:58:09 -05:00
|
|
|
|
c_ws = &(workspaces[t_ws->screen->current_workspace]);
|
|
|
|
|
current_col = c_ws->current_col;
|
|
|
|
|
current_row = c_ws->current_row;
|
|
|
|
|
if (CUR_CELL->currently_focused != NULL)
|
2009-04-11 05:36:58 -04:00
|
|
|
|
need_warp = true;
|
2009-02-14 19:58:09 -05:00
|
|
|
|
else {
|
|
|
|
|
Rect *dims = &(c_ws->screen->rect);
|
|
|
|
|
xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
|
|
|
|
|
dims->x + (dims->width / 2), dims->y + (dims->height / 2));
|
|
|
|
|
}
|
2009-03-15 16:13:15 -04:00
|
|
|
|
|
|
|
|
|
/* Re-decorate the old client, it’s not focused anymore */
|
|
|
|
|
if ((old_client != NULL) && !old_client->dock)
|
|
|
|
|
redecorate_window(conn, old_client);
|
|
|
|
|
else xcb_flush(conn);
|
2009-02-14 19:58:09 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if we need to change something or if we’re already there */
|
2009-04-08 07:48:37 -04:00
|
|
|
|
if (c_ws->screen->current_workspace == (workspace-1)) {
|
2009-04-11 14:55:16 -04:00
|
|
|
|
if (CUR_CELL->currently_focused != NULL) {
|
2009-04-08 07:48:37 -04:00
|
|
|
|
set_focus(conn, CUR_CELL->currently_focused, true);
|
2009-04-11 14:55:16 -04:00
|
|
|
|
if (need_warp) {
|
2009-05-16 11:32:36 -04:00
|
|
|
|
client_warp_pointer_into(conn, CUR_CELL->currently_focused);
|
2009-04-11 14:55:16 -04:00
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-02-14 19:58:09 -05:00
|
|
|
|
return;
|
2009-04-08 07:48:37 -04:00
|
|
|
|
}
|
2009-02-14 19:58:09 -05:00
|
|
|
|
|
|
|
|
|
t_ws->screen->current_workspace = workspace-1;
|
2009-05-16 12:12:35 -04:00
|
|
|
|
Workspace *old_workspace = c_ws;
|
|
|
|
|
c_ws = &workspaces[workspace-1];
|
2009-02-14 19:58:09 -05:00
|
|
|
|
|
2009-05-16 12:12:35 -04:00
|
|
|
|
/* Unmap all clients of the old workspace */
|
|
|
|
|
unmap_workspace(conn, old_workspace);
|
2009-03-10 19:20:56 -04:00
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
current_row = c_ws->current_row;
|
|
|
|
|
current_col = c_ws->current_col;
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("new current row = %d, current col = %d\n", current_row, current_col);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
2009-03-10 19:20:56 -04:00
|
|
|
|
ignore_enter_notify_forall(conn, c_ws, true);
|
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* Map all clients on the new workspace */
|
2009-03-10 19:20:56 -04:00
|
|
|
|
FOR_TABLE(c_ws)
|
|
|
|
|
CIRCLEQ_FOREACH(client, &(c_ws->table[cols][rows]->clients), clients)
|
|
|
|
|
xcb_map_window(conn, client->frame);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
2009-05-23 10:34:03 -04:00
|
|
|
|
/* Map all floating clients */
|
|
|
|
|
SLIST_FOREACH(client, &(c_ws->focus_stack), focus_clients) {
|
|
|
|
|
if (!client->floating)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
xcb_map_window(conn, client->frame);
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-24 20:05:08 -05:00
|
|
|
|
/* Map all stack windows, if any */
|
2009-05-09 07:01:23 -04:00
|
|
|
|
struct Stack_Window *stack_win;
|
2009-02-24 20:05:08 -05:00
|
|
|
|
SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
|
|
|
|
|
if (stack_win->container->workspace == c_ws)
|
|
|
|
|
xcb_map_window(conn, stack_win->window);
|
|
|
|
|
|
2009-03-10 19:20:56 -04:00
|
|
|
|
ignore_enter_notify_forall(conn, c_ws, false);
|
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* Restore focus on the new workspace */
|
2009-04-11 05:36:58 -04:00
|
|
|
|
if (CUR_CELL->currently_focused != NULL) {
|
2009-04-01 06:50:42 -04:00
|
|
|
|
set_focus(conn, CUR_CELL->currently_focused, true);
|
2009-04-11 14:55:16 -04:00
|
|
|
|
if (need_warp) {
|
2009-05-16 11:32:36 -04:00
|
|
|
|
client_warp_pointer_into(conn, CUR_CELL->currently_focused);
|
2009-04-11 14:55:16 -04:00
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
}
|
2009-04-11 05:36:58 -04:00
|
|
|
|
} else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
|
|
|
|
|
render_layout(conn);
|
2009-02-13 13:04:45 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-31 04:46:12 -04:00
|
|
|
|
/*
|
|
|
|
|
* Jumps to the given window class / title.
|
|
|
|
|
* Title is matched using strstr, that is, matches if it appears anywhere
|
|
|
|
|
* in the string. Regular expressions seem to be a bit overkill here. However,
|
|
|
|
|
* if we need them for something else somewhen, we may introduce them here, too.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void jump_to_window(xcb_connection_t *conn, const char *arguments) {
|
2009-05-16 11:32:36 -04:00
|
|
|
|
char *classtitle;
|
|
|
|
|
Client *client;
|
2009-03-31 04:46:12 -04:00
|
|
|
|
|
|
|
|
|
/* The first character is a quote, this was checked before */
|
2009-05-16 11:32:36 -04:00
|
|
|
|
classtitle = sstrdup(arguments+1);
|
2009-03-31 04:46:12 -04:00
|
|
|
|
/* The last character is a quote, we just set it to NULL */
|
2009-05-16 11:32:36 -04:00
|
|
|
|
classtitle[strlen(classtitle)-1] = '\0';
|
2009-03-31 04:46:12 -04:00
|
|
|
|
|
2009-05-16 11:32:36 -04:00
|
|
|
|
if ((client = get_matching_client(conn, classtitle, NULL)) == NULL) {
|
|
|
|
|
free(classtitle);
|
|
|
|
|
LOG("No matching client found.\n");
|
|
|
|
|
return;
|
2009-03-31 04:46:12 -04:00
|
|
|
|
}
|
|
|
|
|
|
2009-05-16 11:32:36 -04:00
|
|
|
|
free(classtitle);
|
|
|
|
|
set_focus(conn, client, true);
|
2009-03-31 04:46:12 -04:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-29 08:53:48 -04:00
|
|
|
|
/*
|
|
|
|
|
* Jump directly to the specified workspace, row and col.
|
2009-03-31 04:46:12 -04:00
|
|
|
|
* Great for reaching windows that you always keep in the same spot (hello irssi, I'm looking at you)
|
2009-03-30 03:25:30 -04:00
|
|
|
|
*
|
2009-03-29 08:53:48 -04:00
|
|
|
|
*/
|
2009-03-31 04:46:12 -04:00
|
|
|
|
static void jump_to_container(xcb_connection_t *conn, const char *arguments) {
|
2009-03-30 03:25:30 -04:00
|
|
|
|
int ws, row, col;
|
2009-03-29 08:53:48 -04:00
|
|
|
|
int result;
|
|
|
|
|
|
2009-03-31 04:46:12 -04:00
|
|
|
|
result = sscanf(arguments, "%d %d %d", &ws, &col, &row);
|
|
|
|
|
LOG("Jump called with %d parameters (\"%s\")\n", result, arguments);
|
2009-03-29 08:53:48 -04:00
|
|
|
|
|
2009-03-30 03:25:30 -04:00
|
|
|
|
/* No match? Either no arguments were specified, or no numbers */
|
|
|
|
|
if (result < 1) {
|
|
|
|
|
LOG("At least one valid argument required\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-03-29 08:53:48 -04:00
|
|
|
|
|
|
|
|
|
/* Move to the target workspace */
|
|
|
|
|
show_workspace(conn, ws);
|
|
|
|
|
|
2009-03-30 03:25:30 -04:00
|
|
|
|
if (result < 3)
|
|
|
|
|
return;
|
2009-03-29 08:53:48 -04:00
|
|
|
|
|
2009-05-05 10:57:21 -04:00
|
|
|
|
LOG("Boundary-checking col %d, row %d... (max cols %d, max rows %d)\n", col, row, c_ws->cols, c_ws->rows);
|
|
|
|
|
|
2009-03-29 08:53:48 -04:00
|
|
|
|
/* Move to row/col */
|
2009-03-30 03:25:30 -04:00
|
|
|
|
if (row >= c_ws->rows)
|
|
|
|
|
row = c_ws->rows - 1;
|
|
|
|
|
if (col >= c_ws->cols)
|
|
|
|
|
col = c_ws->cols - 1;
|
2009-03-29 08:53:48 -04:00
|
|
|
|
|
2009-05-05 10:57:21 -04:00
|
|
|
|
LOG("Jumping to col %d, row %d\n", col, row);
|
2009-03-29 08:53:48 -04:00
|
|
|
|
if (c_ws->table[col][row]->currently_focused != NULL)
|
2009-05-05 11:25:56 -04:00
|
|
|
|
set_focus(conn, c_ws->table[col][row]->currently_focused, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Travels the focus stack by the given number of times (or once, if no argument
|
|
|
|
|
* was specified). That is, selects the window you were in before you focused
|
|
|
|
|
* the current window.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void travel_focus_stack(xcb_connection_t *conn, const char *arguments) {
|
|
|
|
|
/* Start count at -1 to always skip the first element */
|
|
|
|
|
int times, count = -1;
|
|
|
|
|
Client *current;
|
|
|
|
|
|
|
|
|
|
if (sscanf(arguments, "%u", ×) != 1) {
|
|
|
|
|
LOG("No or invalid argument given (\"%s\"), using default of 1 times\n", arguments);
|
|
|
|
|
times = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Workspace *ws = CUR_CELL->workspace;
|
|
|
|
|
|
|
|
|
|
SLIST_FOREACH(current, &(ws->focus_stack), focus_clients) {
|
|
|
|
|
if (++count < times) {
|
|
|
|
|
LOG("Skipping\n");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG("Focussing\n");
|
|
|
|
|
set_focus(conn, current, true);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-03-29 08:53:48 -04:00
|
|
|
|
}
|
|
|
|
|
|
2009-05-26 11:09:34 -04:00
|
|
|
|
/*
|
|
|
|
|
* Goes through the list of arguments (for exec()) and checks if the given argument
|
|
|
|
|
* is present. If not, it copies the arguments (because we cannot realloc it) and
|
|
|
|
|
* appends the given argument.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static char **append_argument(char **original, char *argument) {
|
|
|
|
|
int num_args;
|
|
|
|
|
for (num_args = 0; original[num_args] != NULL; num_args++) {
|
|
|
|
|
LOG("original argument: \"%s\"\n", original[num_args]);
|
|
|
|
|
/* If the argument is already present we return the original pointer */
|
|
|
|
|
if (strcmp(original[num_args], argument) == 0)
|
|
|
|
|
return original;
|
|
|
|
|
}
|
|
|
|
|
/* Copy the original array */
|
|
|
|
|
char **result = smalloc((num_args+2) * sizeof(char*));
|
|
|
|
|
memcpy(result, original, num_args * sizeof(char*));
|
|
|
|
|
result[num_args] = argument;
|
|
|
|
|
result[num_args+1] = NULL;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-13 13:04:45 -05:00
|
|
|
|
/*
|
|
|
|
|
* Parses a command, see file CMDMODE for more information
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void parse_command(xcb_connection_t *conn, const char *command) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("--- parsing command \"%s\" ---\n", command);
|
2009-05-23 10:34:03 -04:00
|
|
|
|
/* Get the first client from focus stack because floating clients are not
|
|
|
|
|
* in any container, therefore CUR_CELL is not appropriate. */
|
|
|
|
|
Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
|
|
|
|
|
if (last_focused == SLIST_END(&(c_ws->focus_stack)))
|
|
|
|
|
last_focused = NULL;
|
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* Hmm, just to be sure */
|
|
|
|
|
if (command[0] == '\0')
|
|
|
|
|
return;
|
|
|
|
|
|
2009-03-14 16:31:22 -04:00
|
|
|
|
/* Is it an <exec>? Then execute the given command. */
|
|
|
|
|
if (STARTS_WITH(command, "exec ")) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("starting \"%s\"\n", command + strlen("exec "));
|
2009-02-13 20:33:31 -05:00
|
|
|
|
start_application(command+strlen("exec "));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-14 16:31:22 -04:00
|
|
|
|
/* Is it an <exit>? */
|
2009-03-14 17:09:36 -04:00
|
|
|
|
if (STARTS_WITH(command, "exit")) {
|
|
|
|
|
LOG("User issued exit-command, exiting without error.\n");
|
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
|
}
|
2009-03-14 16:31:22 -04:00
|
|
|
|
|
|
|
|
|
/* Is it <restart>? Then restart in place. */
|
|
|
|
|
if (STARTS_WITH(command, "restart")) {
|
2009-05-01 10:10:02 -04:00
|
|
|
|
LOG("restarting \"%s\"...\n", start_argv[0]);
|
2009-05-26 11:09:34 -04:00
|
|
|
|
/* make sure -a is in the argument list or append it */
|
|
|
|
|
start_argv = append_argument(start_argv, "-a");
|
|
|
|
|
|
2009-05-01 10:10:02 -04:00
|
|
|
|
execvp(start_argv[0], start_argv);
|
2009-02-27 16:40:48 -05:00
|
|
|
|
/* not reached */
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-14 17:09:36 -04:00
|
|
|
|
if (STARTS_WITH(command, "kill")) {
|
2009-05-23 10:34:03 -04:00
|
|
|
|
if (last_focused == NULL) {
|
2009-03-14 17:09:36 -04:00
|
|
|
|
LOG("There is no window to kill\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG("Killing current window\n");
|
2009-05-23 10:34:03 -04:00
|
|
|
|
client_kill(conn, last_focused);
|
2009-03-14 17:09:36 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-23 10:34:03 -04:00
|
|
|
|
/* Is it a jump to a specified workspace, row, col? */
|
2009-03-29 08:53:48 -04:00
|
|
|
|
if (STARTS_WITH(command, "jump ")) {
|
2009-03-31 04:46:12 -04:00
|
|
|
|
const char *arguments = command + strlen("jump ");
|
|
|
|
|
if (arguments[0] == '"')
|
|
|
|
|
jump_to_window(conn, arguments);
|
|
|
|
|
else jump_to_container(conn, arguments);
|
2009-03-29 08:53:48 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-05 11:25:56 -04:00
|
|
|
|
/* Should we travel the focus stack? */
|
|
|
|
|
if (STARTS_WITH(command, "focus")) {
|
|
|
|
|
const char *arguments = command + strlen("focus");
|
|
|
|
|
travel_focus_stack(conn, arguments);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-14 14:12:50 -05:00
|
|
|
|
/* Is it 'f' for fullscreen? */
|
|
|
|
|
if (command[0] == 'f') {
|
2009-05-23 10:34:03 -04:00
|
|
|
|
if (last_focused == NULL)
|
2009-02-14 14:12:50 -05:00
|
|
|
|
return;
|
2009-05-26 10:49:57 -04:00
|
|
|
|
client_toggle_fullscreen(conn, last_focused);
|
2009-02-14 14:12:50 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-23 18:30:04 -05:00
|
|
|
|
/* Is it just 's' for stacking or 'd' for default? */
|
|
|
|
|
if ((command[0] == 's' || command[0] == 'd') && (command[1] == '\0')) {
|
2009-05-27 06:15:23 -04:00
|
|
|
|
if (last_focused == NULL || last_focused->floating) {
|
2009-05-23 10:34:03 -04:00
|
|
|
|
LOG("not switching, this is a floating client\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("Switching mode for current container\n");
|
2009-02-23 18:30:04 -05:00
|
|
|
|
switch_layout_mode(conn, CUR_CELL, (command[0] == 's' ? MODE_STACK : MODE_DEFAULT));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-23 10:34:03 -04:00
|
|
|
|
/* Is it 't' for toggle tiling/floating? */
|
|
|
|
|
if (command[0] == 't') {
|
|
|
|
|
if (last_focused == NULL) {
|
|
|
|
|
LOG("Cannot toggle tiling/floating: workspace empty\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
toggle_floating_mode(conn, last_focused);
|
2009-05-26 11:16:51 -04:00
|
|
|
|
/* delete all empty columns/rows */
|
|
|
|
|
cleanup_table(conn, last_focused->workspace);
|
|
|
|
|
|
|
|
|
|
/* Fix colspan/rowspan if it’d overlap */
|
|
|
|
|
fix_colrowspan(conn, last_focused->workspace);
|
|
|
|
|
|
|
|
|
|
render_workspace(conn, last_focused->workspace->screen, last_focused->workspace);
|
|
|
|
|
xcb_flush(conn);
|
2009-05-23 10:34:03 -04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 17:45:44 -05:00
|
|
|
|
enum { WITH_WINDOW, WITH_CONTAINER } with = WITH_WINDOW;
|
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* Is it a <with>? */
|
|
|
|
|
if (command[0] == 'w') {
|
2009-03-04 17:45:44 -05:00
|
|
|
|
command++;
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* TODO: implement */
|
2009-03-04 17:45:44 -05:00
|
|
|
|
if (command[0] == 'c') {
|
|
|
|
|
with = WITH_CONTAINER;
|
|
|
|
|
command++;
|
|
|
|
|
} else {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("not yet implemented.\n");
|
2009-03-04 17:45:44 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
2009-02-13 20:33:31 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-05-23 10:34:03 -04:00
|
|
|
|
/* It’s a normal <cmd> */
|
2009-02-13 20:33:31 -05:00
|
|
|
|
char *rest = NULL;
|
|
|
|
|
enum { ACTION_FOCUS, ACTION_MOVE, ACTION_SNAP } action = ACTION_FOCUS;
|
|
|
|
|
direction_t direction;
|
2009-03-04 02:59:03 -05:00
|
|
|
|
int times = strtol(command, &rest, 10);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
if (rest == NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("Invalid command (\"%s\")\n", command);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*rest == '\0') {
|
|
|
|
|
/* No rest? This was a tag number, not a times specification */
|
|
|
|
|
show_workspace(conn, times);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-27 20:46:36 -05:00
|
|
|
|
if (*rest == 'm' || *rest == 's') {
|
|
|
|
|
action = (*rest == 'm' ? ACTION_MOVE : ACTION_SNAP);
|
|
|
|
|
rest++;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 02:59:03 -05:00
|
|
|
|
int workspace = strtol(rest, &rest, 10);
|
|
|
|
|
|
|
|
|
|
if (rest == NULL) {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("Invalid command (\"%s\")\n", command);
|
2009-03-04 02:59:03 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*rest == '\0') {
|
2009-05-27 06:15:23 -04:00
|
|
|
|
if (last_focused != NULL && last_focused->floating)
|
2009-05-23 10:34:03 -04:00
|
|
|
|
move_floating_window_to_workspace(conn, last_focused, workspace);
|
|
|
|
|
else move_current_window_to_workspace(conn, workspace);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-27 06:15:23 -04:00
|
|
|
|
if (last_focused == NULL || last_focused->floating) {
|
|
|
|
|
LOG("Not performing (null or floating) \n");
|
2009-03-04 02:59:03 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-13 20:33:31 -05:00
|
|
|
|
/* Now perform action to <where> */
|
|
|
|
|
while (*rest != '\0') {
|
|
|
|
|
if (*rest == 'h')
|
|
|
|
|
direction = D_LEFT;
|
|
|
|
|
else if (*rest == 'j')
|
|
|
|
|
direction = D_DOWN;
|
|
|
|
|
else if (*rest == 'k')
|
|
|
|
|
direction = D_UP;
|
|
|
|
|
else if (*rest == 'l')
|
|
|
|
|
direction = D_RIGHT;
|
|
|
|
|
else {
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("unknown direction: %c\n", *rest);
|
2009-02-13 20:33:31 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-11 13:56:31 -04:00
|
|
|
|
if (action == ACTION_FOCUS)
|
2009-03-04 17:45:44 -05:00
|
|
|
|
focus_thing(conn, direction, (with == WITH_WINDOW ? THING_WINDOW : THING_CONTAINER));
|
2009-03-11 13:56:31 -04:00
|
|
|
|
else if (action == ACTION_MOVE) {
|
|
|
|
|
if (with == WITH_WINDOW)
|
|
|
|
|
move_current_window(conn, direction);
|
|
|
|
|
else move_current_container(conn, direction);
|
2009-03-04 17:45:44 -05:00
|
|
|
|
}
|
2009-02-13 20:33:31 -05:00
|
|
|
|
else if (action == ACTION_SNAP)
|
|
|
|
|
snap_current_container(conn, direction);
|
|
|
|
|
|
|
|
|
|
rest++;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 00:46:43 -05:00
|
|
|
|
LOG("--- done ---\n");
|
2009-02-13 13:04:45 -05:00
|
|
|
|
}
|