mirror of
https://github.com/swaywm/sway.git
synced 2024-11-27 02:11:28 +00:00
Fix issues @orestisf1993 raised
This commit is contained in:
parent
b5baa78dc3
commit
cd6e3182fa
|
@ -34,12 +34,12 @@ static int draw_container(cairo_t *cairo, struct sway_container *container,
|
||||||
struct sway_container *focus, int x, int y) {
|
struct sway_container *focus, int x, int y) {
|
||||||
int text_width, text_height;
|
int text_width, text_height;
|
||||||
get_text_size(cairo, "monospace", &text_width, &text_height,
|
get_text_size(cairo, "monospace", &text_width, &text_height,
|
||||||
1, false, "%s '%s' %s %dx%d@%d,%d",
|
1, false, "%s id:%zd '%s' %s %dx%d@%d,%d",
|
||||||
container_type_to_str(container->type), container->name,
|
container_type_to_str(container->type), container->id, container->name,
|
||||||
layout_to_str(container->layout),
|
layout_to_str(container->layout),
|
||||||
container->width, container->height, container->x, container->y);
|
container->width, container->height, container->x, container->y);
|
||||||
cairo_rectangle(cairo, x, y, text_width, text_height);
|
cairo_rectangle(cairo, x, y, text_width, text_height);
|
||||||
cairo_set_source_u32(cairo, 0xFFFFFFFF);
|
cairo_set_source_u32(cairo, 0xFFFFFFE0);
|
||||||
cairo_fill(cairo);
|
cairo_fill(cairo);
|
||||||
cairo_move_to(cairo, x, y);
|
cairo_move_to(cairo, x, y);
|
||||||
if (focus == container) {
|
if (focus == container) {
|
||||||
|
@ -47,8 +47,8 @@ static int draw_container(cairo_t *cairo, struct sway_container *container,
|
||||||
} else {
|
} else {
|
||||||
cairo_set_source_u32(cairo, 0x000000FF);
|
cairo_set_source_u32(cairo, 0x000000FF);
|
||||||
}
|
}
|
||||||
pango_printf(cairo, "monospace", 1, false, "%s '%s' %s %dx%d@%d,%d",
|
pango_printf(cairo, "monospace", 1, false, "%s id:%zd '%s' %s %dx%d@%d,%d",
|
||||||
container_type_to_str(container->type), container->name,
|
container_type_to_str(container->type), container->id, container->name,
|
||||||
layout_to_str(container->layout),
|
layout_to_str(container->layout),
|
||||||
container->width, container->height, container->x, container->y);
|
container->width, container->height, container->x, container->y);
|
||||||
int height = text_height;
|
int height = text_height;
|
||||||
|
|
|
@ -381,53 +381,61 @@ void container_move(struct sway_container *container,
|
||||||
int index = index_child(container);
|
int index = index_child(container);
|
||||||
struct sway_container *old_parent = container->parent;
|
struct sway_container *old_parent = container->parent;
|
||||||
|
|
||||||
switch (sibling->type) {
|
while (sibling) {
|
||||||
case C_VIEW:
|
switch (sibling->type) {
|
||||||
if (sibling->parent == container->parent) {
|
case C_VIEW:
|
||||||
wlr_log(L_DEBUG, "Swapping siblings");
|
if (sibling->parent == container->parent) {
|
||||||
sibling->parent->children->items[index + offs] = container;
|
wlr_log(L_DEBUG, "Swapping siblings");
|
||||||
sibling->parent->children->items[index] = sibling;
|
sibling->parent->children->items[index + offs] = container;
|
||||||
arrange_windows(sibling->parent, -1, -1);
|
sibling->parent->children->items[index] = sibling;
|
||||||
} else {
|
arrange_windows(sibling->parent, -1, -1);
|
||||||
wlr_log(L_DEBUG, "Promoting to sibling of cousin");
|
|
||||||
container_insert_child(sibling->parent, container,
|
|
||||||
index_child(sibling) + (offs > 0 ? 0 : 1));
|
|
||||||
container->width = container->height = 0;
|
|
||||||
arrange_windows(sibling->parent, -1, -1);
|
|
||||||
arrange_windows(old_parent, -1, -1);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case C_WORKSPACE: // Note: only in the case of moving between outputs
|
|
||||||
case C_CONTAINER:
|
|
||||||
if (is_parallel(sibling->layout, move_dir)) {
|
|
||||||
int limit = container_limit(sibling, move_dir);
|
|
||||||
wlr_log(L_DEBUG, "Reparenting container (paralell)");
|
|
||||||
limit = limit != 0 ? limit + 1 : limit; // Convert to index
|
|
||||||
container_insert_child(sibling, container, limit);
|
|
||||||
container->width = container->height = 0;
|
|
||||||
arrange_windows(sibling, -1, -1);
|
|
||||||
arrange_windows(old_parent, -1, -1);
|
|
||||||
} else {
|
|
||||||
wlr_log(L_DEBUG, "Reparenting container (perpendicular)");
|
|
||||||
container_remove_child(container);
|
|
||||||
struct sway_container *focus_inactive = seat_get_focus_inactive(
|
|
||||||
config->handler_context.seat, sibling);
|
|
||||||
if (focus_inactive) {
|
|
||||||
container_add_sibling(focus_inactive, container);
|
|
||||||
} else if (sibling->children->length) {
|
|
||||||
container_add_sibling(sibling->children->items[0], container);
|
|
||||||
} else {
|
} else {
|
||||||
container_add_child(sibling, container);
|
wlr_log(L_DEBUG, "Promoting to sibling of cousin");
|
||||||
|
container_insert_child(sibling->parent, container,
|
||||||
|
index_child(sibling) + (offs > 0 ? 0 : 1));
|
||||||
|
container->width = container->height = 0;
|
||||||
|
arrange_windows(sibling->parent, -1, -1);
|
||||||
|
arrange_windows(old_parent, -1, -1);
|
||||||
}
|
}
|
||||||
container->width = container->height = 0;
|
sibling = NULL;
|
||||||
arrange_windows(sibling, -1, -1);
|
break;
|
||||||
arrange_windows(old_parent, -1, -1);
|
case C_WORKSPACE: // Note: only in the case of moving between outputs
|
||||||
|
case C_CONTAINER:
|
||||||
|
if (is_parallel(sibling->layout, move_dir)) {
|
||||||
|
int limit = container_limit(sibling, move_dir);
|
||||||
|
wlr_log(L_DEBUG, "Reparenting container (paralell)");
|
||||||
|
limit = limit != 0 ? limit + 1 : limit; // Convert to index
|
||||||
|
container_insert_child(sibling, container, limit);
|
||||||
|
container->width = container->height = 0;
|
||||||
|
arrange_windows(sibling, -1, -1);
|
||||||
|
arrange_windows(old_parent, -1, -1);
|
||||||
|
sibling = NULL;
|
||||||
|
} else {
|
||||||
|
wlr_log(L_DEBUG, "Reparenting container (perpendicular)");
|
||||||
|
container_remove_child(container);
|
||||||
|
struct sway_container *focus_inactive = seat_get_focus_inactive(
|
||||||
|
config->handler_context.seat, sibling);
|
||||||
|
wlr_log(L_DEBUG, "Focus inactive: %zd", focus_inactive ?
|
||||||
|
focus_inactive->id : 0);
|
||||||
|
if (focus_inactive) {
|
||||||
|
sibling = focus_inactive;
|
||||||
|
continue;
|
||||||
|
} else if (sibling->children->length) {
|
||||||
|
container_add_sibling(sibling->children->items[0], container);
|
||||||
|
} else {
|
||||||
|
container_add_child(sibling, container);
|
||||||
|
}
|
||||||
|
container->width = container->height = 0;
|
||||||
|
arrange_windows(sibling, -1, -1);
|
||||||
|
arrange_windows(old_parent, -1, -1);
|
||||||
|
sibling = NULL;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
sway_assert(0, "Not expecting to see container of type %s here",
|
||||||
|
container_type_to_str(sibling->type));
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
default:
|
|
||||||
sway_assert(0, "Not expecting to see container of type %s here",
|
|
||||||
container_type_to_str(sibling->type));
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (old_parent) {
|
if (old_parent) {
|
||||||
|
|
Loading…
Reference in a new issue