aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextedit/data/geometrySignals.qml
blob: fe2ae122464a103d90a25c00f941c35f902a79d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0

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

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