2009-07-28 13:55:09 +02:00
|
|
|
|
/*
|
2010-04-13 16:43:08 +02:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2009-07-28 13:55:09 +02:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2010-04-13 16:43:08 +02:00
|
|
|
|
* © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
|
2009-07-28 13:55:09 +02:00
|
|
|
|
*
|
|
|
|
|
* workspace.c: Functions for modifying workspaces
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-08-08 19:51:51 +02:00
|
|
|
|
#include <limits.h>
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
|
|
|
|
#include "all.h"
|
|
|
|
|
|
2009-09-27 15:20:47 +02:00
|
|
|
|
/*
|
|
|
|
|
* Returns a pointer to the workspace with the given number (starting at 0),
|
|
|
|
|
* creating the workspace if necessary (by allocating the necessary amount of
|
|
|
|
|
* memory and initializing the data structures correctly).
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-27 15:25:51 +01:00
|
|
|
|
Con *workspace_get(const char *num) {
|
2010-04-13 16:43:08 +02:00
|
|
|
|
Con *output, *workspace = NULL, *current;
|
|
|
|
|
|
|
|
|
|
/* TODO: could that look like this in the future?
|
|
|
|
|
GET_MATCHING_NODE(workspace, croot, strcasecmp(current->name, num) != 0);
|
|
|
|
|
*/
|
|
|
|
|
TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
|
|
|
|
|
TAILQ_FOREACH(current, &(output->nodes_head), nodes) {
|
|
|
|
|
if (strcasecmp(current->name, num) != 0)
|
2011-01-05 00:26:23 +01:00
|
|
|
|
continue;
|
2010-04-13 16:43:08 +02:00
|
|
|
|
|
|
|
|
|
workspace = current;
|
|
|
|
|
break;
|
2010-03-27 15:25:51 +01:00
|
|
|
|
}
|
2010-04-13 16:43:08 +02:00
|
|
|
|
}
|
2009-09-27 14:00:54 +02:00
|
|
|
|
|
2010-04-16 20:59:21 +02:00
|
|
|
|
LOG("getting ws %s\n", num);
|
2010-04-13 16:43:08 +02:00
|
|
|
|
if (workspace == NULL) {
|
|
|
|
|
LOG("need to create this one\n");
|
|
|
|
|
output = con_get_output(focused);
|
|
|
|
|
LOG("got output %p\n", output);
|
2010-11-21 23:35:49 +01:00
|
|
|
|
/* We need to attach this container after setting its type. con_attach
|
|
|
|
|
* will handle CT_WORKSPACEs differently */
|
|
|
|
|
workspace = con_new(NULL);
|
2010-11-14 16:41:46 +01:00
|
|
|
|
char *name;
|
|
|
|
|
asprintf(&name, "[i3 con] workspace %s", num);
|
|
|
|
|
x_set_name(workspace, name);
|
|
|
|
|
free(name);
|
2010-05-31 00:11:11 +02:00
|
|
|
|
workspace->type = CT_WORKSPACE;
|
2011-01-04 22:38:33 +01:00
|
|
|
|
FREE(workspace->name);
|
|
|
|
|
workspace->name = sstrdup(num);
|
2010-11-21 23:35:49 +01:00
|
|
|
|
/* We set ->num to the number if this workspace’s name consists only of
|
|
|
|
|
* a positive number. Otherwise it’s a named ws and num will be -1. */
|
|
|
|
|
char *end;
|
|
|
|
|
long parsed_num = strtol(num, &end, 10);
|
|
|
|
|
if (parsed_num == LONG_MIN ||
|
|
|
|
|
parsed_num == LONG_MAX ||
|
|
|
|
|
parsed_num < 0 ||
|
|
|
|
|
(end && *end != '\0'))
|
|
|
|
|
workspace->num = -1;
|
|
|
|
|
else workspace->num = parsed_num;
|
|
|
|
|
LOG("num = %d\n", workspace->num);
|
2010-06-01 22:45:18 +02:00
|
|
|
|
workspace->orientation = HORIZ;
|
2010-11-28 01:51:16 +01:00
|
|
|
|
con_attach(workspace, output, false);
|
2010-03-12 21:05:05 +01:00
|
|
|
|
|
2010-04-13 16:43:08 +02:00
|
|
|
|
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"init\"}");
|
|
|
|
|
}
|
2009-09-27 14:00:54 +02:00
|
|
|
|
|
2010-04-13 16:43:08 +02:00
|
|
|
|
//ewmh_update_workarea();
|
2009-12-31 17:48:41 +01:00
|
|
|
|
|
2010-04-13 16:43:08 +02:00
|
|
|
|
return workspace;
|
2009-09-27 14:00:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#if 0
|
|
|
|
|
|
2009-07-28 13:55:09 +02:00
|
|
|
|
/*
|
|
|
|
|
* Sets the name (or just its number) for the given workspace. This has to
|
|
|
|
|
* be called for every workspace as the rendering function
|
|
|
|
|
* (render_internal_bar) relies on workspace->name and workspace->name_len
|
|
|
|
|
* being ready-to-use.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void workspace_set_name(Workspace *ws, const char *name) {
|
|
|
|
|
char *label;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (name != NULL)
|
|
|
|
|
ret = asprintf(&label, "%d: %s", ws->num + 1, name);
|
|
|
|
|
else ret = asprintf(&label, "%d", ws->num + 1);
|
|
|
|
|
|
|
|
|
|
if (ret == -1)
|
|
|
|
|
errx(1, "asprintf() failed");
|
|
|
|
|
|
|
|
|
|
FREE(ws->name);
|
2010-03-11 15:58:39 +01:00
|
|
|
|
FREE(ws->utf8_name);
|
2009-07-28 13:55:09 +02:00
|
|
|
|
|
|
|
|
|
ws->name = convert_utf8_to_ucs2(label, &(ws->name_len));
|
2009-08-07 15:48:13 +02:00
|
|
|
|
if (config.font != NULL)
|
|
|
|
|
ws->text_width = predict_text_width(global_conn, config.font, ws->name, ws->name_len);
|
|
|
|
|
else ws->text_width = 0;
|
2010-03-11 15:58:39 +01:00
|
|
|
|
ws->utf8_name = label;
|
2009-07-28 13:55:09 +02:00
|
|
|
|
}
|
2010-11-12 17:34:13 +01:00
|
|
|
|
#endif
|
2009-08-02 22:31:52 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Returns true if the workspace is currently visible. Especially important for
|
|
|
|
|
* multi-monitor environments, as they can have multiple currenlty active
|
|
|
|
|
* workspaces.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-11-12 17:34:13 +01:00
|
|
|
|
bool workspace_is_visible(Con *ws) {
|
|
|
|
|
Con *output = con_get_output(ws);
|
|
|
|
|
if (output == NULL)
|
|
|
|
|
return false;
|
|
|
|
|
Con *fs = con_get_fullscreen_con(output);
|
|
|
|
|
LOG("workspace visible? fs = %p, ws = %p\n", fs, ws);
|
|
|
|
|
return (fs == ws);
|
2009-08-02 22:31:52 +02:00
|
|
|
|
}
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
2010-09-01 18:11:01 +02:00
|
|
|
|
/*
|
|
|
|
|
* XXX: we need to clean up all this recursive walking code.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
Con *_get_sticky(Con *con, const char *sticky_group, Con *exclude) {
|
|
|
|
|
Con *current;
|
|
|
|
|
|
|
|
|
|
TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
|
|
|
|
|
if (current != exclude &&
|
|
|
|
|
current->sticky_group != NULL &&
|
|
|
|
|
current->window != NULL &&
|
|
|
|
|
strcmp(current->sticky_group, sticky_group) == 0)
|
|
|
|
|
return current;
|
|
|
|
|
|
|
|
|
|
Con *recurse = _get_sticky(current, sticky_group, exclude);
|
|
|
|
|
if (recurse != NULL)
|
|
|
|
|
return recurse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TAILQ_FOREACH(current, &(con->floating_head), floating_windows) {
|
|
|
|
|
if (current != exclude &&
|
|
|
|
|
current->sticky_group != NULL &&
|
|
|
|
|
current->window != NULL &&
|
|
|
|
|
strcmp(current->sticky_group, sticky_group) == 0)
|
|
|
|
|
return current;
|
|
|
|
|
|
|
|
|
|
Con *recurse = _get_sticky(current, sticky_group, exclude);
|
|
|
|
|
if (recurse != NULL)
|
|
|
|
|
return recurse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Reassigns all child windows in sticky containers. Called when the user
|
|
|
|
|
* changes workspaces.
|
|
|
|
|
*
|
|
|
|
|
* XXX: what about sticky containers which contain containers?
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void workspace_reassign_sticky(Con *con) {
|
|
|
|
|
Con *current;
|
|
|
|
|
/* 1: go through all containers */
|
|
|
|
|
|
|
|
|
|
/* handle all children and floating windows of this node */
|
|
|
|
|
TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
|
|
|
|
|
if (current->sticky_group == NULL) {
|
|
|
|
|
workspace_reassign_sticky(current);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LOG("Ah, this one is sticky: %s / %p\n", current->name, current);
|
|
|
|
|
/* 2: find a window which we can re-assign */
|
|
|
|
|
Con *output = con_get_output(current);
|
|
|
|
|
Con *src = _get_sticky(output, current->sticky_group, current);
|
|
|
|
|
|
|
|
|
|
if (src == NULL) {
|
|
|
|
|
LOG("No window found for this sticky group\n");
|
|
|
|
|
workspace_reassign_sticky(current);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
x_move_win(src, current);
|
|
|
|
|
current->window = src->window;
|
|
|
|
|
current->mapped = true;
|
|
|
|
|
src->window = NULL;
|
|
|
|
|
src->mapped = false;
|
|
|
|
|
|
|
|
|
|
x_reparent_child(current, src);
|
|
|
|
|
|
|
|
|
|
LOG("re-assigned window from src %p to dest %p\n", src, current);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
|
|
|
|
|
workspace_reassign_sticky(current);
|
|
|
|
|
}
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Switches to the given workspace
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-27 15:25:51 +01:00
|
|
|
|
void workspace_show(const char *num) {
|
2010-04-16 20:59:21 +02:00
|
|
|
|
Con *workspace, *current, *old;
|
|
|
|
|
|
2010-04-13 16:43:08 +02:00
|
|
|
|
workspace = workspace_get(num);
|
2011-01-08 00:38:10 +01:00
|
|
|
|
|
|
|
|
|
/* disable fullscreen for the other workspaces and get the workspace we are
|
|
|
|
|
* currently on. */
|
|
|
|
|
TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes) {
|
|
|
|
|
if (current->fullscreen_mode == CF_OUTPUT)
|
|
|
|
|
old = current;
|
|
|
|
|
current->fullscreen_mode = CF_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-08 12:03:03 +01:00
|
|
|
|
/* Check if the the currently focused con is on the same Output as the
|
|
|
|
|
* workspace we chose as 'old'. If not, use the workspace of the currently
|
|
|
|
|
* focused con */
|
|
|
|
|
if (con_get_workspace(focused)->parent != old->parent)
|
|
|
|
|
old = con_get_workspace(focused);
|
|
|
|
|
|
2011-01-08 00:38:10 +01:00
|
|
|
|
/* enable fullscreen for the target workspace. If it happens to be the
|
|
|
|
|
* same one we are currently on anyways, we can stop here. */
|
|
|
|
|
workspace->fullscreen_mode = CF_OUTPUT;
|
2010-05-09 23:20:49 +02:00
|
|
|
|
if (workspace == old)
|
|
|
|
|
return;
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
2010-09-01 18:11:01 +02:00
|
|
|
|
workspace_reassign_sticky(workspace);
|
|
|
|
|
|
2010-04-13 16:43:08 +02:00
|
|
|
|
LOG("switching to %p\n", workspace);
|
2011-01-27 16:08:25 +01:00
|
|
|
|
Con *next = con_descend_focused(workspace);
|
2010-04-16 20:59:21 +02:00
|
|
|
|
|
2010-11-20 20:16:15 +01:00
|
|
|
|
if (TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
|
2010-11-12 17:34:13 +01:00
|
|
|
|
/* check if this workspace is currently visible */
|
|
|
|
|
if (!workspace_is_visible(old)) {
|
|
|
|
|
LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
|
2010-11-14 20:14:09 +01:00
|
|
|
|
tree_close(old, false, false);
|
2010-11-20 23:25:32 +01:00
|
|
|
|
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
|
2010-11-12 17:34:13 +01:00
|
|
|
|
}
|
2010-04-16 20:59:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-13 16:43:08 +02:00
|
|
|
|
con_focus(next);
|
|
|
|
|
workspace->fullscreen_mode = CF_OUTPUT;
|
|
|
|
|
LOG("focused now = %p / %s\n", focused, focused->name);
|
2010-11-20 23:04:01 +01:00
|
|
|
|
|
|
|
|
|
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#if 0
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
|
|
|
|
/* Check if the workspace has not been used yet */
|
2010-03-02 12:47:21 +01:00
|
|
|
|
workspace_initialize(t_ws, c_ws->output, false);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
if (c_ws->output != t_ws->output) {
|
|
|
|
|
/* We need to switch to the other output first */
|
|
|
|
|
DLOG("moving over to other output.\n");
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
|
|
|
|
/* Store the old client */
|
|
|
|
|
Client *old_client = CUR_CELL->currently_focused;
|
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
c_ws = t_ws->output->current_workspace;
|
2009-08-08 19:51:51 +02:00
|
|
|
|
current_col = c_ws->current_col;
|
|
|
|
|
current_row = c_ws->current_row;
|
|
|
|
|
if (CUR_CELL->currently_focused != NULL)
|
|
|
|
|
need_warp = true;
|
|
|
|
|
else {
|
2010-03-02 12:47:21 +01:00
|
|
|
|
Rect *dims = &(c_ws->output->rect);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
|
|
|
|
|
dims->x + (dims->width / 2), dims->y + (dims->height / 2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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);
|
2010-03-08 02:02:35 +01:00
|
|
|
|
|
2010-03-08 11:12:02 +01:00
|
|
|
|
/* We need to check if a global fullscreen-client is blocking
|
|
|
|
|
* the t_ws and if necessary switch that to local fullscreen */
|
2010-03-08 02:02:35 +01:00
|
|
|
|
Client* client = c_ws->fullscreen_client;
|
2010-03-08 11:12:02 +01:00
|
|
|
|
if (client != NULL && client->workspace != c_ws) {
|
|
|
|
|
if (c_ws->fullscreen_client->workspace != c_ws)
|
|
|
|
|
c_ws->fullscreen_client = NULL;
|
2010-03-08 02:02:35 +01:00
|
|
|
|
client_enter_fullscreen(conn, client, false);
|
2010-03-08 11:12:02 +01:00
|
|
|
|
}
|
2009-08-08 19:51:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if we need to change something or if we’re already there */
|
2010-03-02 12:47:21 +01:00
|
|
|
|
if (c_ws->output->current_workspace->num == (workspace-1)) {
|
2009-08-08 19:51:51 +02:00
|
|
|
|
Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
|
2009-09-12 18:46:52 +02:00
|
|
|
|
if (last_focused != SLIST_END(&(c_ws->focus_stack)))
|
2009-08-08 19:51:51 +02:00
|
|
|
|
set_focus(conn, last_focused, true);
|
2009-09-12 18:46:52 +02:00
|
|
|
|
if (need_warp) {
|
|
|
|
|
client_warp_pointer_into(conn, last_focused);
|
|
|
|
|
xcb_flush(conn);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-12 21:05:05 +01:00
|
|
|
|
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
|
|
|
|
|
|
2009-08-08 19:51:51 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Workspace *old_workspace = c_ws;
|
2010-03-02 12:47:21 +01:00
|
|
|
|
c_ws = t_ws->output->current_workspace = workspace_get(workspace-1);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
|
|
|
|
/* Unmap all clients of the old workspace */
|
|
|
|
|
workspace_unmap_clients(conn, old_workspace);
|
|
|
|
|
|
|
|
|
|
current_row = c_ws->current_row;
|
|
|
|
|
current_col = c_ws->current_col;
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("new current row = %d, current col = %d\n", current_row, current_col);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
2010-03-12 21:05:05 +01:00
|
|
|
|
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
|
|
|
|
|
|
2009-08-08 19:51:51 +02:00
|
|
|
|
workspace_map_clients(conn, c_ws);
|
|
|
|
|
|
2009-09-12 18:46:52 +02:00
|
|
|
|
/* POTENTIAL TO IMPROVE HERE: due to the call to _map_clients first and
|
|
|
|
|
* render_layout afterwards, there is a short flickering on the source
|
2010-03-02 12:47:21 +01:00
|
|
|
|
* workspace (assign ws 3 to output 0, ws 4 to output 1, create single
|
2009-09-12 18:46:52 +02:00
|
|
|
|
* client on ws 4, move it to ws 3, switch to ws 3, you’ll see the
|
|
|
|
|
* flickering). */
|
|
|
|
|
|
2009-08-08 19:51:51 +02:00
|
|
|
|
/* Restore focus on the new workspace */
|
|
|
|
|
Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
|
2009-09-12 18:46:52 +02:00
|
|
|
|
if (last_focused != SLIST_END(&(c_ws->focus_stack)))
|
2009-08-08 19:51:51 +02:00
|
|
|
|
set_focus(conn, last_focused, true);
|
2009-09-12 18:46:52 +02:00
|
|
|
|
else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
|
|
|
|
render_layout(conn);
|
2009-09-12 18:46:52 +02:00
|
|
|
|
|
|
|
|
|
/* We can warp the pointer only after the window has been
|
|
|
|
|
* reconfigured in render_layout, otherwise the pointer will
|
|
|
|
|
* be warped to the old position, which will not work when we
|
2010-03-02 12:47:21 +01:00
|
|
|
|
* moved it to another output. */
|
2009-09-12 18:46:52 +02:00
|
|
|
|
if (last_focused != SLIST_END(&(c_ws->focus_stack)) && need_warp) {
|
|
|
|
|
client_warp_pointer_into(conn, last_focused);
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
}
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#endif
|
2009-08-08 19:51:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-27 15:25:51 +01:00
|
|
|
|
#if 0
|
2009-12-21 22:30:08 +01:00
|
|
|
|
/*
|
2010-03-02 12:47:21 +01:00
|
|
|
|
* Assigns the given workspace to the given output by correctly updating its
|
2009-12-21 22:30:08 +01:00
|
|
|
|
* state and reconfiguring all the clients on this workspace.
|
|
|
|
|
*
|
2010-03-02 12:47:21 +01:00
|
|
|
|
* This is called when initializing a output and when re-assigning it to a
|
|
|
|
|
* different output which just got available (if you configured it to be on
|
|
|
|
|
* output 1 and you just plugged in output 1).
|
2009-12-21 22:30:08 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-05 15:22:12 +01:00
|
|
|
|
void workspace_assign_to(Workspace *ws, Output *output, bool hide_it) {
|
2009-12-21 22:30:08 +01:00
|
|
|
|
Client *client;
|
|
|
|
|
bool empty = true;
|
2010-03-05 14:32:48 +01:00
|
|
|
|
bool visible = workspace_is_visible(ws);
|
2009-12-21 22:30:08 +01:00
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
ws->output = output;
|
2009-12-21 22:30:08 +01:00
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
/* Copy the dimensions from the virtual output */
|
|
|
|
|
memcpy(&(ws->rect), &(ws->output->rect), sizeof(Rect));
|
2009-12-21 22:30:08 +01:00
|
|
|
|
|
2009-12-31 17:48:41 +01:00
|
|
|
|
ewmh_update_workarea();
|
|
|
|
|
|
2009-12-21 22:30:08 +01:00
|
|
|
|
/* Force reconfiguration for each client on that workspace */
|
2010-03-02 12:47:21 +01:00
|
|
|
|
SLIST_FOREACH(client, &(ws->focus_stack), focus_clients) {
|
|
|
|
|
client->force_reconfigure = true;
|
|
|
|
|
empty = false;
|
|
|
|
|
}
|
2009-12-21 22:30:08 +01:00
|
|
|
|
|
|
|
|
|
if (empty)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Render the workspace to reconfigure the clients. However, they will be visible now, so… */
|
2010-03-02 12:47:21 +01:00
|
|
|
|
render_workspace(global_conn, output, ws);
|
2009-12-21 22:30:08 +01:00
|
|
|
|
|
|
|
|
|
/* …unless we want to see them at the moment, we should hide that workspace */
|
2010-03-05 15:22:12 +01:00
|
|
|
|
if (visible && !hide_it)
|
2009-12-21 22:30:08 +01:00
|
|
|
|
return;
|
|
|
|
|
|
2010-03-24 16:06:21 +01:00
|
|
|
|
/* however, if this is the current workspace, we only need to adjust
|
|
|
|
|
* the output’s current_workspace pointer (and must not unmap the
|
|
|
|
|
* windows) */
|
2009-12-21 22:30:08 +01:00
|
|
|
|
if (c_ws == ws) {
|
2010-03-05 14:32:48 +01:00
|
|
|
|
DLOG("Need to adjust output->current_workspace...\n");
|
|
|
|
|
output->current_workspace = c_ws;
|
2010-03-24 16:06:21 +01:00
|
|
|
|
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
|
|
|
|
|
return;
|
2009-12-21 22:30:08 +01:00
|
|
|
|
}
|
2010-03-24 16:06:21 +01:00
|
|
|
|
|
|
|
|
|
workspace_unmap_clients(global_conn, ws);
|
2009-12-21 22:30:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-08-08 19:51:51 +02:00
|
|
|
|
/*
|
|
|
|
|
* Initializes the given workspace if it is not already initialized. The given
|
|
|
|
|
* screen is to be understood as a fallback, if the workspace itself either
|
|
|
|
|
* was not assigned to a particular screen or cannot be placed there because
|
|
|
|
|
* the screen is not attached at the moment.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-02 12:47:21 +01:00
|
|
|
|
void workspace_initialize(Workspace *ws, Output *output, bool recheck) {
|
|
|
|
|
Output *old_output;
|
2009-12-21 22:30:08 +01:00
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
if (ws->output != NULL && !recheck) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Workspace already initialized\n");
|
2009-08-08 19:51:51 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
old_output = ws->output;
|
2009-12-21 22:30:08 +01:00
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
/* If this workspace has no preferred output or if the output it wants
|
2009-08-08 19:51:51 +02:00
|
|
|
|
* to be on is not available at the moment, we initialize it with
|
2010-03-02 12:47:21 +01:00
|
|
|
|
* the output which was given */
|
2010-03-02 13:35:43 +01:00
|
|
|
|
if (ws->preferred_output == NULL ||
|
|
|
|
|
(ws->output = get_output_by_name(ws->preferred_output)) == NULL)
|
2010-03-02 12:47:21 +01:00
|
|
|
|
ws->output = output;
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
DLOG("old_output = %p, ws->output = %p\n", old_output, ws->output);
|
2009-12-21 22:30:08 +01:00
|
|
|
|
/* If the assignment did not change, we do not need to update anything */
|
2010-03-02 12:47:21 +01:00
|
|
|
|
if (old_output != NULL && ws->output == old_output)
|
2009-12-21 22:30:08 +01:00
|
|
|
|
return;
|
|
|
|
|
|
2010-03-05 15:22:12 +01:00
|
|
|
|
workspace_assign_to(ws, ws->output, false);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Gets the first unused workspace for the given screen, taking into account
|
2010-03-02 13:35:43 +01:00
|
|
|
|
* the preferred_output setting of every workspace (workspace assignments).
|
2009-08-08 19:51:51 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-03-05 16:18:41 +01:00
|
|
|
|
Workspace *get_first_workspace_for_output(Output *output) {
|
2009-08-08 19:51:51 +02:00
|
|
|
|
Workspace *result = NULL;
|
|
|
|
|
|
2009-09-29 19:45:41 +02:00
|
|
|
|
Workspace *ws;
|
|
|
|
|
TAILQ_FOREACH(ws, workspaces, workspaces) {
|
2010-03-02 13:35:43 +01:00
|
|
|
|
if (ws->preferred_output == NULL ||
|
|
|
|
|
get_output_by_name(ws->preferred_output) != output)
|
2009-08-08 19:51:51 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
result = ws;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result == NULL) {
|
|
|
|
|
/* No assignment found, returning first unused workspace */
|
2009-09-29 19:45:41 +02:00
|
|
|
|
TAILQ_FOREACH(ws, workspaces, workspaces) {
|
2010-03-02 12:47:21 +01:00
|
|
|
|
if (ws->output != NULL)
|
2009-08-08 19:51:51 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
2009-09-29 19:45:41 +02:00
|
|
|
|
result = ws;
|
2009-08-08 19:51:51 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-28 18:02:11 +02:00
|
|
|
|
if (result == NULL) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("No existing free workspace found to assign, creating a new one\n");
|
2009-09-28 18:02:11 +02:00
|
|
|
|
|
2009-09-29 19:45:41 +02:00
|
|
|
|
int last_ws = 0;
|
|
|
|
|
TAILQ_FOREACH(ws, workspaces, workspaces)
|
|
|
|
|
last_ws = ws->num;
|
|
|
|
|
result = workspace_get(last_ws + 1);
|
2009-08-08 19:51:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-02 12:47:21 +01:00
|
|
|
|
workspace_initialize(result, output, false);
|
2009-09-28 18:02:11 +02:00
|
|
|
|
return result;
|
2009-08-08 19:51:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static bool get_urgency_flag(Con *con) {
|
|
|
|
|
Con *child;
|
|
|
|
|
TAILQ_FOREACH(child, &(con->nodes_head), nodes)
|
|
|
|
|
if (child->urgent || get_urgency_flag(child))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
|
|
|
|
|
if (child->urgent || get_urgency_flag(child))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2009-08-08 19:51:51 +02:00
|
|
|
|
|
2009-09-06 22:40:11 +02:00
|
|
|
|
/*
|
|
|
|
|
* Goes through all clients on the given workspace and updates the workspace’s
|
|
|
|
|
* urgent flag accordingly.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-06-02 17:51:58 +02:00
|
|
|
|
void workspace_update_urgent_flag(Con *ws) {
|
|
|
|
|
bool old_flag = ws->urgent;
|
|
|
|
|
ws->urgent = get_urgency_flag(ws);
|
|
|
|
|
DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
|
2009-09-06 22:40:11 +02:00
|
|
|
|
|
2010-06-02 17:51:58 +02:00
|
|
|
|
if (old_flag != ws->urgent)
|
|
|
|
|
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
|
2009-09-06 22:40:11 +02:00
|
|
|
|
}
|
2011-02-14 23:05:20 +01:00
|
|
|
|
|
2011-02-14 23:17:30 +01:00
|
|
|
|
/*
|
|
|
|
|
* 'Forces' workspace orientation by moving all cons into a new split-con with
|
|
|
|
|
* the same orientation as the workspace and then changing the workspace
|
|
|
|
|
* orientation.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2011-02-14 23:05:20 +01:00
|
|
|
|
void ws_force_orientation(Con *ws, orientation_t orientation) {
|
|
|
|
|
/* 1: create a new split container */
|
|
|
|
|
Con *split = con_new(NULL);
|
|
|
|
|
split->parent = ws;
|
|
|
|
|
|
|
|
|
|
/* 2: copy layout and orientation from workspace */
|
|
|
|
|
split->layout = ws->layout;
|
|
|
|
|
split->orientation = ws->orientation;
|
|
|
|
|
|
|
|
|
|
Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
|
|
|
|
|
|
|
|
|
|
/* 3: move the existing cons of this workspace below the new con */
|
|
|
|
|
DLOG("Moving cons\n");
|
|
|
|
|
while (!TAILQ_EMPTY(&(ws->nodes_head))) {
|
|
|
|
|
Con *child = TAILQ_FIRST(&(ws->nodes_head));
|
|
|
|
|
con_detach(child);
|
|
|
|
|
con_attach(child, split, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 4: switch workspace orientation */
|
|
|
|
|
ws->orientation = orientation;
|
|
|
|
|
|
|
|
|
|
/* 5: attach the new split container to the workspace */
|
|
|
|
|
DLOG("Attaching new split to ws\n");
|
|
|
|
|
con_attach(split, ws, false);
|
|
|
|
|
|
|
|
|
|
/* 6: fix the percentages */
|
|
|
|
|
con_fix_percent(ws);
|
|
|
|
|
|
|
|
|
|
if (old_focused)
|
|
|
|
|
con_focus(old_focused);
|
|
|
|
|
}
|