2019-04-29 01:50:46 +10:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
|
|
|
|
ScrollView {
|
2019-04-29 05:13:18 +10:00
|
|
|
property alias backgroundColor: textAreaBackground.color
|
2019-04-29 01:50:46 +10:00
|
|
|
property alias placeholderText: textArea.placeholderText
|
|
|
|
property alias text: textArea.text
|
|
|
|
property alias area: textArea
|
|
|
|
|
|
|
|
default property alias textAreaData: textArea.data
|
|
|
|
|
2019-05-07 11:07:59 +10:00
|
|
|
id: scrollView
|
2019-04-29 01:50:46 +10:00
|
|
|
clip: true
|
|
|
|
|
|
|
|
TextArea {
|
|
|
|
id: textArea
|
|
|
|
readOnly: ! visible
|
|
|
|
selectByMouse: true
|
|
|
|
|
|
|
|
wrapMode: TextEdit.Wrap
|
|
|
|
font.family: HStyle.fontFamily.sans
|
|
|
|
font.pixelSize: HStyle.fontSize.normal
|
2019-04-29 05:13:18 +10:00
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
color: HStyle.colors.foreground
|
2019-04-29 05:13:18 +10:00
|
|
|
background: Rectangle {
|
|
|
|
id: textAreaBackground
|
|
|
|
color: HStyle.controls.textArea.background
|
|
|
|
}
|
2019-05-07 11:07:59 +10:00
|
|
|
|
|
|
|
Keys.forwardTo: [scrollView]
|
2019-04-29 01:50:46 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|