aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/testImport.qml
blob: 4a284ad8867d3846686004fe26326d196521b2ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0

import "testScriptImport.js" as TestScriptImport
import "testModuleImport.js" as TestModuleImport

QtObject {
    id: testQtObject

    property string importedScriptStringValue: TestScriptImport.greetingText
    property int importedScriptFunctionValue: TestScriptImport.randomInteger(1, 20)

    property int importedModuleAttachedPropertyValue: TestModuleImport.importedAttachedPropertyValue(testQtObject)
    property int importedModuleEnumValue: TestModuleImport.importedEnumValue
}