aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/material/TextField.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/material/TextField.qml')
-rw-r--r--src/quickcontrols/material/TextField.qml79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/quickcontrols/material/TextField.qml b/src/quickcontrols/material/TextField.qml
new file mode 100644
index 0000000000..9294146fac
--- /dev/null
+++ b/src/quickcontrols/material/TextField.qml
@@ -0,0 +1,79 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Templates as T
+import QtQuick.Controls.impl
+import QtQuick.Controls.Material
+import QtQuick.Controls.Material.impl
+
+T.TextField {
+ id: control
+
+ implicitWidth: implicitBackgroundWidth + leftInset + rightInset
+ || Math.max(contentWidth, placeholder.implicitWidth) + leftPadding + rightPadding
+ implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
+ contentHeight + topPadding + bottomPadding)
+
+ // If we're clipped, set topInset to half the height of the placeholder text to avoid it being clipped.
+ topInset: clip ? placeholder.largestHeight / 2 : 0
+
+ leftPadding: Material.textFieldHorizontalPadding
+ rightPadding: Material.textFieldHorizontalPadding
+ // Need to account for the placeholder text when it's sitting on top.
+ topPadding: Material.containerStyle === Material.Filled
+ ? placeholderText.length > 0 && (activeFocus || length > 0)
+ ? Material.textFieldVerticalPadding + placeholder.largestHeight
+ : Material.textFieldVerticalPadding
+ // Account for any topInset (used to avoid floating placeholder text being clipped),
+ // otherwise the text will be too close to the background.
+ : Material.textFieldVerticalPadding + topInset
+ bottomPadding: Material.textFieldVerticalPadding
+
+ color: enabled ? Material.foreground : Material.hintTextColor
+ selectionColor: Material.accentColor
+ selectedTextColor: Material.primaryHighlightedTextColor
+ placeholderTextColor: enabled && activeFocus ? Material.accentColor : Material.hintTextColor
+ verticalAlignment: TextInput.AlignVCenter
+
+ Material.containerStyle: Material.Outlined
+
+ cursorDelegate: CursorDelegate { }
+
+ FloatingPlaceholderText {
+ id: placeholder
+ // Don't set this to control.leftPadding, because we don't want it to change if the user changes leftPadding.
+ x: control.Material.textFieldHorizontalPadding
+ width: control.width - (control.leftPadding + control.rightPadding)
+ text: control.placeholderText
+ font: control.font
+ color: control.placeholderTextColor
+ elide: Text.ElideRight
+ renderType: control.renderType
+
+ filled: control.Material.containerStyle === Material.Filled
+ verticalPadding: control.Material.textFieldVerticalPadding
+ controlHasActiveFocus: control.activeFocus
+ controlHasText: control.length > 0
+ controlImplicitBackgroundHeight: control.implicitBackgroundHeight
+ controlHeight: control.height
+ }
+
+ background: MaterialTextContainer {
+ implicitWidth: 120
+ implicitHeight: control.Material.textFieldHeight
+
+ filled: control.Material.containerStyle === Material.Filled
+ fillColor: control.Material.textFieldFilledContainerColor
+ outlineColor: (enabled && control.hovered) ? control.Material.primaryTextColor : control.Material.hintTextColor
+ focusedOutlineColor: control.Material.accentColor
+ // When the control's size is set larger than its implicit size, use whatever size is smaller
+ // so that the gap isn't too big.
+ placeholderTextWidth: Math.min(placeholder.width, placeholder.implicitWidth) * placeholder.scale
+ placeholderTextHAlign: control.effectiveHorizontalAlignment
+ controlHasActiveFocus: control.activeFocus
+ controlHasText: control.length > 0
+ placeholderHasText: placeholder.text.length > 0
+ horizontalPadding: control.Material.textFieldHorizontalPadding
+ }
+}