mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
touch: document event data types
This commit is contained in:
parent
bcbdee43f7
commit
1b4fb4b537
1 changed files with 4 additions and 4 deletions
|
|
@ -18,10 +18,10 @@ struct wlr_touch {
|
||||||
const struct wlr_touch_impl *impl;
|
const struct wlr_touch_impl *impl;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
struct wl_signal down;
|
struct wl_signal down; // struct wlr_event_touch_down
|
||||||
struct wl_signal up;
|
struct wl_signal up; // struct wlr_event_touch_up
|
||||||
struct wl_signal motion;
|
struct wl_signal motion; // struct wlr_event_touch_motion
|
||||||
struct wl_signal cancel;
|
struct wl_signal cancel; // struct wlr_event_touch_cancel
|
||||||
} events;
|
} events;
|
||||||
|
|
||||||
void *data;
|
void *data;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue