struct wl_resource *resource;
struct wl_signal destroy_signal;
struct shell_client *owner;
+ struct wl_resource *owner_resource;
struct weston_surface *surface;
struct weston_view *view;
struct wl_event_source *ping_timer;
uint32_t ping_serial;
int unresponsive;
+ struct wl_list surface_list;
};
static struct desktop_shell *
if (!wl_list_empty(&shsurf->popup.grab_link))
remove_popup_grab(shsurf);
+ wl_list_remove(wl_resource_get_link(shsurf->resource));
shsurf->resource = NULL;
}
wl_resource_set_implementation(shsurf->resource,
&shell_surface_implementation,
shsurf, shell_destroy_shell_surface);
+ wl_list_init(wl_resource_get_link(shsurf->resource));
}
static bool
xdg_shell_destroy(struct wl_client *client,
struct wl_resource *resource)
{
+ struct shell_client *sc = wl_resource_get_user_data(resource);
+ struct wl_resource *shsurf_resource;
+ struct shell_surface *shsurf;
+
+ wl_resource_for_each(shsurf_resource, &sc->surface_list) {
+ shsurf = wl_resource_get_user_data(shsurf_resource);
+ if (shsurf->owner_resource == resource) {
+ wl_resource_post_error(
+ resource,
+ XDG_SHELL_ERROR_DEFUNCT_SURFACES,
+ "not all child surface objects destroyed");
+ return;
+ }
+ }
+
wl_resource_destroy(resource);
}
wl_resource_set_implementation(shsurf->resource,
&xdg_surface_implementation,
shsurf, shell_destroy_shell_surface);
+ shsurf->owner_resource = resource;
+ wl_list_insert(&sc->surface_list,
+ wl_resource_get_link(shsurf->resource));
}
static bool
wl_resource_set_implementation(shsurf->resource,
&xdg_popup_implementation,
shsurf, shell_destroy_shell_surface);
+ shsurf->owner_resource = resource;
+ wl_list_insert(&sc->surface_list,
+ wl_resource_get_link(shsurf->resource));
}
static void
sc->shell = shell;
sc->destroy_listener.notify = handle_shell_client_destroy;
wl_client_add_destroy_listener(client, &sc->destroy_listener);
+ wl_list_init(&sc->surface_list);
return sc;
}
<enum name="error">
<entry name="role" value="0" summary="given wl_surface has another role"/>
+ <entry name="defunct_surfaces" value="1" summary="xdg_shell was destroyed before children"/>
</enum>
<request name="destroy" type="destructor">
Destroy this xdg_shell object.
Destroying a bound xdg_shell object while there are surfaces
- still alive with roles from this interface is illegal and will
- result in a protocol error. Make sure to destroy all surfaces
- before destroying this object.
+ still alive created by this xdg_shell object instance is illegal
+ and will result in a protocol error.
</description>
</request>