summaryrefslogtreecommitdiffstats
path: root/src/imports/particles/plugins.qmltypes
blob: 6956e4950ac246e1f10fe6727b1a91f3813d2421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import QtQuick.tooling 1.1

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated with the command 'qml1plugindump Qt.labs.particles 1.0'.

Module {
    Component {
        name: "QDeclarativeParticleMotion"
        prototype: "QObject"
        exports: ["ParticleMotion 1.0"]
    }
    Component {
        name: "QDeclarativeParticleMotionGravity"
        prototype: "QDeclarativeParticleMotion"
        exports: ["ParticleMotionGravity 1.0"]
        Property { name: "xattractor"; type: "double" }
        Property { name: "yattractor"; type: "double" }
        Property { name: "acceleration"; type: "double" }
    }
    Component {
        name: "QDeclarativeParticleMotionLinear"
        prototype: "QDeclarativeParticleMotion"
        exports: ["ParticleMotionLinear 1.0"]
    }
    Component {
        name: "QDeclarativeParticleMotionWander"
        prototype: "QDeclarativeParticleMotion"
        exports: ["ParticleMotionWander 1.0"]
        Property { name: "xvariance"; type: "double" }
        Property { name: "yvariance"; type: "double" }
        Property { name: "pace"; type: "double" }
    }
    Component {
        name: "QDeclarativeParticles"
        defaultProperty: "motion"
        prototype: "QDeclarativeItem"
        exports: ["Particles 1.0"]
        Property { name: "source"; type: "QUrl" }
        Property { name: "count"; type: "int" }
        Property { name: "emissionRate"; type: "int" }
        Property { name: "emissionVariance"; type: "double" }
        Property { name: "lifeSpan"; type: "int" }
        Property { name: "lifeSpanDeviation"; type: "int" }
        Property { name: "fadeInDuration"; type: "int" }
        Property { name: "fadeOutDuration"; type: "int" }
        Property { name: "angle"; type: "double" }
        Property { name: "angleDeviation"; type: "double" }
        Property { name: "velocity"; type: "double" }
        Property { name: "velocityDeviation"; type: "double" }
        Property { name: "motion"; type: "QDeclarativeParticleMotion"; isPointer: true }
        Signal { name: "emittingChanged" }
        Method {
            name: "burst"
            Parameter { name: "count"; type: "int" }
            Parameter { name: "emissionRate"; type: "int" }
        }
        Method {
            name: "burst"
            Parameter { name: "count"; type: "int" }
        }
    }
}