aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickpincharea.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2013-10-01 13:03:28 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-02 14:40:01 +0200
commit4706b1ceff9af9141044ed3cf020ce5624bfa40f (patch)
tree43672217a945512ddd1704468d1fd4b6e9c153c7 /src/quick/items/qquickpincharea.cpp
parent4f50ab594aa2fb1d38981127beca634ad3396489 (diff)
qdoc: no longer recognizes the version nr in QML refs
All QML references of the form <QML-module-name><QML-module-version>::<QML-type>::<member-name> have had the <QML-module-version> removed i. Task-number: QTBUG-33776 Change-Id: Idde279e0f254cd24ea44f9841662dd81a2c5bbc6 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/items/qquickpincharea.cpp')
-rw-r--r--src/quick/items/qquickpincharea.cpp58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/quick/items/qquickpincharea.cpp b/src/quick/items/qquickpincharea.cpp
index 0f68494312..eadf82f888 100644
--- a/src/quick/items/qquickpincharea.cpp
+++ b/src/quick/items/qquickpincharea.cpp
@@ -76,9 +76,9 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty QPointF QtQuick2::PinchEvent::center
- \qmlproperty QPointF QtQuick2::PinchEvent::startCenter
- \qmlproperty QPointF QtQuick2::PinchEvent::previousCenter
+ \qmlproperty QPointF QtQuick::PinchEvent::center
+ \qmlproperty QPointF QtQuick::PinchEvent::startCenter
+ \qmlproperty QPointF QtQuick::PinchEvent::previousCenter
These properties hold the position of the center point between the two touch points.
@@ -90,8 +90,8 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty real QtQuick2::PinchEvent::scale
- \qmlproperty real QtQuick2::PinchEvent::previousScale
+ \qmlproperty real QtQuick::PinchEvent::scale
+ \qmlproperty real QtQuick::PinchEvent::previousScale
These properties hold the scale factor determined by the change in distance between the two touch points.
@@ -104,9 +104,9 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty real QtQuick2::PinchEvent::angle
- \qmlproperty real QtQuick2::PinchEvent::previousAngle
- \qmlproperty real QtQuick2::PinchEvent::rotation
+ \qmlproperty real QtQuick::PinchEvent::angle
+ \qmlproperty real QtQuick::PinchEvent::previousAngle
+ \qmlproperty real QtQuick::PinchEvent::rotation
These properties hold the angle between the two touch points.
@@ -120,10 +120,10 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty QPointF QtQuick2::PinchEvent::point1
- \qmlproperty QPointF QtQuick2::PinchEvent::startPoint1
- \qmlproperty QPointF QtQuick2::PinchEvent::point2
- \qmlproperty QPointF QtQuick2::PinchEvent::startPoint2
+ \qmlproperty QPointF QtQuick::PinchEvent::point1
+ \qmlproperty QPointF QtQuick::PinchEvent::startPoint1
+ \qmlproperty QPointF QtQuick::PinchEvent::point2
+ \qmlproperty QPointF QtQuick::PinchEvent::startPoint2
These properties provide the actual touch points generating the pinch.
@@ -134,7 +134,7 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty bool QtQuick2::PinchEvent::accepted
+ \qmlproperty bool QtQuick::PinchEvent::accepted
Setting this property to false in the \c PinchArea::onPinchStarted handler
will result in no further pinch events being generated, and the gesture
@@ -142,7 +142,7 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlproperty int QtQuick2::PinchEvent::pointCount
+ \qmlproperty int QtQuick::PinchEvent::pointCount
Holds the number of points currently touched. The PinchArea will not react
until two touch points have initited a gesture, but will remain active until
@@ -190,7 +190,7 @@ QQuickPinchAreaPrivate::~QQuickPinchAreaPrivate()
*/
/*!
- \qmlsignal QtQuick2::PinchArea::onPinchStarted()
+ \qmlsignal QtQuick::PinchArea::onPinchStarted()
This handler is called when the pinch area detects that a pinch gesture has started.
@@ -202,7 +202,7 @@ QQuickPinchAreaPrivate::~QQuickPinchAreaPrivate()
*/
/*!
- \qmlsignal QtQuick2::PinchArea::onPinchUpdated()
+ \qmlsignal QtQuick::PinchArea::onPinchUpdated()
This handler is called when the pinch area detects that a pinch gesture has changed.
@@ -211,7 +211,7 @@ QQuickPinchAreaPrivate::~QQuickPinchAreaPrivate()
*/
/*!
- \qmlsignal QtQuick2::PinchArea::onPinchFinished()
+ \qmlsignal QtQuick::PinchArea::onPinchFinished()
This handler is called when the pinch area detects that a pinch gesture has finished.
@@ -221,17 +221,17 @@ QQuickPinchAreaPrivate::~QQuickPinchAreaPrivate()
/*!
- \qmlproperty Item QtQuick2::PinchArea::pinch.target
- \qmlproperty bool QtQuick2::PinchArea::pinch.active
- \qmlproperty real QtQuick2::PinchArea::pinch.minimumScale
- \qmlproperty real QtQuick2::PinchArea::pinch.maximumScale
- \qmlproperty real QtQuick2::PinchArea::pinch.minimumRotation
- \qmlproperty real QtQuick2::PinchArea::pinch.maximumRotation
- \qmlproperty enumeration QtQuick2::PinchArea::pinch.dragAxis
- \qmlproperty real QtQuick2::PinchArea::pinch.minimumX
- \qmlproperty real QtQuick2::PinchArea::pinch.maximumX
- \qmlproperty real QtQuick2::PinchArea::pinch.minimumY
- \qmlproperty real QtQuick2::PinchArea::pinch.maximumY
+ \qmlproperty Item QtQuick::PinchArea::pinch.target
+ \qmlproperty bool QtQuick::PinchArea::pinch.active
+ \qmlproperty real QtQuick::PinchArea::pinch.minimumScale
+ \qmlproperty real QtQuick::PinchArea::pinch.maximumScale
+ \qmlproperty real QtQuick::PinchArea::pinch.minimumRotation
+ \qmlproperty real QtQuick::PinchArea::pinch.maximumRotation
+ \qmlproperty enumeration QtQuick::PinchArea::pinch.dragAxis
+ \qmlproperty real QtQuick::PinchArea::pinch.minimumX
+ \qmlproperty real QtQuick::PinchArea::pinch.maximumX
+ \qmlproperty real QtQuick::PinchArea::pinch.minimumY
+ \qmlproperty real QtQuick::PinchArea::pinch.maximumY
\c pinch provides a convenient way to make an item react to pinch gestures.
@@ -262,7 +262,7 @@ QQuickPinchArea::~QQuickPinchArea()
{
}
/*!
- \qmlproperty bool QtQuick2::PinchArea::enabled
+ \qmlproperty bool QtQuick::PinchArea::enabled
This property holds whether the item accepts pinch gestures.
This property defaults to true.