From dc45db04671a77494d93cdb8335af25d264daed7 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 9 Dec 2014 13:31:09 +1000 Subject: [PATCH] doc: add the various events to the doxygen groups MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Makes them show up on the respective page and in the data structures list doxygen generates. Signed-off-by: Peter Hutterer Reviewed-by: Jonas Ã…dahl --- src/libinput.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/libinput.h b/src/libinput.h index 682e16f2..d6e04462 100644 --- a/src/libinput.h +++ b/src/libinput.h @@ -306,9 +306,38 @@ struct libinput; struct libinput_device; struct libinput_seat; +/** + * @ingroup event + * @struct libinput_event + * + * The base event type. Use libinput_event_get_pointer_event() or similar to + * get the actual event type. + */ struct libinput_event; + +/** + * @ingroup event + * @struct libinput_event_device_notify + * + * An event notifying the caller of a device being added or removed. + */ struct libinput_event_device_notify; + +/** + * @ingroup event_keyboard + * @struct libinput_event_keyboard + * + * A keyboard event representing a key press/release. + */ struct libinput_event_keyboard; + +/** + * @ingroup event_pointer + * @struct libinput_event_pointer + * + * A pointer event representing relative or absolute pointer movement, + * a button press/release or scroll axis events. + */ struct libinput_event_pointer; /**