2019-04-28 11:50:46 -04:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
|
|
|
|
ScrollView {
|
2019-04-28 15:13:18 -04:00
|
|
|
property alias backgroundColor: textAreaBackground.color
|
2019-04-28 11:50:46 -04:00
|
|
|
property alias placeholderText: textArea.placeholderText
|
|
|
|
property alias text: textArea.text
|
|
|
|
property alias area: textArea
|
|
|
|
|
|
|
|
default property alias textAreaData: textArea.data
|
|
|
|
|
2019-05-06 21:07:59 -04:00
|
|
|
id: scrollView
|
2019-04-28 11:50:46 -04:00
|
|
|
clip: true
|
|
|
|
|
|
|
|
TextArea {
|
|
|
|
id: textArea
|
|
|
|
readOnly: ! visible
|
|
|
|
selectByMouse: true
|
|
|
|
|
|
|
|
wrapMode: TextEdit.Wrap
|
2019-07-06 17:50:55 -04:00
|
|
|
font.family: theme.fontFamily.sans
|
|
|
|
font.pixelSize: theme.fontSize.normal
|
2019-04-28 15:13:18 -04:00
|
|
|
|
2019-07-06 17:50:55 -04:00
|
|
|
color: theme.colors.foreground
|
2019-04-28 15:13:18 -04:00
|
|
|
background: Rectangle {
|
|
|
|
id: textAreaBackground
|
2019-07-06 17:50:55 -04:00
|
|
|
color: theme.controls.textArea.background
|
2019-04-28 15:13:18 -04:00
|
|
|
}
|
2019-04-28 11:50:46 -04:00
|
|
|
}
|
|
|
|
}
|