summaryrefslogtreecommitdiff
path: root/gtk/gtkgestureswipe.h
Commit message (Collapse)AuthorAgeFilesLines
* swipegesture: Port to new API modelBenjamin Otte2018-04-261-5/+5
|
* The big versioning cleanupMatthias Clasen2018-02-061-3/+3
| | | | | | | Remove all the old 2.x and 3.x version annotations. GTK+ 4 is a new start, and from the perspective of a GTK+ 4 developer all these APIs have been around since the beginning.
* Prevent subclassing of gesturesMatthias Clasen2014-05-231-17/+0
| | | | | For now, at least. We do this by hiding the instance and class structures in private headers.
* swipe: Add function to retrieve the current velocityCarlos Garnacho2014-05-231-0/+5
| | | | | This can be used to fetch the current velocity on update(), as opposed to swipe() which happens after the sequence is finished.
* swipe: Make a subclass of GtkGestureSingleCarlos Garnacho2014-05-231-3/+3
|
* Add GtkGestureSwipeCarlos Garnacho2014-05-231-0/+67
This gesture implementation recognices swipes on any direction. The "swipe" signal has the X/Y velocity vector components, so those can be used for direction guessing and velocity thresholds.