summaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 028be536..eed3d13d 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -206,6 +206,7 @@ struct sway_xwayland_unmanaged {
206struct sway_view_child; 206struct sway_view_child;
207 207
208struct sway_view_child_impl { 208struct sway_view_child_impl {
209 void (*get_root_coords)(struct sway_view_child *child, int *sx, int *sy);
209 void (*destroy)(struct sway_view_child *child); 210 void (*destroy)(struct sway_view_child *child);
210}; 211};
211 212
@@ -220,6 +221,8 @@ struct sway_view_child {
220 221
221 struct wl_listener surface_commit; 222 struct wl_listener surface_commit;
222 struct wl_listener surface_new_subsurface; 223 struct wl_listener surface_new_subsurface;
224 struct wl_listener surface_map;
225 struct wl_listener surface_unmap;
223 struct wl_listener surface_destroy; 226 struct wl_listener surface_destroy;
224 struct wl_listener view_unmap; 227 struct wl_listener view_unmap;
225}; 228};