summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativepath.cpp
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2012-07-27 18:30:10 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-30 10:54:06 +0200
commita90f11dbfcf0bfa6bd1a110c7878d01596646a23 (patch)
treedcfecc43a397d382332b2e2ebada01bbf6537e4c /src/declarative/graphicsitems/qdeclarativepath.cpp
parent3b64f4d9a4c48f4e9cf19a446c551790f2658278 (diff)
Doc: Changed \qmlclass to \qmltype and added \instantiates
-\qmlclass is now \qmltype -\instantiates is for QML types implemented in C++ Change-Id: I017822524de1879d272d777ec7681f4233128b01 Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativepath.cpp')
-rw-r--r--src/declarative/graphicsitems/qdeclarativepath.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepath.cpp b/src/declarative/graphicsitems/qdeclarativepath.cpp
index 0b7c1458..e1fd5122 100644
--- a/src/declarative/graphicsitems/qdeclarativepath.cpp
+++ b/src/declarative/graphicsitems/qdeclarativepath.cpp
@@ -52,7 +52,8 @@
QT_BEGIN_NAMESPACE
/*!
- \qmlclass PathElement QDeclarativePathElement
+ \qmltype PathElement
+ \instantiates QDeclarativePathElement
\ingroup qml-view-elements
\since 4.7
\brief PathElement is the base path type.
@@ -64,7 +65,8 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlclass Path QDeclarativePath
+ \qmltype Path
+ \instantiates QDeclarativePath
\ingroup qml-view-elements
\since 4.7
\brief A Path object defines a path for use by \l PathView.
@@ -492,7 +494,8 @@ void QDeclarativeCurve::setY(qreal y)
/****************************************************************************/
/*!
- \qmlclass PathAttribute QDeclarativePathAttribute
+ \qmltype PathAttribute
+ \instantiates QDeclarativePathAttribute
\ingroup qml-view-elements
\since 4.7
\brief The PathAttribute allows setting an attribute at a given position in a Path.
@@ -608,7 +611,8 @@ void QDeclarativePathAttribute::setValue(qreal value)
/****************************************************************************/
/*!
- \qmlclass PathLine QDeclarativePathLine
+ \qmltype PathLine
+ \instantiates QDeclarativePathLine
\ingroup qml-view-elements
\since 4.7
\brief The PathLine defines a straight line.
@@ -641,7 +645,8 @@ void QDeclarativePathLine::addToPath(QPainterPath &path)
/****************************************************************************/
/*!
- \qmlclass PathQuad QDeclarativePathQuad
+ \qmltype PathQuad
+ \instantiates QDeclarativePathQuad
\ingroup qml-view-elements
\since 4.7
\brief The PathQuad defines a quadratic Bezier curve with a control point.
@@ -719,7 +724,8 @@ void QDeclarativePathQuad::addToPath(QPainterPath &path)
/****************************************************************************/
/*!
- \qmlclass PathCubic QDeclarativePathCubic
+ \qmltype PathCubic
+ \instantiates QDeclarativePathCubic
\ingroup qml-view-elements
\since 4.7
\brief The PathCubic defines a cubic Bezier curve with two control points.
@@ -827,7 +833,8 @@ void QDeclarativePathCubic::addToPath(QPainterPath &path)
/****************************************************************************/
/*!
- \qmlclass PathPercent QDeclarativePathPercent
+ \qmltype PathPercent
+ \instantiates QDeclarativePathPercent
\ingroup qml-view-elements
\since 4.7
\brief The PathPercent manipulates the way a path is interpreted.