mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-12 19:45:23 +02:00
252 lines
7.5 KiB
QML
252 lines
7.5 KiB
QML
/*
|
|
* Copyright (C) 2020-2022 Savoir-faire Linux Inc.
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
* Author: Sébastien Blin <sebastien.blin@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.Layouts
|
|
|
|
import net.jami.Models 1.1
|
|
import net.jami.Constants 1.1
|
|
import net.jami.Adapters 1.1
|
|
|
|
import "../../commoncomponents"
|
|
import "../js/contactpickercreation.js" as ContactPickerCreation
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property string userAliasLabelText
|
|
property string userUserNameLabelText
|
|
|
|
signal backClicked
|
|
signal needToHideConversationInCall
|
|
signal pluginSelector
|
|
signal showDetailsClicked
|
|
|
|
property bool interactionButtonsVisibility: {
|
|
if (CurrentConversation.inCall)
|
|
return false
|
|
if (CurrentConversation.isSwarm &&
|
|
CurrentConversation.readOnly)
|
|
return false
|
|
if (CurrentConversation.isSwarm &&
|
|
(CurrentConversation.isRequest ||
|
|
CurrentConversation.needsSyncing))
|
|
return false
|
|
return true
|
|
}
|
|
|
|
property bool addMemberVisibility: {
|
|
return swarmDetailsVisibility && !CurrentConversation.isRequest
|
|
}
|
|
|
|
property bool swarmDetailsVisibility: {
|
|
return !CurrentConversation.isCoreDialog && CurrentConversation.isSwarm
|
|
}
|
|
|
|
color: JamiTheme.chatviewBgColor
|
|
|
|
function addToConversationClicked() {
|
|
ContactPickerCreation.createContactPickerObjects(ContactList.ADDCONVMEMBER, root)
|
|
ContactPickerCreation.openContactPicker()
|
|
}
|
|
|
|
RowLayout {
|
|
id: messagingHeaderRectRowLayout
|
|
|
|
anchors.fill: parent
|
|
|
|
PushButton {
|
|
id: backToWelcomeViewButton
|
|
|
|
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
|
|
Layout.leftMargin: 8
|
|
|
|
preferredSize: 24
|
|
|
|
source: CurrentConversation.inCall ?
|
|
JamiResources.round_close_24dp_svg :
|
|
JamiResources.back_24dp_svg
|
|
toolTipText: JamiStrings.hideChatView
|
|
|
|
normalColor: JamiTheme.chatviewBgColor
|
|
imageColor: JamiTheme.chatviewButtonColor
|
|
|
|
onClicked: CurrentConversation.inCall ?
|
|
root.needToHideConversationInCall() :
|
|
root.backClicked()
|
|
}
|
|
|
|
Rectangle {
|
|
id: userNameOrIdRect
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
// Width + margin.
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 7
|
|
Layout.bottomMargin: 7
|
|
Layout.leftMargin: 8
|
|
|
|
color: JamiTheme.transparentColor
|
|
|
|
ColumnLayout {
|
|
id: userNameOrIdColumnLayout
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 0
|
|
|
|
ElidedTextLabel {
|
|
id: userAliasLabel
|
|
|
|
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
|
|
|
|
font.pointSize: JamiTheme.textFontSize + 2
|
|
|
|
horizontalAlignment: Text.AlignLeft
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
eText: userAliasLabelText
|
|
maxWidth: userNameOrIdRect.width
|
|
}
|
|
|
|
ElidedTextLabel {
|
|
id: userUserNameLabel
|
|
|
|
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
|
|
|
|
visible: text.length &&
|
|
userAliasLabelText != userUserNameLabelText
|
|
font.pointSize: JamiTheme.textFontSize
|
|
color: JamiTheme.faddedLastInteractionFontColor
|
|
|
|
horizontalAlignment: Text.AlignLeft
|
|
verticalAlignment: Text.AlignVCenter
|
|
eText: userUserNameLabelText
|
|
maxWidth: userNameOrIdRect.width
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
id: buttonGroup
|
|
|
|
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
|
|
Layout.fillWidth: true
|
|
Layout.rightMargin: 8
|
|
spacing: 16
|
|
|
|
PushButton {
|
|
id: startAAudioCallButton
|
|
|
|
visible: interactionButtonsVisibility && !addMemberVisibility
|
|
|
|
source: JamiResources.place_audiocall_24dp_svg
|
|
toolTipText: JamiStrings.placeAudioCall
|
|
|
|
normalColor: JamiTheme.chatviewBgColor
|
|
imageColor: JamiTheme.chatviewButtonColor
|
|
|
|
onClicked: CallAdapter.placeAudioOnlyCall()
|
|
}
|
|
|
|
PushButton {
|
|
id: startAVideoCallButton
|
|
|
|
visible: CurrentAccount.videoEnabled_Video && interactionButtonsVisibility && !addMemberVisibility
|
|
source: JamiResources.videocam_24dp_svg
|
|
toolTipText: JamiStrings.placeVideoCall
|
|
|
|
normalColor: JamiTheme.chatviewBgColor
|
|
imageColor: JamiTheme.chatviewButtonColor
|
|
|
|
onClicked: {
|
|
CallAdapter.placeCall()
|
|
}
|
|
}
|
|
|
|
PushButton {
|
|
id: addParticipantsButton
|
|
|
|
visible: addMemberVisibility
|
|
|
|
source: JamiResources.add_people_24dp_svg
|
|
toolTipText: JamiStrings.addParticipants
|
|
|
|
normalColor: JamiTheme.chatviewBgColor
|
|
imageColor: JamiTheme.chatviewButtonColor
|
|
|
|
onClicked: root.addToConversationClicked()
|
|
}
|
|
|
|
PushButton {
|
|
id: selectPluginButton
|
|
|
|
visible: PluginAdapter.chatHandlersListCount &&
|
|
interactionButtonsVisibility
|
|
|
|
source: JamiResources.plugins_24dp_svg
|
|
toolTipText: JamiStrings.showPlugins
|
|
|
|
normalColor: JamiTheme.chatviewBgColor
|
|
imageColor: JamiTheme.chatviewButtonColor
|
|
|
|
onClicked: pluginSelector()
|
|
}
|
|
|
|
PushButton {
|
|
id: sendContactRequestButton
|
|
|
|
visible: CurrentConversation.isTemporary
|
|
|
|
source: JamiResources.add_people_24dp_svg
|
|
toolTipText: JamiStrings.addToConversations
|
|
|
|
normalColor: JamiTheme.chatviewBgColor
|
|
imageColor: JamiTheme.chatviewButtonColor
|
|
|
|
onClicked: MessagesAdapter.sendConversationRequest()
|
|
}
|
|
|
|
PushButton {
|
|
id: detailsButton
|
|
|
|
visible: swarmDetailsVisibility
|
|
|
|
source: JamiResources.swarm_details_panel_svg
|
|
toolTipText: JamiStrings.details
|
|
|
|
normalColor: JamiTheme.chatviewBgColor
|
|
imageColor: JamiTheme.chatviewButtonColor
|
|
|
|
onClicked: showDetailsClicked()
|
|
}
|
|
}
|
|
}
|
|
|
|
CustomBorder {
|
|
commonBorder: false
|
|
lBorderwidth: 0
|
|
rBorderwidth: 0
|
|
tBorderwidth: 0
|
|
bBorderwidth: JamiTheme.chatViewHairLineSize
|
|
borderColor: JamiTheme.tabbarBorderColor
|
|
}
|
|
}
|