aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
blob: 95ff95eb7d28112f7987359bb18bc4640fa7546d (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
import QtQuick.tooling 1.2
Module {
    dependencies: []
    Component {
        name: "SomethingEntirelyStrange"
        prototype: "QObject"
        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: [0]
    }
    Component {
        name: "MyPane"
        prototype: "QObject"
        exports: ["Things.Templates/Pane 1.0"]
        exportMetaObjectRevisions: [0]
        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 }
    }
}