diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/tree/view.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index eb1e98e1..870ef2e0 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -208,6 +208,7 @@ struct sway_xwayland_unmanaged { struct sway_view_child; struct sway_view_child_impl { + void (*get_root_coords)(struct sway_view_child *child, int *sx, int *sy); void (*destroy)(struct sway_view_child *child); }; @@ -222,6 +223,8 @@ struct sway_view_child { struct wl_listener surface_commit; struct wl_listener surface_new_subsurface; + struct wl_listener surface_map; + struct wl_listener surface_unmap; struct wl_listener surface_destroy; struct wl_listener view_unmap; }; |