mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Merge branch 'wlroots' into wlroots-xwayland-map
This commit is contained in:
commit
7e0d430a0c
@ -104,7 +104,7 @@ struct sway_container *container_workspace_destroy(
|
|||||||
|
|
||||||
struct sway_container *container_view_destroy(struct sway_container *view);
|
struct sway_container *container_view_destroy(struct sway_container *view);
|
||||||
|
|
||||||
void container_destroy(struct sway_container *cont);
|
struct sway_container *container_destroy(struct sway_container *cont);
|
||||||
|
|
||||||
struct sway_container *container_set_layout(struct sway_container *container,
|
struct sway_container *container_set_layout(struct sway_container *container,
|
||||||
enum sway_container_layout layout);
|
enum sway_container_layout layout);
|
||||||
|
@ -39,6 +39,8 @@ struct sway_container *container_add_sibling(struct sway_container *parent,
|
|||||||
|
|
||||||
struct sway_container *container_remove_child(struct sway_container *child);
|
struct sway_container *container_remove_child(struct sway_container *child);
|
||||||
|
|
||||||
|
struct sway_container *container_reap_empty(struct sway_container *container);
|
||||||
|
|
||||||
void container_move_to(struct sway_container* container,
|
void container_move_to(struct sway_container* container,
|
||||||
struct sway_container* destination);
|
struct sway_container* destination);
|
||||||
|
|
||||||
|
@ -23,4 +23,6 @@ struct sway_container *workspace_output_prev(struct sway_container *current);
|
|||||||
|
|
||||||
struct sway_container *workspace_prev(struct sway_container *current);
|
struct sway_container *workspace_prev(struct sway_container *current);
|
||||||
|
|
||||||
|
bool workspace_is_visible(struct sway_container *ws);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -83,10 +83,9 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
|
|||||||
wl_container_of(listener, sway_xdg_surface, destroy);
|
wl_container_of(listener, sway_xdg_surface, destroy);
|
||||||
wl_list_remove(&sway_xdg_surface->commit.link);
|
wl_list_remove(&sway_xdg_surface->commit.link);
|
||||||
wl_list_remove(&sway_xdg_surface->destroy.link);
|
wl_list_remove(&sway_xdg_surface->destroy.link);
|
||||||
struct sway_container *parent = container_view_destroy(sway_xdg_surface->view->swayc);
|
container_view_destroy(sway_xdg_surface->view->swayc);
|
||||||
free(sway_xdg_surface->view);
|
free(sway_xdg_surface->view);
|
||||||
free(sway_xdg_surface);
|
free(sway_xdg_surface);
|
||||||
arrange_windows(parent, -1, -1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
|
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
|
||||||
|
@ -109,14 +109,9 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
|
|||||||
wl_list_remove(&sway_surface->destroy.link);
|
wl_list_remove(&sway_surface->destroy.link);
|
||||||
wl_list_remove(&sway_surface->request_configure.link);
|
wl_list_remove(&sway_surface->request_configure.link);
|
||||||
wl_list_remove(&sway_surface->view->unmanaged_view_link);
|
wl_list_remove(&sway_surface->view->unmanaged_view_link);
|
||||||
|
container_view_destroy(sway_surface->view->swayc);
|
||||||
struct sway_container *parent = container_view_destroy(sway_surface->view->swayc);
|
sway_surface->view->swayc = NULL;
|
||||||
if (parent) {
|
sway_surface->view->surface = NULL;
|
||||||
arrange_windows(parent, -1, -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
free(sway_surface->view);
|
|
||||||
free(sway_surface);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_unmap(struct wl_listener *listener, void *data) {
|
static void handle_unmap(struct wl_listener *listener, void *data) {
|
||||||
@ -125,13 +120,7 @@ static void handle_unmap(struct wl_listener *listener, void *data) {
|
|||||||
|
|
||||||
wl_list_remove(&sway_surface->view->unmanaged_view_link);
|
wl_list_remove(&sway_surface->view->unmanaged_view_link);
|
||||||
wl_list_init(&sway_surface->view->unmanaged_view_link);
|
wl_list_init(&sway_surface->view->unmanaged_view_link);
|
||||||
|
container_view_destroy(sway_surface->view->swayc);
|
||||||
// take it out of the tree
|
|
||||||
struct sway_container *parent = container_view_destroy(sway_surface->view->swayc);
|
|
||||||
if (parent) {
|
|
||||||
arrange_windows(parent, -1, -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
sway_surface->view->swayc = NULL;
|
sway_surface->view->swayc = NULL;
|
||||||
sway_surface->view->surface = NULL;
|
sway_surface->view->surface = NULL;
|
||||||
}
|
}
|
||||||
|
@ -66,19 +66,42 @@ static const char *ipc_json_get_output_transform(enum wl_output_transform transf
|
|||||||
|
|
||||||
static void ipc_json_describe_output(struct sway_container *container, json_object *object) {
|
static void ipc_json_describe_output(struct sway_container *container, json_object *object) {
|
||||||
struct wlr_output *wlr_output = container->sway_output->wlr_output;
|
struct wlr_output *wlr_output = container->sway_output->wlr_output;
|
||||||
json_object_object_add(object, "type", json_object_new_string("output"));
|
json_object_object_add(object, "type",
|
||||||
json_object_object_add(object, "active", json_object_new_boolean(true));
|
json_object_new_string("output"));
|
||||||
json_object_object_add(object, "primary", json_object_new_boolean(false));
|
json_object_object_add(object, "active",
|
||||||
json_object_object_add(object, "layout", json_object_new_string("output"));
|
json_object_new_boolean(true));
|
||||||
json_object_object_add(object, "make", json_object_new_string(wlr_output->make));
|
json_object_object_add(object, "primary",
|
||||||
json_object_object_add(object, "model", json_object_new_string(wlr_output->model));
|
json_object_new_boolean(false));
|
||||||
json_object_object_add(object, "serial", json_object_new_string(wlr_output->serial));
|
json_object_object_add(object, "layout",
|
||||||
json_object_object_add(object, "scale", json_object_new_double(wlr_output->scale));
|
json_object_new_string("output"));
|
||||||
json_object_object_add(object, "refresh", json_object_new_int(wlr_output->refresh));
|
json_object_object_add(object, "make",
|
||||||
|
json_object_new_string(wlr_output->make));
|
||||||
|
json_object_object_add(object, "model",
|
||||||
|
json_object_new_string(wlr_output->model));
|
||||||
|
json_object_object_add(object, "serial",
|
||||||
|
json_object_new_string(wlr_output->serial));
|
||||||
|
json_object_object_add(object, "scale",
|
||||||
|
json_object_new_double(wlr_output->scale));
|
||||||
|
json_object_object_add(object, "refresh",
|
||||||
|
json_object_new_int(wlr_output->refresh));
|
||||||
json_object_object_add(object, "transform",
|
json_object_object_add(object, "transform",
|
||||||
json_object_new_string(ipc_json_get_output_transform(wlr_output->transform)));
|
json_object_new_string(
|
||||||
// TODO WLR need to set "current_workspace" to the currently focused
|
ipc_json_get_output_transform(wlr_output->transform)));
|
||||||
// workspace in a way that makes sense with multiseat
|
|
||||||
|
struct sway_seat *seat = sway_input_manager_get_default_seat(input_manager);
|
||||||
|
const char *ws = NULL;
|
||||||
|
if (seat) {
|
||||||
|
struct sway_container *focus =
|
||||||
|
sway_seat_get_focus_inactive(seat, container);
|
||||||
|
if (focus && focus->type != C_WORKSPACE) {
|
||||||
|
focus = container_parent(focus, C_WORKSPACE);
|
||||||
|
}
|
||||||
|
if (focus) {
|
||||||
|
ws = focus->name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
json_object_object_add(object, "current_workspace",
|
||||||
|
json_object_new_string(ws));
|
||||||
|
|
||||||
json_object *modes_array = json_object_new_array();
|
json_object *modes_array = json_object_new_array();
|
||||||
struct wlr_output_mode *mode;
|
struct wlr_output_mode *mode;
|
||||||
@ -95,16 +118,20 @@ static void ipc_json_describe_output(struct sway_container *container, json_obje
|
|||||||
json_object_object_add(object, "modes", modes_array);
|
json_object_object_add(object, "modes", modes_array);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ipc_json_describe_workspace(struct sway_container *workspace, json_object *object) {
|
static void ipc_json_describe_workspace(struct sway_container *workspace,
|
||||||
int num = (isdigit(workspace->name[0])) ? atoi(workspace->name) : -1;
|
json_object *object) {
|
||||||
|
int num = isdigit(workspace->name[0]) ? atoi(workspace->name) : -1;
|
||||||
|
|
||||||
json_object_object_add(object, "num", json_object_new_int(num));
|
json_object_object_add(object, "num", json_object_new_int(num));
|
||||||
json_object_object_add(object, "output", (workspace->parent) ? json_object_new_string(workspace->parent->name) : NULL);
|
json_object_object_add(object, "output", workspace->parent ?
|
||||||
|
json_object_new_string(workspace->parent->name) : NULL);
|
||||||
json_object_object_add(object, "type", json_object_new_string("workspace"));
|
json_object_object_add(object, "type", json_object_new_string("workspace"));
|
||||||
|
json_object_object_add(object, "urgent", json_object_new_boolean(false));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ipc_json_describe_view(struct sway_container *c, json_object *object) {
|
static void ipc_json_describe_view(struct sway_container *c, json_object *object) {
|
||||||
json_object_object_add(object, "name", (c->name) ? json_object_new_string(c->name) : NULL);
|
json_object_object_add(object, "name",
|
||||||
|
c->name ? json_object_new_string(c->name) : NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
json_object *ipc_json_describe_container(struct sway_container *c) {
|
json_object *ipc_json_describe_container(struct sway_container *c) {
|
||||||
@ -118,28 +145,26 @@ json_object *ipc_json_describe_container(struct sway_container *c) {
|
|||||||
json_object *object = json_object_new_object();
|
json_object *object = json_object_new_object();
|
||||||
|
|
||||||
json_object_object_add(object, "id", json_object_new_int((int)c->id));
|
json_object_object_add(object, "id", json_object_new_int((int)c->id));
|
||||||
json_object_object_add(object, "name", (c->name) ? json_object_new_string(c->name) : NULL);
|
json_object_object_add(object, "name",
|
||||||
|
c->name ? json_object_new_string(c->name) : NULL);
|
||||||
json_object_object_add(object, "rect", ipc_json_create_rect(c));
|
json_object_object_add(object, "rect", ipc_json_create_rect(c));
|
||||||
json_object_object_add(object, "focused", json_object_new_boolean(focused));
|
json_object_object_add(object, "focused",
|
||||||
|
json_object_new_boolean(focused));
|
||||||
|
|
||||||
switch (c->type) {
|
switch (c->type) {
|
||||||
case C_ROOT:
|
case C_ROOT:
|
||||||
ipc_json_describe_root(c, object);
|
ipc_json_describe_root(c, object);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case C_OUTPUT:
|
case C_OUTPUT:
|
||||||
ipc_json_describe_output(c, object);
|
ipc_json_describe_output(c, object);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case C_CONTAINER:
|
case C_CONTAINER:
|
||||||
case C_VIEW:
|
case C_VIEW:
|
||||||
ipc_json_describe_view(c, object);
|
ipc_json_describe_view(c, object);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case C_WORKSPACE:
|
case C_WORKSPACE:
|
||||||
ipc_json_describe_workspace(c, object);
|
ipc_json_describe_workspace(c, object);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case C_TYPES:
|
case C_TYPES:
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
@ -398,6 +398,14 @@ static void ipc_get_workspaces_callback(struct sway_container *workspace,
|
|||||||
json_object_object_add(workspace_json, "focused",
|
json_object_object_add(workspace_json, "focused",
|
||||||
json_object_new_boolean(focused));
|
json_object_new_boolean(focused));
|
||||||
json_object_array_add((json_object *)data, workspace_json);
|
json_object_array_add((json_object *)data, workspace_json);
|
||||||
|
|
||||||
|
focused_ws = sway_seat_get_focus_inactive(seat, workspace->parent);
|
||||||
|
if (focused_ws->type != C_WORKSPACE) {
|
||||||
|
focused_ws = container_parent(focused_ws, C_WORKSPACE);
|
||||||
|
}
|
||||||
|
bool visible = workspace == focused_ws;
|
||||||
|
json_object_object_add(workspace_json, "visible",
|
||||||
|
json_object_new_boolean(visible));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ipc_client_handle_command(struct ipc_client *client) {
|
void ipc_client_handle_command(struct ipc_client *client) {
|
||||||
|
@ -82,6 +82,7 @@ sway_sources = files(
|
|||||||
'security.c',
|
'security.c',
|
||||||
'tree/container.c',
|
'tree/container.c',
|
||||||
'tree/layout.c',
|
'tree/layout.c',
|
||||||
|
'tree/output.c',
|
||||||
'tree/view.c',
|
'tree/view.c',
|
||||||
'tree/workspace.c',
|
'tree/workspace.c',
|
||||||
)
|
)
|
||||||
|
@ -10,12 +10,12 @@
|
|||||||
#include "sway/tree/container.h"
|
#include "sway/tree/container.h"
|
||||||
#include "sway/input/input-manager.h"
|
#include "sway/input/input-manager.h"
|
||||||
#include "sway/input/seat.h"
|
#include "sway/input/seat.h"
|
||||||
#include "sway/tree/layout.h"
|
#include "sway/ipc-server.h"
|
||||||
#include "sway/output.h"
|
#include "sway/output.h"
|
||||||
#include "sway/server.h"
|
#include "sway/server.h"
|
||||||
|
#include "sway/tree/layout.h"
|
||||||
#include "sway/tree/view.h"
|
#include "sway/tree/view.h"
|
||||||
#include "sway/tree/workspace.h"
|
#include "sway/tree/workspace.h"
|
||||||
#include "sway/ipc-server.h"
|
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
static list_t *bfs_queue;
|
static list_t *bfs_queue;
|
||||||
@ -58,13 +58,14 @@ static struct sway_container *container_create(enum sway_container_type type) {
|
|||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
void container_destroy(struct sway_container *cont) {
|
struct sway_container *container_destroy(struct sway_container *cont) {
|
||||||
if (cont == NULL) {
|
if (cont == NULL) {
|
||||||
return;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
wl_signal_emit(&cont->events.destroy, cont);
|
wl_signal_emit(&cont->events.destroy, cont);
|
||||||
|
|
||||||
|
struct sway_container *parent = cont->parent;
|
||||||
if (cont->children) {
|
if (cont->children) {
|
||||||
// remove children until there are no more, container_destroy calls
|
// remove children until there are no more, container_destroy calls
|
||||||
// container_remove_child, which removes child from this container
|
// container_remove_child, which removes child from this container
|
||||||
@ -77,13 +78,14 @@ void container_destroy(struct sway_container *cont) {
|
|||||||
list_foreach(cont->marks, free);
|
list_foreach(cont->marks, free);
|
||||||
list_free(cont->marks);
|
list_free(cont->marks);
|
||||||
}
|
}
|
||||||
if (cont->parent) {
|
if (parent) {
|
||||||
container_remove_child(cont);
|
parent = container_remove_child(cont);
|
||||||
}
|
}
|
||||||
if (cont->name) {
|
if (cont->name) {
|
||||||
free(cont->name);
|
free(cont->name);
|
||||||
}
|
}
|
||||||
free(cont);
|
free(cont);
|
||||||
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct sway_container *container_output_create(
|
struct sway_container *container_output_create(
|
||||||
@ -202,95 +204,6 @@ struct sway_container *container_view_create(struct sway_container *sibling,
|
|||||||
return swayc;
|
return swayc;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct sway_container *container_output_destroy(struct sway_container *output) {
|
|
||||||
if (!sway_assert(output, "cannot destroy null output")) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (output->children->length > 0) {
|
|
||||||
// TODO save workspaces when there are no outputs.
|
|
||||||
// TODO also check if there will ever be no outputs except for exiting
|
|
||||||
// program
|
|
||||||
if (root_container.children->length > 1) {
|
|
||||||
int p = root_container.children->items[0] == output;
|
|
||||||
// Move workspace from this output to another output
|
|
||||||
while (output->children->length) {
|
|
||||||
struct sway_container *child = output->children->items[0];
|
|
||||||
container_remove_child(child);
|
|
||||||
container_add_child(root_container.children->items[p], child);
|
|
||||||
}
|
|
||||||
container_sort_workspaces(root_container.children->items[p]);
|
|
||||||
arrange_windows(root_container.children->items[p],
|
|
||||||
-1, -1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
wl_list_remove(&output->sway_output->frame.link);
|
|
||||||
wl_list_remove(&output->sway_output->destroy.link);
|
|
||||||
wl_list_remove(&output->sway_output->mode.link);
|
|
||||||
|
|
||||||
wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
|
|
||||||
container_destroy(output);
|
|
||||||
|
|
||||||
return &root_container;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct sway_container *container_workspace_destroy(
|
|
||||||
struct sway_container *workspace) {
|
|
||||||
if (!sway_assert(workspace, "cannot destroy null workspace")) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Do not destroy this if it's the last workspace on this output
|
|
||||||
struct sway_container *output = container_parent(workspace, C_OUTPUT);
|
|
||||||
if (output && output->children->length == 1) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct sway_container *parent = workspace->parent;
|
|
||||||
if (workspace->children->length == 0) {
|
|
||||||
// destroy the WS if there are no children (TODO check for floating)
|
|
||||||
wlr_log(L_DEBUG, "destroying workspace '%s'", workspace->name);
|
|
||||||
ipc_event_workspace(workspace, NULL, "empty");
|
|
||||||
} else {
|
|
||||||
// Move children to a different workspace on this output
|
|
||||||
struct sway_container *new_workspace = NULL;
|
|
||||||
// TODO move floating
|
|
||||||
for (int i = 0; i < output->children->length; i++) {
|
|
||||||
if (output->children->items[i] != workspace) {
|
|
||||||
new_workspace = output->children->items[i];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
wlr_log(L_DEBUG, "moving children to different workspace '%s' -> '%s'",
|
|
||||||
workspace->name, new_workspace->name);
|
|
||||||
for (int i = 0; i < workspace->children->length; i++) {
|
|
||||||
container_move_to(workspace->children->items[i], new_workspace);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
container_destroy(workspace);
|
|
||||||
return parent;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct sway_container *container_view_destroy(struct sway_container *view) {
|
|
||||||
if (!view) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
wlr_log(L_DEBUG, "Destroying view '%s'", view->name);
|
|
||||||
struct sway_container *parent = view->parent;
|
|
||||||
container_destroy(view);
|
|
||||||
|
|
||||||
// TODO WLR: Destroy empty containers
|
|
||||||
/*
|
|
||||||
if (parent && parent->type == C_CONTAINER) {
|
|
||||||
return destroy_container(parent);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
return parent;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct sway_container *container_set_layout(struct sway_container *container,
|
struct sway_container *container_set_layout(struct sway_container *container,
|
||||||
enum sway_container_layout layout) {
|
enum sway_container_layout layout) {
|
||||||
if (container->type == C_WORKSPACE) {
|
if (container->type == C_WORKSPACE) {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include "sway/tree/container.h"
|
#include "sway/tree/container.h"
|
||||||
#include "sway/tree/layout.h"
|
#include "sway/tree/layout.h"
|
||||||
#include "sway/output.h"
|
#include "sway/output.h"
|
||||||
|
#include "sway/tree/workspace.h"
|
||||||
#include "sway/tree/view.h"
|
#include "sway/tree/view.h"
|
||||||
#include "sway/input/seat.h"
|
#include "sway/input/seat.h"
|
||||||
#include "sway/ipc-server.h"
|
#include "sway/ipc-server.h"
|
||||||
@ -99,42 +100,44 @@ void container_add_child(struct sway_container *parent,
|
|||||||
parent, parent->type, parent->width, parent->height);
|
parent, parent->type, parent->width, parent->height);
|
||||||
list_add(parent->children, child);
|
list_add(parent->children, child);
|
||||||
child->parent = parent;
|
child->parent = parent;
|
||||||
// set focus for this container
|
|
||||||
/* TODO WLR
|
|
||||||
if (parent->type == C_WORKSPACE && child->type == C_VIEW &&
|
|
||||||
(parent->workspace_layout == L_TABBED || parent->workspace_layout ==
|
|
||||||
L_STACKED)) {
|
|
||||||
child = new_container(child, parent->workspace_layout);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
struct sway_container *container_remove_child(struct sway_container *child) {
|
|
||||||
int i;
|
|
||||||
struct sway_container *parent = child->parent;
|
|
||||||
for (i = 0; i < parent->children->length; ++i) {
|
|
||||||
if (parent->children->items[i] == child) {
|
|
||||||
list_del(parent->children, i);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
child->parent = NULL;
|
|
||||||
return parent;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct sway_container *container_reap_empty(struct sway_container *container) {
|
struct sway_container *container_reap_empty(struct sway_container *container) {
|
||||||
if (!sway_assert(container, "reaping null container")) {
|
if (!sway_assert(container, "reaping null container")) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
while (container->children->length == 0 && container->type == C_CONTAINER) {
|
wlr_log(L_DEBUG, "reaping %p %s", container, container->name);
|
||||||
wlr_log(L_DEBUG, "Container: Destroying container '%p'", container);
|
while (container->children->length == 0) {
|
||||||
struct sway_container *parent = container->parent;
|
if (container->type == C_WORKSPACE) {
|
||||||
container_destroy(container);
|
if (!workspace_is_visible(container)) {
|
||||||
container = parent;
|
struct sway_container *parent = container->parent;
|
||||||
|
container_workspace_destroy(container);
|
||||||
|
return parent;
|
||||||
|
}
|
||||||
|
return container;
|
||||||
|
} else if (container->type == C_CONTAINER) {
|
||||||
|
struct sway_container *parent = container->parent;
|
||||||
|
container_destroy(container);
|
||||||
|
container = parent;
|
||||||
|
} else {
|
||||||
|
container = container->parent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return container;
|
return container;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct sway_container *container_remove_child(struct sway_container *child) {
|
||||||
|
struct sway_container *parent = child->parent;
|
||||||
|
for (int i = 0; i < parent->children->length; ++i) {
|
||||||
|
if (parent->children->items[i] == child) {
|
||||||
|
list_del(parent->children, i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
child->parent = NULL;
|
||||||
|
return container_reap_empty(parent);
|
||||||
|
}
|
||||||
|
|
||||||
void container_move_to(struct sway_container* container,
|
void container_move_to(struct sway_container* container,
|
||||||
struct sway_container* destination) {
|
struct sway_container* destination) {
|
||||||
if (container == destination
|
if (container == destination
|
||||||
@ -145,16 +148,9 @@ void container_move_to(struct sway_container* container,
|
|||||||
container->width = container->height = 0;
|
container->width = container->height = 0;
|
||||||
struct sway_container *new_parent =
|
struct sway_container *new_parent =
|
||||||
container_add_sibling(destination, container);
|
container_add_sibling(destination, container);
|
||||||
if (destination->type == C_WORKSPACE) {
|
if (old_parent) {
|
||||||
// If the workspace only has one child after adding one, it
|
arrange_windows(old_parent, -1, -1);
|
||||||
// means that the workspace was just initialized.
|
|
||||||
// TODO: Consider floating views in this test
|
|
||||||
if (destination->children->length == 1) {
|
|
||||||
ipc_event_workspace(NULL, destination, "init");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
old_parent = container_reap_empty(old_parent);
|
|
||||||
arrange_windows(old_parent, -1, -1);
|
|
||||||
arrange_windows(new_parent, -1, -1);
|
arrange_windows(new_parent, -1, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
36
sway/tree/output.c
Normal file
36
sway/tree/output.c
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
#include "sway/tree/container.h"
|
||||||
|
#include "sway/tree/layout.h"
|
||||||
|
#include "sway/output.h"
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
|
struct sway_container *container_output_destroy(struct sway_container *output) {
|
||||||
|
if (!sway_assert(output, "cannot destroy null output")) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (output->children->length > 0) {
|
||||||
|
// TODO save workspaces when there are no outputs.
|
||||||
|
// TODO also check if there will ever be no outputs except for exiting
|
||||||
|
// program
|
||||||
|
if (root_container.children->length > 1) {
|
||||||
|
int p = root_container.children->items[0] == output;
|
||||||
|
// Move workspace from this output to another output
|
||||||
|
while (output->children->length) {
|
||||||
|
struct sway_container *child = output->children->items[0];
|
||||||
|
container_remove_child(child);
|
||||||
|
container_add_child(root_container.children->items[p], child);
|
||||||
|
}
|
||||||
|
container_sort_workspaces(root_container.children->items[p]);
|
||||||
|
arrange_windows(root_container.children->items[p],
|
||||||
|
-1, -1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
wl_list_remove(&output->sway_output->frame.link);
|
||||||
|
wl_list_remove(&output->sway_output->destroy.link);
|
||||||
|
wl_list_remove(&output->sway_output->mode.link);
|
||||||
|
|
||||||
|
wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
|
||||||
|
container_destroy(output);
|
||||||
|
return &root_container;
|
||||||
|
}
|
@ -3,6 +3,7 @@
|
|||||||
#include "sway/tree/container.h"
|
#include "sway/tree/container.h"
|
||||||
#include "sway/tree/layout.h"
|
#include "sway/tree/layout.h"
|
||||||
#include "sway/tree/view.h"
|
#include "sway/tree/view.h"
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
const char *view_get_title(struct sway_view *view) {
|
const char *view_get_title(struct sway_view *view) {
|
||||||
if (view->iface.get_prop) {
|
if (view->iface.get_prop) {
|
||||||
@ -94,3 +95,13 @@ void view_update_outputs(struct sway_view *view, const struct wlr_box *before) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct sway_container *container_view_destroy(struct sway_container *view) {
|
||||||
|
if (!view) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
wlr_log(L_DEBUG, "Destroying view '%s'", view->name);
|
||||||
|
struct sway_container *parent = container_destroy(view);
|
||||||
|
arrange_windows(parent, -1, -1);
|
||||||
|
return parent;
|
||||||
|
}
|
||||||
|
@ -6,9 +6,10 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#include "stringop.h"
|
#include "stringop.h"
|
||||||
#include "sway/tree/container.h"
|
|
||||||
#include "sway/input/input-manager.h"
|
#include "sway/input/input-manager.h"
|
||||||
#include "sway/input/seat.h"
|
#include "sway/input/seat.h"
|
||||||
|
#include "sway/ipc-server.h"
|
||||||
|
#include "sway/tree/container.h"
|
||||||
#include "sway/tree/workspace.h"
|
#include "sway/tree/workspace.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
@ -202,7 +203,48 @@ struct sway_container *workspace_create(const char *name) {
|
|||||||
sway_seat_get_focus_inactive(seat, &root_container);
|
sway_seat_get_focus_inactive(seat, &root_container);
|
||||||
parent = focus;
|
parent = focus;
|
||||||
parent = container_parent(parent, C_OUTPUT);
|
parent = container_parent(parent, C_OUTPUT);
|
||||||
return container_workspace_create(parent, name);
|
struct sway_container *new_ws = container_workspace_create(parent, name);
|
||||||
|
ipc_event_workspace(NULL, new_ws, "init");
|
||||||
|
return new_ws;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct sway_container *container_workspace_destroy(
|
||||||
|
struct sway_container *workspace) {
|
||||||
|
if (!sway_assert(workspace, "cannot destroy null workspace")) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Do not destroy this if it's the last workspace on this output
|
||||||
|
struct sway_container *output = container_parent(workspace, C_OUTPUT);
|
||||||
|
if (output && output->children->length == 1) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct sway_container *parent = workspace->parent;
|
||||||
|
if (workspace->children->length == 0) {
|
||||||
|
// destroy the WS if there are no children (TODO check for floating)
|
||||||
|
wlr_log(L_DEBUG, "destroying workspace '%s'", workspace->name);
|
||||||
|
ipc_event_workspace(workspace, NULL, "empty");
|
||||||
|
} else {
|
||||||
|
// Move children to a different workspace on this output
|
||||||
|
struct sway_container *new_workspace = NULL;
|
||||||
|
// TODO move floating
|
||||||
|
for (int i = 0; i < output->children->length; i++) {
|
||||||
|
if (output->children->items[i] != workspace) {
|
||||||
|
new_workspace = output->children->items[i];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
wlr_log(L_DEBUG, "moving children to different workspace '%s' -> '%s'",
|
||||||
|
workspace->name, new_workspace->name);
|
||||||
|
for (int i = 0; i < workspace->children->length; i++) {
|
||||||
|
container_move_to(workspace->children->items[i], new_workspace);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
container_destroy(workspace);
|
||||||
|
return parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -343,3 +385,13 @@ bool workspace_switch(struct sway_container *workspace) {
|
|||||||
arrange_windows(output, -1, -1);
|
arrange_windows(output, -1, -1);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool workspace_is_visible(struct sway_container *ws) {
|
||||||
|
struct sway_container *output = container_parent(ws, C_OUTPUT);
|
||||||
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
||||||
|
struct sway_container *focus = sway_seat_get_focus_inactive(seat, output);
|
||||||
|
if (focus->type != C_WORKSPACE) {
|
||||||
|
focus = container_parent(focus, C_WORKSPACE);
|
||||||
|
}
|
||||||
|
return focus == ws;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user