diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-05-20 23:47:05 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-05-20 23:47:05 +0200 |
| commit | 81f1439aa20b35ae1016282bb994490cec6a1f0e (patch) | |
| tree | 22fd37fe1a67150f4978a3e8f1d21614655039c8 /include | |
| parent | 1bf001eae4fa6b4b2d6ca0e5603e7b52765866e3 (diff) | |
Implement wlr-output-management-v1
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/output.h | 4 | ||||
| -rw-r--r-- | include/sway/server.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/sway/output.h b/include/sway/output.h index d4438c0e..3d430ea2 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -154,4 +154,8 @@ void scale_box(struct wlr_box *box, float scale); enum wlr_direction opposite_direction(enum wlr_direction d); +void handle_output_manager_apply(struct wl_listener *listener, void *data); + +void handle_output_manager_test(struct wl_listener *listener, void *data); + #endif diff --git a/include/sway/server.h b/include/sway/server.h index 39cf4f18..fd613bb6 100644 --- a/include/sway/server.h +++ b/include/sway/server.h @@ -8,6 +8,7 @@ #include <wlr/types/wlr_compositor.h> #include <wlr/types/wlr_data_device.h> #include <wlr/types/wlr_layer_shell_v1.h> +#include <wlr/types/wlr_output_management_v1.h> #include <wlr/types/wlr_presentation_time.h> #include <wlr/types/wlr_relative_pointer_v1.h> #include <wlr/types/wlr_server_decoration.h> @@ -67,6 +68,10 @@ struct sway_server { struct wlr_pointer_constraints_v1 *pointer_constraints; struct wl_listener pointer_constraint; + struct wlr_output_manager_v1 *output_manager_v1; + struct wl_listener output_manager_apply; + struct wl_listener output_manager_test; + size_t txn_timeout_ms; list_t *transactions; list_t *dirty_nodes; |
