summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativeitem.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/qdeclarativeitem.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/qdeclarativeitem.cpp')
-rw-r--r--src/declarative/graphicsitems/qdeclarativeitem.cpp24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativeitem.cpp b/src/declarative/graphicsitems/qdeclarativeitem.cpp
index b86d0e1a..dc7fb71c 100644
--- a/src/declarative/graphicsitems/qdeclarativeitem.cpp
+++ b/src/declarative/graphicsitems/qdeclarativeitem.cpp
@@ -68,7 +68,8 @@
QT_BEGIN_NAMESPACE
/*!
- \qmlclass Transform QGraphicsTransform
+ \qmltype Transform
+ \instantiates QGraphicsTransform
\ingroup qml-transform-elements
\since 4.7
\brief The Transform elements provide a way of building advanced transformations on Items.
@@ -90,7 +91,8 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlclass Translate QDeclarativeTranslate
+ \qmltype Translate
+ \instantiates QDeclarativeTranslate
\ingroup qml-transform-elements
\since 4.7
\brief The Translate object provides a way to move an Item without changing its x or y properties.
@@ -132,7 +134,8 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlclass Scale QGraphicsScale
+ \qmltype Scale
+ \instantiates QGraphicsScale
\ingroup qml-transform-elements
\since 4.7
\brief The Scale element provides a way to scale an Item.
@@ -174,7 +177,8 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \qmlclass Rotation QGraphicsRotation
+ \qmltype Rotation
+ \instantiates QGraphicsRotation
\ingroup qml-transform-elements
\since 4.7
\brief The Rotation object provides a way to rotate an Item.
@@ -416,7 +420,8 @@ void QDeclarativeItemKeyFilter::componentComplete()
/*!
- \qmlclass KeyNavigation QDeclarativeKeyNavigationAttached
+ \qmltype KeyNavigation
+ \instantiates QDeclarativeKeyNavigationAttached
\ingroup qml-basic-interaction-elements
\since 4.7
\brief The KeyNavigation attached property supports key navigation by arrow keys.
@@ -743,7 +748,8 @@ void QDeclarativeKeyNavigationAttached::setFocusNavigation(QDeclarativeItem *cur
}
/*!
- \qmlclass LayoutMirroring QDeclarativeLayoutMirroringAttached
+ \qmltype LayoutMirroring
+ \instantiates QDeclarativeLayoutMirroringAttached
\since QtQuick 1.1
\ingroup qml-utility-elements
\brief The LayoutMirroring attached property is used to mirror layout behavior.
@@ -907,7 +913,8 @@ void QDeclarativeItemPrivate::setLayoutMirror(bool mirror)
}
/*!
- \qmlclass Keys QDeclarativeKeysAttached
+ \qmltype Keys
+ \instantiates QDeclarativeKeysAttached
\ingroup qml-basic-interaction-elements
\since 4.7
\brief The Keys attached property provides key handling to Items.
@@ -1514,7 +1521,8 @@ QDeclarativeKeysAttached *QDeclarativeKeysAttached::qmlAttachedProperties(QObjec
*/
/*!
- \qmlclass Item QDeclarativeItem
+ \qmltype Item
+ \instantiates QDeclarativeItem
\ingroup qml-basic-visual-elements
\since 4.7
\brief The Item is the most basic of all visual items in QML.