mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-21 20:35:58 +01:00
tablet-tool: document event data
This commit is contained in:
parent
5a5aa72571
commit
873e8e4558
1 changed files with 4 additions and 5 deletions
|
@ -34,7 +34,6 @@ enum wlr_tablet_tool_type {
|
|||
WLR_TABLET_TOOL_TYPE_LENS,
|
||||
/** A rotary device with positional and rotation data */
|
||||
WLR_TABLET_TOOL_TYPE_TOTEM,
|
||||
|
||||
};
|
||||
|
||||
struct wlr_tablet_tool {
|
||||
|
@ -68,10 +67,10 @@ struct wlr_tablet {
|
|||
double width_mm, height_mm;
|
||||
|
||||
struct {
|
||||
struct wl_signal axis;
|
||||
struct wl_signal proximity;
|
||||
struct wl_signal tip;
|
||||
struct wl_signal button;
|
||||
struct wl_signal axis; // struct wlr_tablet_tool_axis_event
|
||||
struct wl_signal proximity; // struct wlr_tablet_tool_proximity_event
|
||||
struct wl_signal tip; // struct wlr_tablet_tool_tip_event
|
||||
struct wl_signal button; // struct wlr_tablet_tool_button_event
|
||||
} events;
|
||||
|
||||
struct wl_array paths; // char *
|
||||
|
|
Loading…
Reference in a new issue