summaryrefslogtreecommitdiffstats
path: root/src/imports/audioengine/plugins.qmltypes
blob: 0468d839a65561d79f8ea23c4392620f589be910 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import QtQuick.tooling 1.2

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -nonrelocatable QtAudioEngine 1.1'

Module {
    dependencies: ["QtQuick 2.0"]
    Component {
        name: "QDeclarativeAttenuationModel"
        prototype: "QObject"
        Property { name: "name"; type: "string" }
    }
    Component {
        name: "QDeclarativeAttenuationModelInverse"
        prototype: "QDeclarativeAttenuationModel"
        exports: ["QtAudioEngine/AttenuationModelInverse 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "start"; type: "double" }
        Property { name: "end"; type: "double" }
        Property { name: "rolloff"; type: "double" }
    }
    Component {
        name: "QDeclarativeAttenuationModelLinear"
        prototype: "QDeclarativeAttenuationModel"
        exports: ["QtAudioEngine/AttenuationModelLinear 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "start"; type: "double" }
        Property { name: "end"; type: "double" }
    }
    Component {
        name: "QDeclarativeAudioCategory"
        prototype: "QObject"
        exports: ["QtAudioEngine/AudioCategory 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "volume"; type: "double" }
        Property { name: "name"; type: "string" }
        Signal {
            name: "volumeChanged"
            Parameter { name: "newVolume"; type: "double" }
        }
        Signal { name: "stopped" }
        Signal { name: "paused" }
        Signal { name: "resumed" }
        Method { name: "stop" }
        Method { name: "pause" }
        Method { name: "resume" }
    }
    Component {
        name: "QDeclarativeAudioEngine"
        defaultProperty: "bank"
        prototype: "QObject"
        exports: [
            "QtAudioEngine/AudioEngine 1.0",
            "QtAudioEngine/AudioEngine 1.1"
        ]
        exportMetaObjectRevisions: [0, 1]
        Property { name: "bank"; type: "QObject"; isList: true; isReadonly: true }
        Property { name: "categories"; type: "QObject"; isReadonly: true; isPointer: true }
        Property { name: "samples"; type: "QObject"; isReadonly: true; isPointer: true }
        Property { name: "sounds"; type: "QObject"; isReadonly: true; isPointer: true }
        Property { name: "loading"; type: "bool"; isReadonly: true }
        Property { name: "liveInstances"; type: "int"; isReadonly: true }
        Property {
            name: "listener"
            type: "QDeclarativeAudioListener"
            isReadonly: true
            isPointer: true
        }
        Property { name: "dopplerFactor"; type: "double" }
        Property { name: "speedOfSound"; type: "double" }
        Signal { name: "ready" }
        Signal { name: "liveInstanceCountChanged" }
        Signal { name: "isLoadingChanged" }
        Signal { name: "finishedLoading" }
        Method {
            name: "addAudioSample"
            revision: 1
            Parameter { type: "QDeclarativeAudioSample"; isPointer: true }
        }
        Method {
            name: "addSound"
            revision: 1
            Parameter { type: "QDeclarativeSound"; isPointer: true }
        }
        Method {
            name: "addAudioCategory"
            revision: 1
            Parameter { type: "QDeclarativeAudioCategory"; isPointer: true }
        }
        Method {
            name: "addAttenuationModel"
            revision: 1
            Parameter { type: "QDeclarativeAttenuationModel"; isPointer: true }
        }
    }
    Component {
        name: "QDeclarativeAudioListener"
        prototype: "QObject"
        exports: ["QtAudioEngine/AudioListener 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "engine"; type: "QDeclarativeAudioEngine"; isPointer: true }
        Property { name: "position"; type: "QVector3D" }
        Property { name: "direction"; type: "QVector3D" }
        Property { name: "velocity"; type: "QVector3D" }
        Property { name: "up"; type: "QVector3D" }
        Property { name: "gain"; type: "double" }
    }
    Component {
        name: "QDeclarativeAudioSample"
        prototype: "QObject"
        exports: ["QtAudioEngine/AudioSample 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "name"; type: "string" }
        Property { name: "source"; type: "QUrl" }
        Property { name: "preloaded"; type: "bool" }
        Property { name: "streaming"; type: "bool" }
        Property { name: "loaded"; type: "bool"; isReadonly: true }
        Method { name: "load" }
    }
    Component {
        name: "QDeclarativePlayVariation"
        prototype: "QObject"
        exports: ["QtAudioEngine/PlayVariation 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "sample"; type: "string" }
        Property { name: "looping"; type: "bool" }
        Property { name: "maxGain"; type: "double" }
        Property { name: "minGain"; type: "double" }
        Property { name: "maxPitch"; type: "double" }
        Property { name: "minPitch"; type: "double" }
    }
    Component {
        name: "QDeclarativeSound"
        defaultProperty: "playVariationlist"
        prototype: "QObject"
        exports: ["QtAudioEngine/Sound 1.0", "QtAudioEngine/Sound 1.1"]
        exportMetaObjectRevisions: [0, 1]
        Enum {
            name: "PlayType"
            values: {
                "Random": 0,
                "Sequential": 1
            }
        }
        Property { name: "name"; type: "string" }
        Property { name: "playType"; type: "PlayType" }
        Property { name: "category"; type: "string" }
        Property { name: "cone"; type: "QDeclarativeSoundCone"; isReadonly: true; isPointer: true }
        Property { name: "attenuationModel"; type: "string" }
        Property {
            name: "playVariationlist"
            type: "QDeclarativePlayVariation"
            isList: true
            isReadonly: true
        }
        Method { name: "play" }
        Method {
            name: "play"
            Parameter { name: "gain"; type: "double" }
        }
        Method {
            name: "play"
            Parameter { name: "gain"; type: "double" }
            Parameter { name: "pitch"; type: "double" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "velocity"; type: "QVector3D" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "velocity"; type: "QVector3D" }
            Parameter { name: "direction"; type: "QVector3D" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "gain"; type: "double" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "velocity"; type: "QVector3D" }
            Parameter { name: "gain"; type: "double" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "velocity"; type: "QVector3D" }
            Parameter { name: "direction"; type: "QVector3D" }
            Parameter { name: "gain"; type: "double" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "gain"; type: "double" }
            Parameter { name: "pitch"; type: "double" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "velocity"; type: "QVector3D" }
            Parameter { name: "gain"; type: "double" }
            Parameter { name: "pitch"; type: "double" }
        }
        Method {
            name: "play"
            Parameter { name: "position"; type: "QVector3D" }
            Parameter { name: "velocity"; type: "QVector3D" }
            Parameter { name: "direction"; type: "QVector3D" }
            Parameter { name: "gain"; type: "double" }
            Parameter { name: "pitch"; type: "double" }
        }
        Method { name: "newInstance"; type: "QDeclarativeSoundInstance*" }
        Method {
            name: "addPlayVariation"
            revision: 1
            Parameter { type: "QDeclarativePlayVariation"; isPointer: true }
        }
    }
    Component {
        name: "QDeclarativeSoundCone"
        prototype: "QObject"
        Property { name: "innerAngle"; type: "double" }
        Property { name: "outerAngle"; type: "double" }
        Property { name: "outerGain"; type: "double" }
    }
    Component {
        name: "QDeclarativeSoundInstance"
        prototype: "QObject"
        exports: ["QtAudioEngine/SoundInstance 1.0"]
        exportMetaObjectRevisions: [0]
        Enum {
            name: "State"
            values: {
                "StoppedState": 0,
                "PlayingState": 1,
                "PausedState": 2
            }
        }
        Property { name: "engine"; type: "QDeclarativeAudioEngine"; isPointer: true }
        Property { name: "sound"; type: "string" }
        Property { name: "state"; type: "State"; isReadonly: true }
        Property { name: "position"; type: "QVector3D" }
        Property { name: "direction"; type: "QVector3D" }
        Property { name: "velocity"; type: "QVector3D" }
        Property { name: "gain"; type: "double" }
        Property { name: "pitch"; type: "double" }
        Method { name: "play" }
        Method { name: "stop" }
        Method { name: "pause" }
        Method {
            name: "updatePosition"
            Parameter { name: "deltaTime"; type: "double" }
        }
    }
    Component {
        name: "QQmlPropertyMap"
        prototype: "QObject"
        Signal {
            name: "valueChanged"
            Parameter { name: "key"; type: "string" }
            Parameter { name: "value"; type: "QVariant" }
        }
        Method { name: "keys"; type: "QStringList" }
    }
}