summaryrefslogtreecommitdiff
path: root/gtk/gtkgestureprivate.h
Commit message (Collapse)AuthorAgeFilesLines
* Convert headers to #pragma onceMatthias Clasen2023-03-311-3/+1
| | | | The conversion was done by guard2one.
* gesture: Keep the target widget for eventsMatthias Clasen2020-02-211-0/+4
| | | | | | We already store the events; keep the target widget in addition. This is a step towards getting rid of gdk_event_get_target.
* gesture: Make gtk_gesture_get_last_update_time() privateCarlos Garnacho2014-05-231-0/+4
|
* gesture: make gtk_gesture_cancel_sequence() privateCarlos Garnacho2014-05-231-0/+3
|
* gesture: Make gtk_gesture_check() privateCarlos Garnacho2014-05-231-0/+2
|
* Prevent subclassing of gesturesMatthias Clasen2014-05-231-3/+33
| | | | | For now, at least. We do this by hiding the instance and class structures in private headers.
* widget: Improve button press emulation on sequence deniedCarlos Garnacho2014-05-231-0/+4
| | | | | | Ensure that state being set on pointer emulating touches actually gets propagated properly on widgets with gestures that only handle pointer events.
* gesture: Add private getter to know whether a touch begin was handledCarlos Garnacho2014-05-231-0/+32
If GDK_TOUCH_BEGIN was handled/consumed for a sequence, or GDK_BUTTON_PRESS was handled for the mouse gesture, this function will return TRUE.