Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | drag: add missing introspection annotations | Ray Strode | 2014-08-06 | 1 | -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_constructed | Matthias Clasen | 2014-05-27 | 1 | -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 fixes | Matthias Clasen | 2014-05-23 | 1 | -3/+3 |
| | |||||
* | drag: Allow gtk_gesture_get_start_point/offset() to be called on ::drag-end | Carlos Garnacho | 2014-05-23 | 1 | -2/+12 |
| | |||||
* | Prevent subclassing of gestures | Matthias Clasen | 2014-05-23 | 1 | -1/+2 |
| | | | | | For now, at least. We do this by hiding the instance and class structures in private headers. | ||||
* | drag: doc fixes | Carlos Garnacho | 2014-05-23 | 1 | -3/+3 |
| | |||||
* | drag: Add missing documentation | Carlos Garnacho | 2014-05-23 | 1 | -0/+44 |
| | |||||
* | drag: remove unused #define | Carlos Garnacho | 2014-05-23 | 1 | -2/+0 |
| | |||||
* | drag: Make API offsets based | Carlos Garnacho | 2014-05-23 | 1 | -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 GtkGestureSingle | Carlos Garnacho | 2014-05-23 | 1 | -1/+1 |
| | |||||
* | Add GtkGestureDrag | Carlos Garnacho | 2014-05-23 | 1 | -0/+210 |
This gesture interprets and reports drags as an offset to the drag start point. |