18 lines
437 B
QML
18 lines
437 B
QML
|
|
import QtQuick 2.15
|
||
|
|
import DelegateUI 1.0
|
||
|
|
|
||
|
|
TextEdit {
|
||
|
|
id: control
|
||
|
|
|
||
|
|
readOnly: true
|
||
|
|
color: DelTheme.DelCopyableText.colorText
|
||
|
|
selectByMouse: true
|
||
|
|
selectByKeyboard: true
|
||
|
|
selectedTextColor: DelTheme.DelCopyableText.colorSelectedText
|
||
|
|
selectionColor: DelTheme.DelCopyableText.colorSelection
|
||
|
|
font {
|
||
|
|
family: DelTheme.DelCopyableText.fontFamily
|
||
|
|
pixelSize: DelTheme.DelCopyableText.fontSize
|
||
|
|
}
|
||
|
|
}
|