update to newest zext-workspace

This commit is contained in:
Ilia Bozhinov 2021-02-23 21:24:19 +01:00
parent ebcad3604c
commit 4aab5f8bb0
4 changed files with 120 additions and 51 deletions

View file

@ -40,12 +40,19 @@ struct wlr_ext_workspace_group_handle_v1 {
struct wlr_ext_workspace_manager_v1 *manager;
struct {
// wlr_ext_workspace_group_handle_v1_create_workspace_event
struct wl_signal create_workspace_request;
struct wl_signal destroy;
} events;
void *data;
};
struct wlr_ext_workspace_group_handle_v1_create_workspace_event {
struct wlr_ext_workspace_group_handle_v1 *workspace_group;
const char *name;
};
struct wlr_ext_workspace_group_handle_v1_output {
struct wl_list link; // wlr_ext_workspace_group_handle_v1::outputs
struct wl_listener output_destroy;
@ -77,6 +84,7 @@ struct wlr_ext_workspace_handle_v1 {
struct wl_array coordinates;
struct {
struct wl_signal remove_request;
struct wl_signal destroy;
} events;