Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativetextedit / data / cursorTest.qml
1 import QtQuick 1.0
2
3 Rectangle { width: 300; height: 300; color: "white"
4     TextEdit {  text: "Hello world!"; id: textEditObject; objectName: "textEditObject"
5         anchors.fill: parent
6         resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance" } } ] 
7         cursorDelegate: cursor
8     }
9 }