/* * Copyright (C) 2020 by Savoir-faire Linux * Author: Mingrui Zhang * Author: Sébastien Blin * * 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 . */ import QtQuick 2.15 import QtQuick.Layouts 1.15 import net.jami.Models 1.1 import net.jami.Constants 1.1 import net.jami.Adapters 1.1 import "../../commoncomponents" Rectangle { id: root property string userAliasLabelText property string userUserNameLabelText signal backClicked signal needToHideConversationInCall signal pluginSelector 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 } color: JamiTheme.chatviewBgColor 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 PushButton { id: startAAudioCallButton visible: interactionButtonsVisibility source: JamiResources.place_audiocall_24dp_svg toolTipText: JamiStrings.placeAudioCall normalColor: JamiTheme.chatviewBgColor imageColor: JamiTheme.chatviewButtonColor onClicked: CallAdapter.placeAudioOnlyCall() } PushButton { id: startAVideoCallButton visible: interactionButtonsVisibility source: JamiResources.videocam_24dp_svg toolTipText: JamiStrings.placeVideoCall normalColor: JamiTheme.chatviewBgColor imageColor: JamiTheme.chatviewButtonColor onClicked: CallAdapter.placeCall() } 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() } } } CustomBorder { commonBorder: false lBorderwidth: 0 rBorderwidth: 0 tBorderwidth: 0 bBorderwidth: JamiTheme.chatViewHairLineSize borderColor: JamiTheme.tabbarBorderColor } }