Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / shared / TestTextEdit.qml
1 import QtQuick 1.0
2 import "../shared" 1.0
3
4 TextEdit {
5     id: edit
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: edit.cursorVisible
13     }
14 }