Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativetextinput / data / geometrySignals.qml
1 import QtQuick 1.0
2
3 Item {
4     width: 400; height: 500;
5     property int bindingWidth: text.width
6     property int bindingHeight: text.height
7
8     TextEdit {
9         id: text
10         anchors.fill: parent
11     }
12 }