aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qdeclarativespringanimation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/util/qdeclarativespringanimation.cpp')
-rw-r--r--src/declarative/util/qdeclarativespringanimation.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/declarative/util/qdeclarativespringanimation.cpp b/src/declarative/util/qdeclarativespringanimation.cpp
index 2c6058caf6..619811f789 100644
--- a/src/declarative/util/qdeclarativespringanimation.cpp
+++ b/src/declarative/util/qdeclarativespringanimation.cpp
@@ -235,9 +235,9 @@ void QDeclarativeSpringAnimationPrivate::updateMode()
/*!
\qmlclass SpringAnimation QDeclarativeSpringAnimation
+ \inqmlmodule QtQuick 2
\ingroup qml-animation-transition
\inherits NumberAnimation
- \since 4.7
\brief The SpringAnimation element allows a property to track a value in a spring-like motion.
@@ -273,7 +273,7 @@ QDeclarativeSpringAnimation::~QDeclarativeSpringAnimation()
}
/*!
- \qmlproperty real SpringAnimation::velocity
+ \qmlproperty real QtQuick2::SpringAnimation::velocity
This property holds the maximum velocity allowed when tracking the source.
@@ -295,7 +295,7 @@ void QDeclarativeSpringAnimation::setVelocity(qreal velocity)
}
/*!
- \qmlproperty real SpringAnimation::spring
+ \qmlproperty real QtQuick2::SpringAnimation::spring
This property describes how strongly the target is pulled towards the
source. The default value is 0 (that is, the spring-like motion is disabled).
@@ -319,7 +319,7 @@ void QDeclarativeSpringAnimation::setSpring(qreal spring)
}
/*!
- \qmlproperty real SpringAnimation::damping
+ \qmlproperty real QtQuick2::SpringAnimation::damping
This property holds the spring damping value.
This value describes how quickly the spring-like motion comes to rest.
@@ -345,7 +345,7 @@ void QDeclarativeSpringAnimation::setDamping(qreal damping)
/*!
- \qmlproperty real SpringAnimation::epsilon
+ \qmlproperty real QtQuick2::SpringAnimation::epsilon
This property holds the spring epsilon.
The epsilon is the rate and amount of change in the value which is close enough
@@ -367,7 +367,7 @@ void QDeclarativeSpringAnimation::setEpsilon(qreal epsilon)
}
/*!
- \qmlproperty real SpringAnimation::modulus
+ \qmlproperty real QtQuick2::SpringAnimation::modulus
This property holds the modulus value. The default value is 0.
Setting a \a modulus forces the target value to "wrap around" at the modulus.
@@ -391,7 +391,7 @@ void QDeclarativeSpringAnimation::setModulus(qreal modulus)
}
/*!
- \qmlproperty real SpringAnimation::mass
+ \qmlproperty real QtQuick2::SpringAnimation::mass
This property holds the "mass" of the property being moved.
The value is 1.0 by default.