aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
blob: 99e1fdc46687b8117e610935724f814d1b2dbd2b (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
import QtQuick.tooling 1.2
Module {
    dependencies: []
    Component {
        name: "SomethingEntirelyStrange"
        prototype: "QObject"
        exports: ["Things/SomethingEntirelyStrange 1.0"]
        Enum {
            name: "AnEnum"
            values: {
                "AAA": 0,
                "BBB": 1,
                "CCC": 2
            }
        }
        Property { name: "palette"; type: "QPalette" }
    }
    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]
        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: "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"
        ]
    }
}