swayfx/sway/layout.c

351 lines
9.3 KiB
C
Raw Normal View History

#include <stdlib.h>
#include <stdbool.h>
#include <wlc/wlc.h>
#include "layout.h"
2015-08-19 04:22:52 +10:00
#include "log.h"
#include "list.h"
2015-08-19 08:44:50 +10:00
#include "config.h"
#include "container.h"
2015-08-11 06:31:23 +10:00
#include "workspace.h"
2015-08-19 04:22:52 +10:00
#include "focus.h"
2015-08-09 07:44:51 +10:00
swayc_t root_container;
void init_layout(void) {
root_container.type = C_ROOT;
root_container.layout = L_NONE;
root_container.children = create_list();
root_container.handle = -1;
}
static int index_child(swayc_t *parent, swayc_t *child) {
int i;
for (i = 0; i < parent->children->length; ++i) {
if (parent->children->items[i] == child) {
break;
}
}
return i;
}
void add_child(swayc_t *parent, swayc_t *child) {
sway_log(L_DEBUG, "Adding %p (%d, %dx%d) to %p (%d, %dx%d)", child, child->type,
child->width, child->height, parent, parent->type, parent->width, parent->height);
list_add(parent->children, child);
child->parent = parent;
//set focus for this container
2015-08-19 15:20:31 +10:00
if (parent->children->length == 1) {
set_focused_container_for(parent, child);
2015-08-19 15:20:31 +10:00
}
}
2015-08-19 17:28:53 +10:00
void add_floating(swayc_t *ws, swayc_t *child) {
sway_log(L_DEBUG, "Adding %p (%d, %dx%d) to %p (%d, %dx%d)", child, child->type,
child->width, child->height, ws, ws->type, ws->width, ws->height);
list_add(ws->floating, child);
child->parent = ws;
child->is_floating = true;
if (!ws->focused) {
set_focused_container_for(ws, child);
2015-08-19 17:28:53 +10:00
}
}
swayc_t *add_sibling(swayc_t *sibling, swayc_t *child) {
swayc_t *parent = sibling->parent;
int i = index_child(parent, sibling);
if (i == parent->children->length) {
--i;
}
list_insert(parent->children, i+1, child);
child->parent = parent;
return child->parent;
}
swayc_t *replace_child(swayc_t *child, swayc_t *new_child) {
swayc_t *parent = child->parent;
if (parent == NULL) {
2015-08-09 23:23:10 +10:00
return NULL;
}
int i = index_child(parent, child);
parent->children->items[i] = new_child;
new_child->parent = child->parent;
if (child->parent->focused == child) {
set_focused_container_for(child->parent, new_child);
}
child->parent = NULL;
return parent;
}
2015-08-18 19:46:14 +10:00
swayc_t *remove_child(swayc_t *child) {
2015-08-09 23:23:10 +10:00
int i;
2015-08-18 19:46:14 +10:00
swayc_t *parent = child->parent;
2015-08-17 15:38:34 +10:00
if (child->is_floating) {
// Special case for floating views
2015-08-17 15:38:34 +10:00
for (i = 0; i < parent->floating->length; ++i) {
if (parent->floating->items[i] == child) {
list_del(parent->floating, i);
break;
}
}
2015-08-19 17:28:53 +10:00
i = 0;
2015-08-18 01:18:06 +10:00
} else {
for (i = 0; i < parent->children->length; ++i) {
if (parent->children->items[i] == child) {
list_del(parent->children, i);
break;
}
2015-08-09 23:23:10 +10:00
}
}
2015-08-19 04:22:52 +10:00
//Set focused to new container
if (parent->focused == child) {
2015-08-18 19:46:14 +10:00
if (parent->children->length > 0) {
2015-08-19 04:22:52 +10:00
set_focused_container_for(parent, parent->children->items[i?i-1:0]);
2015-08-18 19:46:14 +10:00
} else {
parent->focused = NULL;
}
}
return parent;
2015-08-09 23:23:10 +10:00
}
2015-08-09 08:17:08 +10:00
void arrange_windows(swayc_t *container, int width, int height) {
int i;
if (width == -1 || height == -1) {
sway_log(L_DEBUG, "Arranging layout for %p", container);
width = container->width;
height = container->height;
}
int x = 0, y = 0;
switch (container->type) {
case C_ROOT:
2015-08-09 08:17:08 +10:00
for (i = 0; i < container->children->length; ++i) {
swayc_t *child = container->children->items[i];
sway_log(L_DEBUG, "Arranging output at %d", x);
child->x = x;
child->y = y;
2015-08-11 13:54:23 +10:00
arrange_windows(child, -1, -1);
2015-08-16 07:13:08 +10:00
// Removed for now because wlc works with relative positions
// Addition can be reconsidered once wlc positions are changed
// x += child->width;
2015-08-09 08:17:08 +10:00
}
return;
2015-08-11 13:54:23 +10:00
case C_OUTPUT:
container->width = width;
container->height = height;
2015-08-16 07:13:08 +10:00
// These lines make x/y negative and result in stuff glitching out
// Their addition can be reconsidered once wlc positions are changed
// x -= container->x;
// y -= container->y;
for (i = 0; i < container->children->length; ++i) {
swayc_t *child = container->children->items[i];
2015-08-19 08:44:50 +10:00
child->x = x + container->gaps;
child->y = y + container->gaps;
child->width = width - container->gaps * 2;
child->height = height - container->gaps * 2;
sway_log(L_DEBUG, "Arranging workspace #%d at %d, %d", i, child->x, child->y);
2015-08-16 07:13:08 +10:00
arrange_windows(child, -1, -1);
}
return;
case C_VIEW:
2015-08-10 10:58:03 +10:00
{
struct wlc_geometry geometry = {
.origin = {
2015-08-19 08:44:50 +10:00
.x = container->x + container->gaps,
.y = container->y + container->gaps
2015-08-10 10:58:03 +10:00
},
.size = {
2015-08-19 08:44:50 +10:00
.w = width - container->gaps * 2,
.h = height - container->gaps * 2
2015-08-10 10:58:03 +10:00
}
};
if (wlc_view_get_state(container->handle) & WLC_BIT_FULLSCREEN) {
swayc_t *parent = container;
2015-08-15 05:44:35 +10:00
while (parent->type != C_OUTPUT) {
2015-08-10 10:58:03 +10:00
parent = parent->parent;
}
2015-08-19 08:44:50 +10:00
geometry.origin.x = 0;
geometry.origin.y = 0;
geometry.size.w = parent->width;
geometry.size.h = parent->height;
2015-08-19 07:24:01 +10:00
wlc_view_set_geometry(container->handle, 0, &geometry);
2015-08-10 10:58:03 +10:00
wlc_view_bring_to_front(container->handle);
} else {
2015-08-19 07:24:01 +10:00
wlc_view_set_geometry(container->handle, 0, &geometry);
2015-08-10 10:58:03 +10:00
container->width = width;
container->height = height;
2015-08-09 08:17:08 +10:00
}
2015-08-10 10:58:03 +10:00
sway_log(L_DEBUG, "Set view to %d x %d @ %d, %d", geometry.size.w, geometry.size.h,
geometry.origin.x, geometry.origin.y);
2015-08-10 10:49:19 +10:00
}
2015-08-09 08:17:08 +10:00
return;
default:
container->width = width;
container->height = height;
break;
2015-08-09 08:17:08 +10:00
}
double total_weight = 0;
for (i = 0; i < container->children->length; ++i) {
swayc_t *child = container->children->items[i];
total_weight += child->weight;
}
switch (container->layout) {
case L_HORIZ:
default:
2015-08-10 09:27:25 +10:00
sway_log(L_DEBUG, "Arranging %p horizontally", container);
2015-08-09 08:17:08 +10:00
for (i = 0; i < container->children->length; ++i) {
swayc_t *child = container->children->items[i];
double percent = child->weight / total_weight;
sway_log(L_DEBUG, "Calculating arrangement for %p:%d (will receive %.2f of %d)", child, child->type, percent, width);
child->x = x + container->x;
child->y = y + container->y;
int w = width * percent;
int h = height;
arrange_windows(child, w, h);
x += w;
}
break;
case L_VERT:
2015-08-10 09:27:25 +10:00
sway_log(L_DEBUG, "Arranging %p vertically", container);
for (i = 0; i < container->children->length; ++i) {
swayc_t *child = container->children->items[i];
double percent = child->weight / total_weight;
sway_log(L_DEBUG, "Calculating arrangement for %p:%d (will receive %.2f of %d)", child, child->type, percent, width);
child->x = x + container->x;
child->y = y + container->y;
int w = width;
int h = height * percent;
arrange_windows(child, w, h);
y += h;
}
break;
2015-08-09 08:17:08 +10:00
}
2015-08-17 15:38:34 +10:00
// Arrage floating layouts for workspaces last
if (container->type == C_WORKSPACE) {
for (i = 0; i < container->floating->length; ++i) {
swayc_t *view = container->floating->items[i];
2015-08-19 04:22:52 +10:00
if (view->type == C_VIEW) {
// Set the geometry
struct wlc_geometry geometry = {
.origin = {
.x = view->x,
.y = view->y
},
.size = {
.w = view->width,
.h = view->height
}
};
if (wlc_view_get_state(view->handle) & WLC_BIT_FULLSCREEN) {
swayc_t *parent = view;
while (parent->type != C_OUTPUT) {
parent = parent->parent;
}
geometry.origin.x = 0;
geometry.origin.y = 0;
geometry.size.w = parent->width;
geometry.size.h = parent->height;
2015-08-19 07:24:01 +10:00
wlc_view_set_geometry(view->handle, 0, &geometry);
2015-08-19 04:22:52 +10:00
wlc_view_bring_to_front(view->handle);
} else {
2015-08-19 07:24:01 +10:00
wlc_view_set_geometry(view->handle, 0, &geometry);
2015-08-19 04:22:52 +10:00
// Bring the views to the front in order of the list, the list
// will be kept up to date so that more recently focused views
// have higher indexes
// This is conditional on there not being a fullscreen view in the workspace
if (!container->focused
|| !(wlc_view_get_state(container->focused->handle) & WLC_BIT_FULLSCREEN)) {
wlc_view_bring_to_front(view->handle);
}
2015-08-17 15:38:34 +10:00
}
}
}
}
layout_log(&root_container, 0);
}
2015-08-06 22:40:16 +10:00
2015-08-09 07:44:51 +10:00
swayc_t *get_swayc_for_handle(wlc_handle handle, swayc_t *parent) {
if (parent->children == NULL) {
return NULL;
}
2015-08-17 15:38:34 +10:00
// Search for floating workspaces
2015-08-09 07:44:51 +10:00
int i;
2015-08-17 15:38:34 +10:00
if (parent->type == C_WORKSPACE) {
for (i = 0; i < parent->floating->length; ++i) {
swayc_t *child = parent->floating->items[i];
if (child->handle == handle) {
return child;
}
}
}
2015-08-09 07:44:51 +10:00
for (i = 0; i < parent->children->length; ++i) {
swayc_t *child = parent->children->items[i];
if (child->handle == handle) {
return child;
} else {
2015-08-09 07:44:51 +10:00
swayc_t *res;
if ((res = get_swayc_for_handle(handle, child))) {
return res;
}
}
}
return NULL;
}
swayc_t *get_swayc_in_direction(swayc_t *container, enum movement_direction dir) {
swayc_t *parent = container->parent;
if (dir == MOVE_PARENT) {
if (parent->type == C_OUTPUT) {
return NULL;
} else {
return parent;
}
}
while (true) {
// Test if we can even make a difference here
bool can_move = false;
int diff = 0;
if (dir == MOVE_LEFT || dir == MOVE_RIGHT) {
if (parent->layout == L_HORIZ || parent->type == C_ROOT) {
can_move = true;
diff = dir == MOVE_LEFT ? -1 : 1;
}
} else {
if (parent->layout == L_VERT) {
can_move = true;
diff = dir == MOVE_UP ? -1 : 1;
}
}
if (can_move) {
int i;
for (i = 0; i < parent->children->length; ++i) {
swayc_t *child = parent->children->items[i];
if (child == container) {
break;
}
}
int desired = i + diff;
if (desired < 0 || desired >= parent->children->length) {
can_move = false;
} else {
return parent->children->items[desired];
}
}
if (!can_move) {
container = parent;
parent = parent->parent;
if (!parent) {
// Nothing we can do
return NULL;
}
}
}
}