mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
switch: add docs
This commit is contained in:
parent
967e788bc8
commit
a8aeadeab2
1 changed files with 7 additions and 1 deletions
|
@ -15,13 +15,19 @@
|
||||||
|
|
||||||
struct wlr_switch_impl;
|
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_switch {
|
||||||
struct wlr_input_device base;
|
struct wlr_input_device base;
|
||||||
|
|
||||||
const struct wlr_switch_impl *impl;
|
const struct wlr_switch_impl *impl;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
struct wl_signal toggle;
|
struct wl_signal toggle; // struct wlr_switch_toggle_event
|
||||||
} events;
|
} events;
|
||||||
|
|
||||||
void *data;
|
void *data;
|
||||||
|
|
Loading…
Reference in a new issue