summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
blob: e7c5bc1b103396881868d7f7c9155dc68ae61e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 1.0
import "../shared" 1.0

TextEdit {
    id: edit
    FontLoader { id: fixedFont; source: "DejaVuSansMono.ttf" }
    font.family: fixedFont.name
    font.pixelSize: 12
    cursorDelegate: Rectangle {
            width: 1;
            color: "black";
            visible: edit.cursorVisible
    }
}