moment/src/gui/Base/HTextField.qml

146 lines
4.3 KiB
QML
Raw Normal View History

2019-12-19 22:46:16 +11:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Controls 2.12
2019-04-27 06:02:20 +10:00
TextField {
id: field
text: defaultText || ""
opacity: enabled ? 1 : theme.disabledElementsOpacity
selectByMouse: true
leftPadding: theme.spacing
rightPadding: leftPadding
topPadding: theme.spacing / 1.5
bottomPadding: topPadding
font.family: theme.fontFamily.sans
font.pixelSize: theme.fontSize.normal
font.pointSize: -1
2019-04-29 05:13:18 +10:00
2019-09-08 07:02:09 +10:00
placeholderTextColor: theme.controls.textField.placeholderText
color: activeFocus ?
theme.controls.textField.focusedText :
theme.controls.textField.text
2019-04-29 05:13:18 +10:00
background: Rectangle {
id: textFieldBackground
radius: theme.radius
color: field.activeFocus ? focusedBackgroundColor : backgroundColor
border.width: bordered ? theme.controls.textField.borderWidth : 0
border.color: borderColor
HBottomFocusLine {
show: field.activeFocus
borderHeight: theme.controls.textField.borderWidth
color: error ? errorBorder : focusedBorderColor
}
2019-04-29 05:13:18 +10:00
}
2019-04-27 06:02:20 +10:00
2020-06-25 23:46:26 +10:00
Component.onCompleted: {
// Break binding
previousDefaultText = previousDefaultText
// Set it only on component creation to avoid binding loops
if (! text) {
text = window.getState(this, "text", "")
cursorPosition = text.length
}
2019-12-11 08:04:03 +11:00
}
onTextChanged: window.saveState(this)
onActiveFocusChanged:
if (defaultText !== null) text = text // Break binding
2020-06-25 23:46:26 +10:00
onDefaultTextChanged: if (defaultText !== null) {
2020-06-25 23:46:26 +10:00
if (text === previousDefaultText)
text = Qt.binding(() => defaultText)
previousDefaultText = defaultText
}
// Prevent alt/super+any key from typing text
Keys.onPressed: if (
event.modifiers & Qt.AltModifier ||
event.modifiers & Qt.MetaModifier
) event.accepted = true
// Prevent leaking arrow presses to parent elements when the carret is at
// the beginning or end of the text
Keys.onLeftPressed: event.accepted = cursorPosition === 0
Keys.onRightPressed: event.accepted = cursorPosition === length
property string saveName: ""
2019-12-11 08:04:03 +11:00
property var saveId: "ALL"
property var saveProperties: ["text"]
property bool error: false
property alias radius: textFieldBackground.radius
property bool bordered: true
property color backgroundColor: theme.controls.textField.background
property color borderColor: theme.controls.textField.border
property color errorBorder: theme.controls.textField.errorBorder
property color focusedBackgroundColor:
theme.controls.textField.focusedBackground
property color focusedBorderColor: theme.controls.textField.focusedBorder
property var disabledText: null
property var defaultText: null
readonly property bool changed: text !== (defaultText || "")
2020-06-25 23:46:26 +10:00
property string previousDefaultText: "" // private
function reset() { clear(); text = Qt.binding(() => defaultText || "")}
Binding on color {
value: "transparent"
when: disabledText !== null && ! field.enabled
}
Binding on placeholderTextColor {
value: "transparent"
when: disabledText !== null && ! field.enabled
}
Binding on implicitHeight {
value: disabledTextLabel.implicitHeight
2020-05-30 04:43:30 +10:00
when: disabledText !== null && ! field.enabled
}
2019-12-16 19:42:41 +11:00
Behavior on opacity { HNumberAnimation {} }
Behavior on color { HColorAnimation {} }
Behavior on placeholderTextColor { HColorAnimation {} }
HLabel {
id: disabledTextLabel
anchors.fill: parent
visible: opacity > 0
opacity: disabledText !== null && parent.enabled ? 0 : 1
text: disabledText || ""
leftPadding: parent.leftPadding
rightPadding: parent.rightPadding
topPadding: parent.topPadding
bottomPadding: parent.bottomPadding
wrapMode:
parent.wrapMode === TextField.Wrap ? Text.Wrap :
parent.wrapMode === TextField.WordWrap ? Text.WordWrap :
parent.wrapMode === TextField.WrapAnywhere ? Text.WrapAnywhere :
Text.NoWrap
font.family: parent.font.family
font.pixelSize: parent.font.pixelSize
2019-12-16 19:42:41 +11:00
Behavior on opacity { HNumberAnimation {} }
}
2019-04-27 06:02:20 +10:00
}