diff options
Diffstat (limited to 'tests/auto/qml/qqmlsynchronizer/data/onVsSourceProperty.qml')
-rw-r--r-- | tests/auto/qml/qqmlsynchronizer/data/onVsSourceProperty.qml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlsynchronizer/data/onVsSourceProperty.qml b/tests/auto/qml/qqmlsynchronizer/data/onVsSourceProperty.qml new file mode 100644 index 0000000000..b27f8b14e2 --- /dev/null +++ b/tests/auto/qml/qqmlsynchronizer/data/onVsSourceProperty.qml @@ -0,0 +1,38 @@ +// Copyright (C) 2025 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only +import QtQml +import Qt.labs.synchronizer + +QtObject { + id: root + objectName: "bar" + property string unbindable: "a" + property int count: 12 + + property int countBounces: 0 + + property QtObject other: QtObject { + id: other + objectName: "foo" + property string unbindable: "b" + property double count: 13.5 + + onCountChanged: count = 13.5 // reject any changes to count + } + + Synchronizer on objectName { + sourceObject: other + sourceProperty: "objectName" + } + + Synchronizer on unbindable { + sourceObject: other + sourceProperty: "unbindable" + } + + Synchronizer on count { + sourceObject: other + sourceProperty: "count" + onValueBounced: ++root.countBounces + } +} |