src/imports/particles/qdeclarativeparticles.cpp
changeset 37 758a864f9613
parent 33 3e2da88830cd
--- a/src/imports/particles/qdeclarativeparticles.cpp	Fri Sep 17 08:34:18 2010 +0300
+++ b/src/imports/particles/qdeclarativeparticles.cpp	Mon Oct 04 01:19:32 2010 +0300
@@ -154,6 +154,7 @@
 
 /*!
     \qmlclass ParticleMotionLinear QDeclarativeParticleMotionLinear
+    \ingroup qml-particle-elements
     \since 4.7
     \brief The ParticleMotionLinear object moves particles linearly.
 
@@ -164,14 +165,6 @@
 
     It has no further properties.
 */
-
-/*!
-    \internal
-    \class QDeclarativeParticleMotionLinear
-    \ingroup group_effects
-    \brief The QDeclarativeParticleMotionLinear class moves the particles linearly.
-*/
-
 void QDeclarativeParticleMotionLinear::advance(QDeclarativeParticle &p, int interval)
 {
     p.x += interval * p.x_velocity;
@@ -180,6 +173,7 @@
 
 /*!
     \qmlclass ParticleMotionGravity QDeclarativeParticleMotionGravity
+    \ingroup qml-particle-elements
     \since 4.7
     \brief The ParticleMotionGravity object moves particles towards a point.
 
@@ -194,14 +188,6 @@
 */
 
 /*!
-    \internal
-    \class QDeclarativeParticleMotionGravity
-    \ingroup group_effects
-    \brief The QDeclarativeParticleMotionGravity class moves the particles towards a point.
-
-*/
-
-/*!
     \qmlproperty real ParticleMotionGravity::xattractor
     \qmlproperty real ParticleMotionGravity::yattractor
     These properties hold the x and y coordinates of the point attracting the particles.
@@ -271,6 +257,7 @@
 
 /*!
     \qmlclass ParticleMotionWander QDeclarativeParticleMotionWander
+    \ingroup qml-particle-elements
     \since 4.7
     \brief The ParticleMotionWander object moves particles in a somewhat random fashion.
 
@@ -308,16 +295,6 @@
 */
 
 /*!
-    \internal
-    \class QDeclarativeParticleMotionWander
-    \ingroup group_effects
-    \brief The QDeclarativeParticleMotionWander class moves particles in a somewhat random fashion.
-
-    The particles will continue roughly in the original direction, however will randomly
-    drift to each side.
-*/
-
-/*!
     \qmlproperty real ParticleMotionWander::xvariance
     \qmlproperty real ParticleMotionWander::yvariance
 
@@ -634,6 +611,7 @@
 
 /*!
     \qmlclass Particles QDeclarativeParticles
+    \ingroup qml-particle-elements
     \since 4.7
     \brief The Particles object generates and moves particles.
     \inherits Item
@@ -705,13 +683,6 @@
     \image particles.gif
 */
 
-/*!
-    \internal
-    \class QDeclarativeParticles
-    \ingroup group_effects
-    \brief The QDeclarativeParticles class generates and moves particles.
-*/
-
 QDeclarativeParticles::QDeclarativeParticles(QDeclarativeItem *parent)
     : QDeclarativeItem(*(new QDeclarativeParticlesPrivate), parent)
 {