diff options
Diffstat (limited to 'include/sway/view.h')
-rw-r--r-- | include/sway/view.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/sway/view.h b/include/sway/view.h index 08c5480b..ac33e11a 100644 --- a/include/sway/view.h +++ b/include/sway/view.h @@ -92,10 +92,27 @@ struct sway_view { void (*set_position)(struct sway_view *view, double ox, double oy); void (*set_activated)(struct sway_view *view, bool activated); + void (*close)(struct sway_view *view); } iface; // only used for unmanaged views (shell specific) struct wl_list unmanaged_view_link; // sway_root::unmanaged views }; +const char *view_get_title(struct sway_view *view); + +const char *view_get_app_id(struct sway_view *view); + +const char *view_get_class(struct sway_view *view); + +const char *view_get_instance(struct sway_view *view); + +void view_set_size(struct sway_view *view, int width, int height); + +void view_set_position(struct sway_view *view, double ox, double oy); + +void view_set_activated(struct sway_view *view, bool activated); + +void view_close(struct sway_view *view); + #endif |