aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlbinding/data/restoreBinding3.qml
blob: 9fd5fc77d072b78ef86d2ff364cadbcb69c95930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0
import QtQml 2.14

Rectangle {
    height: 400
    width: 400

    Rectangle {
        property bool when: true

        id: myItem
        objectName:  "myItem"
        height: 300
        width: 200
        property var foo: 42
    }

    property var boundValue: 13

    Binding {
        restoreMode: Binding.RestoreBindingOrValue
        objectName: "theBinding"
        target: myItem
        property: "foo"
        when: myItem.when
        value: boundValue
    }
}