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

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