aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/wlr/types/wlr_wl_shell.h2
-rw-r--r--rootston/wl_shell.c2
-rw-r--r--types/wlr_wl_shell.c17
3 files changed, 7 insertions, 14 deletions
diff --git a/include/wlr/types/wlr_wl_shell.h b/include/wlr/types/wlr_wl_shell.h
index 29446b04..375477c7 100644
--- a/include/wlr/types/wlr_wl_shell.h
+++ b/include/wlr/types/wlr_wl_shell.h
@@ -70,7 +70,6 @@ struct wlr_wl_shell_surface {
char *class;
struct wl_listener surface_destroy_listener;
- struct wl_listener surface_commit_listener;
struct wlr_wl_shell_surface *parent;
struct wl_list popup_link;
@@ -79,7 +78,6 @@ struct wlr_wl_shell_surface {
struct {
struct wl_signal destroy;
- struct wl_signal commit;
struct wl_signal ping_timeout;
struct wl_signal request_move;
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c
index d0aad407..7f70acae 100644
--- a/rootston/wl_shell.c
+++ b/rootston/wl_shell.c
@@ -150,7 +150,7 @@ void handle_wl_shell_surface(struct wl_listener *listener, void *data) {
roots_surface->set_state.notify = handle_set_state;
wl_signal_add(&surface->events.set_state, &roots_surface->set_state);
roots_surface->surface_commit.notify = handle_surface_commit;
- wl_signal_add(&surface->events.commit, &roots_surface->surface_commit);
+ wl_signal_add(&surface->surface->events.commit, &roots_surface->surface_commit);
struct roots_view *view = calloc(1, sizeof(struct roots_view));
if (!view) {
diff --git a/types/wlr_wl_shell.c b/types/wlr_wl_shell.c
index 5476ddb6..a13717c1 100644
--- a/types/wlr_wl_shell.c
+++ b/types/wlr_wl_shell.c
@@ -418,7 +418,7 @@ static void shell_surface_destroy(struct wlr_wl_shell_surface *surface) {
wl_list_remove(&surface->link);
wl_list_remove(&surface->surface_destroy_listener.link);
- wl_list_remove(&surface->surface_commit_listener.link);
+ wlr_surface_set_role_committed(surface->surface, NULL, NULL);
wl_event_source_remove(surface->ping_timer);
free(surface->transient_state);
free(surface->title);
@@ -439,10 +439,9 @@ static void handle_wlr_surface_destroyed(struct wl_listener *listener,
wl_container_of(listener, surface, surface_destroy_listener);
shell_surface_destroy(surface);
}
-static void handle_wlr_surface_committed(struct wl_listener *listener,
- void *data) {
- struct wlr_wl_shell_surface *surface =
- wl_container_of(listener, surface, surface_commit_listener);
+static void handle_wlr_surface_committed(struct wlr_surface *wlr_surface,
+ void *role_data) {
+ struct wlr_wl_shell_surface *surface = role_data;
if (!surface->configured &&
wlr_surface_has_buffer(surface->surface) &&
surface->state != WLR_WL_SHELL_SURFACE_STATE_NONE) {
@@ -459,8 +458,6 @@ static void handle_wlr_surface_committed(struct wl_listener *listener,
surface->popup_state->seat);
shell_pointer_grab_maybe_end(&grab->pointer_grab);
}
-
- wl_signal_emit(&surface->events.commit, surface);
}
static int shell_surface_ping_timeout(void *user_data) {
@@ -511,7 +508,6 @@ static void shell_protocol_get_shell_surface(struct wl_client *client,
wl_surface->resource);
wl_signal_init(&wl_surface->events.destroy);
- wl_signal_init(&wl_surface->events.commit);
wl_signal_init(&wl_surface->events.ping_timeout);
wl_signal_init(&wl_surface->events.request_move);
wl_signal_init(&wl_surface->events.request_resize);
@@ -525,9 +521,8 @@ static void shell_protocol_get_shell_surface(struct wl_client *client,
&wl_surface->surface_destroy_listener);
wl_surface->surface_destroy_listener.notify = handle_wlr_surface_destroyed;
- wl_signal_add(&wl_surface->surface->events.commit,
- &wl_surface->surface_commit_listener);
- wl_surface->surface_commit_listener.notify = handle_wlr_surface_committed;
+ wlr_surface_set_role_committed(surface, handle_wlr_surface_committed,
+ wl_surface);
struct wl_display *display = wl_client_get_display(client);
struct wl_event_loop *loop = wl_display_get_event_loop(display);