aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/builtins/builtins.qmltypes
blob: 3143a077e2c13fc758990c7ad657c3544e3609ef (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
import QtQuick.tooling 1.2

Module {
    dependencies: []

    Component {
        name: "void"
        accessSemantics: "none"
    }

    Component {
        name: "QVariant"
        accessSemantics: "value"
        exports: ["QML/var 1.0", "QML/variant 1.0"]
        exportMetaObjectRevisions: [256, 256]
    }

    Component {
        name: "QJSValue"
        accessSemantics: "value"
    }

    Component {
        // QQmlV4Function is the name for varargs. If such parameter is declared
        // we can invoke the method with any number of QJSValue parameters.
        // Access semantics are not "value" because the actual QQmlV4Function object
        // is passed as a pointer.
        name: "QQmlV4Function"
    }

    Component {
        name: "QObject"
        accessSemantics: "reference"
        exports: ["QML/QtObject 1.0"]
        exportMetaObjectRevisions: [256]

        Method {
            name: "toString"
            type: "QString"
        }

        Method {
            name: "destroy"
        }

        Method {
            name: "destroy"

            Parameter {
                name: "delay"
                type: "int"
            }
        }
    }

    Component {
        name: "QQmlComponent"
        accessSemantics: "reference"
        prototype: "QObject"
        exports: ["QML/Component 1.0"]
        exportMetaObjectRevisions: [256]

        Enum {
            name: "Status"
            values: ["Null", "Ready", "Loading", "Error"]
        }

        Property {
            name: "status"
            type: "Status"
            isReadonly: true
        }

        Signal {
            name: "statusChanged"

            Parameter {
                type: "QQmlComponent::Status"
            }

        }

        Method {
            name: "errorString"
            type: "QString"
        }
    }

    Component {
        name: "number"
        accessSemantics: "value"
    }

    Component {
        name: "int"
        prototype: "number"
        exports: ["QML/int 1.0"]
        exportMetaObjectRevisions: [256]
        accessSemantics: "value"
    }

    Component {
        name: "float"
        prototype: "number"
        accessSemantics: "value"
    }

    Component {
        name: "double"
        prototype: "number"
        exports: ["QML/real 1.0", "QML/double 1.0"]
        exportMetaObjectRevisions: [256]
        accessSemantics: "value"
    }

    Component {
        name: "QString"
        exports: ["QML/string 1.0"]
        exportMetaObjectRevisions: [256]
        accessSemantics: "value"
    }

    Component {
        name: "bool"
        exports: ["QML/bool 1.0"]
        exportMetaObjectRevisions: [256]
        accessSemantics: "value"
    }

    Component {
        name: "QDateTime"
        exports: ["QML/date 1.0"]
        exportMetaObjectRevisions: [256]
        accessSemantics: "value"
    }

    Component {
        name: "QUrl"
        exports: ["QML/url 1.0"]
        exportMetaObjectRevisions: [256]
        accessSemantics: "value"
    }

    Component {
        name: "QVariantList"
        valueType: "QVariant"
        accessSemantics: "sequence"
    }
}