aboutsummaryrefslogtreecommitdiff
path: root/include/sway/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/view.h')
-rw-r--r--include/sway/view.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/sway/view.h b/include/sway/view.h
index 77d451e5..22f5ccf9 100644
--- a/include/sway/view.h
+++ b/include/sway/view.h
@@ -19,6 +19,18 @@ struct sway_xdg_surface_v6 {
int pending_width, pending_height;
};
+struct sway_wl_shell_surface {
+ struct sway_view *view;
+
+ struct wl_listener commit;
+ struct wl_listener request_move;
+ struct wl_listener request_resize;
+ struct wl_listener request_maximize;
+ struct wl_listener destroy;
+
+ int pending_width, pending_height;
+};
+
enum sway_view_type {
SWAY_WL_SHELL_VIEW,
SWAY_XDG_SHELL_V6_VIEW,