summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextedit/data/geometrySignals.qml
blob: b39ba5b8a4d7baf4a9a5027122a97480a9f3f741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.7

Item {
    width: 400; height: 500;
    property int bindingWidth: text.width
    property int bindingHeight: text.height

    TextInput {
        id: text
        anchors.fill: parent
    }
}