2019-12-19 22:46:16 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-12-12 04:53:22 +11:00
|
|
|
|
2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
2019-04-29 01:50:46 +10:00
|
|
|
|
|
|
|
ScrollView {
|
2019-09-08 05:42:23 +10:00
|
|
|
id: scrollView
|
2019-12-13 21:22:09 +11:00
|
|
|
opacity: enabled ? 1 : theme.disabledElementsOpacity
|
2019-09-08 05:42:23 +10:00
|
|
|
clip: true
|
|
|
|
ScrollBar.vertical.visible: contentHeight > height
|
|
|
|
|
2019-12-11 08:04:03 +11:00
|
|
|
// Set it only on component creation to avoid binding loops
|
|
|
|
Component.onCompleted: if (! text) {
|
|
|
|
text = window.getState(this, "text", "")
|
|
|
|
textArea.cursorPosition = text.length
|
|
|
|
}
|
|
|
|
|
|
|
|
onTextChanged: window.saveState(this)
|
|
|
|
|
2019-09-08 05:42:23 +10:00
|
|
|
|
|
|
|
default property alias textAreaData: textArea.data
|
|
|
|
|
2019-12-11 08:04:03 +11:00
|
|
|
property string saveName: ""
|
|
|
|
property var saveId: "ALL"
|
|
|
|
property var saveProperties: ["text"]
|
|
|
|
|
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
|
2019-12-12 04:53:22 +11:00
|
|
|
property alias placeholderTextColor: textArea.placeholderTextColor
|
2019-04-29 01:50:46 +10:00
|
|
|
property alias area: textArea
|
2019-12-12 04:53:22 +11:00
|
|
|
property alias text: textArea.text
|
2019-12-14 00:56:52 +11:00
|
|
|
|
2019-12-12 03:42:59 +11:00
|
|
|
property var focusItemOnTab: null
|
2019-12-14 00:56:52 +11:00
|
|
|
property var disabledText: null
|
|
|
|
property string defaultText: ""
|
|
|
|
readonly property bool changed: text !== defaultText
|
|
|
|
|
|
|
|
|
|
|
|
function reset() { area.clear(); text = defaultText }
|
2019-04-29 01:50:46 +10:00
|
|
|
|
|
|
|
|
2019-12-16 19:42:41 +11:00
|
|
|
Behavior on opacity { HNumberAnimation {} }
|
2019-12-13 21:22:09 +11:00
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
TextArea {
|
|
|
|
id: textArea
|
2019-12-14 00:56:52 +11:00
|
|
|
text: defaultText
|
2019-12-12 04:53:22 +11:00
|
|
|
enabled: parent.enabled
|
2019-08-31 08:10:25 +10:00
|
|
|
leftPadding: theme.spacing
|
|
|
|
rightPadding: leftPadding
|
|
|
|
topPadding: theme.spacing / 1.5
|
|
|
|
bottomPadding: topPadding
|
|
|
|
|
2019-04-29 01:50:46 +10:00
|
|
|
readOnly: ! visible
|
|
|
|
selectByMouse: true
|
|
|
|
|
|
|
|
wrapMode: TextEdit.Wrap
|
2019-07-07 07:50:55 +10:00
|
|
|
font.family: theme.fontFamily.sans
|
|
|
|
font.pixelSize: theme.fontSize.normal
|
2019-08-31 07:04:42 +10:00
|
|
|
font.pointSize: -1
|
2019-04-29 05:13:18 +10:00
|
|
|
|
2019-09-08 07:00:12 +10:00
|
|
|
placeholderTextColor: theme.controls.textArea.placeholderText
|
2019-07-24 16:14:34 +10:00
|
|
|
color: theme.controls.textArea.text
|
2019-12-12 04:53:22 +11:00
|
|
|
|
2019-04-29 05:13:18 +10:00
|
|
|
background: Rectangle {
|
|
|
|
id: textAreaBackground
|
2019-07-07 07:50:55 +10:00
|
|
|
color: theme.controls.textArea.background
|
2020-03-16 05:29:20 +11:00
|
|
|
radius: theme.radius
|
2019-04-29 05:13:18 +10:00
|
|
|
}
|
2019-08-23 03:03:26 +10:00
|
|
|
|
2019-08-23 04:23:33 +10:00
|
|
|
Keys.onPressed: if (
|
|
|
|
event.modifiers & Qt.AltModifier ||
|
|
|
|
event.modifiers & Qt.MetaModifier
|
|
|
|
) event.accepted = true
|
2019-12-12 03:42:59 +11:00
|
|
|
|
|
|
|
KeyNavigation.priority: KeyNavigation.BeforeItem
|
|
|
|
KeyNavigation.tab: focusItemOnTab
|
2019-12-12 04:53:22 +11:00
|
|
|
|
2019-12-13 21:22:09 +11:00
|
|
|
|
2019-12-12 04:53:22 +11:00
|
|
|
Binding on color {
|
|
|
|
value: "transparent"
|
2019-12-13 21:22:09 +11:00
|
|
|
when: disabledText !== null && ! textArea.enabled
|
2019-12-12 04:53:22 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
Binding on placeholderTextColor {
|
|
|
|
value: "transparent"
|
2019-12-13 21:22:09 +11:00
|
|
|
when: disabledText !== null && ! textArea.enabled
|
2019-12-12 04:53:22 +11:00
|
|
|
}
|
|
|
|
|
2020-03-18 08:41:15 +11:00
|
|
|
Binding on implicitHeight {
|
|
|
|
value: disabledTextLabel.implicitHeight
|
|
|
|
when: disabledText !== null && ! textArea.enabled
|
|
|
|
}
|
|
|
|
|
2019-12-12 04:53:22 +11:00
|
|
|
Behavior on color { HColorAnimation {} }
|
|
|
|
Behavior on placeholderTextColor { HColorAnimation {} }
|
|
|
|
|
|
|
|
HLabel {
|
2020-03-18 08:41:15 +11:00
|
|
|
id: disabledTextLabel
|
2019-12-12 04:53:22 +11:00
|
|
|
anchors.fill: parent
|
|
|
|
visible: opacity > 0
|
2019-12-13 21:22:09 +11:00
|
|
|
opacity: disabledText !== null && parent.enabled ? 0 : 1
|
|
|
|
text: disabledText || ""
|
2019-12-12 04:53:22 +11:00
|
|
|
|
|
|
|
leftPadding: parent.leftPadding
|
|
|
|
rightPadding: parent.rightPadding
|
|
|
|
topPadding: parent.topPadding
|
|
|
|
bottomPadding: parent.bottomPadding
|
|
|
|
|
2020-03-18 08:41:15 +11:00
|
|
|
wrapMode:
|
|
|
|
parent.wrapMode === TextEdit.Wrap ? Text.Wrap :
|
|
|
|
parent.wrapMode === TextEdit.WordWrap ? Text.WordWrap :
|
|
|
|
parent.wrapMode === TextEdit.WrapAnywhere ? Text.WrapAnywhere :
|
|
|
|
Text.NoWrap
|
|
|
|
|
2019-12-12 04:53:22 +11:00
|
|
|
font.family: parent.font.family
|
|
|
|
font.pixelSize: parent.font.pixelSize
|
|
|
|
|
2019-12-16 19:42:41 +11:00
|
|
|
Behavior on opacity { HNumberAnimation {} }
|
2019-12-12 04:53:22 +11:00
|
|
|
}
|
2019-04-29 01:50:46 +10:00
|
|
|
}
|
|
|
|
}
|