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-07-07 18:36:20 +10:00
|
|
|
#include "sway/desktop.h"
|
|
|
|
#include "sway/desktop/transaction.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-07-07 18:36:20 +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"
|
2018-05-25 21:07:59 +10:00
|
|
|
#include "stringop.h"
|
2017-11-20 09:04:28 +11:00
|
|
|
|
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
|
|
|
|
2018-07-16 23:01:35 +10:00
|
|
|
if (container->type == C_VIEW) {
|
2018-04-05 09:37:01 +10:00
|
|
|
ipc_event_window(container, "new");
|
2018-07-14 02:13:25 +10:00
|
|
|
} else if (container->type == C_WORKSPACE) {
|
|
|
|
ipc_event_workspace(NULL, container, "init");
|
2018-04-05 09:37:01 +10:00
|
|
|
}
|
2018-02-28 11:53:15 +11:00
|
|
|
}
|
|
|
|
|
2018-07-30 15:59:20 +10:00
|
|
|
void container_update_textures_recursive(struct sway_container *con) {
|
2018-07-26 01:06:50 +10:00
|
|
|
if (con->type == C_CONTAINER || con->type == C_VIEW) {
|
|
|
|
container_update_title_textures(con);
|
|
|
|
}
|
2018-05-19 23:33:36 +10:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2018-07-30 15:59:20 +10:00
|
|
|
|
|
|
|
if (con->type == C_WORKSPACE) {
|
|
|
|
container_update_textures_recursive(con->sway_workspace->floating);
|
|
|
|
}
|
2018-05-19 23:33:36 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2018-06-23 16:24:11 +10:00
|
|
|
c->instructions = create_list();
|
2018-04-03 14:47:45 +10:00
|
|
|
|
2017-11-20 09:04:28 +11:00
|
|
|
if (type != C_VIEW) {
|
|
|
|
c->children = create_list();
|
2018-06-23 16:24:11 +10:00
|
|
|
c->current.children = create_list();
|
2017-11-20 09:04:28 +11:00
|
|
|
}
|
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;
|
|
|
|
|
2018-06-09 23:34:56 +10:00
|
|
|
c->has_gaps = false;
|
|
|
|
c->gaps_inner = 0;
|
|
|
|
c->gaps_outer = 0;
|
|
|
|
c->current_gaps = 0;
|
|
|
|
|
2017-11-20 09:04:28 +11:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2018-06-23 16:24:11 +10:00
|
|
|
static void container_workspace_free(struct sway_workspace *ws) {
|
|
|
|
list_foreach(ws->output_priority, free);
|
|
|
|
list_free(ws->output_priority);
|
|
|
|
free(ws);
|
|
|
|
}
|
2017-12-30 05:04:16 +11:00
|
|
|
|
2018-06-23 16:24:11 +10:00
|
|
|
void container_free(struct sway_container *cont) {
|
|
|
|
if (!sway_assert(cont->destroying,
|
|
|
|
"Tried to free container which wasn't marked as destroying")) {
|
|
|
|
return;
|
2017-12-30 05:04:16 +11:00
|
|
|
}
|
2018-06-23 16:24:11 +10:00
|
|
|
if (!sway_assert(cont->instructions->length == 0,
|
|
|
|
"Tried to free container with pending instructions")) {
|
|
|
|
return;
|
2017-12-30 05:04:16 +11:00
|
|
|
}
|
2018-06-23 16:24:11 +10:00
|
|
|
free(cont->name);
|
2018-07-04 19:50:13 +10:00
|
|
|
free(cont->formatted_title);
|
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-06-23 16:24:11 +10:00
|
|
|
list_free(cont->instructions);
|
2018-04-01 08:52:02 +10:00
|
|
|
list_free(cont->children);
|
2018-06-23 16:24:11 +10:00
|
|
|
list_free(cont->current.children);
|
|
|
|
|
|
|
|
switch (cont->type) {
|
|
|
|
case C_ROOT:
|
|
|
|
break;
|
|
|
|
case C_OUTPUT:
|
|
|
|
break;
|
|
|
|
case C_WORKSPACE:
|
|
|
|
container_workspace_free(cont->sway_workspace);
|
|
|
|
break;
|
|
|
|
case C_CONTAINER:
|
|
|
|
break;
|
|
|
|
case C_VIEW:
|
|
|
|
{
|
|
|
|
struct sway_view *view = cont->sway_view;
|
|
|
|
view->swayc = NULL;
|
|
|
|
free(view->title_format);
|
|
|
|
view->title_format = NULL;
|
|
|
|
|
|
|
|
if (view->destroying) {
|
|
|
|
view_free(view);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case C_TYPES:
|
|
|
|
sway_assert(false, "Didn't expect to see C_TYPES here");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-12-30 05:04:16 +11:00
|
|
|
free(cont);
|
|
|
|
}
|
2018-04-04 02:34:01 +10:00
|
|
|
|
2018-07-28 22:13:13 +10:00
|
|
|
static struct sway_container *container_destroy_noreaping(
|
|
|
|
struct sway_container *con);
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *output = container_parent(workspace, C_OUTPUT);
|
2018-07-09 07:35:01 +10:00
|
|
|
|
|
|
|
// If we're destroying the output, it will be NULL here. Return the root so
|
|
|
|
// that it doesn't appear that the workspace has refused to be destoyed,
|
|
|
|
// which would leave it in a broken state with no parent.
|
|
|
|
if (output == NULL) {
|
|
|
|
return &root_container;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not destroy this if it's the last workspace on this output
|
|
|
|
if (output->children->length == 1) {
|
2018-04-04 02:25:19 +10:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-07-10 07:54:30 +10:00
|
|
|
wlr_log(WLR_DEBUG, "destroying workspace '%s'", workspace->name);
|
2018-05-25 15:39:14 +10:00
|
|
|
|
2018-07-09 07:35:01 +10:00
|
|
|
if (!workspace_is_empty(workspace)) {
|
2018-04-04 02:25:19 +10:00
|
|
|
// Move children to a different workspace on this output
|
|
|
|
struct sway_container *new_workspace = NULL;
|
|
|
|
for (int i = 0; i < output->children->length; i++) {
|
|
|
|
if (output->children->items[i] != workspace) {
|
|
|
|
new_workspace = output->children->items[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 07:54:30 +10:00
|
|
|
wlr_log(WLR_DEBUG, "moving children to different workspace '%s' -> '%s'",
|
2018-04-04 02:25:19 +10:00
|
|
|
workspace->name, new_workspace->name);
|
|
|
|
for (int i = 0; i < workspace->children->length; i++) {
|
|
|
|
container_move_to(workspace->children->items[i], new_workspace);
|
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
struct sway_container *floating = workspace->sway_workspace->floating;
|
|
|
|
for (int i = 0; i < floating->children->length; i++) {
|
|
|
|
container_move_to(floating->children->items[i],
|
|
|
|
new_workspace->sway_workspace->floating);
|
|
|
|
}
|
2018-05-27 21:03:36 +10:00
|
|
|
}
|
2018-04-04 09:36:57 +10:00
|
|
|
|
2018-07-28 22:13:13 +10:00
|
|
|
container_destroy_noreaping(workspace->sway_workspace->floating);
|
|
|
|
|
2018-07-09 07:35:01 +10:00
|
|
|
return output;
|
2018-04-04 02:25:19 +10:00
|
|
|
}
|
|
|
|
|
2018-05-27 21:03:36 +10:00
|
|
|
static 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) {
|
|
|
|
// Move workspace from this output to another output
|
2018-06-08 09:36:16 +10:00
|
|
|
struct sway_container *fallback_output =
|
2018-05-27 21:03:36 +10:00
|
|
|
root_container.children->items[0];
|
2018-06-08 09:36:16 +10:00
|
|
|
if (fallback_output == output) {
|
|
|
|
fallback_output = root_container.children->items[1];
|
2018-05-27 21:03:36 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
while (output->children->length) {
|
|
|
|
struct sway_container *workspace = output->children->items[0];
|
2018-06-08 09:36:16 +10:00
|
|
|
|
|
|
|
struct sway_container *new_output =
|
|
|
|
workspace_output_get_highest_available(workspace, output);
|
|
|
|
if (!new_output) {
|
|
|
|
new_output = fallback_output;
|
|
|
|
workspace_output_add_priority(workspace, new_output);
|
|
|
|
}
|
|
|
|
|
2018-05-27 21:03:36 +10:00
|
|
|
container_remove_child(workspace);
|
2018-06-08 09:36:16 +10:00
|
|
|
if (!workspace_is_empty(workspace)) {
|
|
|
|
container_add_child(new_output, workspace);
|
2018-07-18 19:47:44 +10:00
|
|
|
ipc_event_workspace(NULL, workspace, "move");
|
2018-05-27 21:03:36 +10:00
|
|
|
} else {
|
2018-06-23 16:24:11 +10:00
|
|
|
container_destroy(workspace);
|
2018-05-27 21:03:36 +10:00
|
|
|
}
|
2018-06-08 09:36:16 +10:00
|
|
|
|
|
|
|
container_sort_workspaces(new_output);
|
2018-05-27 21:03:36 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-06-06 07:56:32 +10:00
|
|
|
output->sway_output->swayc = NULL;
|
2018-06-26 19:40:42 +10:00
|
|
|
output->sway_output = NULL;
|
2018-05-27 21:03:36 +10:00
|
|
|
|
2018-07-10 07:54:30 +10:00
|
|
|
wlr_log(WLR_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
|
2018-05-27 21:03:36 +10:00
|
|
|
|
2018-06-23 16:24:11 +10:00
|
|
|
return &root_container;
|
2018-04-04 09:23:59 +10:00
|
|
|
}
|
2017-12-30 05:04:16 +11:00
|
|
|
|
2018-06-24 15:50:53 +10:00
|
|
|
/**
|
|
|
|
* Implement the actual destroy logic, without reaping.
|
|
|
|
*/
|
2018-06-27 17:23:44 +10:00
|
|
|
static struct sway_container *container_destroy_noreaping(
|
|
|
|
struct sway_container *con) {
|
2018-06-24 15:50:53 +10:00
|
|
|
if (con == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (con->destroying) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-06-26 20:14:58 +10:00
|
|
|
wl_signal_emit(&con->events.destroy, con);
|
2018-07-14 02:15:52 +10:00
|
|
|
|
|
|
|
// emit IPC event
|
|
|
|
if (con->type == C_VIEW) {
|
|
|
|
ipc_event_window(con, "close");
|
2018-07-14 06:55:04 +10:00
|
|
|
} else if (con->type == C_WORKSPACE) {
|
|
|
|
ipc_event_workspace(NULL, con, "empty");
|
2018-07-14 02:15:52 +10:00
|
|
|
}
|
2018-06-26 20:14:58 +10:00
|
|
|
|
2018-06-24 15:50:53 +10:00
|
|
|
// The below functions move their children to somewhere else.
|
|
|
|
if (con->type == C_OUTPUT) {
|
|
|
|
container_output_destroy(con);
|
|
|
|
} else if (con->type == C_WORKSPACE) {
|
|
|
|
// Workspaces will refuse to be destroyed if they're the last workspace
|
|
|
|
// on their output.
|
|
|
|
if (!container_workspace_destroy(con)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-18 16:13:28 +10:00
|
|
|
container_end_mouse_operation(con);
|
|
|
|
|
2018-06-24 15:50:53 +10:00
|
|
|
con->destroying = true;
|
2018-07-14 23:14:55 +10:00
|
|
|
container_set_dirty(con);
|
2018-06-24 15:50:53 +10:00
|
|
|
|
2018-07-22 14:10:40 +10:00
|
|
|
if (con->scratchpad) {
|
2018-08-03 23:06:01 +10:00
|
|
|
root_scratchpad_remove_container(con);
|
2018-07-22 14:10:40 +10:00
|
|
|
}
|
|
|
|
|
2018-06-24 23:07:52 +10:00
|
|
|
if (!con->parent) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-06-24 15:50:53 +10:00
|
|
|
return container_remove_child(con);
|
|
|
|
}
|
|
|
|
|
2018-04-03 03:49:37 +10:00
|
|
|
bool container_reap_empty(struct sway_container *con) {
|
2018-05-25 09:10:35 +10:00
|
|
|
if (con->layout == L_FLOATING) {
|
|
|
|
// Don't reap the magical floating container that each workspace has
|
2018-05-24 22:30:44 +10:00
|
|
|
return false;
|
|
|
|
}
|
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:
|
2018-05-24 22:30:44 +10:00
|
|
|
if (!workspace_is_visible(con) && workspace_is_empty(con)) {
|
2018-07-10 07:54:30 +10:00
|
|
|
wlr_log(WLR_DEBUG, "Destroying workspace via reaper");
|
2018-06-24 15:50:53 +10:00
|
|
|
container_destroy_noreaping(con);
|
2018-04-04 09:23:59 +10:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case C_CONTAINER:
|
|
|
|
if (con->children->length == 0) {
|
2018-06-24 15:50:53 +10:00
|
|
|
container_destroy_noreaping(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);
|
2018-06-24 23:07:52 +10:00
|
|
|
container_destroy_noreaping(container);
|
2018-04-03 03:49:37 +10:00
|
|
|
container = parent;
|
|
|
|
}
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
2018-06-23 16:24:11 +10:00
|
|
|
/**
|
|
|
|
* container_destroy() is the first step in destroying a container. We'll emit
|
|
|
|
* events, detach it from the tree and mark it as destroying. The container will
|
|
|
|
* remain in memory until it's no longer used by a transaction, then it will be
|
|
|
|
* freed via container_free().
|
2018-06-24 15:50:53 +10:00
|
|
|
*
|
|
|
|
* This function just wraps container_destroy_noreaping(), then does reaping.
|
2018-06-23 16:24:11 +10:00
|
|
|
*/
|
2018-04-04 02:25:19 +10:00
|
|
|
struct sway_container *container_destroy(struct sway_container *con) {
|
2018-07-26 18:36:46 +10:00
|
|
|
if (con->is_fullscreen) {
|
|
|
|
struct sway_container *ws = container_parent(con, C_WORKSPACE);
|
|
|
|
ws->sway_workspace->fullscreen = NULL;
|
|
|
|
}
|
2018-06-24 15:50:53 +10:00
|
|
|
struct sway_container *parent = container_destroy_noreaping(con);
|
2018-04-04 02:25:19 +10:00
|
|
|
|
2018-06-24 15:50:53 +10:00
|
|
|
if (!parent) {
|
|
|
|
return NULL;
|
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 {
|
2018-08-11 15:57:09 +10:00
|
|
|
container_for_each_descendant(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-07-10 07:54:30 +10:00
|
|
|
wlr_log(WLR_DEBUG, "Adding new view %p:%s to container %p %d %s",
|
2018-01-31 15:09:21 +11:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
if (container->type == C_WORKSPACE) {
|
|
|
|
return container_find(container->sway_workspace->floating, test, data);
|
|
|
|
}
|
2018-03-30 14:41:33 +11:00
|
|
|
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-08-08 22:14:11 +10:00
|
|
|
static void surface_at_view(struct sway_container *swayc, double lx, double ly,
|
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")) {
|
2018-08-08 22:14:11 +10:00
|
|
|
return;
|
2018-05-20 08:34:43 +10:00
|
|
|
}
|
2018-05-19 22:54:50 +10:00
|
|
|
struct sway_view *sview = swayc->sway_view;
|
2018-05-26 16:26:10 +10:00
|
|
|
double view_sx = lx - sview->x;
|
|
|
|
double view_sy = ly - sview->y;
|
2018-05-19 22:54:50 +10:00
|
|
|
|
|
|
|
double _sx, _sy;
|
|
|
|
struct wlr_surface *_surface = NULL;
|
|
|
|
switch (sview->type) {
|
2018-07-25 07:37:41 +10:00
|
|
|
#ifdef HAVE_XWAYLAND
|
2018-05-19 22:54:50 +10:00
|
|
|
case SWAY_VIEW_XWAYLAND:
|
|
|
|
_surface = wlr_surface_surface_at(sview->surface,
|
|
|
|
view_sx, view_sy, &_sx, &_sy);
|
|
|
|
break;
|
2018-07-25 07:37:41 +10:00
|
|
|
#endif
|
2018-05-19 22:54:50 +10:00
|
|
|
case SWAY_VIEW_XDG_SHELL_V6:
|
|
|
|
_surface = wlr_xdg_surface_v6_surface_at(
|
|
|
|
sview->wlr_xdg_surface_v6,
|
|
|
|
view_sx, view_sy, &_sx, &_sy);
|
|
|
|
break;
|
|
|
|
case SWAY_VIEW_XDG_SHELL:
|
|
|
|
_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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* container_at for a container with layout L_TABBED.
|
|
|
|
*/
|
|
|
|
static struct sway_container *container_at_tabbed(struct sway_container *parent,
|
2018-05-26 16:26:10 +10:00
|
|
|
double lx, double ly,
|
2018-05-19 22:54:50 +10:00
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
2018-05-26 16:26:10 +10:00
|
|
|
if (ly < parent->y || ly > 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
|
2018-05-22 08:27:42 +10:00
|
|
|
int title_height = container_titlebar_height();
|
2018-05-26 16:26:10 +10:00
|
|
|
if (ly < parent->y + title_height) {
|
2018-05-19 22:54:50 +10:00
|
|
|
int tab_width = parent->width / parent->children->length;
|
2018-05-26 16:26:10 +10:00
|
|
|
int child_index = (lx - parent->x) / tab_width;
|
2018-05-19 22:54:50 +10:00
|
|
|
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
|
|
|
|
2018-08-02 23:30:26 +10:00
|
|
|
return tiling_container_at(current, lx, ly, surface, sx, sy);
|
2018-05-19 22:54:50 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* container_at for a container with layout L_STACKED.
|
|
|
|
*/
|
|
|
|
static struct sway_container *container_at_stacked(
|
2018-05-26 16:26:10 +10:00
|
|
|
struct sway_container *parent, double lx, double ly,
|
2018-05-19 22:54:50 +10:00
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
2018-05-26 16:26:10 +10:00
|
|
|
if (ly < parent->y || ly > parent->y + parent->height) {
|
2018-05-22 08:43:00 +10:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
|
|
|
|
|
|
|
// Title bars
|
|
|
|
int title_height = container_titlebar_height();
|
2018-05-26 16:26:10 +10:00
|
|
|
int child_index = (ly - parent->y) / title_height;
|
2018-05-22 08:43:00 +10:00
|
|
|
if (child_index < parent->children->length) {
|
|
|
|
struct sway_container *child = parent->children->items[child_index];
|
|
|
|
return seat_get_focus_inactive(seat, child);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Surfaces
|
|
|
|
struct sway_container *current = seat_get_active_child(seat, parent);
|
|
|
|
|
2018-08-02 23:30:26 +10:00
|
|
|
return tiling_container_at(current, lx, ly, surface, sx, sy);
|
2018-05-19 22:54:50 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* container_at for a container with layout L_HORIZ or L_VERT.
|
|
|
|
*/
|
|
|
|
static struct sway_container *container_at_linear(struct sway_container *parent,
|
2018-05-26 16:26:10 +10:00
|
|
|
double lx, double ly,
|
2018-05-19 22:54:50 +10:00
|
|
|
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,
|
|
|
|
};
|
2018-05-26 16:26:10 +10:00
|
|
|
if (wlr_box_contains_point(&box, lx, ly)) {
|
2018-08-02 23:30:26 +10:00
|
|
|
return tiling_container_at(child, lx, ly, surface, sx, sy);
|
2017-12-11 00:48:44 +11:00
|
|
|
}
|
|
|
|
}
|
2018-05-19 22:54:50 +10:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-02 23:30:26 +10:00
|
|
|
static struct sway_container *floating_container_at(double lx, double ly,
|
2018-05-24 22:30:44 +10:00
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
struct sway_container *output = root_container.children->items[i];
|
|
|
|
for (int j = 0; j < output->children->length; ++j) {
|
|
|
|
struct sway_container *workspace = output->children->items[j];
|
|
|
|
struct sway_workspace *ws = workspace->sway_workspace;
|
2018-05-25 15:39:14 +10:00
|
|
|
if (!workspace_is_visible(workspace)) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-07-20 09:41:36 +10:00
|
|
|
// Items at the end of the list are on top, so iterate the list in
|
|
|
|
// reverse.
|
|
|
|
for (int k = ws->floating->children->length - 1; k >= 0; --k) {
|
2018-05-24 22:30:44 +10:00
|
|
|
struct sway_container *floater =
|
|
|
|
ws->floating->children->items[k];
|
2018-05-25 15:39:14 +10:00
|
|
|
struct wlr_box box = {
|
|
|
|
.x = floater->x,
|
|
|
|
.y = floater->y,
|
|
|
|
.width = floater->width,
|
|
|
|
.height = floater->height,
|
|
|
|
};
|
|
|
|
if (wlr_box_contains_point(&box, lx, ly)) {
|
2018-08-02 23:30:26 +10:00
|
|
|
return tiling_container_at(floater, lx, ly,
|
|
|
|
surface, sx, sy);
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-03 18:08:20 +10:00
|
|
|
struct sway_container *tiling_container_at(
|
2018-08-02 23:30:26 +10:00
|
|
|
struct sway_container *con, double lx, double ly,
|
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
|
|
|
if (con->type == C_VIEW) {
|
2018-08-08 22:14:11 +10:00
|
|
|
surface_at_view(con, lx, ly, surface, sx, sy);
|
|
|
|
return con;
|
2018-08-02 23:30:26 +10:00
|
|
|
}
|
|
|
|
if (!con->children->length) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (con->layout) {
|
|
|
|
case L_HORIZ:
|
|
|
|
case L_VERT:
|
|
|
|
return container_at_linear(con, lx, ly, surface, sx, sy);
|
|
|
|
case L_TABBED:
|
|
|
|
return container_at_tabbed(con, lx, ly, surface, sx, sy);
|
|
|
|
case L_STACKED:
|
|
|
|
return container_at_stacked(con, lx, ly, surface, sx, sy);
|
|
|
|
case L_FLOATING:
|
|
|
|
sway_assert(false, "Didn't expect to see floating here");
|
|
|
|
return NULL;
|
|
|
|
case L_NONE:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool surface_is_popup(struct wlr_surface *surface) {
|
|
|
|
if (wlr_surface_is_xdg_surface(surface)) {
|
|
|
|
struct wlr_xdg_surface *xdg_surface =
|
|
|
|
wlr_xdg_surface_from_wlr_surface(surface);
|
|
|
|
while (xdg_surface) {
|
|
|
|
if (xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
xdg_surface = xdg_surface->toplevel->parent;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wlr_surface_is_xdg_surface_v6(surface)) {
|
|
|
|
struct wlr_xdg_surface_v6 *xdg_surface_v6 =
|
|
|
|
wlr_xdg_surface_v6_from_wlr_surface(surface);
|
|
|
|
while (xdg_surface_v6) {
|
|
|
|
if (xdg_surface_v6->role == WLR_XDG_SURFACE_V6_ROLE_POPUP) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
xdg_surface_v6 = xdg_surface_v6->toplevel->parent;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_at(struct sway_container *workspace,
|
|
|
|
double lx, double ly,
|
|
|
|
struct wlr_surface **surface, double *sx, double *sy) {
|
|
|
|
if (!sway_assert(workspace->type == C_WORKSPACE, "Expected a workspace")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct sway_container *c;
|
|
|
|
// Focused view's popups
|
|
|
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
|
|
|
struct sway_container *focus =
|
|
|
|
seat_get_focus_inactive(seat, &root_container);
|
|
|
|
if (focus && focus->type == C_VIEW) {
|
2018-08-08 22:14:11 +10:00
|
|
|
surface_at_view(focus, lx, ly, surface, sx, sy);
|
2018-08-02 23:30:26 +10:00
|
|
|
if (*surface && surface_is_popup(*surface)) {
|
|
|
|
return focus;
|
|
|
|
}
|
|
|
|
*surface = NULL;
|
|
|
|
}
|
|
|
|
// Floating
|
|
|
|
if ((c = floating_container_at(lx, ly, surface, sx, sy))) {
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
// Tiling
|
|
|
|
if ((c = tiling_container_at(workspace, lx, ly, surface, sx, sy))) {
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-11 15:57:09 +10:00
|
|
|
void container_for_each_descendant(struct sway_container *container,
|
2018-03-30 14:53:38 +11:00
|
|
|
void (*f)(struct sway_container *container, void *data),
|
|
|
|
void *data) {
|
2018-07-16 12:45:20 +10:00
|
|
|
if (!container) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (container->children) {
|
|
|
|
for (int i = 0; i < container->children->length; ++i) {
|
|
|
|
struct sway_container *child = container->children->items[i];
|
2018-08-11 15:57:09 +10:00
|
|
|
container_for_each_descendant(child, f, data);
|
2018-07-16 12:45:20 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (container->type == C_WORKSPACE) {
|
|
|
|
struct sway_container *floating = container->sway_workspace->floating;
|
|
|
|
for (int i = 0; i < floating->children->length; ++i) {
|
|
|
|
struct sway_container *child = floating->children->items[i];
|
2018-08-11 15:57:09 +10:00
|
|
|
container_for_each_descendant(child, f, data);
|
2018-01-21 08:21:45 +11:00
|
|
|
}
|
|
|
|
}
|
2018-07-16 12:45:20 +10:00
|
|
|
f(container, data);
|
2018-01-21 08:21:45 +11:00
|
|
|
}
|
2018-02-05 05:39:10 +11:00
|
|
|
|
2018-05-28 12:45:42 +10:00
|
|
|
bool container_has_ancestor(struct sway_container *descendant,
|
|
|
|
struct sway_container *ancestor) {
|
2018-08-12 00:13:43 +10:00
|
|
|
while (descendant && descendant->type != C_ROOT) {
|
2018-03-31 01:31:21 +11:00
|
|
|
descendant = descendant->parent;
|
2018-05-28 12:45:42 +10:00
|
|
|
if (descendant == ancestor) {
|
2018-03-31 01:31:21 +11:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-04-01 05:22:10 +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;
|
|
|
|
}
|
|
|
|
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;
|
2018-07-07 15:49:51 +10:00
|
|
|
int height = con->title_height * scale;
|
2018-05-03 22:51:14 +10:00
|
|
|
|
|
|
|
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
|
|
|
/**
|
2018-05-25 21:07:59 +10:00
|
|
|
* Calculate and return the length of the tree representation.
|
|
|
|
* An example tree representation is: V[Terminal, Firefox]
|
|
|
|
* If buffer is not NULL, also populate the buffer with the representation.
|
2018-05-19 22:54:50 +10:00
|
|
|
*/
|
2018-05-25 21:07:59 +10:00
|
|
|
static size_t get_tree_representation(struct sway_container *parent, char *buffer) {
|
|
|
|
size_t len = 2;
|
|
|
|
switch (parent->layout) {
|
|
|
|
case L_VERT:
|
|
|
|
lenient_strcat(buffer, "V[");
|
|
|
|
break;
|
|
|
|
case L_HORIZ:
|
|
|
|
lenient_strcat(buffer, "H[");
|
|
|
|
break;
|
|
|
|
case L_TABBED:
|
|
|
|
lenient_strcat(buffer, "T[");
|
|
|
|
break;
|
|
|
|
case L_STACKED:
|
|
|
|
lenient_strcat(buffer, "S[");
|
|
|
|
break;
|
2018-05-25 09:10:35 +10:00
|
|
|
case L_FLOATING:
|
2018-05-26 16:26:10 +10:00
|
|
|
lenient_strcat(buffer, "F[");
|
2018-05-25 09:10:35 +10:00
|
|
|
break;
|
2018-05-25 21:07:59 +10:00
|
|
|
case L_NONE:
|
|
|
|
lenient_strcat(buffer, "D[");
|
|
|
|
break;
|
2018-05-19 22:54:50 +10:00
|
|
|
}
|
|
|
|
for (int i = 0; i < parent->children->length; ++i) {
|
|
|
|
if (i != 0) {
|
2018-05-25 21:07:59 +10:00
|
|
|
++len;
|
|
|
|
lenient_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 {
|
2018-05-25 21:07:59 +10:00
|
|
|
identifier = child->formatted_title;
|
2018-05-20 09:26:46 +10:00
|
|
|
}
|
|
|
|
if (identifier) {
|
|
|
|
len += strlen(identifier);
|
2018-05-25 21:07:59 +10:00
|
|
|
lenient_strcat(buffer, identifier);
|
2018-05-19 22:54:50 +10:00
|
|
|
} else {
|
|
|
|
len += 6;
|
2018-05-25 21:07:59 +10:00
|
|
|
lenient_strcat(buffer, "(null)");
|
2018-05-19 22:54:50 +10:00
|
|
|
}
|
|
|
|
}
|
2018-05-25 21:07:59 +10:00
|
|
|
++len;
|
|
|
|
lenient_strcat(buffer, "]");
|
2018-05-19 22:54:50 +10:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2018-05-25 21:07:59 +10:00
|
|
|
void container_notify_subtree_changed(struct sway_container *container) {
|
2018-05-29 17:42:11 +10:00
|
|
|
if (!container || container->type < C_WORKSPACE) {
|
2018-05-03 15:02:16 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-05-25 21:07:59 +10:00
|
|
|
free(container->formatted_title);
|
|
|
|
container->formatted_title = NULL;
|
2018-05-19 22:54:50 +10:00
|
|
|
|
2018-05-25 21:07:59 +10:00
|
|
|
size_t len = get_tree_representation(container, NULL);
|
2018-05-19 22:54:50 +10:00
|
|
|
char *buffer = calloc(len + 1, sizeof(char));
|
|
|
|
if (!sway_assert(buffer, "Unable to allocate title string")) {
|
|
|
|
return;
|
|
|
|
}
|
2018-05-25 21:07:59 +10:00
|
|
|
get_tree_representation(container, buffer);
|
2018-05-19 22:54:50 +10:00
|
|
|
|
|
|
|
container->formatted_title = buffer;
|
2018-05-29 17:42:11 +10:00
|
|
|
if (container->type != C_WORKSPACE) {
|
|
|
|
container_calculate_title_height(container);
|
|
|
|
container_update_title_textures(container);
|
|
|
|
container_notify_subtree_changed(container->parent);
|
|
|
|
}
|
2018-05-03 15:02:16 +10:00
|
|
|
}
|
2018-05-22 08:27:42 +10:00
|
|
|
|
|
|
|
size_t container_titlebar_height() {
|
|
|
|
return config->font_height + TITLEBAR_V_PADDING * 2;
|
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
|
2018-07-26 18:36:46 +10:00
|
|
|
void container_init_floating(struct sway_container *con) {
|
|
|
|
if (!sway_assert(con->type == C_VIEW || con->type == C_CONTAINER,
|
|
|
|
"Expected a view or container")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct sway_container *ws = container_parent(con, C_WORKSPACE);
|
|
|
|
int min_width, min_height;
|
|
|
|
int max_width, max_height;
|
|
|
|
|
|
|
|
if (config->floating_minimum_width == -1) { // no minimum
|
|
|
|
min_width = 0;
|
|
|
|
} else if (config->floating_minimum_width == 0) { // automatic
|
|
|
|
min_width = 75;
|
|
|
|
} else {
|
|
|
|
min_width = config->floating_minimum_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->floating_minimum_height == -1) { // no minimum
|
|
|
|
min_height = 0;
|
|
|
|
} else if (config->floating_minimum_height == 0) { // automatic
|
|
|
|
min_height = 50;
|
|
|
|
} else {
|
|
|
|
min_height = config->floating_minimum_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->floating_maximum_width == -1) { // no maximum
|
|
|
|
max_width = INT_MAX;
|
|
|
|
} else if (config->floating_maximum_width == 0) { // automatic
|
|
|
|
max_width = ws->width * 0.6666;
|
|
|
|
} else {
|
|
|
|
max_width = config->floating_maximum_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->floating_maximum_height == -1) { // no maximum
|
|
|
|
max_height = INT_MAX;
|
|
|
|
} else if (config->floating_maximum_height == 0) { // automatic
|
|
|
|
max_height = ws->height * 0.6666;
|
|
|
|
} else {
|
|
|
|
max_height = config->floating_maximum_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (con->type == C_CONTAINER) {
|
|
|
|
con->width = max_width;
|
|
|
|
con->height = max_height;
|
|
|
|
con->x = ws->x + (ws->width - con->width) / 2;
|
|
|
|
con->y = ws->y + (ws->height - con->height) / 2;
|
|
|
|
} else {
|
|
|
|
struct sway_view *view = con->sway_view;
|
|
|
|
view->width = fmax(min_width, fmin(view->natural_width, max_width));
|
|
|
|
view->height = fmax(min_height, fmin(view->natural_height, max_height));
|
|
|
|
view->x = ws->x + (ws->width - view->width) / 2;
|
|
|
|
view->y = ws->y + (ws->height - view->height) / 2;
|
|
|
|
|
|
|
|
// If the view's border is B_NONE then these properties are ignored.
|
|
|
|
view->border_top = view->border_bottom = true;
|
|
|
|
view->border_left = view->border_right = true;
|
|
|
|
|
|
|
|
container_set_geometry_from_floating_view(view->swayc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:30:44 +10:00
|
|
|
void container_set_floating(struct sway_container *container, bool enable) {
|
2018-05-25 09:26:23 +10:00
|
|
|
if (container_is_floating(container) == enable) {
|
2018-05-24 22:30:44 +10:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
|
|
|
struct sway_container *workspace = container_parent(container, C_WORKSPACE);
|
|
|
|
|
|
|
|
if (enable) {
|
|
|
|
container_remove_child(container);
|
|
|
|
container_add_child(workspace->sway_workspace->floating, container);
|
2018-07-26 18:36:46 +10:00
|
|
|
container_init_floating(container);
|
2018-05-24 22:30:44 +10:00
|
|
|
if (container->type == C_VIEW) {
|
2018-07-04 20:33:38 +10:00
|
|
|
view_set_tiled(container->sway_view, false);
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Returning to tiled
|
2018-07-22 14:10:40 +10:00
|
|
|
if (container->scratchpad) {
|
2018-08-03 23:06:01 +10:00
|
|
|
root_scratchpad_remove_container(container);
|
2018-07-22 14:10:40 +10:00
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
container_remove_child(container);
|
2018-07-27 13:46:01 +10:00
|
|
|
struct sway_container *reference =
|
|
|
|
seat_get_focus_inactive_tiling(seat, workspace);
|
|
|
|
if (reference->type == C_VIEW) {
|
|
|
|
reference = reference->parent;
|
|
|
|
}
|
|
|
|
container_add_child(reference, container);
|
2018-05-24 22:30:44 +10:00
|
|
|
container->width = container->parent->width;
|
|
|
|
container->height = container->parent->height;
|
2018-06-28 02:53:13 +10:00
|
|
|
if (container->type == C_VIEW) {
|
|
|
|
view_set_tiled(container->sway_view, true);
|
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
container->is_sticky = false;
|
|
|
|
}
|
2018-06-06 22:57:34 +10:00
|
|
|
|
2018-07-18 16:13:28 +10:00
|
|
|
container_end_mouse_operation(container);
|
|
|
|
|
2018-06-06 22:57:34 +10:00
|
|
|
ipc_event_window(container, "floating");
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
|
|
|
|
2018-05-26 16:32:24 +10:00
|
|
|
void container_set_geometry_from_floating_view(struct sway_container *con) {
|
|
|
|
if (!sway_assert(con->type == C_VIEW, "Expected a view")) {
|
2018-05-24 22:30:44 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-05-26 16:32:24 +10:00
|
|
|
if (!sway_assert(container_is_floating(con),
|
2018-05-25 09:26:23 +10:00
|
|
|
"Expected a floating view")) {
|
2018-05-24 22:30:44 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-05-26 16:32:24 +10:00
|
|
|
struct sway_view *view = con->sway_view;
|
2018-07-17 10:14:33 +10:00
|
|
|
size_t border_width = 0;
|
|
|
|
size_t top = 0;
|
|
|
|
|
|
|
|
if (!view->using_csd) {
|
|
|
|
border_width = view->border_thickness * (view->border != B_NONE);
|
|
|
|
top = view->border == B_NORMAL ?
|
|
|
|
container_titlebar_height() : border_width;
|
|
|
|
}
|
2018-05-24 22:30:44 +10:00
|
|
|
|
2018-05-26 16:32:24 +10:00
|
|
|
con->x = view->x - border_width;
|
|
|
|
con->y = view->y - top;
|
|
|
|
con->width = view->width + border_width * 2;
|
|
|
|
con->height = top + view->height + border_width;
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
|
|
|
|
2018-05-25 09:26:23 +10:00
|
|
|
bool container_is_floating(struct sway_container *container) {
|
|
|
|
struct sway_container *workspace = container_parent(container, C_WORKSPACE);
|
|
|
|
if (!workspace) {
|
|
|
|
return false;
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
2018-05-25 09:26:23 +10:00
|
|
|
return container->parent == workspace->sway_workspace->floating;
|
2018-05-24 22:30:44 +10:00
|
|
|
}
|
2018-06-03 16:35:06 +10:00
|
|
|
|
2018-06-27 17:47:41 +10:00
|
|
|
void container_get_box(struct sway_container *container, struct wlr_box *box) {
|
2018-06-03 16:35:06 +10:00
|
|
|
box->x = container->x;
|
|
|
|
box->y = container->y;
|
|
|
|
box->width = container->width;
|
|
|
|
box->height = container->height;
|
|
|
|
}
|
2018-07-07 18:36:20 +10:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Translate the container's position as well as all children.
|
|
|
|
*/
|
2018-07-18 16:13:28 +10:00
|
|
|
void container_floating_translate(struct sway_container *con,
|
2018-07-07 18:36:20 +10:00
|
|
|
double x_amount, double y_amount) {
|
|
|
|
con->x += x_amount;
|
|
|
|
con->y += y_amount;
|
|
|
|
if (con->type == C_VIEW) {
|
|
|
|
con->sway_view->x += x_amount;
|
|
|
|
con->sway_view->y += y_amount;
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < con->children->length; ++i) {
|
|
|
|
struct sway_container *child = con->children->items[i];
|
|
|
|
container_floating_translate(child, x_amount, y_amount);
|
|
|
|
}
|
|
|
|
}
|
2018-08-04 14:46:27 +10:00
|
|
|
container_set_dirty(con);
|
2018-07-07 18:36:20 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Choose an output for the floating container's new position.
|
|
|
|
*
|
|
|
|
* If the center of the container intersects an output then we'll choose that
|
|
|
|
* one, otherwise we'll choose whichever output is closest to the container's
|
|
|
|
* center.
|
|
|
|
*/
|
2018-08-07 09:30:27 +10:00
|
|
|
struct sway_container *container_floating_find_output(
|
2018-07-07 18:36:20 +10:00
|
|
|
struct sway_container *con) {
|
|
|
|
double center_x = con->x + con->width / 2;
|
|
|
|
double center_y = con->y + con->height / 2;
|
|
|
|
struct sway_container *closest_output = NULL;
|
|
|
|
double closest_distance = DBL_MAX;
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
struct sway_container *output = root_container.children->items[i];
|
|
|
|
struct wlr_box output_box;
|
|
|
|
double closest_x, closest_y;
|
|
|
|
container_get_box(output, &output_box);
|
|
|
|
wlr_box_closest_point(&output_box, center_x, center_y,
|
|
|
|
&closest_x, &closest_y);
|
|
|
|
if (center_x == closest_x && center_y == closest_y) {
|
|
|
|
// The center of the floating container is on this output
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
double x_dist = closest_x - center_x;
|
|
|
|
double y_dist = closest_y - center_y;
|
|
|
|
double distance = x_dist * x_dist + y_dist * y_dist;
|
|
|
|
if (distance < closest_distance) {
|
|
|
|
closest_output = output;
|
|
|
|
closest_distance = distance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return closest_output;
|
|
|
|
}
|
|
|
|
|
|
|
|
void container_floating_move_to(struct sway_container *con,
|
|
|
|
double lx, double ly) {
|
2018-07-09 23:41:00 +10:00
|
|
|
if (!sway_assert(container_is_floating(con),
|
|
|
|
"Expected a floating container")) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-07 18:36:20 +10:00
|
|
|
container_floating_translate(con, lx - con->x, ly - con->y);
|
|
|
|
struct sway_container *old_workspace = container_parent(con, C_WORKSPACE);
|
|
|
|
struct sway_container *new_output = container_floating_find_output(con);
|
|
|
|
if (!sway_assert(new_output, "Unable to find any output")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct sway_container *new_workspace =
|
|
|
|
output_get_active_workspace(new_output->sway_output);
|
|
|
|
if (old_workspace != new_workspace) {
|
|
|
|
container_remove_child(con);
|
|
|
|
container_add_child(new_workspace->sway_workspace->floating, con);
|
2018-07-14 23:14:55 +10:00
|
|
|
arrange_windows(old_workspace);
|
|
|
|
arrange_windows(new_workspace);
|
2018-07-16 13:15:35 +10:00
|
|
|
workspace_detect_urgent(old_workspace);
|
|
|
|
workspace_detect_urgent(new_workspace);
|
2018-07-14 23:14:55 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 14:46:27 +10:00
|
|
|
void container_floating_move_to_center(struct sway_container *con) {
|
|
|
|
if (!sway_assert(container_is_floating(con),
|
|
|
|
"Expected a floating container")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct sway_container *ws = container_parent(con, C_WORKSPACE);
|
|
|
|
double new_lx = ws->x + (ws->width - con->width) / 2;
|
|
|
|
double new_ly = ws->y + (ws->height - con->height) / 2;
|
|
|
|
container_floating_translate(con, new_lx - con->x, new_ly - con->y);
|
|
|
|
}
|
|
|
|
|
2018-07-14 23:14:55 +10:00
|
|
|
void container_set_dirty(struct sway_container *container) {
|
|
|
|
if (container->dirty) {
|
|
|
|
return;
|
2018-07-07 18:36:20 +10:00
|
|
|
}
|
2018-07-14 23:14:55 +10:00
|
|
|
container->dirty = true;
|
|
|
|
list_add(server.dirty_containers, container);
|
2018-07-07 18:36:20 +10:00
|
|
|
}
|
2018-07-16 14:30:31 +10:00
|
|
|
|
|
|
|
static bool find_urgent_iterator(struct sway_container *con,
|
|
|
|
void *data) {
|
|
|
|
return con->type == C_VIEW && view_is_urgent(con->sway_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool container_has_urgent_child(struct sway_container *container) {
|
|
|
|
return container_find(container, find_urgent_iterator, NULL);
|
|
|
|
}
|
2018-07-18 16:13:28 +10:00
|
|
|
|
|
|
|
void container_end_mouse_operation(struct sway_container *container) {
|
|
|
|
struct sway_seat *seat;
|
|
|
|
wl_list_for_each(seat, &input_manager->seats, link) {
|
|
|
|
if (seat->op_container == container) {
|
2018-07-21 10:40:12 +10:00
|
|
|
seat_end_mouse_operation(seat);
|
2018-07-18 16:13:28 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-25 20:56:23 +10:00
|
|
|
|
|
|
|
static void set_fullscreen_iterator(struct sway_container *con, void *data) {
|
|
|
|
if (con->type != C_VIEW) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (con->sway_view->impl->set_fullscreen) {
|
|
|
|
bool *enable = data;
|
|
|
|
con->sway_view->impl->set_fullscreen(con->sway_view, *enable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void container_set_fullscreen(struct sway_container *container, bool enable) {
|
|
|
|
if (container->is_fullscreen == enable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *workspace = container_parent(container, C_WORKSPACE);
|
|
|
|
if (enable && workspace->sway_workspace->fullscreen) {
|
|
|
|
container_set_fullscreen(workspace->sway_workspace->fullscreen, false);
|
|
|
|
}
|
|
|
|
|
2018-08-11 15:57:09 +10:00
|
|
|
container_for_each_descendant(container, set_fullscreen_iterator, &enable);
|
2018-07-25 20:56:23 +10:00
|
|
|
|
|
|
|
container->is_fullscreen = enable;
|
|
|
|
|
|
|
|
if (enable) {
|
|
|
|
workspace->sway_workspace->fullscreen = container;
|
|
|
|
container->saved_x = container->x;
|
|
|
|
container->saved_y = container->y;
|
|
|
|
container->saved_width = container->width;
|
|
|
|
container->saved_height = container->height;
|
|
|
|
|
|
|
|
struct sway_seat *seat;
|
|
|
|
struct sway_container *focus, *focus_ws;
|
|
|
|
wl_list_for_each(seat, &input_manager->seats, link) {
|
|
|
|
focus = seat_get_focus(seat);
|
|
|
|
if (focus) {
|
|
|
|
focus_ws = focus;
|
|
|
|
if (focus_ws->type != C_WORKSPACE) {
|
|
|
|
focus_ws = container_parent(focus_ws, C_WORKSPACE);
|
|
|
|
}
|
|
|
|
if (focus_ws == workspace) {
|
|
|
|
seat_set_focus(seat, container);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
workspace->sway_workspace->fullscreen = NULL;
|
|
|
|
if (container_is_floating(container)) {
|
|
|
|
container->x = container->saved_x;
|
|
|
|
container->y = container->saved_y;
|
|
|
|
container->width = container->saved_width;
|
|
|
|
container->height = container->saved_height;
|
2018-08-07 09:30:27 +10:00
|
|
|
struct sway_container *output =
|
|
|
|
container_floating_find_output(container);
|
|
|
|
if (!container_has_ancestor(container, output)) {
|
|
|
|
container_floating_move_to_center(container);
|
|
|
|
}
|
2018-07-25 20:56:23 +10:00
|
|
|
} else {
|
|
|
|
container->width = container->saved_width;
|
|
|
|
container->height = container->saved_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
container_end_mouse_operation(container);
|
|
|
|
|
|
|
|
ipc_event_window(container, "fullscreen_mode");
|
|
|
|
}
|
|
|
|
|
2018-07-26 18:36:46 +10:00
|
|
|
bool container_is_floating_or_child(struct sway_container *container) {
|
|
|
|
do {
|
|
|
|
if (container->parent && container->parent->layout == L_FLOATING) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
container = container->parent;
|
|
|
|
} while (container && container->type != C_WORKSPACE);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-25 20:56:23 +10:00
|
|
|
bool container_is_fullscreen_or_child(struct sway_container *container) {
|
|
|
|
do {
|
|
|
|
if (container->is_fullscreen) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
container = container->parent;
|
|
|
|
} while (container && container->type != C_WORKSPACE);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_wrap_children(struct sway_container *parent) {
|
|
|
|
struct sway_container *middle = container_create(C_CONTAINER);
|
|
|
|
middle->layout = parent->layout;
|
|
|
|
while (parent->children->length) {
|
|
|
|
struct sway_container *child = parent->children->items[0];
|
|
|
|
container_remove_child(child);
|
|
|
|
container_add_child(middle, child);
|
|
|
|
}
|
|
|
|
container_add_child(parent, middle);
|
|
|
|
return middle;
|
|
|
|
}
|