Qt
6.x
The Qt SDK
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Symbols
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
Loading...
Searching...
No Matches
qquick3dparticletrailemitter_p.h
Go to the documentation of this file.
1
// Copyright (C) 2021 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4
#ifndef QQUICK3DPARTICLETRAILEMITTER_H
5
#define QQUICK3DPARTICLETRAILEMITTER_H
6
7
//
8
// W A R N I N G
9
// -------------
10
//
11
// This file is not part of the Qt API. It exists purely as an
12
// implementation detail. This header file may change from version to
13
// version without notice, or even be removed.
14
//
15
// We mean it.
16
//
17
18
#include <QtQuick3DParticles/private/qquick3dparticleemitter_p.h>
19
#include <QtQuick3DParticles/private/qquick3dparticle_p.h>
20
#include <QtQuick3DParticles/private/qquick3dparticledata_p.h>
21
#include <QQmlEngine>
22
#include <QList>
23
24
QT_BEGIN_NAMESPACE
25
26
class
Q_QUICK3DPARTICLES_EXPORT
QQuick3DParticleTrailEmitter
:
public
QQuick3DParticleEmitter
27
{
28
Q_OBJECT
29
Q_PROPERTY
(
QQuick3DParticle
*follow READ follow WRITE setFollow NOTIFY followChanged)
30
QML_NAMED_ELEMENT
(TrailEmitter3D)
31
QML_ADDED_IN_VERSION
(6, 2)
32
33
public
:
34
QQuick3DParticleTrailEmitter
(
QQuick3DNode
*
parent
=
nullptr
);
35
36
QQuick3DParticle
*follow()
const
;
37
38
Q_INVOKABLE
void
burst
(
int
count
)
override
;
39
40
public
Q_SLOTS
:
41
void
setFollow(
QQuick3DParticle
*follow);
42
43
Q_SIGNALS
:
44
void
followChanged
();
45
46
protected
:
47
friend
class
QQuick3DParticleSystem
;
48
void
emitTrailParticles(
const
QVector3D
¢erPos,
int
emitAmount,
int
triggerType);
49
bool
hasBursts()
const
;
50
void
clearBursts();
51
52
private
:
53
QQuick3DParticle
*m_follow =
nullptr
;
54
QList<QQuick3DParticleEmitBurstData>
m_bursts;
55
56
};
57
58
QT_END_NAMESPACE
59
60
#endif
// QQUICK3DPARTICLETRAILEMITTER_H
QList
Definition
qlist.h:74
QQuick3DNode
Definition
qquick3dnode_p.h:30
QQuick3DParticleEmitter
Definition
qquick3dparticleemitter_p.h:29
QQuick3DParticleEmitter::QQuick3DParticleTrailEmitter
friend class QQuick3DParticleTrailEmitter
Definition
qquick3dparticleemitter_p.h:122
QQuick3DParticleEmitter::burst
virtual Q_INVOKABLE void burst(int count)
\qmlmethod vector3d ParticleEmitter3D::burst(int count)
Definition
qquick3dparticleemitter.cpp:549
QQuick3DParticleSystem
Definition
qquick3dparticlesystem_p.h:52
QQuick3DParticleTrailEmitter
Definition
qquick3dparticletrailemitter_p.h:27
QQuick3DParticleTrailEmitter::followChanged
void followChanged()
QQuick3DParticle
Definition
qquick3dparticle_p.h:29
QVector3D
The QVector3D class represents a vector or vertex in 3D space.
Definition
qvectornd.h:171
QT_BEGIN_NAMESPACE
Combined button and popup list for selecting options.
Definition
qstandardpaths_haiku.cpp:21
QT_END_NAMESPACE
Definition
qsharedpointer.cpp:1545
count
GLenum GLenum GLsizei count
Definition
qopengles2ext.h:150
QML_NAMED_ELEMENT
#define QML_NAMED_ELEMENT(NAME)
Definition
qqmlintegration.h:52
QML_ADDED_IN_VERSION
#define QML_ADDED_IN_VERSION(MAJOR, MINOR)
Definition
qqmlintegration.h:86
Q_PROPERTY
#define Q_PROPERTY(...)
Definition
qtmetamacros.h:56
Q_OBJECT
#define Q_OBJECT
Definition
qtmetamacros.h:117
Q_INVOKABLE
#define Q_INVOKABLE
Definition
qtmetamacros.h:76
Q_SLOTS
#define Q_SLOTS
Definition
qtmetamacros.h:44
Q_SIGNALS
#define Q_SIGNALS
Definition
qtmetamacros.h:45
parent
IUIAutomationTreeWalker __RPC__deref_out_opt IUIAutomationElement ** parent
Definition
uiaclientinterfaces_p.h:209
qtquick3d
src
quick3dparticles
qquick3dparticletrailemitter_p.h
Generated by
1.9.7