diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-03 10:50:16 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-04-03 14:06:52 -0400 |
commit | ef4e833f13e69dced02a169225528f548c98b3f8 (patch) | |
tree | e533f0351976a49b215a10d6eb33a2af242ca6b1 /include/wlr | |
parent | d88f3c1eb33df8df5649177660ae3b9f51d5921a (diff) |
Add wlr_input_inhibitor
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_input_inhibitor.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_input_inhibitor.h b/include/wlr/types/wlr_input_inhibitor.h new file mode 100644 index 00000000..4416c18f --- /dev/null +++ b/include/wlr/types/wlr_input_inhibitor.h @@ -0,0 +1,25 @@ +#ifndef WLR_TYPES_INPUT_INHIBITOR_H +#define WLR_TYPES_INPUT_INHIBITOR_H +#include <wayland-server.h> + +struct wlr_input_inhibit_manager { + struct wl_global *wl_global; + struct wl_client *active_client; + struct wl_resource *active_inhibitor; + + struct wl_listener display_destroy; + + struct { + struct wl_signal activate; // struct wlr_input_inhibit_manager * + struct wl_signal deactivate; // struct wlr_input_inhibit_manager * + } events; + + void *data; +}; + +struct wlr_input_inhibit_manager *wlr_input_inhibit_manager_create( + struct wl_display *display); +void wlr_input_inhibit_manager_destroy( + struct wlr_input_inhibit_manager *manager); + +#endif |