This commit is contained in:
novenary 2024-01-13 13:23:10 -05:00 committed by GitHub
commit 1026936f2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 33 additions and 0 deletions

View file

@ -44,6 +44,7 @@ struct sway_view_impl {
void (*set_tiled)(struct sway_view *view, bool tiled);
void (*set_fullscreen)(struct sway_view *view, bool fullscreen);
void (*set_resizing)(struct sway_view *view, bool resizing);
void (*set_withdrawn)(struct sway_view *view, bool withdrawn);
bool (*wants_floating)(struct sway_view *view);
void (*for_each_surface)(struct sway_view *view,
wlr_surface_iterator_func_t iterator, void *user_data);
@ -371,6 +372,8 @@ bool view_is_visible(struct sway_view *view);
void view_set_urgent(struct sway_view *view, bool enable);
void view_set_withdrawn(struct sway_view *view, bool withdrawn);
bool view_is_urgent(struct sway_view *view);
void view_remove_saved_buffer(struct sway_view *view);