summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-04-23 11:56:26 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-04-23 11:56:26 (GMT)
commit1f50b3a05b87c86997ed4f8cc4352ecb5320305e (patch)
treeae12bb581ae8a5ba078f2076de3817eb482714d6 /src
parent0af965285378ae51ac98dfade94f216761449459 (diff)
downloadQt-1f50b3a05b87c86997ed4f8cc4352ecb5320305e.zip
Qt-1f50b3a05b87c86997ed4f8cc4352ecb5320305e.tar.gz
Qt-1f50b3a05b87c86997ed4f8cc4352ecb5320305e.tar.bz2
qdoc: Edited the documentation to remove numerous qdoc warnings.
Diffstat (limited to 'src')
-rw-r--r--src/declarative/fx/qfxblendedimage.cpp2
-rw-r--r--src/declarative/fx/qfxitem.cpp4
-rw-r--r--src/declarative/timeline/gfxeasing.cpp215
3 files changed, 93 insertions, 128 deletions
diff --git a/src/declarative/fx/qfxblendedimage.cpp b/src/declarative/fx/qfxblendedimage.cpp
index 773018f..9a3bb72 100644
--- a/src/declarative/fx/qfxblendedimage.cpp
+++ b/src/declarative/fx/qfxblendedimage.cpp
@@ -97,7 +97,7 @@ void QFxBlendedImage::setPrimaryUrl(const QString &url)
}
/*!
- \property QFxBlendedImage::secondaryFile
+ \property QFxBlendedImage::secondaryUrl
\brief the URL of the second image to be displayed in this item.
*/
QString QFxBlendedImage::secondaryUrl() const
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp
index 9aa742d..4574392 100644
--- a/src/declarative/fx/qfxitem.cpp
+++ b/src/declarative/fx/qfxitem.cpp
@@ -320,7 +320,7 @@ void QFxContents::setItem(QFxItem *item)
*/
/*!
- \fn void QFxItem::keyPress()
+ \fn void QFxItem::keyPress(QObject *event)
This signal is emitted when a key is pressed.
@@ -335,7 +335,7 @@ void QFxContents::setItem(QFxItem *item)
*/
/*!
- \fn void QFxItem::keyRelease()
+ \fn void QFxItem::keyRelease(QObject *event)
This signal is emitted when a key is released.
diff --git a/src/declarative/timeline/gfxeasing.cpp b/src/declarative/timeline/gfxeasing.cpp
index 59767b2..e2eff9c 100644
--- a/src/declarative/timeline/gfxeasing.cpp
+++ b/src/declarative/timeline/gfxeasing.cpp
@@ -454,169 +454,134 @@ Q_GLOBAL_STATIC(ConfigFunctionMap, configFunctionMap);
\enum GfxEasing::Curve
The type of easing curve.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::None
+
+ \value None
Easing equation function for a simple linear tweening, with no easing.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InQuad
+
+ \value InQuad
Easing equation function for a quadratic (t^2) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutQuad
+
+ \value OutQuad
Easing equation function for a quadratic (t^2) easing out: decelerating to zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutQuad
+
+ \value InOutQuad
Easing equation function for a quadratic (t^2) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInQuad
+
+ \value OutInQuad
Easing equation function for a quadratic (t^2) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InCubic
+
+ \value InCubic
Easing equation function for a cubic (t^3) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutCubic
+
+ \value OutCubic
Easing equation function for a cubic (t^3) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutCubic
+
+ \value InOutCubic
Easing equation function for a cubic (t^3) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInCubic
+
+ \value OutInCubic
Easing equation function for a cubic (t^3) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InQuart
+
+ \value InQuart
Easing equation function for a quartic (t^4) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutQuart
+
+ \value OutQuart
Easing equation function for a quartic (t^4) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutQuart
+
+ \value InOutQuart
Easing equation function for a quartic (t^4) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInQuart
+
+ \value OutInQuart
Easing equation function for a quartic (t^4) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InQuint
+
+ \value InQuint
Easing equation function for a quintic (t^5) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutQuint
+
+ \value OutQuint
Easing equation function for a quintic (t^5) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutQuint
+
+ \value InOutQuint
Easing equation function for a quintic (t^5) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInQuint
+
+ \value OutInQuint
Easing equation function for a quintic (t^5) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InSine
+
+ \value InSine
Easing equation function for a sinusoidal (sin(t)) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutSine
+
+ \value OutSine
Easing equation function for a sinusoidal (sin(t)) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutSine
+
+ \value InOutSine
Easing equation function for a sinusoidal (sin(t)) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInSine
+
+ \value OutInSine
Easing equation function for a sinusoidal (sin(t)) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InExpo
+
+ \value InExpo
Easing equation function for an exponential (2^t) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutExpo
+
+ \value OutExpo
Easing equation function for an exponential (2^t) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutExpo
+
+ \value InOutExpo
Easing equation function for an exponential (2^t) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInExpo
+
+ \value OutInExpo
Easing equation function for an exponential (2^t) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InCirc
+
+ \value InCirc
Easing equation function for a circular (sqrt(1-t^2)) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutCirc
+
+ \value OutCirc
Easing equation function for a circular (sqrt(1-t^2)) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutCirc
+
+ \value InOutCirc
Easing equation function for a circular (sqrt(1-t^2)) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInCirc
+
+ \value OutInCirc
Easing equation function for a circular (sqrt(1-t^2)) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InElastic
- Easing equation function for an elastic (exponentially decaying sine wave) easing in: accelerating from zero velocity. The peak amplitude can be set with the \i amplitude parameter, and the period of decay by the \i period parameter.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutElastic
- Easing equation function for an elastic (exponentially decaying sine wave) easing out: decelerating from zero velocity. The peak amplitude can be set with the \i amplitude parameter, and the period of decay by the \i period parameter.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutElastic
+
+ \value InElastic
+ Easing equation function for an elastic (exponentially decaying
+ sine wave) easing in: accelerating from zero velocity. The peak
+ amplitude can be set with the \e amplitude parameter, and the
+ period of decay by the \e period parameter.
+
+ \value OutElastic
+ Easing equation function for an elastic (exponentially decaying
+ sine wave) easing out: decelerating from zero velocity. The peak
+ amplitude can be set with the \e amplitude parameter, and the
+ period of decay by the \e period parameter.
+
+ \value InOutElastic
Easing equation function for an elastic (exponentially decaying sine wave) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInElastic
+
+ \value OutInElastic
Easing equation function for an elastic (exponentially decaying sine wave) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InBack
+
+ \value InBack
Easing equation function for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutBack
+
+ \value OutBack
Easing equation function for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutBack
+
+ \value InOutBack
Easing equation function for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInBack
+
+ \value OutInBack
Easing equation function for a back (overshooting cubic easing: (s+1)*t^3 - s*t^2) easing out/in: deceleration until halfway, then acceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutBounce
+
+ \value OutBounce
Easing equation function for a bounce (exponentially decaying parabolic bounce) easing out: decelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InBounce
+
+ \value InBounce
Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in: accelerating from zero velocity.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::InOutBounce
+
+ \value InOutBounce
Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in/out: acceleration until halfway, then deceleration.
-*/
-/*!
- \var GfxEasing::Curve GfxEasing::OutInBounce
+
+ \value OutInBounce
Easing equation function for a bounce (exponentially decaying parabolic bounce) easing out/in: deceleration until halfway, then acceleration.
*/