aboutsummaryrefslogtreecommitdiffstats
path: root/lib/qtcreator/qtcomponents/plugins.qmltypes
blob: f2a3db3a7d44c7e1bfb90363bf6db35a763ffaee (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
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
import QtQuick.tooling 1.1

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.

Module {
    Component {
        name: "QAbstractItemModel"
        prototype: "QObject"
        Signal {
            name: "dataChanged"
            Parameter { name: "topLeft"; type: "QModelIndex" }
            Parameter { name: "bottomRight"; type: "QModelIndex" }
        }
        Signal {
            name: "headerDataChanged"
            Parameter { name: "orientation"; type: "Qt::Orientation" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal { name: "layoutChanged" }
        Signal { name: "layoutAboutToBeChanged" }
        Signal {
            name: "rowsAboutToBeInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "rowsInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "rowsAboutToBeRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "rowsRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsAboutToBeInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsInserted"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsAboutToBeRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal {
            name: "columnsRemoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "first"; type: "int" }
            Parameter { name: "last"; type: "int" }
        }
        Signal { name: "modelAboutToBeReset" }
        Signal { name: "modelReset" }
        Signal {
            name: "rowsAboutToBeMoved"
            Parameter { name: "sourceParent"; type: "QModelIndex" }
            Parameter { name: "sourceStart"; type: "int" }
            Parameter { name: "sourceEnd"; type: "int" }
            Parameter { name: "destinationParent"; type: "QModelIndex" }
            Parameter { name: "destinationRow"; type: "int" }
        }
        Signal {
            name: "rowsMoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "start"; type: "int" }
            Parameter { name: "end"; type: "int" }
            Parameter { name: "destination"; type: "QModelIndex" }
            Parameter { name: "row"; type: "int" }
        }
        Signal {
            name: "columnsAboutToBeMoved"
            Parameter { name: "sourceParent"; type: "QModelIndex" }
            Parameter { name: "sourceStart"; type: "int" }
            Parameter { name: "sourceEnd"; type: "int" }
            Parameter { name: "destinationParent"; type: "QModelIndex" }
            Parameter { name: "destinationColumn"; type: "int" }
        }
        Signal {
            name: "columnsMoved"
            Parameter { name: "parent"; type: "QModelIndex" }
            Parameter { name: "start"; type: "int" }
            Parameter { name: "end"; type: "int" }
            Parameter { name: "destination"; type: "QModelIndex" }
            Parameter { name: "column"; type: "int" }
        }
        Method { name: "submit"; type: "bool" }
        Method { name: "revert" }
    }
    Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
    Component {
        name: "QDeclarativeFolderListModel"
        prototype: "QAbstractListModel"
        exports: [
            "FileSystemModel 1.0"
        ]
        Enum {
            name: "SortField"
            values: {
                "Unsorted": 0,
                "Name": 1,
                "Time": 2,
                "Size": 3,
                "Type": 4
            }
        }
        Property { name: "folder"; type: "QUrl" }
        Property { name: "parentFolder"; type: "QUrl"; isReadonly: true }
        Property { name: "nameFilters"; type: "QStringList" }
        Property { name: "sortField"; type: "SortField" }
        Property { name: "sortReversed"; type: "bool" }
        Property { name: "showDirs"; type: "bool" }
        Property { name: "showDotAndDotDot"; type: "bool" }
        Property { name: "showOnlyReadable"; type: "bool" }
        Property { name: "count"; type: "int"; isReadonly: true }
        Signal { name: "folderChanged" }
        Signal { name: "countChanged" }
        Method {
            name: "isFolder"
            type: "bool"
            Parameter { name: "index"; type: "int" }
        }
    }
    Component {
        name: "QGraphicsDropShadowEffect"
        prototype: "QGraphicsEffect"
        exports: [
            "DropShadow 1.0"
        ]
        Property { name: "offset"; type: "QPointF" }
        Property { name: "xOffset"; type: "qreal" }
        Property { name: "yOffset"; type: "qreal" }
        Property { name: "blurRadius"; type: "qreal" }
        Property { name: "color"; type: "QColor" }
        Signal {
            name: "offsetChanged"
            Parameter { name: "offset"; type: "QPointF" }
        }
        Signal {
            name: "blurRadiusChanged"
            Parameter { name: "blurRadius"; type: "qreal" }
        }
        Signal {
            name: "colorChanged"
            Parameter { name: "color"; type: "QColor" }
        }
        Method {
            name: "setOffset"
            Parameter { name: "ofs"; type: "QPointF" }
        }
        Method {
            name: "setOffset"
            Parameter { name: "dx"; type: "qreal" }
            Parameter { name: "dy"; type: "qreal" }
        }
        Method {
            name: "setOffset"
            Parameter { name: "d"; type: "qreal" }
        }
        Method {
            name: "setXOffset"
            Parameter { name: "dx"; type: "qreal" }
        }
        Method {
            name: "setYOffset"
            Parameter { name: "dy"; type: "qreal" }
        }
        Method {
            name: "setBlurRadius"
            Parameter { name: "blurRadius"; type: "qreal" }
        }
        Method {
            name: "setColor"
            Parameter { name: "color"; type: "QColor" }
        }
    }
    Component {
        name: "QGraphicsEffect"
        prototype: "QObject"
        Enum {
            name: "ChangeFlags"
            values: {
                "SourceAttached": 1,
                "SourceDetached": 2,
                "SourceBoundingRectChanged": 4,
                "SourceInvalidated": 8
            }
        }
        Property { name: "enabled"; type: "bool" }
        Signal {
            name: "enabledChanged"
            Parameter { name: "enabled"; type: "bool" }
        }
        Method {
            name: "setEnabled"
            Parameter { name: "enable"; type: "bool" }
        }
        Method { name: "update" }
    }
    Component {
        name: "QRangeModel"
        prototype: "QObject"
        exports: [
            "RangeModel 1.0"
        ]
        Property { name: "value"; type: "qreal" }
        Property { name: "minimumValue"; type: "qreal" }
        Property { name: "maximumValue"; type: "qreal" }
        Property { name: "stepSize"; type: "qreal" }
        Property { name: "position"; type: "qreal" }
        Property { name: "positionAtMinimum"; type: "qreal" }
        Property { name: "positionAtMaximum"; type: "qreal" }
        Property { name: "inverted"; type: "bool" }
        Signal {
            name: "valueChanged"
            Parameter { name: "value"; type: "qreal" }
        }
        Signal {
            name: "positionChanged"
            Parameter { name: "position"; type: "qreal" }
        }
        Signal {
            name: "stepSizeChanged"
            Parameter { name: "stepSize"; type: "qreal" }
        }
        Signal {
            name: "invertedChanged"
            Parameter { name: "inverted"; type: "bool" }
        }
        Signal {
            name: "minimumChanged"
            Parameter { name: "min"; type: "qreal" }
        }
        Signal {
            name: "maximumChanged"
            Parameter { name: "max"; type: "qreal" }
        }
        Signal {
            name: "positionAtMinimumChanged"
            Parameter { name: "min"; type: "qreal" }
        }
        Signal {
            name: "positionAtMaximumChanged"
            Parameter { name: "max"; type: "qreal" }
        }
        Method { name: "toMinimum" }
        Method { name: "toMaximum" }
        Method {
            name: "setValue"
            Parameter { name: "value"; type: "qreal" }
        }
        Method {
            name: "setPosition"
            Parameter { name: "position"; type: "qreal" }
        }
        Method {
            name: "valueForPosition"
            type: "qreal"
            Parameter { name: "position"; type: "qreal" }
        }
        Method {
            name: "positionForValue"
            type: "qreal"
            Parameter { name: "value"; type: "qreal" }
        }
    }
    Component {
        name: "QStyleItem"
        defaultProperty: "data"
        prototype: "QDeclarativeItem"
        exports: [
            "QStyleItem 1.0"
        ]
        Property { name: "sunken"; type: "bool" }
        Property { name: "raised"; type: "bool" }
        Property { name: "active"; type: "bool" }
        Property { name: "selected"; type: "bool" }
        Property { name: "focus"; type: "bool" }
        Property { name: "on"; type: "bool" }
        Property { name: "hover"; type: "bool" }
        Property { name: "horizontal"; type: "bool" }
        Property { name: "elementType"; type: "string" }
        Property { name: "text"; type: "string" }
        Property { name: "activeControl"; type: "string" }
        Property { name: "info"; type: "string" }
        Property { name: "style"; type: "string"; isReadonly: true }
        Property { name: "hint"; type: "string" }
        Property { name: "cursor"; type: "string" }
        Property { name: "minimum"; type: "int" }
        Property { name: "maximum"; type: "int" }
        Property { name: "value"; type: "int" }
        Property { name: "step"; type: "int" }
        Property { name: "paintMargins"; type: "int" }
        Property { name: "fontFamily"; type: "string"; isReadonly: true }
        Property { name: "fontPointSize"; type: "double"; isReadonly: true }
        Property { name: "fontHeight"; type: "int"; isReadonly: true }
        Signal { name: "elementTypeChanged" }
        Signal { name: "textChanged" }
        Signal { name: "sunkenChanged" }
        Signal { name: "raisedChanged" }
        Signal { name: "activeChanged" }
        Signal { name: "selectedChanged" }
        Signal { name: "focusChanged" }
        Signal { name: "onChanged" }
        Signal { name: "hoverChanged" }
        Signal { name: "horizontalChanged" }
        Signal { name: "minimumChanged" }
        Signal { name: "maximumChanged" }
        Signal { name: "stepChanged" }
        Signal { name: "valueChanged" }
        Signal { name: "activeControlChanged" }
        Signal { name: "infoChanged" }
        Signal { name: "styleChanged" }
        Signal { name: "paintMarginsChanged" }
        Signal { name: "hintChanged" }
        Signal { name: "cursorChanged" }
        Signal { name: "fontHeightChanged" }
        Method {
            name: "pixelMetric"
            type: "int"
            Parameter { type: "string" }
        }
        Method {
            name: "styleHint"
            type: "QVariant"
            Parameter { type: "string" }
        }
        Method {
            name: "sizeFromContents"
            type: "QSize"
            Parameter { name: "width"; type: "int" }
            Parameter { name: "height"; type: "int" }
        }
        Method { name: "updateItem" }
        Method {
            name: "hitTest"
            type: "string"
            Parameter { name: "x"; type: "int" }
            Parameter { name: "y"; type: "int" }
        }
        Method {
            name: "subControlRect"
            type: "QRect"
            Parameter { name: "subcontrolString"; type: "string" }
        }
        Method {
            name: "showToolTip"
            Parameter { name: "str"; type: "string" }
        }
        Method {
            name: "textWidth"
            type: "int"
            Parameter { type: "string" }
        }
    }
    Component {
        name: "QWheelArea"
        defaultProperty: "data"
        prototype: "QDeclarativeItem"
        exports: [
            "WheelArea 1.0"
        ]
        Property { name: "verticalDelta"; type: "qreal" }
        Property { name: "horizontalDelta"; type: "qreal" }
        Property { name: "horizontalMinimumValue"; type: "qreal" }
        Property { name: "horizontalMaximumValue"; type: "qreal" }
        Property { name: "verticalMinimumValue"; type: "qreal" }
        Property { name: "verticalMaximumValue"; type: "qreal" }
        Property { name: "horizontalValue"; type: "qreal" }
        Property { name: "verticalValue"; type: "qreal" }
        Signal { name: "verticalValueChanged" }
        Signal { name: "horizontalValueChanged" }
        Signal { name: "verticalWheelMoved" }
        Signal { name: "horizontalWheelMoved" }
    }
    Component {
        name: "QtMenu"
        defaultProperty: "menuItems"
        prototype: "QObject"
        exports: [
            "MenuBase 1.0"
        ]
        Property { name: "title"; type: "string" }
        Property { name: "menuItems"; type: "QtMenuItem"; isList: true; isReadonly: true }
        Signal { name: "selected" }
        Method {
            name: "showPopup"
            Parameter { name: "x"; type: "qreal" }
            Parameter { name: "y"; type: "qreal" }
        }
    }
    Component {
        name: "QtMenuBar"
        defaultProperty: "data"
        prototype: "QDeclarativeItem"
        exports: [
            "MenuBarBase 1.0"
        ]
        Property { name: "menus"; type: "QtMenu"; isList: true; isReadonly: true }
    }
    Component {
        name: "QtMenuItem"
        prototype: "QObject"
        exports: [
            "MenuItemBase 1.0"
        ]
        Property { name: "text"; type: "string" }
        Signal { name: "selected" }
    }
}