aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsgtextedit/data/cursorTest.qml
blob: e734fc141c9cfec0f3850f004e88646c23bb872b (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

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