summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextedit/data/cursorTest.qml
blob: 9aee378463bf17a646536baa2b1dc60ff1f0ebfa (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 1.0

Rectangle { width: 300; height: 300; color: "white"
    TextEdit {  text: "Hello world!"; id: textEditObject; objectName: "textEditObject"
        anchors.fill: parent
        resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance" } } ]
        cursorDelegate: cursor
    }
}