1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-13 03:55:23 +02:00
jami-client-qt/src/mainview/components/AccountComboBoxPopup.qml

181 lines
5.2 KiB
QML
Raw Normal View History

/*
* Copyright (C) 2020 by Savoir-faire Linux
* 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 2.14
import QtQuick.Controls 2.14
import QtQuick.Layouts 1.14
import net.jami.Models 1.0
import "../../commoncomponents"
Popup {
id: comboBoxPopup
property bool toogleUpdatePopupHeight: false
signal accountNeedToChange(int index)
signal newAccountButtonClicked
y: accountComboBox.height - 1
implicitWidth: accountComboBox.width - 1
/*
* Hack - limite the accounts that can be shown.
*/
implicitHeight: {
comboBoxPopup.visible
return Math.min(accountComboBox.height * Math.min(
5, accountListModel.rowCount() + 1),
sidePanelRect.height)
}
padding: 0
contentItem: ListView {
id: comboBoxPopupListView
/*
* In list view, index is an interger.
*/
clip: true
model: accountListModel
implicitHeight: contentHeight
delegate: ItemDelegate {
Image {
id: userImage
anchors.left: parent.left
anchors.leftMargin: 5
anchors.verticalCenter: parent.verticalCenter
width: 30
height: parent.height
fillMode: Image.PreserveAspectFit
mipmap: true
/*
* Role::Picture
*/
source: "data:image/png;base64," + accountListModel.data(
accountListModel.index(index, 0), 259)
}
Text {
id: textUserAliasPopup
anchors.left: userImage.right
anchors.leftMargin: 10
anchors.top: itemCoboBackground.top
anchors.topMargin: 5
text: textMetricsUserAliasPopup.elidedText
font.pointSize: JamiTheme.textFontSize
}
Text {
id: textUsernamePopup
anchors.left: userImage.right
anchors.leftMargin: 10
anchors.top: textUserAliasPopup.bottom
anchors.topMargin: 5
text: textMetricsUsernamePopup.elidedText
font.pointSize: JamiTheme.textFontSize
color: JamiTheme.faddedFontColor
}
TextMetrics {
id: textMetricsUserAliasPopup
elide: Text.ElideMiddle
elideWidth: accountComboBox.width - userImage.width - settingsButton.width - 30
text: Alias
}
TextMetrics {
id: textMetricsUsernamePopup
elide: Text.ElideMiddle
elideWidth: accountComboBox.width - userImage.width - settingsButton.width - 30
text: Username
}
background: Rectangle {
id: itemCoboBackground
implicitWidth: accountComboBox.width
implicitHeight: accountComboBox.height
border.width: 0
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onPressed: {
itemCoboBackground.color = JamiTheme.pressColor
}
onReleased: {
itemCoboBackground.color = JamiTheme.releaseColor
currentIndex = index
comboBoxPopup.close()
comboBoxPopup.accountNeedToChange(index)
}
onEntered: {
itemCoboBackground.color = JamiTheme.hoverColor
}
onExited: {
itemCoboBackground.color = "white"
}
}
}
footer: HoverableButton {
id: comboBoxFooterItem
implicitWidth: accountComboBox.width
implicitHeight: accountComboBox.height
text: qsTr("Add Account") + "+"
backgroundColor: "white"
onExitColor: "white"
onClicked: {
comboBoxPopup.close()
comboBoxPopup.newAccountButtonClicked()
}
}
ScrollIndicator.vertical: ScrollIndicator {}
}
background: Rectangle {
id: accountComboBoxPopup
CustomBorder {
commonBorder: false
lBorderwidth: 0
rBorderwidth: 1
tBorderwidth: 0
bBorderwidth: 1
borderColor: JamiTheme.tabbarBorderColor
}
}
}