Code owners
Assign users and groups as approvers for specific file changes. Learn more.
MessageBarTextArea.qml 3.70 KiB
/*
* Copyright (C) 2020-2023 Savoir-faire Linux Inc.
* 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 net.jami.Adapters 1.1
import net.jami.Constants 1.1
import "../../commoncomponents"
JamiFlickable {
id: root
property alias text: textArea.text
property var textAreaObj: textArea
property alias placeholderText: textArea.placeholderText
ScrollBar.vertical.visible: textArea.text
ScrollBar.horizontal.visible: textArea.text
signal sendMessagesRequired
function insertText(text) {
textArea.insert(textArea.cursorPosition, text)
}
function clearText() {
textArea.clear()
}
function pasteText() {
textArea.paste()
}
LineEditContextMenu {
id: textAreaContextMenu
lineEditObj: textArea
customizePaste: true
onContextMenuRequirePaste: {
// Intercept paste event to use C++ QMimeData
MessagesAdapter.onPaste()
}
}
interactive: true
attachedFlickableMoving: contentHeight > height || root.moving
TextArea.flickable: TextArea {
id: textArea
leftPadding: JamiTheme.scrollBarHandleSize
rightPadding: JamiTheme.scrollBarHandleSize
topPadding: 0
bottomPadding: 0
verticalAlignment: TextEdit.AlignVCenter
font.pointSize: JamiTheme.textFontSize + 2
font.hintingPreference: Font.PreferNoHinting
color: JamiTheme.textColor
wrapMode: TextEdit.Wrap
selectByMouse: true
textFormat: TextEdit.PlainText
placeholderTextColor: JamiTheme.placeholderTextColor
background: Rectangle {
border.width: 0
color: JamiTheme.transparentColor
}
onReleased: function (event) {
if (event.button === Qt.RightButton)
textAreaContextMenu.openMenuAt(event)
}
onTextChanged: {
if (text)
MessagesAdapter.userIsComposing(true)
else
MessagesAdapter.userIsComposing(false)
}
// Intercept paste event to use C++ QMimeData
// And enter event to customize send behavior
// eg. Enter -> Send messages
// Shift + Enter -> Next Line
Keys.onPressed: function (keyEvent) {
if (keyEvent.matches(StandardKey.Paste)) {
MessagesAdapter.onPaste()
keyEvent.accepted = true
} else if (keyEvent.matches(StandardKey.MoveToPreviousLine)) {
if (root.text !== "")
return
MessagesAdapter.replyToId = ""
MessagesAdapter.editId = CurrentConversation.lastSelfMessageId
keyEvent.accepted = true;
} else if (keyEvent.key === Qt.Key_Enter ||
keyEvent.key === Qt.Key_Return) {
if (!(keyEvent.modifiers & Qt.ShiftModifier)) {
root.sendMessagesRequired()
keyEvent.accepted = true
}
}
}
}
}