Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / shared / TestTextInput.qml
1 import QtQuick 1.0
2 import "../shared" 1.0
3
4 TextInput {
5     id: inp
6     FontLoader { id: fixedFont; source: "DejaVuSansMono.ttf" }
7     font.family: fixedFont.name
8     font.pixelSize: 12
9     cursorDelegate: Rectangle {
10             width: 1;
11             color: "black";
12             visible: parent.cursorVisible//bug that 'inp' doesn't seem to work?
13     }
14 }