diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-04-06 10:26:32 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-04-06 10:26:32 -0400 |
| commit | 8adb0a8532eccd0020480e33df9740593a7194c9 (patch) | |
| tree | 4323a9130346ca4d836b0ae70c03877e13310bfc /include | |
| parent | cd0ed7a5955813449c001280d16ad8eed6dd8f70 (diff) | |
Send surface enter/leave events to view children
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/tree/view.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index 6b2d279e..611c4f0b 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -28,6 +28,8 @@ struct sway_view_impl { void (*configure)(struct sway_view *view, double ox, double oy, int width, int height); void (*set_activated)(struct sway_view *view, bool activated); + void (*for_each_surface)(struct sway_view *view, + wlr_surface_iterator_func_t iterator, void *user_data); void (*close)(struct sway_view *view); void (*destroy)(struct sway_view *view); }; @@ -159,6 +161,9 @@ void view_damage_whole(struct sway_view *view); void view_damage_from(struct sway_view *view); +void view_for_each_surface(struct sway_view *view, + wlr_surface_iterator_func_t iterator, void *user_data); + // view implementation void view_init(struct sway_view *view, enum sway_view_type type, |
