aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qquickconnection/data/singletontype-target.qml
blob: df6f8a0301027ab1c8668b0eb2671186f15621c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.0
import MyTestSingletonType 1.0 as MyTestSingletonType

Item {
    id: rootObject
    objectName: "rootObject"
    property int newIntPropValue: 12

    property int moduleIntPropChangedCount: 0
    property int moduleOtherSignalCount: 0

    function setModuleIntProp() {
        MyTestSingletonType.Api.intProp = newIntPropValue;
        newIntPropValue = newIntPropValue + 1;
    }

    Connections {
        target: MyTestSingletonType.Api
        onIntPropChanged: moduleIntPropChangedCount = moduleIntPropChangedCount + 1;
        onOtherSignal: moduleOtherSignalCount = moduleOtherSignalCount + 1;
    }
}