mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-28 19:00:17 +01:00
doc: add the various events to the doxygen groups
Makes them show up on the respective page and in the data structures list doxygen generates. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
This commit is contained in:
parent
5ad756ea39
commit
dc45db0467
1 changed files with 29 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue