mirror of
https://github.com/swaywm/sway.git
synced 2025-11-02 09:01:40 -05:00
sway wl_shell
This commit is contained in:
parent
b6f4120afc
commit
59db38ce17
3 changed files with 34 additions and 2 deletions
|
|
@ -42,5 +42,6 @@ void output_add_notify(struct wl_listener *listener, void *data);
|
|||
void output_remove_notify(struct wl_listener *listener, void *data);
|
||||
|
||||
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
|
||||
void handle_wl_shell_surface(struct wl_listener *listener, void *data);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -29,9 +29,8 @@ enum sway_view_type {
|
|||
|
||||
enum sway_view_prop {
|
||||
VIEW_PROP_TITLE,
|
||||
VIEW_PROP_CLASS,
|
||||
VIEW_PROP_INSTANCE,
|
||||
VIEW_PROP_APP_ID,
|
||||
VIEW_PROP_INSTANCE,
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -46,10 +45,12 @@ struct sway_view {
|
|||
|
||||
union {
|
||||
struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6;
|
||||
struct wlr_wl_shell_surface *wlr_wl_shell_surface;
|
||||
};
|
||||
|
||||
union {
|
||||
struct sway_xdg_surface_v6 *sway_xdg_surface_v6;
|
||||
struct sway_wl_shell_surface *sway_wl_shell_surface;
|
||||
};
|
||||
|
||||
struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue