21 lines
472 B
QML
21 lines
472 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
import utils 1.0
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
TextField {
|
|
id: root
|
|
|
|
font.family: Style.current.baseFont.name
|
|
color: readOnly ? Style.current.secondaryText : Style.current.textColor
|
|
selectByMouse: !readOnly
|
|
selectedTextColor: Style.current.textColor
|
|
selectionColor: Style.current.primarySelectionColor
|
|
|
|
cursorDelegate: StatusCursorDelegate {
|
|
cursorVisible: root.cursorVisible
|
|
}
|
|
}
|