diff options
author | emersion <contact@emersion.fr> | 2019-03-08 16:14:30 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-04-11 09:19:57 -0600 |
commit | 54d6ba78c33b15480c75025f15893f006a2ca5d1 (patch) | |
tree | 8e69f31aadad5165647f33d90abac4e12798041e /include/rootston | |
parent | e873c652bfc6847153d5e43dcab00a66bd0ceb4d (diff) |
rootston: add output-management-v1 support
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/desktop.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/rootston/desktop.h b/include/rootston/desktop.h index 81faba81..fdd3abe0 100644 --- a/include/rootston/desktop.h +++ b/include/rootston/desktop.h @@ -7,6 +7,7 @@ #include <wlr/types/wlr_foreign_toplevel_management_v1.h> #include <wlr/types/wlr_gamma_control_v1.h> #include <wlr/types/wlr_gamma_control.h> +#include <wlr/types/wlr_gtk_primary_selection.h> #include <wlr/types/wlr_idle_inhibit_v1.h> #include <wlr/types/wlr_idle.h> #include <wlr/types/wlr_input_inhibitor.h> @@ -14,10 +15,10 @@ #include <wlr/types/wlr_layer_shell_v1.h> #include <wlr/types/wlr_list.h> #include <wlr/types/wlr_output_layout.h> +#include <wlr/types/wlr_output_management_v1.h> #include <wlr/types/wlr_output.h> #include <wlr/types/wlr_pointer_gestures_v1.h> #include <wlr/types/wlr_presentation_time.h> -#include <wlr/types/wlr_gtk_primary_selection.h> #include <wlr/types/wlr_relative_pointer_v1.h> #include <wlr/types/wlr_screencopy_v1.h> #include <wlr/types/wlr_screenshooter.h> @@ -69,6 +70,7 @@ struct roots_desktop { struct wlr_foreign_toplevel_manager_v1 *foreign_toplevel_manager_v1; struct wlr_relative_pointer_manager_v1 *relative_pointer_manager; struct wlr_pointer_gestures_v1 *pointer_gestures; + struct wlr_output_manager_v1 *output_manager_v1; struct wl_listener new_output; struct wl_listener layout_change; @@ -81,6 +83,8 @@ struct roots_desktop { struct wl_listener input_inhibit_deactivate; struct wl_listener virtual_keyboard_new; struct wl_listener pointer_constraint; + struct wl_listener output_manager_apply; + struct wl_listener output_manager_test; #if WLR_HAS_XWAYLAND struct wlr_xwayland *xwayland; |