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

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
    }
}