OpenCoverage

qquicktrailemitter_p.h

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/particles/qquicktrailemitter_p.h
Source codeSwitch to Preprocessed file
LineSourceCount
1/****************************************************************************-
2**-
3** Copyright (C) 2016 The Qt Company Ltd.-
4** Contact: https://www.qt.io/licensing/-
5**-
6** This file is part of the QtQuick module of the Qt Toolkit.-
7**-
8** $QT_BEGIN_LICENSE:LGPL$-
9** Commercial License Usage-
10** Licensees holding valid commercial Qt licenses may use this file in-
11** accordance with the commercial license agreement provided with the-
12** Software or, alternatively, in accordance with the terms contained in-
13** a written agreement between you and The Qt Company. For licensing terms-
14** and conditions see https://www.qt.io/terms-conditions. For further-
15** information use the contact form at https://www.qt.io/contact-us.-
16**-
17** GNU Lesser General Public License Usage-
18** Alternatively, this file may be used under the terms of the GNU Lesser-
19** General Public License version 3 as published by the Free Software-
20** Foundation and appearing in the file LICENSE.LGPL3 included in the-
21** packaging of this file. Please review the following information to-
22** ensure the GNU Lesser General Public License version 3 requirements-
23** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.-
24**-
25** GNU General Public License Usage-
26** Alternatively, this file may be used under the terms of the GNU-
27** General Public License version 2.0 or (at your option) the GNU General-
28** Public license version 3 or any later version approved by the KDE Free-
29** Qt Foundation. The licenses are as published by the Free Software-
30** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3-
31** included in the packaging of this file. Please review the following-
32** information to ensure the GNU General Public License requirements will-
33** be met: https://www.gnu.org/licenses/gpl-2.0.html and-
34** https://www.gnu.org/licenses/gpl-3.0.html.-
35**-
36** $QT_END_LICENSE$-
37**-
38****************************************************************************/-
39-
40#ifndef FOLLOWEMITTER_H-
41#define FOLLOWEMITTER_H-
42-
43//-
44// W A R N I N G-
45// --------------
46//-
47// This file is not part of the Qt API. It exists purely as an-
48// implementation detail. This header file may change from version to-
49// version without notice, or even be removed.-
50//-
51// We mean it.-
52//-
53#include "qquickparticleemitter_p.h"-
54#include "qquickparticleaffector_p.h"-
55-
56QT_BEGIN_NAMESPACE-
57-
58class QQuickTrailEmitter : public QQuickParticleEmitter-
59{-
60 Q_OBJECT-
61 Q_PROPERTY(QString follow READ follow WRITE setFollow NOTIFY followChanged)-
62 Q_PROPERTY(int emitRatePerParticle READ particlesPerParticlePerSecond WRITE setParticlesPerParticlePerSecond NOTIFY particlesPerParticlePerSecondChanged)-
63-
64 Q_PROPERTY(QQuickParticleExtruder* emitShape READ emissonShape WRITE setEmissionShape NOTIFY emissionShapeChanged)-
65 Q_PROPERTY(qreal emitHeight READ emitterYVariation WRITE setEmitterYVariation NOTIFY emitterYVariationChanged)-
66 Q_PROPERTY(qreal emitWidth READ emitterXVariation WRITE setEmitterXVariation NOTIFY emitterXVariationChanged)-
67-
68public:-
69 enum EmitSize {-
70 ParticleSize = -2//Anything less than 0 will do-
71 };-
72 Q_ENUM(EmitSize)-
73 explicit QQuickTrailEmitter(QQuickItem *parent = 0);-
74 void emitWindow(int timeStamp) override;-
75 void reset() override;-
76-
77 int particlesPerParticlePerSecond() const-
78 {-
79 return m_particlesPerParticlePerSecond;
never executed: return m_particlesPerParticlePerSecond;
0
80 }-
81-
82 qreal emitterXVariation() const-
83 {-
84 return m_emitterXVariation;
never executed: return m_emitterXVariation;
0
85 }-
86-
87 qreal emitterYVariation() const-
88 {-
89 return m_emitterYVariation;
never executed: return m_emitterYVariation;
0
90 }-
91-
92 QString follow() const-
93 {-
94 return m_follow;
never executed: return m_follow;
0
95 }-
96-
97 QQuickParticleExtruder* emissonShape() const-
98 {-
99 return m_emissionExtruder;
never executed: return m_emissionExtruder;
0
100 }-
101-
102Q_SIGNALS:-
103 void emitFollowParticles(QQmlV4Handle particles, QQmlV4Handle followed);-
104-
105 void particlesPerParticlePerSecondChanged(int arg);-
106-
107 void emitterXVariationChanged(qreal arg);-
108-
109 void emitterYVariationChanged(qreal arg);-
110-
111 void followChanged(const QString &arg);-
112-
113 void emissionShapeChanged(QQuickParticleExtruder* arg);-
114-
115public Q_SLOTS:-
116-
117 void setParticlesPerParticlePerSecond(int arg)-
118 {-
119 if (m_particlesPerParticlePerSecond != arg) {
m_particlesPer...rSecond != argDescription
TRUEevaluated 18 times by 2 tests
Evaluated by:
  • tst_examples
  • tst_qquicktrailemitter
FALSEnever evaluated
0-18
120 m_particlesPerParticlePerSecond = arg;-
121 Q_EMIT particlesPerParticlePerSecondChanged(arg);-
122 }
executed 18 times by 2 tests: end of block
Executed by:
  • tst_examples
  • tst_qquicktrailemitter
18
123 }
executed 18 times by 2 tests: end of block
Executed by:
  • tst_examples
  • tst_qquicktrailemitter
18
124 void setEmitterXVariation(qreal arg)-
125 {-
126 if (m_emitterXVariation != arg) {
m_emitterXVariation != argDescription
TRUEevaluated 8 times by 1 test
Evaluated by:
  • tst_examples
FALSEnever evaluated
0-8
127 m_emitterXVariation = arg;-
128 Q_EMIT emitterXVariationChanged(arg);-
129 }
executed 8 times by 1 test: end of block
Executed by:
  • tst_examples
8
130 }
executed 8 times by 1 test: end of block
Executed by:
  • tst_examples
8
131-
132 void setEmitterYVariation(qreal arg)-
133 {-
134 if (m_emitterYVariation != arg) {
m_emitterYVariation != argDescription
TRUEevaluated 8 times by 1 test
Evaluated by:
  • tst_examples
FALSEnever evaluated
0-8
135 m_emitterYVariation = arg;-
136 Q_EMIT emitterYVariationChanged(arg);-
137 }
executed 8 times by 1 test: end of block
Executed by:
  • tst_examples
8
138 }
executed 8 times by 1 test: end of block
Executed by:
  • tst_examples
8
139-
140 void setFollow(const QString &arg)-
141 {-
142 if (m_follow != arg) {
m_follow != argDescription
TRUEevaluated 16 times by 1 test
Evaluated by:
  • tst_examples
FALSEevaluated 2 times by 1 test
Evaluated by:
  • tst_qquicktrailemitter
2-16
143 m_follow = arg;-
144 Q_EMIT followChanged(arg);-
145 }
executed 16 times by 1 test: end of block
Executed by:
  • tst_examples
16
146 }
executed 18 times by 2 tests: end of block
Executed by:
  • tst_examples
  • tst_qquicktrailemitter
18
147-
148 void setEmissionShape(QQuickParticleExtruder* arg)-
149 {-
150 if (m_emissionExtruder != arg) {
m_emissionExtruder != argDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • tst_examples
FALSEnever evaluated
0-4
151 m_emissionExtruder = arg;-
152 Q_EMIT emissionShapeChanged(arg);-
153 }
executed 4 times by 1 test: end of block
Executed by:
  • tst_examples
4
154 }
executed 4 times by 1 test: end of block
Executed by:
  • tst_examples
4
155-
156private Q_SLOTS:-
157 void recalcParticlesPerSecond();-
158-
159private:-
160 QSet<QQuickParticleData*> m_pending;-
161 QVector<qreal> m_lastEmission;-
162 int m_particlesPerParticlePerSecond;-
163 qreal m_lastTimeStamp;-
164 qreal m_emitterXVariation;-
165 qreal m_emitterYVariation;-
166 QString m_follow;-
167 int m_followCount;-
168 QQuickParticleExtruder* m_emissionExtruder;-
169 QQuickParticleExtruder* m_defaultEmissionExtruder;-
170 bool isEmitFollowConnected();-
171};-
172-
173QT_END_NAMESPACE-
174#endif // FOLLOWEMITTER_H-
Source codeSwitch to Preprocessed file

Generated by Squish Coco 4.2.0