mirror of
https://github.com/swaywm/sway
synced 2024-11-18 23:14:03 +01:00
Damage borders when damaging view
This commit is contained in:
parent
98f7ee8f59
commit
bec80f1551
@ -37,8 +37,8 @@ void output_damage_whole(struct sway_output *output);
|
||||
void output_damage_surface(struct sway_output *output, double ox, double oy,
|
||||
struct wlr_surface *surface, bool whole);
|
||||
|
||||
void output_damage_view(struct sway_output *output, struct sway_view *view,
|
||||
bool whole);
|
||||
void output_damage_from_view(struct sway_output *output,
|
||||
struct sway_view *view);
|
||||
|
||||
void output_damage_whole_container(struct sway_output *output,
|
||||
struct sway_container *con);
|
||||
|
@ -184,7 +184,7 @@ void view_set_fullscreen(struct sway_view *view, bool fullscreen);
|
||||
|
||||
void view_close(struct sway_view *view);
|
||||
|
||||
void view_damage(struct sway_view *view, bool whole);
|
||||
void view_damage_from(struct sway_view *view);
|
||||
|
||||
void view_for_each_surface(struct sway_view *view,
|
||||
wlr_surface_iterator_func_t iterator, void *user_data);
|
||||
|
@ -784,8 +784,8 @@ void output_damage_surface(struct sway_output *output, double ox, double oy,
|
||||
damage_surface_iterator, &data);
|
||||
}
|
||||
|
||||
void output_damage_view(struct sway_output *output, struct sway_view *view,
|
||||
bool whole) {
|
||||
static void output_damage_view(struct sway_output *output,
|
||||
struct sway_view *view, bool whole) {
|
||||
if (!sway_assert(view->swayc != NULL, "expected a view in the tree")) {
|
||||
return;
|
||||
}
|
||||
@ -805,6 +805,11 @@ void output_damage_view(struct sway_output *output, struct sway_view *view,
|
||||
damage_surface_iterator, &data);
|
||||
}
|
||||
|
||||
void output_damage_from_view(struct sway_output *output,
|
||||
struct sway_view *view) {
|
||||
output_damage_view(output, view, false);
|
||||
}
|
||||
|
||||
static void output_damage_whole_container_iterator(struct sway_container *con,
|
||||
void *data) {
|
||||
struct sway_output *output = data;
|
||||
@ -827,8 +832,12 @@ void output_damage_whole_container(struct sway_output *output,
|
||||
};
|
||||
wlr_output_damage_add_box(output->damage, &box);
|
||||
|
||||
container_descendants(con, C_VIEW, output_damage_whole_container_iterator,
|
||||
output);
|
||||
if (con->type == C_VIEW) {
|
||||
output_damage_whole_container_iterator(con, output);
|
||||
} else {
|
||||
container_descendants(con, C_VIEW,
|
||||
output_damage_whole_container_iterator, output);
|
||||
}
|
||||
}
|
||||
|
||||
static void damage_handle_destroy(struct wl_listener *listener, void *data) {
|
||||
|
@ -85,7 +85,7 @@ static void handle_commit(struct wl_listener *listener, void *data) {
|
||||
// TODO: Let floating views do whatever
|
||||
view_update_size(view, wl_shell_view->pending_width,
|
||||
wl_shell_view->pending_height);
|
||||
view_damage(view, false);
|
||||
view_damage_from(view);
|
||||
}
|
||||
|
||||
static void handle_destroy(struct wl_listener *listener, void *data) {
|
||||
|
@ -177,7 +177,7 @@ static void handle_commit(struct wl_listener *listener, void *data) {
|
||||
view_update_size(view, xdg_shell_v6_view->pending_width,
|
||||
xdg_shell_v6_view->pending_height);
|
||||
view_update_title(view, false);
|
||||
view_damage(view, false);
|
||||
view_damage_from(view);
|
||||
}
|
||||
|
||||
static void handle_new_popup(struct wl_listener *listener, void *data) {
|
||||
|
@ -222,7 +222,7 @@ static void handle_commit(struct wl_listener *listener, void *data) {
|
||||
// TODO: Let floating views do whatever
|
||||
view_update_size(view, xwayland_view->pending_width,
|
||||
xwayland_view->pending_height);
|
||||
view_damage(view, false);
|
||||
view_damage_from(view);
|
||||
view_update_title(view, false);
|
||||
}
|
||||
|
||||
|
@ -547,12 +547,13 @@ bool container_has_child(struct sway_container *con,
|
||||
return container_find(con, find_child_func, child);
|
||||
}
|
||||
|
||||
void container_damage_whole(struct sway_container *con) {
|
||||
struct sway_container *output = con;
|
||||
if (output->type != C_OUTPUT) {
|
||||
output = container_parent(output, C_OUTPUT);
|
||||
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);
|
||||
}
|
||||
}
|
||||
output_damage_whole_container(output->sway_output, con);
|
||||
}
|
||||
|
||||
static void update_title_texture(struct sway_container *con,
|
||||
|
@ -199,11 +199,11 @@ void view_close(struct sway_view *view) {
|
||||
}
|
||||
}
|
||||
|
||||
void view_damage(struct sway_view *view, bool whole) {
|
||||
void view_damage_from(struct sway_view *view) {
|
||||
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_view(cont->sway_output, view, whole);
|
||||
output_damage_from_view(cont->sway_output, view);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -333,7 +333,7 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {
|
||||
arrange_children_of(cont->parent);
|
||||
input_manager_set_focus(input_manager, cont);
|
||||
|
||||
view_damage(view, true);
|
||||
container_damage_whole(cont);
|
||||
view_handle_container_reparent(&view->container_reparent, NULL);
|
||||
|
||||
view_execute_criteria(view);
|
||||
@ -351,7 +351,7 @@ void view_unmap(struct sway_view *view) {
|
||||
ws->sway_workspace->fullscreen = NULL;
|
||||
}
|
||||
|
||||
view_damage(view, true);
|
||||
container_damage_whole(view->swayc);
|
||||
|
||||
wl_list_remove(&view->surface_new_subsurface.link);
|
||||
wl_list_remove(&view->container_reparent.link);
|
||||
@ -380,10 +380,10 @@ void view_update_position(struct sway_view *view, double ox, double oy) {
|
||||
|
||||
// TODO: Only allow this if the view is floating (this function will only be
|
||||
// called in response to wayland clients wanting to reposition themselves).
|
||||
view_damage(view, true);
|
||||
container_damage_whole(view->swayc);
|
||||
view->swayc->x = ox;
|
||||
view->swayc->y = oy;
|
||||
view_damage(view, true);
|
||||
container_damage_whole(view->swayc);
|
||||
}
|
||||
|
||||
void view_update_size(struct sway_view *view, int width, int height) {
|
||||
@ -391,11 +391,11 @@ void view_update_size(struct sway_view *view, int width, int height) {
|
||||
return;
|
||||
}
|
||||
|
||||
view_damage(view, true);
|
||||
container_damage_whole(view->swayc);
|
||||
// Should we update the swayc width/height here too?
|
||||
view->width = width;
|
||||
view->height = height;
|
||||
view_damage(view, true);
|
||||
container_damage_whole(view->swayc);
|
||||
}
|
||||
|
||||
|
||||
@ -414,7 +414,7 @@ static void view_child_handle_surface_commit(struct wl_listener *listener,
|
||||
struct sway_view_child *child =
|
||||
wl_container_of(listener, child, surface_commit);
|
||||
// TODO: only accumulate damage from the child
|
||||
view_damage(child->view, false);
|
||||
view_damage_from(child->view);
|
||||
}
|
||||
|
||||
static void view_child_handle_surface_new_subsurface(
|
||||
@ -476,12 +476,16 @@ void view_child_init(struct sway_view_child *child,
|
||||
view_init_subsurfaces(child->view, surface);
|
||||
|
||||
// TODO: only damage the whole child
|
||||
view_damage(child->view, true);
|
||||
if (child->view->swayc) {
|
||||
container_damage_whole(child->view->swayc);
|
||||
}
|
||||
}
|
||||
|
||||
void view_child_destroy(struct sway_view_child *child) {
|
||||
// TODO: only damage the whole child
|
||||
view_damage(child->view, true);
|
||||
if (child->view->swayc) {
|
||||
container_damage_whole(child->view->swayc);
|
||||
}
|
||||
|
||||
wl_list_remove(&child->surface_commit.link);
|
||||
wl_list_remove(&child->surface_destroy.link);
|
||||
|
Loading…
Reference in New Issue
Block a user