switch: add docs

This commit is contained in:
Simon Ser 2024-02-02 13:22:31 +01:00
parent 967e788bc8
commit a8aeadeab2
1 changed files with 7 additions and 1 deletions

View File

@ -15,13 +15,19 @@
struct wlr_switch_impl;
/**
* A switch input device. Typically a switch input device can indicate whether
* a laptop lid is opened or closed, or whether tablet mode is enabled.
*
* See https://wayland.freedesktop.org/libinput/doc/latest/switches.html
*/
struct wlr_switch {
struct wlr_input_device base;
const struct wlr_switch_impl *impl;
struct {
struct wl_signal toggle;
struct wl_signal toggle; // struct wlr_switch_toggle_event
} events;
void *data;