xdg_shell: Extract struct for popup descriptor

This commit is contained in:
Alexander Orzechowski 2024-01-23 10:17:26 -05:00 committed by Kirill Primak
parent 1dc661af17
commit 1846944f04
4 changed files with 15 additions and 7 deletions

View file

@ -177,6 +177,11 @@ struct sway_xwayland_unmanaged {
};
#endif
struct sway_popup_desc {
struct wlr_scene_node *relative;
struct sway_view *view;
};
struct sway_xdg_popup {
struct sway_view *view;
@ -184,6 +189,8 @@ struct sway_xdg_popup {
struct wlr_scene_tree *xdg_surface_tree;
struct wlr_xdg_popup *wlr_xdg_popup;
struct sway_popup_desc desc;
struct wl_listener surface_commit;
struct wl_listener new_popup;
struct wl_listener destroy;