summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmlanimation.cpp
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-04-23 01:50:48 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-04-23 01:50:48 (GMT)
commit28cec90fd8740f1d47010d99699f86ac014e9926 (patch)
treed3ff8dd0eec3bf5c6536960650490cb4cc382396 /src/declarative/util/qmlanimation.cpp
parent0e8b82bc7b9b0d88e8cc4a4d293851795d35950a (diff)
downloadQt-28cec90fd8740f1d47010d99699f86ac014e9926.zip
Qt-28cec90fd8740f1d47010d99699f86ac014e9926.tar.gz
Qt-28cec90fd8740f1d47010d99699f86ac014e9926.tar.bz2
Merge in changes to old kinetic-dui branch.
Diffstat (limited to 'src/declarative/util/qmlanimation.cpp')
-rw-r--r--src/declarative/util/qmlanimation.cpp26
1 files changed, 15 insertions, 11 deletions
diff --git a/src/declarative/util/qmlanimation.cpp b/src/declarative/util/qmlanimation.cpp
index 729d53a..de6d84c 100644
--- a/src/declarative/util/qmlanimation.cpp
+++ b/src/declarative/util/qmlanimation.cpp
@@ -538,14 +538,15 @@ void QmlAbstractAnimation::timelineComplete()
/*!
\internal
\class QmlPauseAnimation
- \ingroup animation states
+ \ingroup group_animation
+ \ingroup group_states
\brief The QmlPauseAnimation class provides a pause for an animation.
When used in a QmlSequentialAnimation, QmlPauseAnimation is a step when
nothing happens, for a specified duration.
A QmlPauseAnimation object can be instantiated in Qml using the tag
- \ref xmlPauseAnimation "&lt;PauseAnimation&gt;".
+ \l{xmlPauseAnimation} {&lt;PauseAnimation&gt;}.
*/
QML_DEFINE_TYPE(QmlPauseAnimation,PauseAnimation);
@@ -629,11 +630,12 @@ QAbstractAnimation *QmlPauseAnimation::qtAnimation()
/*!
\internal
\class QmlColorAnimation
- \ingroup animation states
+ \ingroup group_animation
+ \ingroup group_states
\brief The QmlColorAnimation class allows you to animate color changes.
A QmlColorAnimation object can be instantiated in Qml using the tag
- \ref xmlColorAnimation "&lt;ColorAnimation&gt;".
+ \l{xmlColorAnimation} {&lt;ColorAnimation&gt;}.
*/
QmlColorAnimation::QmlColorAnimation(QObject *parent)
@@ -930,9 +932,9 @@ QML_DEFINE_TYPE(QmlColorAnimation,ColorAnimation);
/*!
\internal
\class QmlRunScriptAction
- \brief The QmlRunScriptAction class allows scropts to be run during transitions
+ \brief The QmlRunScriptAction class allows scripts to be run during transitions
- \ref xmlRunScriptAction
+ \sa xmlRunScriptAction
*/
QmlRunScriptAction::QmlRunScriptAction(QObject *parent)
:QmlAbstractAnimation(*(new QmlRunScriptActionPrivate), parent)
@@ -1039,7 +1041,7 @@ QML_DEFINE_TYPE(QmlRunScriptAction, RunScriptAction);
\brief The QmlSetPropertyAction class allows property changes during transitions.
A QmlSetPropertyAction object can be instantiated in Qml using the tag
- \ref xmlSetPropertyAction "&lt;SetPropertyAction&gt;".
+ \l{xmlSetPropertyAction} {&lt;SetPropertyAction&gt;}.
*/
QmlSetPropertyAction::QmlSetPropertyAction(QObject *parent)
: QmlAbstractAnimation(*(new QmlSetPropertyActionPrivate), parent)
@@ -1337,11 +1339,12 @@ QML_DEFINE_TYPE(QmlParentChangeAction,ParentChangeAction);
/*!
\internal
\class QmlNumericAnimation
- \ingroup animation states
+ \ingroup group_animation
+ \ingroup group_states
\brief The QmlNumericAnimation class allows you to animate changes in properties of type qreal.
A QmlNumericAnimation object can be instantiated in Qml using the tag
- \ref xmlNumericAnimation "&lt;NumericAnimation&gt;".
+ \l{xmlNumericAnimation} {&lt;NumericAnimation&gt;}.
*/
QmlNumericAnimation::QmlNumericAnimation(QObject *parent)
@@ -1766,7 +1769,8 @@ QML_DEFINE_TYPE(QmlSequentialAnimation,SequentialAnimation);
/*!
\internal
\class QmlParallelAnimation
- \ingroup animation states
+ \ingroup group_animation
+ \ingroup group_states
\brief The QmlParallelAnimation class allows you to run animations in parallel.
Animations controlled by QmlParallelAnimation will be run at the same time.
@@ -1774,7 +1778,7 @@ QML_DEFINE_TYPE(QmlSequentialAnimation,SequentialAnimation);
\sa QmlSequentialAnimation
A QmlParallelAnimation object can be instantiated in Qml using the tag
- \ref xmlParallelAnimation "&lt;ParallelAnimation&gt;".
+ \l{xmlParallelAnimation} {&lt;ParallelAnimation&gt;}.
*/
QmlParallelAnimation::QmlParallelAnimation(QObject *parent) :