navigation: Fix Since marker for mouse scroll

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1703>
This commit is contained in:
Thibault Saunier 2021-12-22 18:46:44 +00:00 committed by GStreamer Marge Bot
parent 18617827d4
commit d680d09292

View file

@ -275,6 +275,15 @@ typedef enum {
GST_NAVIGATION_EVENT_MOUSE_BUTTON_RELEASE = 4,
GST_NAVIGATION_EVENT_MOUSE_MOVE = 5,
GST_NAVIGATION_EVENT_COMMAND = 6,
/**
* GST_NAVIGATION_EVENT_MOUSE_SCROLL:
*
* A mouse scroll event. Use gst_navigation_event_parse_mouse_scroll_event()
* to extract the details from the event.
*
* Since: 1.18
*/
GST_NAVIGATION_EVENT_MOUSE_SCROLL = 7
} GstNavigationEventType;