68 lines
2.5 KiB
QML
68 lines
2.5 KiB
QML
// 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
|
|
// Qt-Security score:significant reason:default
|
|
|
|
import QtQuick
|
|
import QtQuick.Templates as T
|
|
import QtQuick.Controls.impl
|
|
import QtQuick.Controls.Imagine
|
|
import QtQuick.Controls.Imagine.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,
|
|
placeholder.implicitHeight + topPadding + bottomPadding)
|
|
|
|
topPadding: background ? background.topPadding : 0
|
|
leftPadding: background ? background.leftPadding : 0
|
|
rightPadding: background ? background.rightPadding : 0
|
|
bottomPadding: background ? background.bottomPadding : 0
|
|
|
|
topInset: background ? -background.topInset || 0 : 0
|
|
leftInset: background ? -background.leftInset || 0 : 0
|
|
rightInset: background ? -background.rightInset || 0 : 0
|
|
bottomInset: background ? -background.bottomInset || 0 : 0
|
|
|
|
color: control.palette.text
|
|
selectionColor: control.palette.highlight
|
|
selectedTextColor: control.palette.highlightedText
|
|
placeholderTextColor: control.palette.placeholderText
|
|
verticalAlignment: Qt.AlignVCenter
|
|
|
|
ContextMenu.menu: TextEditingContextMenu {
|
|
editor: control
|
|
}
|
|
|
|
PlaceholderText {
|
|
id: placeholder
|
|
x: control.leftPadding
|
|
y: control.topPadding
|
|
width: control.width - (control.leftPadding + control.rightPadding)
|
|
height: control.height - (control.topPadding + control.bottomPadding)
|
|
|
|
text: control.placeholderText
|
|
font: control.font
|
|
color: control.placeholderTextColor
|
|
verticalAlignment: control.verticalAlignment
|
|
visible: !control.length && !control.preeditText && (!control.activeFocus || control.horizontalAlignment !== Qt.AlignHCenter)
|
|
elide: Text.ElideRight
|
|
renderType: control.renderType
|
|
}
|
|
|
|
background: NinePatchImage {
|
|
source: Imagine.url + "textfield-background"
|
|
NinePatchImageSelector on source {
|
|
states: [
|
|
{"disabled": !control.enabled},
|
|
{"focused": control.activeFocus},
|
|
{"mirrored": control.mirrored},
|
|
{"hovered": control.enabled && control.hovered}
|
|
]
|
|
}
|
|
}
|
|
}
|