Skip to content
Snippets Groups Projects
Commit 689d6d44 authored by Fawzi Mohamed's avatar Fawzi Mohamed
Browse files

QmlJS: add signals implemented by GestureArea

manually adds onTap,... to GestureArea, as it uses a custom parser and
is "opaque" for the code model. Fixes QTCREATORBUG-5489 .

A workflow (separate generated and annotated files?) will have to be
introduced to ensure that this change is not lost.

Change-Id: Ibe7554432b000702b293a8b482c04048c07021af
Reviewed-on: http://codereview.qt.nokia.com/1836


Reviewed-by: default avatarThomas Hartmann <Thomas.Hartmann@nokia.com>
parent cca8d1cb
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,12 @@ Module {
"Qt.labs.gestures/GestureArea 1.0"
]
Property { name: "gesture"; type: "QGesture"; isReadonly: true; isPointer: true }
Signal { name: "tap" }
Signal { name: "tapAndHold" }
Signal { name: "pan" }
Signal { name: "pinch" }
Signal { name: "swipe" }
Signal { name: "gesture" }
}
Component {
name: "QGesture"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment