aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/singletontype/qobjectSingletonType.qml
blob: e0ada559ef5ce6f7f5a93563e9becd16d7da1c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0

import Qt.test 1.0 as QtTest                                    // singleton Type installed into existing uri
import Qt.test.qobjectApi 1.0 as QtTestQObjectApi               // qobject singleton Type installed into new uri
import Qt.test.qobjectApi 1.3 as QtTestMinorVersionQObjectApi   // qobject singleton Type installed into existing uri with new minor version
import Qt.test.qobjectApi 2.0 as QtTestMajorVersionQObjectApi   // qobject singleton Type installed into existing uri with new major version
import Qt.test.qobjectApiParented 1.0 as QtTestParentedQObjectApi // qobject (with parent) singleton Type installed into a new uri

QtObject {
    property int existingUriTest: QtTest.QObject.qobjectTestProperty
    property int qobjectTest: QtTestQObjectApi.QObject.qobjectTestProperty
    property int qobjectMethodTest: 3
    property int qobjectMinorVersionTest: QtTestMinorVersionQObjectApi.QObject.qobjectTestProperty
    property int qobjectMajorVersionTest: QtTestMajorVersionQObjectApi.QObject.qobjectTestProperty
    property int qobjectParentedTest: QtTestParentedQObjectApi.QObject.qobjectTestProperty

    Component.onCompleted: {
        qobjectMethodTest = QtTestQObjectApi.QObject.qobjectTestMethod();
    }
}