mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
subsurface handle parent destroy
This commit is contained in:
parent
4c1bd9bde8
commit
8b7ae61ad4
2 changed files with 29 additions and 4 deletions
|
@ -52,6 +52,8 @@ struct wlr_subsurface {
|
|||
|
||||
struct wl_list parent_link;
|
||||
struct wl_list parent_pending_link;
|
||||
|
||||
struct wl_listener parent_destroy_listener;
|
||||
};
|
||||
|
||||
struct wlr_surface {
|
||||
|
|
|
@ -537,7 +537,13 @@ static void wlr_surface_state_destroy(struct wlr_surface_state *state) {
|
|||
|
||||
void wlr_subsurface_destroy(struct wlr_subsurface *subsurface) {
|
||||
wlr_surface_state_destroy(subsurface->cached);
|
||||
|
||||
if (subsurface->parent) {
|
||||
wl_list_remove(&subsurface->parent_link);
|
||||
wl_list_remove(&subsurface->parent_pending_link);
|
||||
wl_list_remove(&subsurface->parent_destroy_listener.link);
|
||||
}
|
||||
|
||||
wl_resource_set_user_data(subsurface->resource, NULL);
|
||||
if (subsurface->surface) {
|
||||
subsurface->surface->subsurface = NULL;
|
||||
|
@ -742,6 +748,16 @@ static const struct wl_subsurface_interface subsurface_implementation = {
|
|||
.set_desync = subsurface_set_desync,
|
||||
};
|
||||
|
||||
static void subsurface_handle_parent_destroy(struct wl_listener *listener,
|
||||
void *data) {
|
||||
struct wlr_subsurface *subsurface =
|
||||
wl_container_of(listener, subsurface, parent_destroy_listener);
|
||||
wl_list_remove(&subsurface->parent_link);
|
||||
wl_list_remove(&subsurface->parent_pending_link);
|
||||
wl_list_remove(&subsurface->parent_destroy_listener.link);
|
||||
subsurface->parent = NULL;
|
||||
}
|
||||
|
||||
void wlr_surface_make_subsurface(struct wlr_surface *surface,
|
||||
struct wlr_surface *parent, uint32_t id) {
|
||||
assert(surface->subsurface == NULL);
|
||||
|
@ -752,11 +768,18 @@ void wlr_surface_make_subsurface(struct wlr_surface *surface,
|
|||
return;
|
||||
}
|
||||
subsurface->cached = wlr_surface_state_create();
|
||||
|
||||
subsurface->surface = surface;
|
||||
subsurface->parent = parent;
|
||||
subsurface->synchronized = true;
|
||||
subsurface->surface = surface;
|
||||
|
||||
// link parent
|
||||
subsurface->parent = parent;
|
||||
wl_signal_add(&parent->signals.destroy,
|
||||
&subsurface->parent_destroy_listener);
|
||||
subsurface->parent_destroy_listener.notify =
|
||||
subsurface_handle_parent_destroy;
|
||||
wl_list_insert(&parent->subsurface_list, &subsurface->parent_link);
|
||||
wl_list_insert(&parent->subsurface_pending_list,
|
||||
&subsurface->parent_pending_link);
|
||||
|
||||
struct wl_client *client = wl_resource_get_client(surface->resource);
|
||||
|
||||
|
|
Loading…
Reference in a new issue