summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextinput/data/geometrySignals.qml
blob: a9b50feae26e77948651a243eabca0ffe754cfcc (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

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