aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/Things/plugins.qmltypes')
-rw-r--r--tests/auto/qml/qmllint/data/Things/plugins.qmltypes25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/Things/plugins.qmltypes b/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
index 95ff95eb7d..448a966145 100644
--- a/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
+++ b/tests/auto/qml/qmllint/data/Things/plugins.qmltypes
@@ -30,4 +30,29 @@ Module {
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 }
+ }
}