summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicstextedit/data/cursorTest.qml
blob: e5df8f103e7f4e7c85b77355e9f20cd88143c461 (plain)
1
2
3
4
5
6
7
8
import Qt 4.6

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