OpenCoverage

qquickanimation_p.h

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/util/qquickanimation_p.h
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4-
5-
6class QQuickAbstractAnimationPrivate;-
7class QQuickAnimationGroup;-
8class __attribute__((visibility("default"))) QQuickAbstractAnimation : public QObject, public QQmlPropertyValueSource, public QQmlParserStatus-
9{-
10 public:-
11#pragma GCC diagnostic push-
12 -
13#pragma GCC diagnostic ignored "-Wsuggest-override"-
14 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
15#pragma GCC diagnostic ignored "-Wattributes"-
16 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
17#pragma GCC diagnostic pop-
18 struct QPrivateSignal {};-
19 inline QQuickAbstractAnimationPrivate* d_func() { return
executed 241387 times by 20 tests: return reinterpret_cast<QQuickAbstractAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlenginedebugservice
  • tst_qqmlxmlhttprequest
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickflipable
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickpositioners
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
reinterpret_cast<QQuickAbstractAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 241387 times by 20 tests: return reinterpret_cast<QQuickAbstractAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlenginedebugservice
  • tst_qqmlxmlhttprequest
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickflipable
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickpositioners
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
} inline const QQuickAbstractAnimationPrivate* d_func() const { return
executed 1084 times by 13 tests: return reinterpret_cast<const QQuickAbstractAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlenginedebugservice
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquicktaphandler
reinterpret_cast<const QQuickAbstractAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 1084 times by 13 tests: return reinterpret_cast<const QQuickAbstractAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlenginedebugservice
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquicktaphandler
} friend class QQuickAbstractAnimationPrivate;
1084-241387
20-
21 -
22 -
23 -
24 -
25 -
26 -
27 -
28-
29public:-
30 enum ThreadingModel {-
31 GuiThread,-
32 RenderThread,-
33 AnyThread-
34 };-
35-
36 QQuickAbstractAnimation(QObject *parent=nullptr);-
37 ~QQuickAbstractAnimation() override;-
38-
39 enum Loops { Infinite = -2 };-
40 friend constexpr const QMetaObject *qt_getEnumMetaObject(Loops) noexcept { return &staticMetaObject; } friend constexpr const char *qt_getEnumName(Loops) noexcept { return "Loops"; }-
41-
42 bool isRunning() const;-
43 void setRunning(bool);-
44 bool isPaused() const;-
45 void setPaused(bool);-
46 bool alwaysRunToEnd() const;-
47 void setAlwaysRunToEnd(bool);-
48-
49 int loops() const;-
50 void setLoops(int);-
51 int duration() const;-
52-
53 int currentTime();-
54 void setCurrentTime(int);-
55-
56 QQuickAnimationGroup *group() const;-
57 void setGroup(QQuickAnimationGroup *);-
58-
59 void setDefaultTarget(const QQmlProperty &);-
60 void setDisableUserControl();-
61 void setEnableUserControl();-
62 bool userControlDisabled() const;-
63 void classBegin() override;-
64 void componentComplete() override;-
65-
66 virtual ThreadingModel threadingModel() const;-
67-
68public :-
69 void started();-
70 void stopped();-
71 void runningChanged(bool);-
72 void pausedChanged(bool);-
73 void alwaysRunToEndChanged(bool);-
74 void loopCountChanged(int);-
75 void finished();-
76-
77public :-
78 void restart();-
79 void start();-
80 void pause();-
81 void resume();-
82 void stop();-
83 void complete();-
84-
85protected:-
86 QQuickAbstractAnimation(QQuickAbstractAnimationPrivate &dd, QObject *parent);-
87 QAbstractAnimationJob* initInstance(QAbstractAnimationJob *animation);-
88-
89public:-
90 enum TransitionDirection { Forward, Backward };-
91 virtual QAbstractAnimationJob* transition(QQuickStateActions &actions,-
92 QQmlProperties &modified,-
93 TransitionDirection direction,-
94 QObject *defaultTarget = nullptr);-
95 QAbstractAnimationJob* qtAnimation();-
96-
97private :-
98 void componentFinalized();-
99private:-
100 void setTarget(const QQmlProperty &) override;-
101 void notifyRunningChanged(bool running);-
102 friend class QQuickBehavior;-
103 friend class QQuickBehaviorPrivate;-
104 friend class QQuickAnimationGroup;-
105};-
106-
107class QQuickPauseAnimationPrivate;-
108class __attribute__((visibility("default"))) QQuickPauseAnimation : public QQuickAbstractAnimation-
109{-
110 public:-
111#pragma GCC diagnostic push-
112 -
113#pragma GCC diagnostic ignored "-Wsuggest-override"-
114 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
115#pragma GCC diagnostic ignored "-Wattributes"-
116 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
117#pragma GCC diagnostic pop-
118 struct QPrivateSignal {};-
119 inline QQuickPauseAnimationPrivate* d_func() { return
executed 8992 times by 10 tests: return reinterpret_cast<QQuickPauseAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquicktaphandler
  • tst_qquickwindow
reinterpret_cast<QQuickPauseAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 8992 times by 10 tests: return reinterpret_cast<QQuickPauseAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquicktaphandler
  • tst_qquickwindow
} inline const QQuickPauseAnimationPrivate* d_func() const { return
executed 2 times by 1 test: return reinterpret_cast<const QQuickPauseAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
reinterpret_cast<const QQuickPauseAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 2 times by 1 test: return reinterpret_cast<const QQuickPauseAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
} friend class QQuickPauseAnimationPrivate;
2-8992
120-
121 -
122-
123public:-
124 QQuickPauseAnimation(QObject *parent=nullptr);-
125 ~QQuickPauseAnimation() override;-
126-
127 int duration() const;-
128 void setDuration(int);-
129-
130public :-
131 void durationChanged(int);-
132-
133protected:-
134 QAbstractAnimationJob* transition(QQuickStateActions &actions,-
135 QQmlProperties &modified,-
136 TransitionDirection direction,-
137 QObject *defaultTarget = nullptr) override;-
138};-
139-
140class QQuickScriptActionPrivate;-
141class QQuickScriptAction : public QQuickAbstractAnimation-
142{-
143 public:-
144#pragma GCC diagnostic push-
145 -
146#pragma GCC diagnostic ignored "-Wsuggest-override"-
147 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
148#pragma GCC diagnostic ignored "-Wattributes"-
149 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
150#pragma GCC diagnostic pop-
151 struct QPrivateSignal {};-
152 inline QQuickScriptActionPrivate* d_func() { return
executed 25680 times by 8 tests: return reinterpret_cast<QQuickScriptActionPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qqmlxmlhttprequest
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_scenegraph
reinterpret_cast<QQuickScriptActionPrivate *>(qGetPtrHelper(d_ptr));
executed 25680 times by 8 tests: return reinterpret_cast<QQuickScriptActionPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qqmlxmlhttprequest
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_scenegraph
} inline const QQuickScriptActionPrivate* d_func() const { return
never executed: return reinterpret_cast<const QQuickScriptActionPrivate *>(qGetPtrHelper(d_ptr));
reinterpret_cast<const QQuickScriptActionPrivate *>(qGetPtrHelper(d_ptr));
never executed: return reinterpret_cast<const QQuickScriptActionPrivate *>(qGetPtrHelper(d_ptr));
} friend class QQuickScriptActionPrivate;
0-25680
153-
154 -
155 -
156-
157public:-
158 QQuickScriptAction(QObject *parent=nullptr);-
159 ~QQuickScriptAction() override;-
160-
161 QQmlScriptString script() const;-
162 void setScript(const QQmlScriptString &);-
163-
164 QString stateChangeScriptName() const;-
165 void setStateChangeScriptName(const QString &);-
166-
167protected:-
168 QAbstractAnimationJob* transition(QQuickStateActions &actions,-
169 QQmlProperties &modified,-
170 TransitionDirection direction,-
171 QObject *defaultTarget = nullptr) override;-
172};-
173-
174class QQuickPropertyActionPrivate;-
175class QQuickPropertyAction : public QQuickAbstractAnimation-
176{-
177 public:-
178#pragma GCC diagnostic push-
179 -
180#pragma GCC diagnostic ignored "-Wsuggest-override"-
181 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
182#pragma GCC diagnostic ignored "-Wattributes"-
183 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
184#pragma GCC diagnostic pop-
185 struct QPrivateSignal {};-
186 inline QQuickPropertyActionPrivate* d_func() { return
executed 6794 times by 11 tests: return reinterpret_cast<QQuickPropertyActionPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
reinterpret_cast<QQuickPropertyActionPrivate *>(qGetPtrHelper(d_ptr));
executed 6794 times by 11 tests: return reinterpret_cast<QQuickPropertyActionPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
} inline const QQuickPropertyActionPrivate* d_func() const { return
never executed: return reinterpret_cast<const QQuickPropertyActionPrivate *>(qGetPtrHelper(d_ptr));
reinterpret_cast<const QQuickPropertyActionPrivate *>(qGetPtrHelper(d_ptr));
never executed: return reinterpret_cast<const QQuickPropertyActionPrivate *>(qGetPtrHelper(d_ptr));
} friend class QQuickPropertyActionPrivate;
0-6794
187-
188 -
189 -
190 -
191 -
192 -
193 -
194-
195public:-
196 QQuickPropertyAction(QObject *parent=nullptr);-
197 ~QQuickPropertyAction() override;-
198-
199 QObject *target() const;-
200 void setTargetObject(QObject *);-
201-
202 QString property() const;-
203 void setProperty(const QString &);-
204-
205 QString properties() const;-
206 void setProperties(const QString &);-
207-
208 QQmlListProperty<QObject> targets();-
209 QQmlListProperty<QObject> exclude();-
210-
211 QVariant value() const;-
212 void setValue(const QVariant &);-
213-
214public :-
215 void valueChanged(const QVariant &);-
216 void propertiesChanged(const QString &);-
217 void targetChanged();-
218 void propertyChanged();-
219-
220protected:-
221 QAbstractAnimationJob* transition(QQuickStateActions &actions,-
222 QQmlProperties &modified,-
223 TransitionDirection direction,-
224 QObject *defaultTarget = nullptr) override;-
225};-
226-
227class QQuickPropertyAnimationPrivate;-
228class __attribute__((visibility("default"))) QQuickPropertyAnimation : public QQuickAbstractAnimation-
229{-
230 public:-
231#pragma GCC diagnostic push-
232 -
233#pragma GCC diagnostic ignored "-Wsuggest-override"-
234 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
235#pragma GCC diagnostic ignored "-Wattributes"-
236 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
237#pragma GCC diagnostic pop-
238 struct QPrivateSignal {};-
239 inline QQuickPropertyAnimationPrivate* d_func() { return
executed 102058 times by 16 tests: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qqmlenginedebugservice
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickflipable
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickpositioners
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquickwindow
  • tst_scenegraph
reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 102058 times by 16 tests: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qqmlenginedebugservice
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickflipable
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickpositioners
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquickwindow
  • tst_scenegraph
} inline const QQuickPropertyAnimationPrivate* d_func() const { return
executed 564 times by 7 tests: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qqmlenginedebugservice
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquicksmoothedanimation
reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 564 times by 7 tests: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qqmlenginedebugservice
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquicksmoothedanimation
} friend class QQuickPropertyAnimationPrivate;
564-102058
240-
241 -
242 -
243 -
244 -
245 -
246 -
247 -
248 -
249 -
250-
251public:-
252 QQuickPropertyAnimation(QObject *parent=nullptr);-
253 ~QQuickPropertyAnimation() override;-
254-
255 virtual int duration() const;-
256 virtual void setDuration(int);-
257-
258 QVariant from() const;-
259 void setFrom(const QVariant &);-
260-
261 QVariant to() const;-
262 void setTo(const QVariant &);-
263-
264 QEasingCurve easing() const;-
265 void setEasing(const QEasingCurve &);-
266-
267 QObject *target() const;-
268 void setTargetObject(QObject *);-
269-
270 QString property() const;-
271 void setProperty(const QString &);-
272-
273 QString properties() const;-
274 void setProperties(const QString &);-
275-
276 QQmlListProperty<QObject> targets();-
277 QQmlListProperty<QObject> exclude();-
278-
279protected:-
280 QQuickStateActions createTransitionActions(QQuickStateActions &actions,-
281 QQmlProperties &modified,-
282 QObject *defaultTarget = nullptr);-
283-
284 QQuickPropertyAnimation(QQuickPropertyAnimationPrivate &dd, QObject *parent);-
285 QAbstractAnimationJob* transition(QQuickStateActions &actions,-
286 QQmlProperties &modified,-
287 TransitionDirection direction,-
288 QObject *defaultTarget = nullptr) override;-
289public :-
290 void durationChanged(int);-
291 void fromChanged();-
292 void toChanged();-
293 void easingChanged(const QEasingCurve &);-
294 void propertiesChanged(const QString &);-
295 void targetChanged();-
296 void propertyChanged();-
297};-
298-
299class __attribute__((visibility("default"))) QQuickColorAnimation : public QQuickPropertyAnimation-
300{-
301 public:-
302#pragma GCC diagnostic push-
303 -
304#pragma GCC diagnostic ignored "-Wsuggest-override"-
305 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
306#pragma GCC diagnostic ignored "-Wattributes"-
307 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
308#pragma GCC diagnostic pop-
309 struct QPrivateSignal {};-
310 inline QQuickPropertyAnimationPrivate* d_func() { return
executed 184 times by 4 tests: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 184 times by 4 tests: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
} inline const QQuickPropertyAnimationPrivate* d_func() const { return
executed 4 times by 1 test: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 4 times by 1 test: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
} friend class QQuickPropertyAnimationPrivate;
4-184
311 -
312 -
313-
314public:-
315 QQuickColorAnimation(QObject *parent=nullptr);-
316 ~QQuickColorAnimation() override;-
317-
318 QColor from() const;-
319 void setFrom(const QColor &);-
320-
321 QColor to() const;-
322 void setTo(const QColor &);-
323};-
324-
325class __attribute__((visibility("default"))) QQuickNumberAnimation : public QQuickPropertyAnimation-
326{-
327 public:-
328#pragma GCC diagnostic push-
329 -
330#pragma GCC diagnostic ignored "-Wsuggest-override"-
331 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
332#pragma GCC diagnostic ignored "-Wattributes"-
333 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
334#pragma GCC diagnostic pop-
335 struct QPrivateSignal {};-
336 inline QQuickPropertyAnimationPrivate* d_func() { return
executed 8120 times by 15 tests: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickflipable
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickpositioners
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquickwindow
  • tst_scenegraph
reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 8120 times by 15 tests: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimatedimage
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickflipable
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickloader
  • tst_qquickpositioners
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
  • tst_qquickwindow
  • tst_scenegraph
} inline const QQuickPropertyAnimationPrivate* d_func() const { return
executed 27 times by 3 tests: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 27 times by 3 tests: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
  • tst_qquicksmoothedanimation
  • tst_qquickspringanimation
} friend class QQuickPropertyAnimationPrivate;
27-8120
337-
338 -
339 -
340-
341public:-
342 QQuickNumberAnimation(QObject *parent=nullptr);-
343 ~QQuickNumberAnimation() override;-
344-
345 qreal from() const;-
346 void setFrom(qreal);-
347-
348 qreal to() const;-
349 void setTo(qreal);-
350-
351protected:-
352 QQuickNumberAnimation(QQuickPropertyAnimationPrivate &dd, QObject *parent);-
353-
354private:-
355 void init();-
356};-
357-
358class __attribute__((visibility("default"))) QQuickVector3dAnimation : public QQuickPropertyAnimation-
359{-
360 public:-
361#pragma GCC diagnostic push-
362 -
363#pragma GCC diagnostic ignored "-Wsuggest-override"-
364 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
365#pragma GCC diagnostic ignored "-Wattributes"-
366 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
367#pragma GCC diagnostic pop-
368 struct QPrivateSignal {};-
369 inline QQuickPropertyAnimationPrivate* d_func() { return
never executed: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
never executed: return reinterpret_cast<QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
} inline const QQuickPropertyAnimationPrivate* d_func() const { return
never executed: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
never executed: return reinterpret_cast<const QQuickPropertyAnimationPrivate *>(qGetPtrHelper(d_ptr));
} friend class QQuickPropertyAnimationPrivate;
0
370-
371 -
372 -
373-
374public:-
375 QQuickVector3dAnimation(QObject *parent=nullptr);-
376 ~QQuickVector3dAnimation() override;-
377-
378 QVector3D from() const;-
379 void setFrom(QVector3D);-
380-
381 QVector3D to() const;-
382 void setTo(QVector3D);-
383};-
384-
385class QQuickRotationAnimationPrivate;-
386class __attribute__((visibility("default"))) QQuickRotationAnimation : public QQuickPropertyAnimation-
387{-
388 public:-
389#pragma GCC diagnostic push-
390 -
391#pragma GCC diagnostic ignored "-Wsuggest-override"-
392 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
393#pragma GCC diagnostic ignored "-Wattributes"-
394 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
395#pragma GCC diagnostic pop-
396 struct QPrivateSignal {};-
397 inline QQuickRotationAnimationPrivate* d_func() { return
executed 24 times by 2 tests: return reinterpret_cast<QQuickRotationAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
  • tst_qquickbehaviors
reinterpret_cast<QQuickRotationAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 24 times by 2 tests: return reinterpret_cast<QQuickRotationAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
  • tst_qquickbehaviors
} inline const QQuickRotationAnimationPrivate* d_func() const { return
executed 4 times by 1 test: return reinterpret_cast<const QQuickRotationAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
reinterpret_cast<const QQuickRotationAnimationPrivate *>(qGetPtrHelper(d_ptr));
executed 4 times by 1 test: return reinterpret_cast<const QQuickRotationAnimationPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_qquickanimations
} friend class QQuickRotationAnimationPrivate;
4-24
398-
399 -
400 -
401 -
402-
403public:-
404 QQuickRotationAnimation(QObject *parent=nullptr);-
405 ~QQuickRotationAnimation() override;-
406-
407 qreal from() const;-
408 void setFrom(qreal);-
409-
410 qreal to() const;-
411 void setTo(qreal);-
412-
413 enum RotationDirection { Numerical, Shortest, Clockwise, Counterclockwise };-
414 friend constexpr const QMetaObject *qt_getEnumMetaObject(RotationDirection) noexcept { return &staticMetaObject; } friend constexpr const char *qt_getEnumName(RotationDirection) noexcept { return "RotationDirection"; }-
415 RotationDirection direction() const;-
416 void setDirection(RotationDirection direction);-
417-
418public :-
419 void directionChanged();-
420};-
421-
422class QQuickAnimationGroupPrivate;-
423class __attribute__((visibility("default"))) QQuickAnimationGroup : public QQuickAbstractAnimation-
424{-
425 public:-
426#pragma GCC diagnostic push-
427 -
428#pragma GCC diagnostic ignored "-Wsuggest-override"-
429 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
430#pragma GCC diagnostic ignored "-Wattributes"-
431 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
432#pragma GCC diagnostic pop-
433 struct QPrivateSignal {};-
434 inline QQuickAnimationGroupPrivate* d_func() { return
executed 51082 times by 14 tests: return reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
executed 51082 times by 14 tests: return reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickdraghandler
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
} inline const QQuickAnimationGroupPrivate* d_func() const { return
never executed: return reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
never executed: return reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
} friend class QQuickAnimationGroupPrivate;
0-51082
435-
436 -
437 -
438-
439public:-
440 QQuickAnimationGroup(QObject *parent);-
441 ~QQuickAnimationGroup() override;-
442-
443 QQmlListProperty<QQuickAbstractAnimation> animations();-
444 friend class QQuickAbstractAnimation;-
445-
446protected:-
447 QQuickAnimationGroup(QQuickAnimationGroupPrivate &dd, QObject *parent);-
448};-
449-
450class QQuickSequentialAnimation : public QQuickAnimationGroup-
451{-
452 public:-
453#pragma GCC diagnostic push-
454 -
455#pragma GCC diagnostic ignored "-Wsuggest-override"-
456 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
457#pragma GCC diagnostic ignored "-Wattributes"-
458 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
459#pragma GCC diagnostic pop-
460 struct QPrivateSignal {};-
461 inline QQuickAnimationGroupPrivate* d_func() { return
executed 12666 times by 13 tests: return reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
executed 12666 times by 13 tests: return reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
} inline const QQuickAnimationGroupPrivate* d_func() const { return
executed 25334 times by 13 tests: return reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
executed 25334 times by 13 tests: return reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_flickableinterop
  • tst_qqmlxmlhttprequest
  • tst_qquickanimationcontroller
  • tst_qquickanimations
  • tst_qquickbehaviors
  • tst_qquickgridview
  • tst_qquickimage
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_qquicktaphandler
  • tst_qquickwindow
  • tst_scenegraph
} friend class QQuickAnimationGroupPrivate;
12666-25334
462-
463public:-
464 QQuickSequentialAnimation(QObject *parent=nullptr);-
465 ~QQuickSequentialAnimation() override;-
466-
467protected:-
468 ThreadingModel threadingModel() const override;-
469 QAbstractAnimationJob* transition(QQuickStateActions &actions,-
470 QQmlProperties &modified,-
471 TransitionDirection direction,-
472 QObject *defaultTarget = nullptr) override;-
473};-
474-
475class __attribute__((visibility("default"))) QQuickParallelAnimation : public QQuickAnimationGroup-
476{-
477 public:-
478#pragma GCC diagnostic push-
479 -
480#pragma GCC diagnostic ignored "-Wsuggest-override"-
481 static const QMetaObject staticMetaObject; virtual const QMetaObject *metaObject() const; virtual void *qt_metacast(const char *); virtual int qt_metacall(QMetaObject::Call, int, void **); static inline QString tr(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } __attribute__ ((__deprecated__)) static inline QString trUtf8(const char *s, const char *c = nullptr, int n = -1) { return staticMetaObject.tr(s, c, n); } private:-
482#pragma GCC diagnostic ignored "-Wattributes"-
483 __attribute__((visibility("hidden"))) static void qt_static_metacall(QObject *, QMetaObject::Call, int, void **);-
484#pragma GCC diagnostic pop-
485 struct QPrivateSignal {};-
486 inline QQuickAnimationGroupPrivate* d_func() { return
executed 10194 times by 6 tests: return reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimationcontroller
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_scenegraph
reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
executed 10194 times by 6 tests: return reinterpret_cast<QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimationcontroller
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_scenegraph
} inline const QQuickAnimationGroupPrivate* d_func() const { return
executed 21366 times by 6 tests: return reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimationcontroller
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_scenegraph
reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
executed 21366 times by 6 tests: return reinterpret_cast<const QQuickAnimationGroupPrivate *>(qGetPtrHelper(d_ptr));
Executed by:
  • tst_examples
  • tst_qquickanimationcontroller
  • tst_qquickgridview
  • tst_qquicklistview
  • tst_qquickpositioners
  • tst_scenegraph
} friend class QQuickAnimationGroupPrivate;
10194-21366
487-
488public:-
489 QQuickParallelAnimation(QObject *parent=nullptr);-
490 ~QQuickParallelAnimation() override;-
491-
492protected:-
493 ThreadingModel threadingModel() const override;-
494 QAbstractAnimationJob* transition(QQuickStateActions &actions,-
495 QQmlProperties &modified,-
496 TransitionDirection direction,-
497 QObject *defaultTarget = nullptr) override;-
498};-
499-
500-
501-
502-
503 template <> struct QMetaTypeId< QQuickAbstractAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickAbstractAnimation * >("QQuickAbstractAnimation *", reinterpret_cast< QQuickAbstractAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickAbstractAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickAbstractAnimation> >("QQmlListProperty<QQuickAbstractAnimation>", reinterpret_cast< QQmlListProperty<QQuickAbstractAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
504 template <> struct QMetaTypeId< QQuickPauseAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickPauseAnimation * >("QQuickPauseAnimation *", reinterpret_cast< QQuickPauseAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickPauseAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickPauseAnimation> >("QQmlListProperty<QQuickPauseAnimation>", reinterpret_cast< QQmlListProperty<QQuickPauseAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
505 template <> struct QMetaTypeId< QQuickScriptAction * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickScriptAction * >("QQuickScriptAction *", reinterpret_cast< QQuickScriptAction * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickScriptAction> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickScriptAction> >("QQmlListProperty<QQuickScriptAction>", reinterpret_cast< QQmlListProperty<QQuickScriptAction> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
506 template <> struct QMetaTypeId< QQuickPropertyAction * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickPropertyAction * >("QQuickPropertyAction *", reinterpret_cast< QQuickPropertyAction * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickPropertyAction> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickPropertyAction> >("QQmlListProperty<QQuickPropertyAction>", reinterpret_cast< QQmlListProperty<QQuickPropertyAction> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
507 template <> struct QMetaTypeId< QQuickPropertyAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickPropertyAnimation * >("QQuickPropertyAnimation *", reinterpret_cast< QQuickPropertyAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickPropertyAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickPropertyAnimation> >("QQmlListProperty<QQuickPropertyAnimation>", reinterpret_cast< QQmlListProperty<QQuickPropertyAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
508 template <> struct QMetaTypeId< QQuickColorAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickColorAnimation * >("QQuickColorAnimation *", reinterpret_cast< QQuickColorAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickColorAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickColorAnimation> >("QQmlListProperty<QQuickColorAnimation>", reinterpret_cast< QQmlListProperty<QQuickColorAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
509 template <> struct QMetaTypeId< QQuickNumberAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickNumberAnimation * >("QQuickNumberAnimation *", reinterpret_cast< QQuickNumberAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickNumberAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickNumberAnimation> >("QQmlListProperty<QQuickNumberAnimation>", reinterpret_cast< QQmlListProperty<QQuickNumberAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
510 template <> struct QMetaTypeId< QQuickSequentialAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickSequentialAnimation * >("QQuickSequentialAnimation *", reinterpret_cast< QQuickSequentialAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickSequentialAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickSequentialAnimation> >("QQmlListProperty<QQuickSequentialAnimation>", reinterpret_cast< QQmlListProperty<QQuickSequentialAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
511 template <> struct QMetaTypeId< QQuickParallelAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickParallelAnimation * >("QQuickParallelAnimation *", reinterpret_cast< QQuickParallelAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickParallelAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickParallelAnimation> >("QQmlListProperty<QQuickParallelAnimation>", reinterpret_cast< QQmlListProperty<QQuickParallelAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
512 template <> struct QMetaTypeId< QQuickVector3dAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickVector3dAnimation * >("QQuickVector3dAnimation *", reinterpret_cast< QQuickVector3dAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickVector3dAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickVector3dAnimation> >("QQmlListProperty<QQuickVector3dAnimation>", reinterpret_cast< QQmlListProperty<QQuickVector3dAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
513 template <> struct QMetaTypeId< QQuickRotationAnimation * > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQuickRotationAnimation * >("QQuickRotationAnimation *", reinterpret_cast< QQuickRotationAnimation * *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } }; template <> struct QMetaTypeId< QQmlListProperty<QQuickRotationAnimation> > { enum { Defined = 1 }; static int qt_metatype_id() { static QBasicAtomicInt metatype_id = { 0 }; if (const int id = metatype_id.loadAcquire()) return id; const int newId = qRegisterMetaType< QQmlListProperty<QQuickRotationAnimation> >("QQmlListProperty<QQuickRotationAnimation>", reinterpret_cast< QQmlListProperty<QQuickRotationAnimation> *>(quintptr(-1))); metatype_id.storeRelease(newId); return newId; } };-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.2.0