| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/util/qquickanimator_p_p.h |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | - | |
| 4 | class QQuickAnimatorJob; | - |
| 5 | - | |
| 6 | class QQuickAnimatorPrivate : public QQuickAbstractAnimationPrivate | - |
| 7 | { | - |
| 8 | inline QQuickAnimator* q_func() { return static_cast<QQuickAnimator *>(q_ptr); } inline const QQuickAnimator* q_func() const { return static_cast<const QQuickAnimator *>(q_ptr); } friend class QQuickAnimator; | - |
| 9 | public: | - |
| 10 | QQuickAnimatorPrivate() | - |
| 11 | : target(0) | - |
| 12 | , duration(250) | - |
| 13 | , from(0) | - |
| 14 | , to(0) | - |
| 15 | , isFromDefined(false) | - |
| 16 | , isToDefined(false) | - |
| 17 | { | - |
| 18 | } executed 36 times by 2 tests: end of blockExecuted by:
| 36 |
| 19 | - | |
| 20 | QPointer<QQuickItem> target; | - |
| 21 | int duration; | - |
| 22 | QEasingCurve easing; | - |
| 23 | qreal from; | - |
| 24 | qreal to; | - |
| 25 | - | |
| 26 | uint isFromDefined : 1; | - |
| 27 | uint isToDefined : 1; | - |
| 28 | - | |
| 29 | void apply(QQuickAnimatorJob *job, const QString &propertyName, QQuickStateActions &actions, QQmlProperties &modified, QObject *defaultTarget); | - |
| 30 | }; | - |
| 31 | - | |
| 32 | class QQuickRotationAnimatorPrivate : public QQuickAnimatorPrivate | - |
| 33 | { | - |
| 34 | public: | - |
| 35 | QQuickRotationAnimatorPrivate() | - |
| 36 | : direction(QQuickRotationAnimator::Numerical) | - |
| 37 | { | - |
| 38 | } executed 4 times by 1 test: end of blockExecuted by:
| 4 |
| 39 | QQuickRotationAnimator::RotationDirection direction; | - |
| 40 | }; | - |
| 41 | - | |
| 42 | class QQuickUniformAnimatorPrivate : public QQuickAnimatorPrivate | - |
| 43 | { | - |
| 44 | public: | - |
| 45 | QString uniform; | - |
| 46 | }; | - |
| 47 | - | |
| 48 | - | |
| Switch to Source code | Preprocessed file |