summaryrefslogtreecommitdiff
path: root/gtk/gtkgesturedrag.c
Commit message (Collapse)AuthorAgeFilesLines
* drag: add missing introspection annotationsRay Strode2014-08-061-4/+4
| | | | | | | | | gtk_gesture_drag_get_start_point and gtk_gesture_drag_get_offset have out args that need to be annotated. This commit adds the (out) and (nullable) annotations as appropriate. https://bugzilla.gnome.org/show_bug.cgi?id=734292
* Don't assert in gtk_event_controller_constructedMatthias Clasen2014-05-271-0/+2
| | | | | | This prevents some of our generic object implementation tests from working with gesture objects. Instead, add g_return_if_fail checks in all the gesture constructors.
* Docs: Cosmetic fixesMatthias Clasen2014-05-231-3/+3
|
* drag: Allow gtk_gesture_get_start_point/offset() to be called on ::drag-endCarlos Garnacho2014-05-231-2/+12
|
* Prevent subclassing of gesturesMatthias Clasen2014-05-231-1/+2
| | | | | For now, at least. We do this by hiding the instance and class structures in private headers.
* drag: doc fixesCarlos Garnacho2014-05-231-3/+3
|
* drag: Add missing documentationCarlos Garnacho2014-05-231-0/+44
|
* drag: remove unused #defineCarlos Garnacho2014-05-231-2/+0
|
* drag: Make API offsets basedCarlos Garnacho2014-05-231-12/+21
| | | | | It is generally more useful to get offsets right away, than having to calculate those from the start point.
* drag: Make a subclass of GtkGestureSingleCarlos Garnacho2014-05-231-1/+1
|
* Add GtkGestureDragCarlos Garnacho2014-05-231-0/+210
This gesture interprets and reports drags as an offset to the drag start point.