mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-24 06:59:45 -05:00
Add wl_shell support for maximized views
This commit is contained in:
parent
758514fe5d
commit
26dadacb71
5 changed files with 36 additions and 10 deletions
|
|
@ -11,9 +11,10 @@ struct roots_wl_shell_surface {
|
|||
|
||||
// TODO: Maybe destroy listener should go in roots_view
|
||||
struct wl_listener destroy;
|
||||
struct wl_listener ping_timeout;
|
||||
struct wl_listener request_move;
|
||||
struct wl_listener request_resize;
|
||||
struct wl_listener request_set_maximized;
|
||||
struct wl_listener set_state;
|
||||
|
||||
struct wl_listener surface_commit;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -42,6 +42,8 @@ struct wlr_wl_shell_popup_grab {
|
|||
enum wlr_wl_shell_surface_state {
|
||||
WLR_WL_SHELL_SURFACE_STATE_NONE,
|
||||
WLR_WL_SHELL_SURFACE_STATE_TOPLEVEL,
|
||||
WLR_WL_SHELL_SURFACE_STATE_MAXIMIZED,
|
||||
WLR_WL_SHELL_SURFACE_STATE_FULLSCREEN,
|
||||
WLR_WL_SHELL_SURFACE_STATE_TRANSIENT,
|
||||
WLR_WL_SHELL_SURFACE_STATE_POPUP,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue