aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextedit/data/cursorTest.qml
blob: f7fb3e7cedd5491f10382e4d0dfcd9b1f13cea86 (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
    }
}