aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextedit/data/geometrySignals.qml
blob: 3dbe61c74b104a52813b75b6a2d5a4037fd1fab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

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

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