2017-11-20 09:04:28 +11:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2018-04-03 12:37:21 +10:00
|
|
|
#include <assert.h>
|
2017-11-20 09:04:28 +11:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2017-12-06 22:36:06 +11:00
|
|
|
#include <strings.h>
|
2018-01-31 15:09:21 +11:00
|
|
|
#include <wayland-server.h>
|
2017-12-06 03:02:31 +11:00
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2018-05-14 01:38:56 +10:00
|
|
|
#include <wlr/types/wlr_xdg_shell_v6.h>
|
|
|
|
#include <wlr/types/wlr_xdg_shell.h>
|
2018-05-02 23:07:52 +10:00
|
|
|
#include "cairo.h"
|
|
|
|
#include "pango.h"
|
2017-12-06 22:36:06 +11:00
|
|
|
#include "sway/config.h"
|
2018-01-31 15:09:21 +11:00
|
|
|
#include "sway/input/input-manager.h"
|
|
|
|
#include "sway/input/seat.h"
|
2018-03-31 02:58:17 +11:00
|
|
|
#include "sway/ipc-server.h"
|
2017-11-20 09:04:28 +11:00
|
|
|
#include "sway/output.h"
|
2017-12-10 01:48:52 +11:00
|
|
|
#include "sway/server.h"
|
2018-04-28 11:26:14 +10:00
|
|
|
#include "sway/tree/arrange.h"
|
2018-03-31 02:58:17 +11:00
|
|
|
#include "sway/tree/layout.h"
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "sway/tree/view.h"
|
|
|
|
#include "sway/tree/workspace.h"
|
2017-11-23 12:39:27 +11:00
|
|
|
#include "log.h"
|
2017-11-20 09:04:28 +11:00
|
|
|
|
2018-02-25 06:30:47 +11:00
|
|
|
static list_t *bfs_queue;
|
|
|
|
|
|
|
|
static list_t *get_bfs_queue() {
|
|
|
|
if (!bfs_queue) {
|
|
|
|
bfs_queue = create_list();
|
|
|
|
if (!bfs_queue) {
|
|
|
|
wlr_log(L_ERROR, "could not allocate list for bfs queue");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bfs_queue->length = 0;
|
|
|
|
|
|
|
|
return bfs_queue;
|
|
|
|
}
|
|
|
|
|
2018-04-01 11:21:26 +10:00
|
|
|
const char *container_type_to_str(enum sway_container_type type) {
|
|
|
|
switch (type) {
|
|
|
|
case C_ROOT:
|
|
|
|
return "C_ROOT";
|
|
|
|
case C_OUTPUT:
|
|
|
|
return "C_OUTPUT";
|
|
|
|
case C_WORKSPACE:
|
|
|
|
return "C_WORKSPACE";
|
|
|
|
case C_CONTAINER:
|
|
|
|
return "C_CONTAINER";
|
|
|
|
case C_VIEW:
|
|
|
|
return "C_VIEW";
|
|
|
|
default:
|
|
|
|
return "C_UNKNOWN";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-04 09:52:17 +10:00
|
|
|
void container_create_notify(struct sway_container *container) {
|
2018-04-05 04:19:38 +10:00
|
|
|
// TODO send ipc event type based on the container type
|
2018-02-28 11:53:15 +11:00
|
|
|
wl_signal_emit(&root_container.sway_root->events.new_container, container);
|
2018-04-05 09:37:01 +10:00
|
|
|
|
|
|
|
if (container->type == C_VIEW || container->type == C_CONTAINER) {
|
|
|
|
ipc_event_window(container, "new");
|
|
|
|
}
|
2018-02-28 11:53:15 +11:00
|
|
|
}
|
|
|
|
|
2018-04-05 04:19:38 +10:00
|
|
|
static void container_close_notify(struct sway_container *container) {
|
2018-04-05 08:52:38 +10:00
|
|
|
if (container == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2018-04-05 04:19:38 +10:00
|
|
|
// TODO send ipc event type based on the container type
|
2018-04-06 05:39:57 +10:00
|
|
|
if (container->type == C_VIEW || container->type == C_WORKSPACE) {
|
|
|
|
ipc_event_window(container, "close");
|
|
|
|
}
|
2018-04-05 04:19:38 +10:00
|
|
|
}
|
|
|
|
|
2018-05-19 23:33:36 +10:00
|
|
|
static void container_update_textures_recursive(struct sway_container *con) {
|
|
|
|
container_update_title_textures(con);
|
|
|
|
|
|
|
|
if (con->type == C_VIEW) {
|
|
|
|
view_update_marks_textures(con->sway_view);
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < con->children->length; ++i) {
|
|
|
|
struct sway_container *child = con->children->items[i];
|
|
|
|
container_update_textures_recursive(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_reparent(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_container *container =
|
|
|
|
wl_container_of(listener, container, reparent);
|
|
|
|
struct sway_container *old_parent = data;
|
|
|
|
|
|
|
|
struct sway_container *old_output = old_parent;
|
|
|
|
if (old_output != NULL && old_output->type != C_OUTPUT) {
|
|
|
|
old_output = container_parent(old_output, C_OUTPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *new_output = container->parent;
|
|
|
|
if (new_output != NULL && new_output->type != C_OUTPUT) {
|
|
|
|
new_output = container_parent(new_output, C_OUTPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old_output && new_output) {
|
|
|
|
float old_scale = old_output->sway_output->wlr_output->scale;
|
|
|
|
float new_scale = new_output->sway_output->wlr_output->scale;
|
|
|
|
if (old_scale != new_scale) {
|
|
|
|
container_update_textures_recursive(container);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-31 15:44:17 +11:00
|
|
|
struct sway_container *container_create(enum sway_container_type type) {
|
2017-11-20 09:04:28 +11:00
|
|
|
// next id starts at 1 because 0 is assigned to root_container in layout.c
|
|
|
|
static size_t next_id = 1;
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *c = calloc(1, sizeof(struct sway_container));
|
2017-11-20 09:04:28 +11:00
|
|
|
if (!c) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
c->id = next_id++;
|
|
|
|
c->layout = L_NONE;
|
|
|
|
c->type = type;
|
2018-04-03 14:47:45 +10:00
|
|
|
c->alpha = 1.0f;
|
|
|
|
|
2017-11-20 09:04:28 +11:00
|
|
|
if (type != C_VIEW) {
|
|
|
|
c->children = create_list();
|
|
|
|
}
|
2017-12-11 03:11:47 +11:00
|
|
|
|
|
|
|
wl_signal_init(&c->events.destroy);
|
2018-04-01 11:21:26 +10:00
|
|
|
wl_signal_init(&c->events.reparent);
|
2017-12-11 03:11:47 +11:00
|
|
|
|
2018-05-19 23:33:36 +10:00
|
|
|
wl_signal_add(&c->events.reparent, &c->reparent);
|
|
|
|
c->reparent.notify = handle_reparent;
|
|
|
|
|
2017-11-20 09:04:28 +11:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2018-04-04 09:32:09 +10:00
|
|
|
static void _container_destroy(struct sway_container *cont) {
|
2018-03-30 14:41:33 +11:00
|
|
|
if (cont == NULL) {
|
2018-04-04 09:32:09 +10:00
|
|
|
return;
|
2017-12-30 05:04:16 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
wl_signal_emit(&cont->events.destroy, cont);
|
2018-04-05 04:19:38 +10:00
|
|
|
container_close_notify(cont);
|
2017-12-30 05:04:16 +11:00
|
|
|
|
2018-03-31 02:58:17 +11:00
|
|
|
struct sway_container *parent = cont->parent;
|
2018-04-04 09:32:09 +10:00
|
|
|
if (cont->children != NULL && cont->children->length) {
|
2018-03-30 14:41:33 +11:00
|
|
|
// remove children until there are no more, container_destroy calls
|
|
|
|
// container_remove_child, which removes child from this container
|
2018-04-13 15:57:36 +10:00
|
|
|
while (cont->children != NULL && cont->children->length > 0) {
|
2018-04-01 08:52:02 +10:00
|
|
|
struct sway_container *child = cont->children->items[0];
|
2018-04-03 06:09:27 +10:00
|
|
|
container_remove_child(child);
|
2018-04-04 09:32:09 +10:00
|
|
|
_container_destroy(child);
|
2017-12-30 05:04:16 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cont->marks) {
|
|
|
|
list_foreach(cont->marks, free);
|
|
|
|
list_free(cont->marks);
|
|
|
|
}
|
2018-03-31 02:58:17 +11:00
|
|
|
if (parent) {
|
2018-03-31 05:31:17 +11:00
|
|
|
parent = container_remove_child(cont);
|
2017-12-30 05:04:16 +11:00
|
|
|
}
|
|
|
|
if (cont->name) {
|
|
|
|
free(cont->name);
|
|
|
|
}
|
2018-05-15 23:29:54 +10:00
|
|
|
|
|
|
|
wlr_texture_destroy(cont->title_focused);
|
|
|
|
wlr_texture_destroy(cont->title_focused_inactive);
|
|
|
|
wlr_texture_destroy(cont->title_unfocused);
|
|
|
|
wlr_texture_destroy(cont->title_urgent);
|
|
|
|
|
2018-04-01 08:52:02 +10:00
|
|
|
list_free(cont->children);
|
|
|
|
cont->children = NULL;
|
2017-12-30 05:04:16 +11:00
|
|
|
free(cont);
|
|
|
|
}
|
2018-04-04 02:34:01 +10:00
|
|
|
|
2018-04-04 03:08:45 +10:00
|
|
|
static struct sway_container *container_output_destroy(
|
|
|
|
struct sway_container *output) {
|
2018-04-04 02:34:01 +10:00
|
|
|
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]);
|
2018-04-28 11:26:14 +10:00
|
|
|
arrange_output(root_container.children->items[p]);
|
2018-04-04 02:34:01 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_list_remove(&output->sway_output->destroy.link);
|
|
|
|
wl_list_remove(&output->sway_output->mode.link);
|
|
|
|
wl_list_remove(&output->sway_output->transform.link);
|
|
|
|
wl_list_remove(&output->sway_output->scale.link);
|
|
|
|
|
|
|
|
wl_list_remove(&output->sway_output->damage_destroy.link);
|
|
|
|
wl_list_remove(&output->sway_output->damage_frame.link);
|
|
|
|
|
2018-05-02 01:38:55 +10:00
|
|
|
// clear the wlr_output reference to this container
|
|
|
|
output->sway_output->wlr_output->data = NULL;
|
|
|
|
|
2018-04-04 02:34:01 +10:00
|
|
|
wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
|
2018-04-04 09:32:09 +10:00
|
|
|
_container_destroy(output);
|
2018-04-04 02:34:01 +10:00
|
|
|
return &root_container;
|
|
|
|
}
|
|
|
|
|
2018-04-04 02:25:19 +10:00
|
|
|
static 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 09:31:34 +10:00
|
|
|
free(workspace->sway_workspace);
|
2018-04-04 09:32:09 +10:00
|
|
|
_container_destroy(workspace);
|
2018-04-04 09:36:57 +10:00
|
|
|
|
|
|
|
output_damage_whole(output->sway_output);
|
|
|
|
|
2018-04-04 02:25:19 +10:00
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
2018-04-04 09:23:59 +10:00
|
|
|
static void container_root_finish(struct sway_container *con) {
|
|
|
|
wlr_log(L_ERROR, "TODO: destroy the root container");
|
|
|
|
}
|
2017-12-30 05:04:16 +11:00
|
|
|
|
2018-04-03 03:49:37 +10:00
|
|
|
bool container_reap_empty(struct sway_container *con) {
|
2018-04-03 12:37:21 +10:00
|
|
|
switch (con->type) {
|
2018-04-04 09:23:59 +10:00
|
|
|
case C_ROOT:
|
|
|
|
case C_OUTPUT:
|
|
|
|
// dont reap these
|
|
|
|
break;
|
|
|
|
case C_WORKSPACE:
|
|
|
|
if (!workspace_is_visible(con) && con->children->length == 0) {
|
2018-04-06 23:26:28 +10:00
|
|
|
wlr_log(L_DEBUG, "Destroying workspace via reaper");
|
2018-04-04 09:23:59 +10:00
|
|
|
container_workspace_destroy(con);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case C_CONTAINER:
|
|
|
|
if (con->children->length == 0) {
|
2018-04-04 09:32:09 +10:00
|
|
|
_container_destroy(con);
|
2018-04-04 09:23:59 +10:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case C_VIEW:
|
|
|
|
break;
|
|
|
|
case C_TYPES:
|
|
|
|
sway_assert(false, "container_reap_empty called on an invalid "
|
|
|
|
"container");
|
|
|
|
break;
|
2018-04-03 12:37:21 +10:00
|
|
|
}
|
|
|
|
|
2018-04-04 09:23:59 +10:00
|
|
|
return false;
|
2018-04-04 02:25:19 +10:00
|
|
|
}
|
2018-04-04 01:27:27 +10:00
|
|
|
|
2018-04-03 03:49:37 +10:00
|
|
|
struct sway_container *container_reap_empty_recursive(
|
|
|
|
struct sway_container *con) {
|
|
|
|
while (con) {
|
|
|
|
struct sway_container *next = con->parent;
|
|
|
|
if (!container_reap_empty(con)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
con = next;
|
|
|
|
}
|
|
|
|
return con;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_flatten(struct sway_container *container) {
|
|
|
|
while (container->type == C_CONTAINER && container->children->length == 1) {
|
|
|
|
struct sway_container *child = container->children->items[0];
|
|
|
|
struct sway_container *parent = container->parent;
|
|
|
|
container_replace_child(container, child);
|
|
|
|
container_destroy(container);
|
|
|
|
container = parent;
|
|
|
|
}
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
2018-04-04 02:25:19 +10:00
|
|
|
struct sway_container *container_destroy(struct sway_container *con) {
|
|
|
|
if (con == NULL) {
|
|
|
|
return NULL;
|
2018-04-03 12:37:21 +10:00
|
|
|
}
|
|
|
|
|
2018-04-04 09:23:59 +10:00
|
|
|
struct sway_container *parent = con->parent;
|
2018-04-04 02:25:19 +10:00
|
|
|
|
|
|
|
switch (con->type) {
|
|
|
|
case C_ROOT:
|
|
|
|
container_root_finish(con);
|
|
|
|
break;
|
|
|
|
case C_OUTPUT:
|
2018-04-04 09:23:59 +10:00
|
|
|
// dont try to reap the root after this
|
|
|
|
container_output_destroy(con);
|
2018-04-04 02:25:19 +10:00
|
|
|
break;
|
|
|
|
case C_WORKSPACE:
|
2018-04-04 09:23:59 +10:00
|
|
|
// dont try to reap the output after this
|
|
|
|
container_workspace_destroy(con);
|
2018-04-04 02:25:19 +10:00
|
|
|
break;
|
|
|
|
case C_CONTAINER:
|
2018-04-04 09:23:59 +10:00
|
|
|
if (con->children->length) {
|
|
|
|
for (int i = 0; i < con->children->length; ++i) {
|
|
|
|
struct sway_container *child = con->children->items[0];
|
|
|
|
container_remove_child(child);
|
|
|
|
container_add_child(parent, child);
|
|
|
|
}
|
2018-04-04 02:25:19 +10:00
|
|
|
}
|
2018-04-04 09:32:09 +10:00
|
|
|
_container_destroy(con);
|
2018-04-04 02:25:19 +10:00
|
|
|
break;
|
|
|
|
case C_VIEW:
|
2018-04-04 09:32:09 +10:00
|
|
|
_container_destroy(con);
|
2018-04-04 02:25:19 +10:00
|
|
|
break;
|
|
|
|
case C_TYPES:
|
2018-04-04 09:23:59 +10:00
|
|
|
wlr_log(L_ERROR, "container_destroy called on an invalid "
|
|
|
|
"container");
|
2018-04-04 02:25:19 +10:00
|
|
|
break;
|
2018-04-03 12:37:21 +10:00
|
|
|
}
|
|
|
|
|
2018-04-03 03:49:37 +10:00
|
|
|
return container_reap_empty_recursive(parent);
|
2018-04-03 12:37:21 +10:00
|
|
|
}
|
|
|
|
|
2018-04-03 11:01:33 +10:00
|
|
|
static void container_close_func(struct sway_container *container, void *data) {
|
|
|
|
if (container->type == C_VIEW) {
|
|
|
|
view_close(container->sway_view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_close(struct sway_container *con) {
|
2018-04-04 03:08:45 +10:00
|
|
|
if (!sway_assert(con != NULL,
|
2018-04-04 09:23:59 +10:00
|
|
|
"container_close called with a NULL container")) {
|
2018-04-03 11:01:33 +10:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-04-03 12:37:21 +10:00
|
|
|
struct sway_container *parent = con->parent;
|
|
|
|
|
2018-04-04 13:59:44 +10:00
|
|
|
if (con->type == C_VIEW) {
|
2018-04-04 09:23:59 +10:00
|
|
|
view_close(con->sway_view);
|
2018-04-04 13:59:44 +10:00
|
|
|
} else {
|
|
|
|
container_for_each_descendant_dfs(con, container_close_func, NULL);
|
2018-04-03 11:01:33 +10:00
|
|
|
}
|
|
|
|
|
2018-04-03 12:37:21 +10:00
|
|
|
return parent;
|
2018-04-03 11:01:33 +10:00
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *container_view_create(struct sway_container *sibling,
|
|
|
|
struct sway_view *sway_view) {
|
|
|
|
if (!sway_assert(sibling,
|
|
|
|
"container_view_create called with NULL sibling/parent")) {
|
2017-11-23 13:06:08 +11:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-01-22 01:09:53 +11:00
|
|
|
const char *title = view_get_title(sway_view);
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *swayc = container_create(C_VIEW);
|
2018-01-31 15:09:21 +11:00
|
|
|
wlr_log(L_DEBUG, "Adding new view %p:%s to container %p %d %s",
|
|
|
|
swayc, title, sibling, sibling ? sibling->type : 0, sibling->name);
|
2017-11-23 13:06:08 +11:00
|
|
|
// Setup values
|
|
|
|
swayc->sway_view = sway_view;
|
|
|
|
swayc->width = 0;
|
|
|
|
swayc->height = 0;
|
|
|
|
|
|
|
|
if (sibling->type == C_WORKSPACE) {
|
|
|
|
// Case of focused workspace, just create as child of it
|
2018-03-30 14:41:33 +11:00
|
|
|
container_add_child(sibling, swayc);
|
2017-11-23 13:06:08 +11:00
|
|
|
} else {
|
|
|
|
// Regular case, create as sibling of current container
|
2018-03-30 14:41:33 +11:00
|
|
|
container_add_sibling(sibling, swayc);
|
2017-11-23 13:06:08 +11:00
|
|
|
}
|
2018-04-04 09:52:17 +10:00
|
|
|
container_create_notify(swayc);
|
2017-11-23 13:06:08 +11:00
|
|
|
return swayc;
|
|
|
|
}
|
2017-11-26 02:59:49 +11:00
|
|
|
|
2018-03-30 14:53:38 +11:00
|
|
|
void container_descendants(struct sway_container *root,
|
2018-03-30 14:41:33 +11:00
|
|
|
enum sway_container_type type,
|
|
|
|
void (*func)(struct sway_container *item, void *data), void *data) {
|
2018-04-24 12:27:04 +10:00
|
|
|
if (!root->children || !root->children->length) {
|
|
|
|
return;
|
|
|
|
}
|
2018-03-30 14:41:33 +11:00
|
|
|
for (int i = 0; i < root->children->length; ++i) {
|
|
|
|
struct sway_container *item = root->children->items[i];
|
|
|
|
if (item->type == type) {
|
|
|
|
func(item, data);
|
|
|
|
}
|
2018-04-24 12:27:04 +10:00
|
|
|
container_descendants(item, type, func, data);
|
2018-03-30 14:41:33 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_find(struct sway_container *container,
|
|
|
|
bool (*test)(struct sway_container *view, void *data), void *data) {
|
|
|
|
if (!container->children) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// TODO: floating windows
|
|
|
|
for (int i = 0; i < container->children->length; ++i) {
|
|
|
|
struct sway_container *child = container->children->items[i];
|
|
|
|
if (test(child, data)) {
|
|
|
|
return child;
|
|
|
|
} else {
|
|
|
|
struct sway_container *res = container_find(child, test, data);
|
|
|
|
if (res) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_parent(struct sway_container *container,
|
|
|
|
enum sway_container_type type) {
|
2017-11-26 02:59:49 +11:00
|
|
|
if (!sway_assert(container, "container is NULL")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!sway_assert(type < C_TYPES && type >= C_ROOT, "invalid type")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
container = container->parent;
|
|
|
|
} while (container && container->type != type);
|
|
|
|
return container;
|
|
|
|
}
|
2017-12-11 00:48:44 +11:00
|
|
|
|
2018-05-19 22:54:50 +10:00
|
|
|
static struct sway_container *container_at_view(struct sway_container *swayc,
|
|
|
|
double ox, double oy,
|
2017-12-11 00:48:44 +11:00
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
2018-05-20 08:34:43 +10:00
|
|
|
if (!sway_assert(swayc->type == C_VIEW, "Expected a view")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 22:54:50 +10:00
|
|
|
struct sway_view *sview = swayc->sway_view;
|
|
|
|
double view_sx = ox - sview->x;
|
|
|
|
double view_sy = oy - sview->y;
|
|
|
|
|
|
|
|
double _sx, _sy;
|
|
|
|
struct wlr_surface *_surface = NULL;
|
|
|
|
switch (sview->type) {
|
|
|
|
case SWAY_VIEW_XWAYLAND:
|
|
|
|
_surface = wlr_surface_surface_at(sview->surface,
|
|
|
|
view_sx, view_sy, &_sx, &_sy);
|
|
|
|
break;
|
|
|
|
case SWAY_VIEW_XDG_SHELL_V6:
|
|
|
|
// the top left corner of the sway container is the
|
|
|
|
// coordinate of the top left corner of the window geometry
|
|
|
|
view_sx += sview->wlr_xdg_surface_v6->geometry.x;
|
|
|
|
view_sy += sview->wlr_xdg_surface_v6->geometry.y;
|
|
|
|
|
|
|
|
_surface = wlr_xdg_surface_v6_surface_at(
|
|
|
|
sview->wlr_xdg_surface_v6,
|
|
|
|
view_sx, view_sy, &_sx, &_sy);
|
|
|
|
break;
|
|
|
|
case SWAY_VIEW_XDG_SHELL:
|
|
|
|
// the top left corner of the sway container is the
|
|
|
|
// coordinate of the top left corner of the window geometry
|
|
|
|
view_sx += sview->wlr_xdg_surface->geometry.x;
|
|
|
|
view_sy += sview->wlr_xdg_surface->geometry.y;
|
|
|
|
|
|
|
|
_surface = wlr_xdg_surface_surface_at(
|
|
|
|
sview->wlr_xdg_surface,
|
|
|
|
view_sx, view_sy, &_sx, &_sy);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (_surface) {
|
|
|
|
*sx = _sx;
|
|
|
|
*sy = _sy;
|
|
|
|
*surface = _surface;
|
|
|
|
}
|
|
|
|
return swayc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* container_at for a container with layout L_TABBED.
|
|
|
|
*/
|
|
|
|
static struct sway_container *container_at_tabbed(struct sway_container *parent,
|
|
|
|
double ox, double oy,
|
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
|
|
|
if (oy < parent->y || oy > parent->y + parent->height) {
|
2018-02-25 06:30:47 +11:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 22:54:50 +10:00
|
|
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
2018-02-25 06:30:47 +11:00
|
|
|
|
2018-05-19 22:54:50 +10:00
|
|
|
// Tab titles
|
|
|
|
int title_height = config->border_thickness * 2 + config->font_height;
|
|
|
|
if (oy < parent->y + title_height) {
|
|
|
|
int tab_width = parent->width / parent->children->length;
|
|
|
|
int child_index = (ox - parent->x) / tab_width;
|
|
|
|
if (child_index >= parent->children->length) {
|
|
|
|
child_index = parent->children->length - 1;
|
|
|
|
}
|
|
|
|
struct sway_container *child = parent->children->items[child_index];
|
|
|
|
return seat_get_focus_inactive(seat, child);
|
|
|
|
}
|
2017-12-11 00:48:44 +11:00
|
|
|
|
2018-05-19 22:54:50 +10:00
|
|
|
// Surfaces
|
2018-05-20 09:11:55 +10:00
|
|
|
struct sway_container *current = seat_get_active_child(seat, parent);
|
2018-05-19 22:54:50 +10:00
|
|
|
|
|
|
|
return container_at(current, ox, oy, surface, sx, sy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* container_at for a container with layout L_STACKED.
|
|
|
|
*/
|
|
|
|
static struct sway_container *container_at_stacked(
|
|
|
|
struct sway_container *parent, double ox, double oy,
|
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
|
|
|
// TODO
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* container_at for a container with layout L_HORIZ or L_VERT.
|
|
|
|
*/
|
|
|
|
static struct sway_container *container_at_linear(struct sway_container *parent,
|
|
|
|
double ox, double oy,
|
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
|
|
|
for (int i = 0; i < parent->children->length; ++i) {
|
|
|
|
struct sway_container *child = parent->children->items[i];
|
|
|
|
struct wlr_box box = {
|
|
|
|
.x = child->x,
|
|
|
|
.y = child->y,
|
|
|
|
.width = child->width,
|
|
|
|
.height = child->height,
|
|
|
|
};
|
|
|
|
if (wlr_box_contains_point(&box, ox, oy)) {
|
|
|
|
return container_at(child, ox, oy, surface, sx, sy);
|
2017-12-11 00:48:44 +11:00
|
|
|
}
|
|
|
|
}
|
2018-05-19 22:54:50 +10:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_at(struct sway_container *parent,
|
|
|
|
double ox, double oy,
|
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
|
|
|
if (!sway_assert(parent->type >= C_WORKSPACE,
|
|
|
|
"Expected workspace or deeper")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (parent->type == C_VIEW) {
|
|
|
|
return container_at_view(parent, ox, oy, surface, sx, sy);
|
|
|
|
}
|
|
|
|
if (!parent->children->length) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (parent->layout) {
|
|
|
|
case L_HORIZ:
|
|
|
|
case L_VERT:
|
|
|
|
return container_at_linear(parent, ox, oy, surface, sx, sy);
|
|
|
|
case L_TABBED:
|
|
|
|
return container_at_tabbed(parent, ox, oy, surface, sx, sy);
|
|
|
|
case L_STACKED:
|
|
|
|
return container_at_stacked(parent, ox, oy, surface, sx, sy);
|
|
|
|
case L_FLOATING:
|
|
|
|
return NULL; // TODO
|
|
|
|
case L_NONE:
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-12-11 00:48:44 +11:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-01-21 08:21:45 +11:00
|
|
|
|
2018-03-30 14:53:38 +11:00
|
|
|
void container_for_each_descendant_dfs(struct sway_container *container,
|
|
|
|
void (*f)(struct sway_container *container, void *data),
|
|
|
|
void *data) {
|
2018-01-21 08:21:45 +11:00
|
|
|
if (container) {
|
|
|
|
if (container->children) {
|
2018-03-30 14:53:38 +11:00
|
|
|
for (int i = 0; i < container->children->length; ++i) {
|
|
|
|
struct sway_container *child =
|
|
|
|
container->children->items[i];
|
|
|
|
container_for_each_descendant_dfs(child, f, data);
|
2018-01-21 08:21:45 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
f(container, data);
|
|
|
|
}
|
|
|
|
}
|
2018-02-05 05:39:10 +11:00
|
|
|
|
2018-03-30 14:53:38 +11:00
|
|
|
void container_for_each_descendant_bfs(struct sway_container *con,
|
2018-03-30 14:41:33 +11:00
|
|
|
void (*f)(struct sway_container *con, void *data), void *data) {
|
2018-02-25 06:30:47 +11:00
|
|
|
list_t *queue = get_bfs_queue();
|
|
|
|
if (!queue) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-11 08:52:45 +11:00
|
|
|
if (queue == NULL) {
|
|
|
|
wlr_log(L_ERROR, "could not allocate list");
|
|
|
|
return;
|
|
|
|
}
|
2018-02-05 05:39:10 +11:00
|
|
|
|
|
|
|
list_add(queue, con);
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *current = NULL;
|
2018-02-05 05:39:10 +11:00
|
|
|
while (queue->length) {
|
|
|
|
current = queue->items[0];
|
|
|
|
list_del(queue, 0);
|
2018-02-11 08:52:45 +11:00
|
|
|
f(current, data);
|
2018-02-05 05:39:10 +11:00
|
|
|
// TODO floating containers
|
|
|
|
list_cat(queue, current->children);
|
|
|
|
}
|
|
|
|
}
|
2018-03-31 01:31:21 +11:00
|
|
|
|
|
|
|
bool container_has_anscestor(struct sway_container *descendant,
|
|
|
|
struct sway_container *anscestor) {
|
|
|
|
while (descendant->type != C_ROOT) {
|
|
|
|
descendant = descendant->parent;
|
|
|
|
if (descendant == anscestor) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-04-01 05:22:10 +10:00
|
|
|
|
2018-04-03 04:15:40 +10:00
|
|
|
static bool find_child_func(struct sway_container *con, void *data) {
|
2018-04-01 05:22:10 +10:00
|
|
|
struct sway_container *child = data;
|
|
|
|
return con == child;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool container_has_child(struct sway_container *con,
|
|
|
|
struct sway_container *child) {
|
2018-04-06 08:31:19 +10:00
|
|
|
if (con == NULL || con->type == C_VIEW || con->children->length == 0) {
|
2018-04-01 05:22:10 +10:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return container_find(con, find_child_func, child);
|
|
|
|
}
|
2018-04-06 08:31:19 +10:00
|
|
|
|
2018-05-13 02:37:48 +10:00
|
|
|
int container_count_descendants_of_type(struct sway_container *con,
|
|
|
|
enum sway_container_type type) {
|
|
|
|
int children = 0;
|
|
|
|
if (con->type == type) {
|
|
|
|
children++;
|
2018-05-13 11:19:55 +10:00
|
|
|
}
|
|
|
|
if (con->children) {
|
2018-05-13 02:37:48 +10:00
|
|
|
for (int i = 0; i < con->children->length; i++) {
|
|
|
|
struct sway_container *child = con->children->items[i];
|
|
|
|
children += container_count_descendants_of_type(child, type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return children;
|
|
|
|
}
|
|
|
|
|
2018-05-06 04:43:12 +10:00
|
|
|
void container_damage_whole(struct sway_container *container) {
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
struct sway_container *cont = root_container.children->items[i];
|
|
|
|
if (cont->type == C_OUTPUT) {
|
|
|
|
output_damage_whole_container(cont->sway_output, container);
|
|
|
|
}
|
2018-04-06 08:31:19 +10:00
|
|
|
}
|
|
|
|
}
|
2018-05-02 23:07:52 +10:00
|
|
|
|
|
|
|
static void update_title_texture(struct sway_container *con,
|
|
|
|
struct wlr_texture **texture, struct border_colors *class) {
|
|
|
|
if (!sway_assert(con->type == C_CONTAINER || con->type == C_VIEW,
|
|
|
|
"Unexpected type %s", container_type_to_str(con->type))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!con->width) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct sway_container *output = container_parent(con, C_OUTPUT);
|
|
|
|
if (!output) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (*texture) {
|
|
|
|
wlr_texture_destroy(*texture);
|
2018-05-15 14:35:54 +10:00
|
|
|
*texture = NULL;
|
2018-05-02 23:07:52 +10:00
|
|
|
}
|
2018-05-05 12:36:50 +10:00
|
|
|
if (!con->formatted_title) {
|
2018-05-02 23:07:52 +10:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-03 22:51:14 +10:00
|
|
|
double scale = output->sway_output->wlr_output->scale;
|
|
|
|
int width = 0;
|
|
|
|
int height = config->font_height * scale;
|
|
|
|
|
|
|
|
cairo_t *c = cairo_create(NULL);
|
2018-05-05 12:53:49 +10:00
|
|
|
get_text_size(c, config->font, &width, NULL, scale, config->pango_markup,
|
2018-05-05 12:36:50 +10:00
|
|
|
"%s", con->formatted_title);
|
2018-05-03 22:51:14 +10:00
|
|
|
cairo_destroy(c);
|
|
|
|
|
2018-05-02 23:07:52 +10:00
|
|
|
cairo_surface_t *surface = cairo_image_surface_create(
|
|
|
|
CAIRO_FORMAT_ARGB32, width, height);
|
|
|
|
cairo_t *cairo = cairo_create(surface);
|
2018-05-03 22:12:26 +10:00
|
|
|
cairo_set_source_rgba(cairo, class->background[0], class->background[1],
|
|
|
|
class->background[2], class->background[3]);
|
|
|
|
cairo_paint(cairo);
|
2018-05-02 23:07:52 +10:00
|
|
|
PangoContext *pango = pango_cairo_create_context(cairo);
|
2018-05-03 22:14:17 +10:00
|
|
|
cairo_set_antialias(cairo, CAIRO_ANTIALIAS_BEST);
|
|
|
|
cairo_set_source_rgba(cairo, class->text[0], class->text[1],
|
|
|
|
class->text[2], class->text[3]);
|
2018-05-02 23:07:52 +10:00
|
|
|
cairo_move_to(cairo, 0, 0);
|
|
|
|
|
2018-05-05 12:53:49 +10:00
|
|
|
pango_printf(cairo, config->font, scale, config->pango_markup,
|
|
|
|
"%s", con->formatted_title);
|
2018-05-02 23:07:52 +10:00
|
|
|
|
|
|
|
cairo_surface_flush(surface);
|
|
|
|
unsigned char *data = cairo_image_surface_get_data(surface);
|
|
|
|
int stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, width);
|
|
|
|
struct wlr_renderer *renderer = wlr_backend_get_renderer(
|
|
|
|
output->sway_output->wlr_output->backend);
|
|
|
|
*texture = wlr_texture_from_pixels(
|
|
|
|
renderer, WL_SHM_FORMAT_ARGB8888, stride, width, height, data);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
g_object_unref(pango);
|
|
|
|
cairo_destroy(cairo);
|
|
|
|
}
|
|
|
|
|
|
|
|
void container_update_title_textures(struct sway_container *container) {
|
|
|
|
update_title_texture(container, &container->title_focused,
|
|
|
|
&config->border_colors.focused);
|
|
|
|
update_title_texture(container, &container->title_focused_inactive,
|
|
|
|
&config->border_colors.focused_inactive);
|
|
|
|
update_title_texture(container, &container->title_unfocused,
|
|
|
|
&config->border_colors.unfocused);
|
|
|
|
update_title_texture(container, &container->title_urgent,
|
|
|
|
&config->border_colors.urgent);
|
2018-05-06 05:18:01 +10:00
|
|
|
container_damage_whole(container);
|
2018-05-02 23:07:52 +10:00
|
|
|
}
|
2018-05-03 15:02:16 +10:00
|
|
|
|
|
|
|
void container_calculate_title_height(struct sway_container *container) {
|
2018-05-05 12:36:50 +10:00
|
|
|
if (!container->formatted_title) {
|
2018-05-03 15:02:16 +10:00
|
|
|
container->title_height = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cairo_t *cairo = cairo_create(NULL);
|
|
|
|
int height;
|
2018-05-05 12:53:49 +10:00
|
|
|
get_text_size(cairo, config->font, NULL, &height, 1, config->pango_markup,
|
2018-05-05 12:36:50 +10:00
|
|
|
"%s", container->formatted_title);
|
2018-05-03 15:02:16 +10:00
|
|
|
cairo_destroy(cairo);
|
|
|
|
container->title_height = height;
|
|
|
|
}
|
|
|
|
|
2018-05-19 22:54:50 +10:00
|
|
|
/**
|
|
|
|
* Calculate and return the length of the concatenated child titles.
|
|
|
|
* An example concatenated title is: V[Terminal, Firefox]
|
|
|
|
* If buffer is not NULL, also populate the buffer with the concatenated title.
|
|
|
|
*/
|
|
|
|
static size_t concatenate_child_titles(struct sway_container *parent,
|
|
|
|
char *buffer) {
|
|
|
|
size_t len = 2; // V[
|
|
|
|
if (buffer) {
|
|
|
|
switch (parent->layout) {
|
|
|
|
case L_VERT:
|
|
|
|
strcpy(buffer, "V[");
|
|
|
|
break;
|
|
|
|
case L_HORIZ:
|
|
|
|
strcpy(buffer, "H[");
|
|
|
|
break;
|
|
|
|
case L_TABBED:
|
|
|
|
strcpy(buffer, "T[");
|
|
|
|
break;
|
|
|
|
case L_STACKED:
|
|
|
|
strcpy(buffer, "S[");
|
|
|
|
break;
|
|
|
|
case L_FLOATING:
|
|
|
|
strcpy(buffer, "F[");
|
|
|
|
break;
|
|
|
|
case L_NONE:
|
2018-05-20 09:26:46 +10:00
|
|
|
strcpy(buffer, "D[");
|
2018-05-19 22:54:50 +10:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < parent->children->length; ++i) {
|
|
|
|
if (i != 0) {
|
2018-05-20 09:26:46 +10:00
|
|
|
len += 1;
|
2018-05-19 22:54:50 +10:00
|
|
|
if (buffer) {
|
2018-05-20 09:26:46 +10:00
|
|
|
strcat(buffer, " ");
|
2018-05-19 22:54:50 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
struct sway_container *child = parent->children->items[i];
|
2018-05-20 09:26:46 +10:00
|
|
|
const char *identifier = NULL;
|
|
|
|
if (child->type == C_VIEW) {
|
|
|
|
identifier = view_get_class(child->sway_view);
|
|
|
|
if (!identifier) {
|
|
|
|
identifier = view_get_app_id(child->sway_view);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
identifier = child->name;
|
|
|
|
}
|
|
|
|
if (identifier) {
|
|
|
|
len += strlen(identifier);
|
2018-05-19 22:54:50 +10:00
|
|
|
if (buffer) {
|
2018-05-20 09:26:46 +10:00
|
|
|
strcat(buffer, identifier);
|
2018-05-19 22:54:50 +10:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
len += 6;
|
|
|
|
if (buffer) {
|
|
|
|
strcat(buffer, "(null)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len += 1;
|
|
|
|
if (buffer) {
|
|
|
|
strcat(buffer, "]");
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2018-05-05 12:36:50 +10:00
|
|
|
void container_notify_child_title_changed(struct sway_container *container) {
|
2018-05-03 15:02:16 +10:00
|
|
|
if (!container || container->type != C_CONTAINER) {
|
|
|
|
return;
|
|
|
|
}
|
2018-05-05 12:36:50 +10:00
|
|
|
if (container->formatted_title) {
|
|
|
|
free(container->formatted_title);
|
2018-05-03 15:02:16 +10:00
|
|
|
}
|
2018-05-19 22:54:50 +10:00
|
|
|
|
|
|
|
size_t len = concatenate_child_titles(container, NULL);
|
|
|
|
char *buffer = calloc(len + 1, sizeof(char));
|
|
|
|
if (!sway_assert(buffer, "Unable to allocate title string")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
concatenate_child_titles(container, buffer);
|
|
|
|
|
|
|
|
container->name = buffer;
|
|
|
|
container->formatted_title = buffer;
|
2018-05-03 15:02:16 +10:00
|
|
|
container_calculate_title_height(container);
|
|
|
|
container_update_title_textures(container);
|
|
|
|
container_notify_child_title_changed(container->parent);
|
|
|
|
}
|