mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-02-05 04:06:11 -05:00
wlr_cursor: add comments for signal parameters
This commit is contained in:
parent
4fe51aa439
commit
98196bbd89
1 changed files with 20 additions and 20 deletions
|
|
@ -49,30 +49,30 @@ struct wlr_cursor {
|
||||||
* your responsibility.
|
* your responsibility.
|
||||||
*/
|
*/
|
||||||
struct {
|
struct {
|
||||||
struct wl_signal motion;
|
struct wl_signal motion; // struct wlr_pointer_motion_event
|
||||||
struct wl_signal motion_absolute;
|
struct wl_signal motion_absolute; // struct wlr_pointer_motion_absolute_event
|
||||||
struct wl_signal button;
|
struct wl_signal button; // struct wlr_pointer_button_event
|
||||||
struct wl_signal axis;
|
struct wl_signal axis; // struct wlr_pointer_axis_event
|
||||||
struct wl_signal frame;
|
struct wl_signal frame;
|
||||||
struct wl_signal swipe_begin;
|
struct wl_signal swipe_begin; // struct wlr_pointer_swipe_begin_event
|
||||||
struct wl_signal swipe_update;
|
struct wl_signal swipe_update; // struct wlr_pointer_swipe_update_event
|
||||||
struct wl_signal swipe_end;
|
struct wl_signal swipe_end; // struct wlr_pointer_swipe_end_event
|
||||||
struct wl_signal pinch_begin;
|
struct wl_signal pinch_begin; // struct wlr_pointer_pinch_begin_event
|
||||||
struct wl_signal pinch_update;
|
struct wl_signal pinch_update; // struct wlr_pointer_pinch_update_event
|
||||||
struct wl_signal pinch_end;
|
struct wl_signal pinch_end; // struct wlr_pointer_pinch_end_event
|
||||||
struct wl_signal hold_begin;
|
struct wl_signal hold_begin; // struct wlr_pointer_hold_begin_event
|
||||||
struct wl_signal hold_end;
|
struct wl_signal hold_end; // struct wlr_pointer_hold_end_event
|
||||||
|
|
||||||
struct wl_signal touch_up;
|
struct wl_signal touch_up; // struct wlr_touch_up_event
|
||||||
struct wl_signal touch_down;
|
struct wl_signal touch_down; // struct wlr_touch_down_event
|
||||||
struct wl_signal touch_motion;
|
struct wl_signal touch_motion; // struct wlr_touch_motion_event
|
||||||
struct wl_signal touch_cancel;
|
struct wl_signal touch_cancel; // struct wlr_touch_cancel_event
|
||||||
struct wl_signal touch_frame;
|
struct wl_signal touch_frame;
|
||||||
|
|
||||||
struct wl_signal tablet_tool_axis;
|
struct wl_signal tablet_tool_axis; // struct wlr_tablet_tool_axis_event
|
||||||
struct wl_signal tablet_tool_proximity;
|
struct wl_signal tablet_tool_proximity; // struct wlr_tablet_tool_proximity_event
|
||||||
struct wl_signal tablet_tool_tip;
|
struct wl_signal tablet_tool_tip; // struct wlr_tablet_tool_tip_event
|
||||||
struct wl_signal tablet_tool_button;
|
struct wl_signal tablet_tool_button; // struct wlr_tablet_tool_button_event
|
||||||
} events;
|
} events;
|
||||||
|
|
||||||
void *data;
|
void *data;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue