aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextinput/data/cursorTest.qml
blob: 73085c1749cd224358320b1231320ac2cefc4b61 (plain)
1
2
3
4
5
6
7
8
import QtQuick 1.0

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