mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-18 22:45:25 +02:00

In preparation for vendoring libjamiclient into 'src/libclient/'. GitLab: #734 Change-Id: Ibd956abc8fe9bd454ac0e9a5a28b77a5a74174e7
173 lines
No EOL
4.9 KiB
QML
173 lines
No EOL
4.9 KiB
QML
/*
|
|
* Copyright (C) 2022 Savoir-faire Linux Inc.
|
|
* Author: Sébastien blin <sebastien.blin@savoirfairelinux.com>
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
import net.jami.Constants 1.1
|
|
import net.jami.Adapters 1.1
|
|
|
|
Item {
|
|
id: root
|
|
|
|
signal editingFinished
|
|
|
|
property alias text: lineEdit.text
|
|
property alias color: lineEdit.color
|
|
property alias verticalAlignment: lineEdit.verticalAlignment
|
|
property alias horizontalAlignment: lineEdit.horizontalAlignment
|
|
property alias font: lineEdit.font
|
|
property alias placeholderText: lineEdit.placeholderText
|
|
property alias placeholderTextColor: lineEdit.placeholderTextColor
|
|
property alias backgroundColor: lineEdit.backgroundColor
|
|
property var editIconColor: UtilsAdapter.luma(root.color) ? JamiTheme.editLineColor : "white"
|
|
property var cancelIconColor: UtilsAdapter.luma(root.color) ? JamiTheme.buttonTintedBlue : "white"
|
|
|
|
property bool editable: false
|
|
property bool hovered: false
|
|
property string tooltipText: ""
|
|
property int preferredWidth: JamiTheme.preferredFieldWidth
|
|
|
|
height: lineEdit.height
|
|
width: preferredWidth
|
|
|
|
MaterialToolTip {
|
|
parent: lineEdit
|
|
visible: tooltipText != "" && hovered
|
|
delay: Qt.styleHints.mousePressAndHoldInterval
|
|
text: tooltipText
|
|
}
|
|
|
|
HoverHandler {
|
|
target : parent
|
|
onHoveredChanged: {
|
|
root.hovered = hovered
|
|
}
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
RowLayout {
|
|
id: row
|
|
anchors.centerIn: parent
|
|
z: 1
|
|
|
|
Image {
|
|
id: editImg
|
|
opacity: editable
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
layer {
|
|
enabled: true
|
|
effect: ColorOverlay {
|
|
color: root.editIconColor
|
|
}
|
|
}
|
|
|
|
source: JamiResources.round_edit_24dp_svg
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
from: 0
|
|
duration: JamiTheme.longFadeDuration
|
|
}
|
|
}
|
|
}
|
|
|
|
MaterialLineEdit {
|
|
id: lineEdit
|
|
|
|
readOnly: !editable
|
|
underlined: true
|
|
|
|
borderColor: root.editIconColor
|
|
fieldLayoutHeight: 24
|
|
|
|
Layout.alignment: Qt.AlignCenter
|
|
Layout.preferredWidth: root.preferredFieldWidth - editImg.width - btnCancel.width
|
|
Layout.fillHeight: true
|
|
|
|
wrapMode: Text.NoWrap
|
|
|
|
onFocusChanged: function(focus) {
|
|
if (!focus && editable) {
|
|
editable = !editable
|
|
root.editingFinished()
|
|
} else if (focus && !editable) {
|
|
editable = !editable
|
|
lineEdit.forceActiveFocus()
|
|
}
|
|
}
|
|
onAccepted: {
|
|
editable = !editable
|
|
root.editingFinished()
|
|
}
|
|
}
|
|
|
|
PushButton {
|
|
id: btnCancel
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
enabled: editable
|
|
preferredSize: lineEdit.height * 2 / 3
|
|
opacity: editable ? 0.8 : 0
|
|
imageColor: root.cancelIconColor
|
|
normalColor: "transparent"
|
|
hoveredColor: JamiTheme.hoveredButtonColor
|
|
|
|
source: JamiResources.round_close_24dp_svg
|
|
|
|
onClicked: {
|
|
root.editingFinished()
|
|
root.editable = !root.editable
|
|
lineEdit.forceActiveFocus()
|
|
}
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
from: 0
|
|
duration: JamiTheme.longFadeDuration
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
anchors.fill: row
|
|
radius: JamiTheme.primaryRadius
|
|
|
|
visible: root.editable || root.hovered
|
|
color: root.editIconColor
|
|
|
|
Rectangle {
|
|
visible: parent.visible
|
|
anchors {
|
|
fill: parent
|
|
topMargin: 0
|
|
rightMargin: 0
|
|
bottomMargin: 1
|
|
leftMargin: 0
|
|
}
|
|
color: root.backgroundColor
|
|
}
|
|
}
|
|
} |