File: plugins.qmltypes

package info (click to toggle)
qtmpris 1.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 484 kB
  • sloc: cpp: 3,794; xml: 72; makefile: 6
file content (397 lines) | stat: -rw-r--r-- 15,191 bytes parent folder | download | duplicates (3)
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
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 org.nemomobile.mpris 1.0'

Module {
    dependencies: ["QtQuick 2.0"]
    Component {
        name: "Mpris"
        prototype: "QObject"
        exports: ["org.nemomobile.mpris/Mpris 1.0"]
        isCreatable: false
        isSingleton: true
        exportMetaObjectRevisions: [0]
        Enum {
            name: "PlaybackStatus"
            values: {
                "InvalidPlaybackStatus": -1,
                "Playing": 0,
                "Paused": 1,
                "Stopped": 2
            }
        }
        Enum {
            name: "LoopStatus"
            values: {
                "InvalidLoopStatus": -1,
                "None": 0,
                "Track": 1,
                "Playlist": 2
            }
        }
        Enum {
            name: "Metadata"
            values: {
                "InvalidMetadata": -1,
                "TrackId": 0,
                "Length": 1,
                "ArtUrl": 2,
                "Album": 3,
                "AlbumArtist": 4,
                "Artist": 5,
                "AsText": 6,
                "AudioBPM": 7,
                "AutoRating": 8,
                "Comment": 9,
                "Composer": 10,
                "ContentCreated": 11,
                "DiscNumber": 12,
                "FirstUsed": 13,
                "Genre": 14,
                "LastUsed": 15,
                "Lyricist": 16,
                "Title": 17,
                "TrackNumber": 18,
                "Url": 19,
                "UseCount": 20,
                "UserRating": 21
            }
        }
        Method {
            name: "metadataToString"
            type: "string"
            Parameter { name: "metadata"; type: "Metadata" }
        }
    }
    Component {
        name: "MprisManager"
        prototype: "QObject"
        exports: ["org.nemomobile.mpris/MprisManager 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "singleService"; type: "bool" }
        Property { name: "currentService"; type: "string" }
        Property { name: "availableServices"; type: "QStringList"; isReadonly: true }
        Property { name: "canQuit"; type: "bool"; isReadonly: true }
        Property { name: "canRaise"; type: "bool"; isReadonly: true }
        Property { name: "canSetFullscreen"; type: "bool"; isReadonly: true }
        Property { name: "desktopEntry"; type: "string"; isReadonly: true }
        Property { name: "fullscreen"; type: "bool" }
        Property { name: "hasTrackList"; type: "bool"; isReadonly: true }
        Property { name: "identity"; type: "string"; isReadonly: true }
        Property { name: "supportedUriSchemes"; type: "QStringList"; isReadonly: true }
        Property { name: "supportedMimeTypes"; type: "QStringList"; isReadonly: true }
        Property { name: "canControl"; type: "bool"; isReadonly: true }
        Property { name: "canGoNext"; type: "bool"; isReadonly: true }
        Property { name: "canGoPrevious"; type: "bool"; isReadonly: true }
        Property { name: "canPause"; type: "bool"; isReadonly: true }
        Property { name: "canPlay"; type: "bool"; isReadonly: true }
        Property { name: "canSeek"; type: "bool"; isReadonly: true }
        Property { name: "loopStatus"; type: "Mpris::LoopStatus" }
        Property { name: "maximumRate"; type: "double"; isReadonly: true }
        Property { name: "metadata"; type: "QVariantMap"; isReadonly: true }
        Property { name: "minimumRate"; type: "double"; isReadonly: true }
        Property { name: "playbackStatus"; type: "Mpris::PlaybackStatus"; isReadonly: true }
        Property { name: "position"; type: "qlonglong"; isReadonly: true }
        Property { name: "rate"; type: "double" }
        Property { name: "shuffle"; type: "bool" }
        Property { name: "volume"; type: "double" }
        Signal {
            name: "positionChanged"
            Parameter { name: "position"; type: "qlonglong" }
        }
        Signal {
            name: "seeked"
            Parameter { name: "position"; type: "qlonglong" }
        }
        Method { name: "singleService"; type: "bool" }
        Method {
            name: "setSingleService"
            Parameter { name: "single"; type: "bool" }
        }
        Method { name: "currentService"; type: "string" }
        Method {
            name: "setCurrentService"
            Parameter { name: "service"; type: "string" }
        }
        Method { name: "availableServices"; type: "QStringList" }
        Method { name: "canQuit"; type: "bool" }
        Method { name: "canRaise"; type: "bool" }
        Method { name: "canSetFullscreen"; type: "bool" }
        Method { name: "desktopEntry"; type: "string" }
        Method { name: "fullscreen"; type: "bool" }
        Method {
            name: "setFullscreen"
            Parameter { name: "fullscreen"; type: "bool" }
        }
        Method { name: "hasTrackList"; type: "bool" }
        Method { name: "identity"; type: "string" }
        Method { name: "supportedUriSchemes"; type: "QStringList" }
        Method { name: "supportedMimeTypes"; type: "QStringList" }
        Method { name: "canControl"; type: "bool" }
        Method { name: "canGoNext"; type: "bool" }
        Method { name: "canGoPrevious"; type: "bool" }
        Method { name: "canPause"; type: "bool" }
        Method { name: "canPlay"; type: "bool" }
        Method { name: "canSeek"; type: "bool" }
        Method { name: "loopStatus"; type: "Mpris::LoopStatus" }
        Method {
            name: "setLoopStatus"
            Parameter { name: "loopStatus"; type: "Mpris::LoopStatus" }
        }
        Method { name: "maximumRate"; type: "double" }
        Method { name: "metadata"; type: "QVariantMap" }
        Method { name: "minimumRate"; type: "double" }
        Method { name: "playbackStatus"; type: "Mpris::PlaybackStatus" }
        Method { name: "position"; type: "qlonglong" }
        Method { name: "requestPosition" }
        Method { name: "rate"; type: "double" }
        Method {
            name: "setRate"
            Parameter { name: "rate"; type: "double" }
        }
        Method { name: "shuffle"; type: "bool" }
        Method {
            name: "setShuffle"
            Parameter { name: "shuffle"; type: "bool" }
        }
        Method { name: "volume"; type: "double" }
        Method {
            name: "setVolume"
            Parameter { name: "volume"; type: "double" }
        }
        Method { name: "quit"; type: "bool" }
        Method { name: "raise"; type: "bool" }
        Method { name: "next"; type: "bool" }
        Method {
            name: "openUri"
            type: "bool"
            Parameter { name: "uri"; type: "QUrl" }
        }
        Method { name: "pause"; type: "bool" }
        Method { name: "play"; type: "bool" }
        Method { name: "playPause"; type: "bool" }
        Method { name: "previous"; type: "bool" }
        Method {
            name: "seek"
            type: "bool"
            Parameter { name: "offset"; type: "qlonglong" }
        }
        Method {
            name: "setPosition"
            type: "bool"
            Parameter { name: "position"; type: "qlonglong" }
        }
        Method {
            name: "setPosition"
            type: "bool"
            Parameter { name: "trackId"; type: "string" }
            Parameter { name: "position"; type: "qlonglong" }
        }
        Method { name: "stop"; type: "bool" }
    }
    Component {
        name: "MprisPlayer"
        prototype: "QObject"
        exports: ["org.nemomobile.mpris/MprisPlayer 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "serviceName"; type: "string" }
        Property { name: "canQuit"; type: "bool" }
        Property { name: "canRaise"; type: "bool" }
        Property { name: "canSetFullscreen"; type: "bool" }
        Property { name: "desktopEntry"; type: "string" }
        Property { name: "fullscreen"; type: "bool" }
        Property { name: "hasTrackList"; type: "bool" }
        Property { name: "identity"; type: "string" }
        Property { name: "supportedUriSchemes"; type: "QStringList" }
        Property { name: "supportedMimeTypes"; type: "QStringList" }
        Property { name: "canControl"; type: "bool" }
        Property { name: "canGoNext"; type: "bool" }
        Property { name: "canGoPrevious"; type: "bool" }
        Property { name: "canPause"; type: "bool" }
        Property { name: "canPlay"; type: "bool" }
        Property { name: "canSeek"; type: "bool" }
        Property { name: "loopStatus"; type: "Mpris::LoopStatus" }
        Property { name: "maximumRate"; type: "double" }
        Property { name: "metadata"; type: "QVariantMap" }
        Property { name: "minimumRate"; type: "double" }
        Property { name: "playbackStatus"; type: "Mpris::PlaybackStatus" }
        Property { name: "position"; type: "qlonglong" }
        Property { name: "rate"; type: "double" }
        Property { name: "shuffle"; type: "bool" }
        Property { name: "volume"; type: "double" }
        Signal {
            name: "fullscreenRequested"
            Parameter { name: "fullscreen"; type: "bool" }
        }
        Signal { name: "quitRequested" }
        Signal { name: "raiseRequested" }
        Signal {
            name: "loopStatusRequested"
            Parameter { name: "loopStatus"; type: "Mpris::LoopStatus" }
        }
        Signal {
            name: "rateRequested"
            Parameter { name: "rate"; type: "double" }
        }
        Signal {
            name: "shuffleRequested"
            Parameter { name: "shuffle"; type: "bool" }
        }
        Signal {
            name: "volumeRequested"
            Parameter { name: "volume"; type: "double" }
        }
        Signal { name: "nextRequested" }
        Signal {
            name: "openUriRequested"
            Parameter { name: "url"; type: "QUrl" }
        }
        Signal { name: "pauseRequested" }
        Signal { name: "playRequested" }
        Signal { name: "playPauseRequested" }
        Signal { name: "previousRequested" }
        Signal {
            name: "seekRequested"
            Parameter { name: "offset"; type: "qlonglong" }
        }
        Signal {
            name: "seeked"
            Parameter { name: "position"; type: "qlonglong" }
        }
        Signal {
            name: "setPositionRequested"
            Parameter { name: "trackId"; type: "QDBusObjectPath" }
            Parameter { name: "position"; type: "qlonglong" }
        }
        Signal { name: "stopRequested" }
        Method { name: "serviceName"; type: "string" }
        Method {
            name: "setServiceName"
            Parameter { name: "serviceName"; type: "string" }
        }
        Method { name: "canQuit"; type: "bool" }
        Method {
            name: "setCanQuit"
            Parameter { name: "canQuit"; type: "bool" }
        }
        Method { name: "canRaise"; type: "bool" }
        Method {
            name: "setCanRaise"
            Parameter { name: "canRaise"; type: "bool" }
        }
        Method { name: "canSetFullscreen"; type: "bool" }
        Method {
            name: "setCanSetFullscreen"
            Parameter { name: "canSetFullscreen"; type: "bool" }
        }
        Method { name: "desktopEntry"; type: "string" }
        Method {
            name: "setDesktopEntry"
            Parameter { name: "desktopEntry"; type: "string" }
        }
        Method { name: "fullscreen"; type: "bool" }
        Method {
            name: "setFullscreen"
            Parameter { name: "fullscreen"; type: "bool" }
        }
        Method { name: "hasTrackList"; type: "bool" }
        Method {
            name: "setHasTrackList"
            Parameter { name: "hasTrackList"; type: "bool" }
        }
        Method { name: "identity"; type: "string" }
        Method {
            name: "setIdentity"
            Parameter { name: "identity"; type: "string" }
        }
        Method { name: "supportedUriSchemes"; type: "QStringList" }
        Method {
            name: "setSupportedUriSchemes"
            Parameter { name: "supportedUriSchemes"; type: "QStringList" }
        }
        Method { name: "supportedMimeTypes"; type: "QStringList" }
        Method {
            name: "setSupportedMimeTypes"
            Parameter { name: "supportedMimeTypes"; type: "QStringList" }
        }
        Method { name: "canControl"; type: "bool" }
        Method {
            name: "setCanControl"
            Parameter { name: "canControl"; type: "bool" }
        }
        Method { name: "canGoNext"; type: "bool" }
        Method {
            name: "setCanGoNext"
            Parameter { name: "canGoNext"; type: "bool" }
        }
        Method { name: "canGoPrevious"; type: "bool" }
        Method {
            name: "setCanGoPrevious"
            Parameter { name: "canGoPrevious"; type: "bool" }
        }
        Method { name: "canPause"; type: "bool" }
        Method {
            name: "setCanPause"
            Parameter { name: "canPause"; type: "bool" }
        }
        Method { name: "canPlay"; type: "bool" }
        Method {
            name: "setCanPlay"
            Parameter { name: "canPlay"; type: "bool" }
        }
        Method { name: "canSeek"; type: "bool" }
        Method {
            name: "setCanSeek"
            Parameter { name: "canSeek"; type: "bool" }
        }
        Method { name: "loopStatus"; type: "Mpris::LoopStatus" }
        Method {
            name: "setLoopStatus"
            Parameter { name: "loopStatus"; type: "Mpris::LoopStatus" }
        }
        Method { name: "maximumRate"; type: "double" }
        Method {
            name: "setMaximumRate"
            Parameter { name: "maximumRate"; type: "double" }
        }
        Method { name: "metadata"; type: "QVariantMap" }
        Method {
            name: "setMetadata"
            Parameter { name: "metadata"; type: "QVariantMap" }
        }
        Method { name: "minimumRate"; type: "double" }
        Method {
            name: "setMinimumRate"
            Parameter { name: "minimumRate"; type: "double" }
        }
        Method { name: "playbackStatus"; type: "Mpris::PlaybackStatus" }
        Method {
            name: "setPlaybackStatus"
            Parameter { name: "playbackStatus"; type: "Mpris::PlaybackStatus" }
        }
        Method { name: "position"; type: "qlonglong" }
        Method {
            name: "setPosition"
            Parameter { name: "position"; type: "qlonglong" }
        }
        Method { name: "rate"; type: "double" }
        Method {
            name: "setRate"
            Parameter { name: "rate"; type: "double" }
        }
        Method { name: "shuffle"; type: "bool" }
        Method {
            name: "setShuffle"
            Parameter { name: "shuffle"; type: "bool" }
        }
        Method { name: "volume"; type: "double" }
        Method {
            name: "setVolume"
            Parameter { name: "volume"; type: "double" }
        }
    }
}