2017-11-20 09:04:28 +11:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2017-11-23 12:39:27 +11:00
|
|
|
#include <ctype.h>
|
2017-11-26 02:59:49 +11:00
|
|
|
#include <math.h>
|
2017-11-20 09:04:28 +11:00
|
|
|
#include <stdbool.h>
|
2017-11-23 12:39:27 +11:00
|
|
|
#include <stdlib.h>
|
2017-11-20 09:04:28 +11:00
|
|
|
#include <string.h>
|
2017-11-26 02:59:49 +11:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-11-20 09:04:28 +11:00
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "sway/tree/container.h"
|
|
|
|
#include "sway/tree/layout.h"
|
2017-11-26 02:59:49 +11:00
|
|
|
#include "sway/output.h"
|
2018-03-31 02:58:17 +11:00
|
|
|
#include "sway/tree/workspace.h"
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "sway/tree/view.h"
|
2018-02-15 06:30:27 +11:00
|
|
|
#include "sway/input/seat.h"
|
2018-03-31 01:31:21 +11:00
|
|
|
#include "sway/ipc-server.h"
|
2017-11-20 09:04:28 +11:00
|
|
|
#include "list.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container root_container;
|
2017-11-20 09:04:28 +11:00
|
|
|
|
2018-04-04 09:34:56 +10:00
|
|
|
static void output_layout_handle_change(struct wl_listener *listener,
|
2018-03-30 14:41:33 +11:00
|
|
|
void *data) {
|
2018-04-04 09:34:56 +10:00
|
|
|
struct wlr_output_layout *output_layout =
|
|
|
|
root_container.sway_root->output_layout;
|
|
|
|
const struct wlr_box *layout_box =
|
|
|
|
wlr_output_layout_get_box(output_layout, NULL);
|
2018-04-07 05:03:05 +10:00
|
|
|
root_container.box.x = layout_box->x;
|
|
|
|
root_container.box.y = layout_box->y;
|
|
|
|
root_container.box.width = layout_box->width;
|
|
|
|
root_container.box.height = layout_box->height;
|
2017-12-14 01:52:18 +11:00
|
|
|
|
|
|
|
for (int i = 0 ; i < root_container.children->length; ++i) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *output_container =
|
|
|
|
root_container.children->items[i];
|
2017-12-14 07:47:37 +11:00
|
|
|
if (output_container->type != C_OUTPUT) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-12-14 01:52:18 +11:00
|
|
|
struct sway_output *output = output_container->sway_output;
|
|
|
|
|
2018-04-04 09:34:56 +10:00
|
|
|
const struct wlr_box *output_box =
|
|
|
|
wlr_output_layout_get_box(output_layout, output->wlr_output);
|
2017-12-14 07:47:37 +11:00
|
|
|
if (!output_box) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-04-07 05:03:05 +10:00
|
|
|
output_container->box.x = output_box->x;
|
|
|
|
output_container->box.y = output_box->y;
|
|
|
|
output_container->box.width = output_box->width;
|
|
|
|
output_container->box.height = output_box->height;
|
2017-12-14 01:52:18 +11:00
|
|
|
}
|
|
|
|
|
2018-03-30 14:15:39 +11:00
|
|
|
arrange_windows(&root_container, -1, -1);
|
2017-12-13 06:02:01 +11:00
|
|
|
}
|
|
|
|
|
2018-04-04 03:16:23 +10:00
|
|
|
struct sway_container *container_set_layout(struct sway_container *container,
|
|
|
|
enum sway_container_layout layout) {
|
|
|
|
if (container->type == C_WORKSPACE) {
|
|
|
|
container->workspace_layout = layout;
|
|
|
|
if (layout == L_HORIZ || layout == L_VERT) {
|
|
|
|
container->layout = layout;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
container->layout = layout;
|
|
|
|
}
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
void layout_init(void) {
|
2017-11-20 09:04:28 +11:00
|
|
|
root_container.id = 0; // normally assigned in new_swayc()
|
|
|
|
root_container.type = C_ROOT;
|
|
|
|
root_container.layout = L_NONE;
|
|
|
|
root_container.name = strdup("root");
|
|
|
|
root_container.children = create_list();
|
2018-02-05 05:39:10 +11:00
|
|
|
wl_signal_init(&root_container.events.destroy);
|
2017-12-13 06:02:01 +11:00
|
|
|
|
|
|
|
root_container.sway_root = calloc(1, sizeof(*root_container.sway_root));
|
|
|
|
root_container.sway_root->output_layout = wlr_output_layout_create();
|
2018-04-03 04:35:43 +10:00
|
|
|
wl_list_init(&root_container.sway_root->xwayland_unmanaged);
|
2018-02-05 05:39:10 +11:00
|
|
|
wl_signal_init(&root_container.sway_root->events.new_container);
|
2017-12-13 06:02:01 +11:00
|
|
|
|
|
|
|
root_container.sway_root->output_layout_change.notify =
|
2018-04-04 09:34:56 +10:00
|
|
|
output_layout_handle_change;
|
2017-12-13 06:02:01 +11:00
|
|
|
wl_signal_add(&root_container.sway_root->output_layout->events.change,
|
|
|
|
&root_container.sway_root->output_layout_change);
|
2017-11-20 09:04:28 +11:00
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
static int index_child(const struct sway_container *child) {
|
2018-02-05 05:39:10 +11:00
|
|
|
// TODO handle floating
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *parent = child->parent;
|
2018-02-05 05:39:10 +11:00
|
|
|
int i, len;
|
|
|
|
len = parent->children->length;
|
|
|
|
for (i = 0; i < len; ++i) {
|
|
|
|
if (parent->children->items[i] == child) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sway_assert(i < len, "Stray container")) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *container_add_sibling(struct sway_container *fixed,
|
|
|
|
struct sway_container *active) {
|
2018-02-05 05:39:10 +11:00
|
|
|
// TODO handle floating
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *parent = fixed->parent;
|
2018-02-05 05:39:10 +11:00
|
|
|
int i = index_child(fixed);
|
|
|
|
list_insert(parent->children, i + 1, active);
|
|
|
|
active->parent = parent;
|
|
|
|
return active->parent;
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
void container_add_child(struct sway_container *parent,
|
|
|
|
struct sway_container *child) {
|
2018-04-07 05:03:05 +10:00
|
|
|
wlr_log(L_DEBUG, "Adding id:%zd (%d, %dx%d) to id:%zd (%d, %dx%d)",
|
|
|
|
child->id, child->type, child->box.width, child->box.height,
|
|
|
|
parent->id, parent->type, parent->box.width, parent->box.height);
|
2017-11-20 09:04:28 +11:00
|
|
|
list_add(parent->children, child);
|
|
|
|
child->parent = parent;
|
2018-03-31 02:58:17 +11:00
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *container_remove_child(struct sway_container *child) {
|
|
|
|
struct sway_container *parent = child->parent;
|
2018-03-31 02:58:17 +11:00
|
|
|
for (int i = 0; i < parent->children->length; ++i) {
|
2017-11-26 08:30:15 +11:00
|
|
|
if (parent->children->items[i] == child) {
|
|
|
|
list_del(parent->children, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child->parent = NULL;
|
2018-03-31 15:44:17 +11:00
|
|
|
return parent;
|
2018-03-31 01:31:21 +11:00
|
|
|
}
|
|
|
|
|
2018-04-01 11:21:26 +10:00
|
|
|
void container_move_to(struct sway_container *container,
|
|
|
|
struct sway_container *destination) {
|
2018-03-31 01:31:21 +11:00
|
|
|
if (container == destination
|
|
|
|
|| container_has_anscestor(container, destination)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct sway_container *old_parent = container_remove_child(container);
|
2018-04-07 05:03:05 +10:00
|
|
|
container->box.width = container->box.height = 0;
|
2018-04-01 11:21:26 +10:00
|
|
|
struct sway_container *new_parent;
|
|
|
|
if (destination->type == C_VIEW) {
|
|
|
|
new_parent = container_add_sibling(destination, container);
|
|
|
|
} else {
|
|
|
|
new_parent = destination;
|
|
|
|
container_add_child(destination, container);
|
|
|
|
}
|
|
|
|
wl_signal_emit(&container->events.reparent, old_parent);
|
|
|
|
if (container->type == C_WORKSPACE) {
|
2018-04-03 03:23:43 +10:00
|
|
|
struct sway_seat *seat = input_manager_get_default_seat(
|
2018-04-01 11:21:26 +10:00
|
|
|
input_manager);
|
|
|
|
if (old_parent->children->length == 0) {
|
|
|
|
char *ws_name = workspace_next_name(old_parent->name);
|
|
|
|
struct sway_container *ws =
|
2018-04-04 09:52:17 +10:00
|
|
|
workspace_create(old_parent, ws_name);
|
2018-04-01 11:21:26 +10:00
|
|
|
free(ws_name);
|
2018-04-03 03:23:43 +10:00
|
|
|
seat_set_focus(seat, ws);
|
2018-04-01 11:21:26 +10:00
|
|
|
}
|
|
|
|
container_sort_workspaces(new_parent);
|
2018-04-03 03:23:43 +10:00
|
|
|
seat_set_focus(seat, new_parent);
|
2018-04-01 11:21:26 +10:00
|
|
|
}
|
2018-03-31 02:58:17 +11:00
|
|
|
if (old_parent) {
|
|
|
|
arrange_windows(old_parent, -1, -1);
|
2018-03-31 01:31:21 +11:00
|
|
|
}
|
|
|
|
arrange_windows(new_parent, -1, -1);
|
|
|
|
}
|
|
|
|
|
2018-04-01 11:21:26 +10:00
|
|
|
void container_move(struct sway_container *container,
|
|
|
|
enum movement_direction dir, int move_amt) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
enum sway_container_layout container_get_default_layout(
|
2018-04-04 03:23:34 +10:00
|
|
|
struct sway_container *con) {
|
|
|
|
if (con->type != C_OUTPUT) {
|
|
|
|
con = container_parent(con, C_OUTPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sway_assert(con != NULL,
|
2018-04-04 09:23:59 +10:00
|
|
|
"container_get_default_layout must be called on an attached"
|
2018-04-04 03:23:34 +10:00
|
|
|
" container below the root container")) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-23 12:39:27 +11:00
|
|
|
if (config->default_layout != L_NONE) {
|
2018-03-31 01:43:55 +11:00
|
|
|
return config->default_layout;
|
2017-11-23 12:39:27 +11:00
|
|
|
} else if (config->default_orientation != L_NONE) {
|
|
|
|
return config->default_orientation;
|
2018-04-07 05:03:05 +10:00
|
|
|
} else if (con->box.width >= con->box.height) {
|
2017-11-23 12:39:27 +11:00
|
|
|
return L_HORIZ;
|
|
|
|
}
|
2018-04-07 05:03:05 +10:00
|
|
|
return L_VERT;
|
2017-11-23 12:39:27 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
static int sort_workspace_cmp_qsort(const void *_a, const void *_b) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *a = *(void **)_a;
|
|
|
|
struct sway_container *b = *(void **)_b;
|
2017-11-23 12:39:27 +11:00
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
if (isdigit(a->name[0]) && isdigit(b->name[0])) {
|
|
|
|
int a_num = strtol(a->name, NULL, 10);
|
|
|
|
int b_num = strtol(b->name, NULL, 10);
|
|
|
|
retval = (a_num < b_num) ? -1 : (a_num > b_num);
|
|
|
|
} else if (isdigit(a->name[0])) {
|
|
|
|
retval = -1;
|
|
|
|
} else if (isdigit(b->name[0])) {
|
|
|
|
retval = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
void container_sort_workspaces(struct sway_container *output) {
|
2017-11-23 12:39:27 +11:00
|
|
|
list_stable_sort(output->children, sort_workspace_cmp_qsort);
|
|
|
|
}
|
2017-11-26 02:59:49 +11:00
|
|
|
|
2018-04-07 05:03:05 +10:00
|
|
|
static void apply_horiz_layout(struct sway_container *container,
|
|
|
|
const int x, const int y, const int width,
|
|
|
|
const int height, const int start, const int end);
|
2017-11-26 02:59:49 +11:00
|
|
|
|
2018-04-07 05:03:05 +10:00
|
|
|
static void apply_vert_layout(struct sway_container *container,
|
|
|
|
const int x, const int y, const int width,
|
|
|
|
const int height, const int start, const int end);
|
2017-11-26 02:59:49 +11:00
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
void arrange_windows(struct sway_container *container,
|
2018-04-07 05:03:05 +10:00
|
|
|
int width, int height) {
|
2018-04-06 23:43:12 +10:00
|
|
|
if (config->reloading) {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-26 02:59:49 +11:00
|
|
|
int i;
|
|
|
|
if (width == -1 || height == -1) {
|
2018-04-07 05:03:05 +10:00
|
|
|
width = container->box.width;
|
|
|
|
height = container->box.height;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
// pixels are indivisible. if we don't round the pixels, then the view
|
|
|
|
// calculations will be off (e.g. 50.5 + 50.5 = 101, but in reality it's
|
|
|
|
// 50 + 50 = 100). doing it here cascades properly to all width/height/x/y.
|
|
|
|
width = floor(width);
|
|
|
|
height = floor(height);
|
|
|
|
|
2018-04-07 05:03:05 +10:00
|
|
|
wlr_log(L_DEBUG, "Arranging layout for %p %s %dx%d+%d,%d", container,
|
|
|
|
container->name, container->box.width, container->box.height,
|
|
|
|
container->box.x, container->box.y);
|
2017-11-26 02:59:49 +11:00
|
|
|
|
2018-04-07 05:03:05 +10:00
|
|
|
int x = 0, y = 0;
|
2017-11-26 02:59:49 +11:00
|
|
|
switch (container->type) {
|
|
|
|
case C_ROOT:
|
|
|
|
for (i = 0; i < container->children->length; ++i) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *output = container->children->items[i];
|
2018-04-07 05:03:05 +10:00
|
|
|
wlr_log(L_DEBUG, "Arranging output '%s' at %d,%d",
|
|
|
|
output->name, output->box.x, output->box.y);
|
2018-03-30 14:15:39 +11:00
|
|
|
arrange_windows(output, -1, -1);
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
case C_OUTPUT:
|
|
|
|
{
|
|
|
|
int _width, _height;
|
|
|
|
wlr_output_effective_resolution(
|
|
|
|
container->sway_output->wlr_output, &_width, &_height);
|
2018-04-07 05:03:05 +10:00
|
|
|
width = container->box.width = _width;
|
|
|
|
height = container->box.height = _height;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
// arrange all workspaces:
|
|
|
|
for (i = 0; i < container->children->length; ++i) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *child = container->children->items[i];
|
2018-03-30 14:15:39 +11:00
|
|
|
arrange_windows(child, -1, -1);
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
case C_WORKSPACE:
|
|
|
|
{
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *output =
|
|
|
|
container_parent(container, C_OUTPUT);
|
2018-03-29 07:38:11 +11:00
|
|
|
struct wlr_box *area = &output->sway_output->usable_area;
|
|
|
|
wlr_log(L_DEBUG, "Usable area for ws: %dx%d@%d,%d",
|
|
|
|
area->width, area->height, area->x, area->y);
|
2018-04-07 05:03:05 +10:00
|
|
|
container->box.width = width = area->width;
|
|
|
|
container->box.height = height = area->height;
|
|
|
|
container->box.x = x = area->x;
|
|
|
|
container->box.y = y = area->y;
|
|
|
|
wlr_log(L_DEBUG, "Arranging workspace '%s' at %d,%d",
|
|
|
|
container->name, container->box.x, container->box.y);
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
// children are properly handled below
|
|
|
|
break;
|
|
|
|
case C_VIEW:
|
|
|
|
{
|
2018-04-07 05:03:05 +10:00
|
|
|
container->box.width = width;
|
|
|
|
container->box.height = height;
|
|
|
|
view_configure(container->sway_view,
|
|
|
|
container->box.x, container->box.y,
|
|
|
|
container->box.width, container->box.height);
|
|
|
|
wlr_log(L_DEBUG, "Set view to %d x %d @ %d, %d",
|
|
|
|
container->box.width, container->box.height,
|
|
|
|
container->box.x, container->box.y);
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
default:
|
2018-04-07 05:03:05 +10:00
|
|
|
container->box.width = width;
|
|
|
|
container->box.height = height;
|
|
|
|
x = container->box.x;
|
|
|
|
y = container->box.y;
|
2017-11-26 02:59:49 +11:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (container->layout) {
|
|
|
|
case L_HORIZ:
|
|
|
|
apply_horiz_layout(container, x, y, width, height, 0,
|
|
|
|
container->children->length);
|
|
|
|
break;
|
|
|
|
case L_VERT:
|
|
|
|
apply_vert_layout(container, x, y, width, height, 0,
|
|
|
|
container->children->length);
|
|
|
|
break;
|
|
|
|
default:
|
2018-01-06 08:32:51 +11:00
|
|
|
wlr_log(L_DEBUG, "TODO: arrange layout type %d", container->layout);
|
2017-11-26 02:59:49 +11:00
|
|
|
apply_horiz_layout(container, x, y, width, height, 0,
|
|
|
|
container->children->length);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
static void apply_horiz_layout(struct sway_container *container,
|
2018-04-07 05:03:05 +10:00
|
|
|
const int x, const int y, const int width, const int height,
|
2017-11-26 02:59:49 +11:00
|
|
|
const int start, const int end) {
|
|
|
|
double scale = 0;
|
|
|
|
// Calculate total width
|
|
|
|
for (int i = start; i < end; ++i) {
|
2018-04-07 05:03:05 +10:00
|
|
|
struct sway_container *child = container->children->items[i];
|
|
|
|
int old_width = child->box.width;
|
|
|
|
if (old_width <= 0) {
|
2017-11-26 02:59:49 +11:00
|
|
|
if (end - start > 1) {
|
2018-04-07 05:03:05 +10:00
|
|
|
old_width = width / (end - start - 1);
|
2017-11-26 02:59:49 +11:00
|
|
|
} else {
|
2018-04-07 05:03:05 +10:00
|
|
|
old_width = width;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
}
|
2018-04-07 05:03:05 +10:00
|
|
|
scale += old_width;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
scale = width / scale;
|
|
|
|
|
|
|
|
// Resize windows
|
2018-04-07 05:03:05 +10:00
|
|
|
int child_x = x;
|
2017-11-26 02:59:49 +11:00
|
|
|
if (scale > 0.1) {
|
2018-01-06 08:32:51 +11:00
|
|
|
wlr_log(L_DEBUG, "Arranging %p horizontally", container);
|
2017-11-26 02:59:49 +11:00
|
|
|
for (int i = start; i < end; ++i) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *child = container->children->items[i];
|
2018-01-06 08:32:51 +11:00
|
|
|
wlr_log(L_DEBUG,
|
2018-04-07 05:03:05 +10:00
|
|
|
"Calculating arrangement for %p:%d (will scale %d by %f)",
|
2018-02-15 07:23:56 +11:00
|
|
|
child, child->type, width, scale);
|
2018-04-03 09:22:10 +10:00
|
|
|
|
2018-03-31 15:44:17 +11:00
|
|
|
if (child->type == C_VIEW) {
|
2018-04-07 05:03:05 +10:00
|
|
|
view_configure(child->sway_view, child_x, y,
|
|
|
|
child->box.width, child->box.height);
|
2018-03-31 15:44:17 +11:00
|
|
|
} else {
|
2018-04-07 05:03:05 +10:00
|
|
|
child->box.x = child_x;
|
|
|
|
child->box.y = y;
|
2018-03-31 15:44:17 +11:00
|
|
|
}
|
2017-11-26 02:59:49 +11:00
|
|
|
|
|
|
|
if (i == end - 1) {
|
2018-04-07 05:03:05 +10:00
|
|
|
int remaining_width = x + width - child_x;
|
2018-03-30 14:15:39 +11:00
|
|
|
arrange_windows(child, remaining_width, height);
|
2017-11-26 02:59:49 +11:00
|
|
|
} else {
|
2018-04-07 05:03:05 +10:00
|
|
|
arrange_windows(child, child->box.width * scale, height);
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
2018-04-07 05:03:05 +10:00
|
|
|
child_x += child->box.width;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
// update focused view border last because it may
|
|
|
|
// depend on the title bar geometry of its siblings.
|
|
|
|
/* TODO WLR
|
|
|
|
if (focused && container->children->length > 1) {
|
|
|
|
update_container_border(focused);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
void apply_vert_layout(struct sway_container *container,
|
2018-04-07 05:03:05 +10:00
|
|
|
const int x, const int y, const int width, const int height,
|
|
|
|
const int start, const int end) {
|
2017-11-26 02:59:49 +11:00
|
|
|
int i;
|
|
|
|
double scale = 0;
|
|
|
|
// Calculate total height
|
|
|
|
for (i = start; i < end; ++i) {
|
2018-04-07 05:03:05 +10:00
|
|
|
struct sway_container *child = container->children->items[i];
|
|
|
|
int old_height = child->box.height;
|
|
|
|
if (old_height <= 0) {
|
2017-11-26 02:59:49 +11:00
|
|
|
if (end - start > 1) {
|
2018-04-07 05:03:05 +10:00
|
|
|
old_height = height / (end - start - 1);
|
2017-11-26 02:59:49 +11:00
|
|
|
} else {
|
2018-04-07 05:03:05 +10:00
|
|
|
old_height = height;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
}
|
2018-04-07 05:03:05 +10:00
|
|
|
scale += old_height;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
scale = height / scale;
|
|
|
|
|
|
|
|
// Resize
|
2018-04-07 05:03:05 +10:00
|
|
|
int child_y = y;
|
2017-11-26 02:59:49 +11:00
|
|
|
if (scale > 0.1) {
|
2018-01-06 08:32:51 +11:00
|
|
|
wlr_log(L_DEBUG, "Arranging %p vertically", container);
|
2017-11-26 02:59:49 +11:00
|
|
|
for (i = start; i < end; ++i) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *child = container->children->items[i];
|
2018-01-06 08:32:51 +11:00
|
|
|
wlr_log(L_DEBUG,
|
2018-04-07 05:03:05 +10:00
|
|
|
"Calculating arrangement for %p:%d (will scale %d by %f)",
|
2018-02-15 07:23:56 +11:00
|
|
|
child, child->type, height, scale);
|
2018-04-03 05:40:40 +10:00
|
|
|
if (child->type == C_VIEW) {
|
2018-04-07 05:03:05 +10:00
|
|
|
view_configure(child->sway_view, x, child_y,
|
|
|
|
child->box.width, child->box.height);
|
2018-04-03 05:40:40 +10:00
|
|
|
} else {
|
2018-04-07 05:03:05 +10:00
|
|
|
child->box.x = x;
|
|
|
|
child->box.y = child_y;
|
2018-04-03 05:40:40 +10:00
|
|
|
}
|
2017-11-26 02:59:49 +11:00
|
|
|
|
|
|
|
if (i == end - 1) {
|
2018-04-07 05:03:05 +10:00
|
|
|
int remaining_height = y + height - child_y;
|
2018-03-30 14:15:39 +11:00
|
|
|
arrange_windows(child, width, remaining_height);
|
2017-11-26 02:59:49 +11:00
|
|
|
} else {
|
2018-04-07 05:03:05 +10:00
|
|
|
arrange_windows(child, width, child->box.height * scale);
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
2018-04-07 05:03:05 +10:00
|
|
|
child_y += child->box.height;
|
2017-11-26 02:59:49 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
// update focused view border last because it may
|
|
|
|
// depend on the title bar geometry of its siblings.
|
|
|
|
/* TODO WLR
|
|
|
|
if (focused && container->children->length > 1) {
|
|
|
|
update_container_border(focused);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
2018-02-15 06:30:27 +11:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get swayc in the direction of newly entered output.
|
|
|
|
*/
|
2018-03-30 14:41:33 +11:00
|
|
|
static struct sway_container *get_swayc_in_output_direction(
|
|
|
|
struct sway_container *output, enum movement_direction dir,
|
|
|
|
struct sway_seat *seat) {
|
2018-02-15 06:30:27 +11:00
|
|
|
if (!output) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-04-02 22:45:37 +10:00
|
|
|
struct sway_container *ws = seat_get_focus_inactive(seat, output);
|
2018-02-15 06:30:27 +11:00
|
|
|
if (ws->type != C_WORKSPACE) {
|
2018-03-30 14:41:33 +11:00
|
|
|
ws = container_parent(ws, C_WORKSPACE);
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
|
|
|
|
2018-02-18 11:03:21 +11:00
|
|
|
if (ws == NULL) {
|
|
|
|
wlr_log(L_ERROR, "got an output without a workspace");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ws->children->length > 0) {
|
2018-02-15 06:30:27 +11:00
|
|
|
switch (dir) {
|
|
|
|
case MOVE_LEFT:
|
|
|
|
// get most right child of new output
|
|
|
|
return ws->children->items[ws->children->length-1];
|
|
|
|
case MOVE_RIGHT:
|
|
|
|
// get most left child of new output
|
|
|
|
return ws->children->items[0];
|
|
|
|
case MOVE_UP:
|
2018-02-15 07:23:56 +11:00
|
|
|
case MOVE_DOWN: {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *focused =
|
2018-04-02 22:45:37 +10:00
|
|
|
seat_get_focus_inactive(seat, ws);
|
2018-02-15 07:23:56 +11:00
|
|
|
if (focused && focused->parent) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *parent = focused->parent;
|
2018-02-15 07:23:56 +11:00
|
|
|
if (parent->layout == L_VERT) {
|
|
|
|
if (dir == MOVE_UP) {
|
|
|
|
// get child furthest down on new output
|
2018-03-30 14:41:33 +11:00
|
|
|
int idx = parent->children->length - 1;
|
|
|
|
return parent->children->items[idx];
|
2018-02-15 07:23:56 +11:00
|
|
|
} else if (dir == MOVE_DOWN) {
|
|
|
|
// get child furthest up on new output
|
|
|
|
return parent->children->items[0];
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
|
|
|
}
|
2018-02-15 07:23:56 +11:00
|
|
|
return focused;
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
2018-02-15 07:23:56 +11:00
|
|
|
break;
|
|
|
|
}
|
2018-02-15 06:30:27 +11:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-18 11:03:21 +11:00
|
|
|
return ws;
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
static void get_layout_center_position(struct sway_container *container,
|
|
|
|
int *x, int *y) {
|
2018-02-18 10:33:02 +11:00
|
|
|
// FIXME view coords are inconsistently referred to in layout/output systems
|
|
|
|
if (container->type == C_OUTPUT) {
|
2018-04-07 05:03:05 +10:00
|
|
|
*x = container->box.x + container->box.width / 2;
|
|
|
|
*y = container->box.y + container->box.height / 2;
|
2018-02-18 10:33:02 +11:00
|
|
|
} else {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *output = container_parent(container, C_OUTPUT);
|
2018-02-18 10:33:02 +11:00
|
|
|
if (container->type == C_WORKSPACE) {
|
|
|
|
// Workspace coordinates are actually wrong/arbitrary, but should
|
|
|
|
// be same as output.
|
2018-04-07 05:03:05 +10:00
|
|
|
*x = output->box.x;
|
|
|
|
*y = output->box.y;
|
2018-02-18 10:33:02 +11:00
|
|
|
} else {
|
2018-04-07 05:03:05 +10:00
|
|
|
*x = output->box.x + container->box.x;
|
|
|
|
*y = output->box.y + container->box.y;
|
2018-02-18 10:33:02 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
static bool sway_dir_to_wlr(enum movement_direction dir,
|
|
|
|
enum wlr_direction *out) {
|
2018-02-18 10:33:02 +11:00
|
|
|
switch (dir) {
|
|
|
|
case MOVE_UP:
|
|
|
|
*out = WLR_DIRECTION_UP;
|
|
|
|
break;
|
|
|
|
case MOVE_DOWN:
|
|
|
|
*out = WLR_DIRECTION_DOWN;
|
|
|
|
break;
|
|
|
|
case MOVE_LEFT:
|
|
|
|
*out = WLR_DIRECTION_LEFT;
|
|
|
|
break;
|
|
|
|
case MOVE_RIGHT:
|
|
|
|
*out = WLR_DIRECTION_RIGHT;
|
|
|
|
break;
|
|
|
|
default:
|
2018-02-21 11:47:48 +11:00
|
|
|
return false;
|
2018-02-18 10:33:02 +11:00
|
|
|
}
|
|
|
|
|
2018-02-21 11:47:48 +11:00
|
|
|
return true;
|
2018-02-18 10:33:02 +11:00
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
static struct sway_container *sway_output_from_wlr(struct wlr_output *output) {
|
2018-02-18 10:33:02 +11:00
|
|
|
if (output == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *o = root_container.children->items[i];
|
2018-02-18 10:33:02 +11:00
|
|
|
if (o->type == C_OUTPUT && o->sway_output->wlr_output == output) {
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
|
|
|
|
2018-03-31 15:44:17 +11:00
|
|
|
struct sway_container *container_get_in_direction(
|
|
|
|
struct sway_container *container, struct sway_seat *seat,
|
|
|
|
enum movement_direction dir) {
|
2018-02-15 06:30:27 +11:00
|
|
|
if (dir == MOVE_CHILD) {
|
2018-04-02 22:45:37 +10:00
|
|
|
return seat_get_focus_inactive(seat, container);
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *parent = container->parent;
|
2018-02-15 06:30:27 +11:00
|
|
|
if (dir == MOVE_PARENT) {
|
|
|
|
if (parent->type == C_OUTPUT) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO WLR fullscreen
|
|
|
|
/*
|
|
|
|
if (container->type == C_VIEW && swayc_is_fullscreen(container)) {
|
|
|
|
wlr_log(L_DEBUG, "Moving from fullscreen view, skipping to output");
|
2018-03-30 14:41:33 +11:00
|
|
|
container = container_parent(container, C_OUTPUT);
|
2018-02-18 10:33:02 +11:00
|
|
|
get_layout_center_position(container, &abs_pos);
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *output =
|
|
|
|
swayc_adjacent_output(container, dir, &abs_pos, true);
|
2018-02-15 06:30:27 +11:00
|
|
|
return get_swayc_in_output_direction(output, dir);
|
|
|
|
}
|
|
|
|
if (container->type == C_WORKSPACE && container->fullscreen) {
|
|
|
|
sway_log(L_DEBUG, "Moving to fullscreen view");
|
|
|
|
return container->fullscreen;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *wrap_candidate = NULL;
|
2018-02-15 06:30:27 +11:00
|
|
|
while (true) {
|
|
|
|
bool can_move = false;
|
|
|
|
int desired;
|
|
|
|
int idx = index_child(container);
|
|
|
|
if (parent->type == C_ROOT) {
|
2018-02-18 10:33:02 +11:00
|
|
|
enum wlr_direction wlr_dir = 0;
|
|
|
|
if (!sway_assert(sway_dir_to_wlr(dir, &wlr_dir),
|
|
|
|
"got invalid direction: %d", dir)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
int lx, ly;
|
|
|
|
get_layout_center_position(container, &lx, &ly);
|
2018-03-30 14:41:33 +11:00
|
|
|
struct wlr_output_layout *layout =
|
|
|
|
root_container.sway_root->output_layout;
|
2018-02-18 10:33:02 +11:00
|
|
|
struct wlr_output *wlr_adjacent =
|
|
|
|
wlr_output_layout_adjacent_output(layout, wlr_dir,
|
|
|
|
container->sway_output->wlr_output, lx, ly);
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *adjacent =
|
|
|
|
sway_output_from_wlr(wlr_adjacent);
|
2018-02-18 10:33:02 +11:00
|
|
|
|
|
|
|
if (!adjacent || adjacent == container) {
|
2018-02-15 06:30:27 +11:00
|
|
|
return wrap_candidate;
|
|
|
|
}
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *next =
|
|
|
|
get_swayc_in_output_direction(adjacent, dir, seat);
|
2018-02-20 09:55:16 +11:00
|
|
|
if (next == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (next->children && next->children->length) {
|
2018-02-18 11:03:21 +11:00
|
|
|
// TODO consider floating children as well
|
2018-04-03 06:09:27 +10:00
|
|
|
return seat_get_focus_by_type(seat, next, C_VIEW);
|
2018-02-18 11:03:21 +11:00
|
|
|
} else {
|
|
|
|
return next;
|
|
|
|
}
|
2018-02-15 06:30:27 +11:00
|
|
|
} else {
|
|
|
|
if (dir == MOVE_LEFT || dir == MOVE_RIGHT) {
|
|
|
|
if (parent->layout == L_HORIZ || parent->layout == L_TABBED) {
|
|
|
|
can_move = true;
|
|
|
|
desired = idx + (dir == MOVE_LEFT ? -1 : 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (parent->layout == L_VERT || parent->layout == L_STACKED) {
|
|
|
|
can_move = true;
|
|
|
|
desired = idx + (dir == MOVE_UP ? -1 : 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (can_move) {
|
|
|
|
// TODO handle floating
|
|
|
|
if (desired < 0 || desired >= parent->children->length) {
|
|
|
|
can_move = false;
|
|
|
|
int len = parent->children->length;
|
|
|
|
if (!wrap_candidate && len > 1) {
|
|
|
|
if (desired < 0) {
|
|
|
|
wrap_candidate = parent->children->items[len-1];
|
|
|
|
} else {
|
|
|
|
wrap_candidate = parent->children->items[0];
|
|
|
|
}
|
|
|
|
if (config->force_focus_wrapping) {
|
2018-04-05 12:31:10 +10:00
|
|
|
return wrap_candidate;
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-04-05 12:31:10 +10:00
|
|
|
struct sway_container *desired_con = parent->children->items[desired];
|
2018-03-30 14:41:33 +11:00
|
|
|
wlr_log(L_DEBUG,
|
|
|
|
"cont %d-%p dir %i sibling %d: %p", idx,
|
2018-04-05 12:31:10 +10:00
|
|
|
container, dir, desired, desired_con);
|
|
|
|
struct sway_container *next = seat_get_focus_by_type(seat, desired_con, C_VIEW);
|
|
|
|
return next;
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!can_move) {
|
|
|
|
container = parent;
|
|
|
|
parent = parent->parent;
|
2018-03-31 15:44:17 +11:00
|
|
|
if (!parent) {
|
2018-02-15 06:30:27 +11:00
|
|
|
// wrapping is the last chance
|
|
|
|
return wrap_candidate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-31 15:44:17 +11:00
|
|
|
struct sway_container *container_replace_child(struct sway_container *child,
|
|
|
|
struct sway_container *new_child) {
|
|
|
|
struct sway_container *parent = child->parent;
|
|
|
|
if (parent == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
int i = index_child(child);
|
|
|
|
|
|
|
|
// TODO floating
|
|
|
|
parent->children->items[i] = new_child;
|
|
|
|
new_child->parent = parent;
|
|
|
|
child->parent = NULL;
|
|
|
|
|
|
|
|
// Set geometry for new child
|
2018-04-07 05:03:05 +10:00
|
|
|
new_child->box.x = child->box.x;
|
|
|
|
new_child->box.y = child->box.y;
|
|
|
|
new_child->box.width = child->box.width;
|
|
|
|
new_child->box.height = child->box.height;
|
2018-03-31 15:44:17 +11:00
|
|
|
|
|
|
|
// reset geometry for child
|
2018-04-07 05:03:05 +10:00
|
|
|
child->box.width = 0;
|
|
|
|
child->box.height = 0;
|
2018-03-31 15:44:17 +11:00
|
|
|
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *container_split(struct sway_container *child,
|
|
|
|
enum sway_container_layout layout) {
|
|
|
|
// TODO floating: cannot split a floating container
|
|
|
|
if (!sway_assert(child, "child cannot be null")) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct sway_container *cont = container_create(C_CONTAINER);
|
|
|
|
|
|
|
|
wlr_log(L_DEBUG, "creating container %p around %p", cont, child);
|
|
|
|
|
|
|
|
cont->prev_layout = L_NONE;
|
2018-04-07 05:03:05 +10:00
|
|
|
cont->box.width = child->box.width;
|
|
|
|
cont->box.height = child->box.height;
|
|
|
|
cont->box.x = child->box.x;
|
|
|
|
cont->box.y = child->box.y;
|
2018-03-31 15:44:17 +11:00
|
|
|
|
|
|
|
if (child->type == C_WORKSPACE) {
|
2018-04-03 06:09:27 +10:00
|
|
|
struct sway_seat *seat = input_manager_get_default_seat(input_manager);
|
2018-03-31 15:44:17 +11:00
|
|
|
struct sway_container *workspace = child;
|
2018-04-03 06:09:27 +10:00
|
|
|
bool set_focus = (seat_get_focus(seat) == workspace);
|
2018-04-03 05:40:40 +10:00
|
|
|
|
|
|
|
while (workspace->children->length) {
|
|
|
|
struct sway_container *ws_child = workspace->children->items[0];
|
|
|
|
container_remove_child(ws_child);
|
|
|
|
container_add_child(cont, ws_child);
|
2018-03-31 15:44:17 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
container_add_child(workspace, cont);
|
2018-04-03 05:40:40 +10:00
|
|
|
container_set_layout(workspace, layout);
|
|
|
|
|
|
|
|
if (set_focus) {
|
2018-04-03 06:09:27 +10:00
|
|
|
seat_set_focus(seat, cont);
|
2018-04-03 05:40:40 +10:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cont->layout = layout;
|
2018-03-31 15:44:17 +11:00
|
|
|
container_replace_child(child, cont);
|
|
|
|
container_add_child(cont, child);
|
|
|
|
}
|
2018-04-03 05:40:40 +10:00
|
|
|
|
2018-03-31 15:44:17 +11:00
|
|
|
return cont;
|
2018-02-15 06:30:27 +11:00
|
|
|
}
|
2018-04-05 11:32:31 +10:00
|
|
|
|
|
|
|
void container_recursive_resize(struct sway_container *container,
|
|
|
|
double amount, enum resize_edge edge) {
|
|
|
|
bool layout_match = true;
|
|
|
|
wlr_log(L_DEBUG, "Resizing %p with amount: %f", container, amount);
|
|
|
|
if (edge == RESIZE_EDGE_LEFT || edge == RESIZE_EDGE_RIGHT) {
|
2018-04-07 05:03:05 +10:00
|
|
|
container->box.width += amount;
|
2018-04-05 11:32:31 +10:00
|
|
|
layout_match = container->layout == L_HORIZ;
|
|
|
|
} else if (edge == RESIZE_EDGE_TOP || edge == RESIZE_EDGE_BOTTOM) {
|
2018-04-07 05:03:05 +10:00
|
|
|
container->box.height += amount;
|
2018-04-05 11:32:31 +10:00
|
|
|
layout_match = container->layout == L_VERT;
|
|
|
|
}
|
|
|
|
if (container->children) {
|
|
|
|
for (int i = 0; i < container->children->length; i++) {
|
|
|
|
struct sway_container *child = container->children->items[i];
|
|
|
|
double amt = layout_match ?
|
|
|
|
amount / container->children->length : amount;
|
|
|
|
container_recursive_resize(child, amt, edge);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|