aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
blob: 47ae34cc00efb6dcd33bc4dd2567f328e3fb605a (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
import QtQuick.tooling 1.2
Module {
    dependencies: []
    Component {
        name: "CustomPalette"
        prototype: "QPalette"
    }

    Component {
        name: "SomethingEntirelyStrange"
        prototype: "QObject"
        exports: ["Things/SomethingEntirelyStrange 1.0"]
        Enum {
            name: "AnEnum"
            isScoped: true
            values: {
                "AAA": 0,
                "BBB": 1,
                "CCC": 2
            }
        }
        Enum {
            name: "TheEnum"
            isScoped: false
            values: {
                "V1": 0,
                "V2": 1
            }
        }
        Property { name: "palette"; type: "QPalette" }
        Property { name: "palette2"; type: "CustomPalette" }
    }
    Component {
        name: "Frame"
        prototype: "MyPane"
        exports: ["Things.Templates/Frame 1.0"]
        exportMetaObjectRevisions: [256]
    }
    Component {
        name: "MyPane"
        prototype: "QObject"
        exports: ["Things.Templates/Pane 1.0"]
        exportMetaObjectRevisions: [256]
        deferredNames: ["contentData"]
        Property { name: "contentWidth"; type: "double" }
        Property { name: "contentHeight"; type: "double" }
        Property { name: "contentData"; type: "QObject"; isList: true; isReadonly: true }
        Property { name: "contentChildren"; type: "QQuickItem"; isList: true; isReadonly: true }
    }
    Component {
        name: "WithImmediate"
        prototype: "QObject"
        exports: ["Things/WithImmediate 1.0"]
        exportMetaObjectRevisions: [256]
        immediateNames: ["contentData"]
        Property { name: "contentData"; type: "double" }
    }
    Component {
        name: "MyScreen"
        prototype: "QObject"
        exports: [
            "Things.Window/Screen 1.0",
        ]
        isCreatable: false
        attachedType: "MyScreenAttached"
    }
    Component {
        name: "MyScreenAttached"
        prototype: "MyScreenInfo"
        exports: [
            "Things.Window/ScreenAttached 1.0",
        ]
    }
    Component {
        name: "MyScreenInfo"
        prototype: "QObject"
        exports: [
            "Things.Window/ScreenInfo 1.0",
        ]
        isCreatable: false
        Property { name: "pixelDensity"; type: "double"; isReadonly: true }
    }
    Component {
        name: "ItemDerived"
        prototype: "QQuickItem"
        exports: [
            "Things/ItemDerived 1.0"
        ]
        Property { name: "alignment"; type: "Qt::Alignment" }
    }
    Component {
       name: "CustomParserThing"
       prototype: "QQuickItem"
       exports: [
            "Things/CustomParserThing 1.0"
       ]
       Property { name: "foo"; type: "string" }
       hasCustomParser: true
    }
    Component {
        file: "mediaplayer-qml.h"
        name: "MediaPlayerStateMachine"
        accessSemantics: "value"
        exports: ["Mediaplayer/MediaPlayerStateMachine 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [256]
    }
    Component {
        file: "constinvokable.h"
        name: "ConstInvokable"
        accessSemantics: "reference"
        prototype: "QObject"
        exports: ["Things/ConstInvokable 1.0"]
        exportMetaObjectRevisions: [256]
        Method { name: "getObject"; type: "QObject"; isPointer: true; isConstant: true }
    }
}