import QtQuick 2.7 import QtQuick.Layouts 1.3 import QtQuick.Controls 2.2 as Control import QtQuick.Effects import Linphone import UtilsCpp 1.0 Item { id: mainItem property int sideMargin: 25 * DefaultStyle.dp property int topMargin: 5 * DefaultStyle.dp property bool groupCallVisible property color searchBarColor: DefaultStyle.grey_100 property color searchBarBorderColor: "transparent" signal callButtonPressed(string address) clip: true Popup { id: startCallPopup property FriendGui contact onContactChanged: { console.log("contact changed", contact) } underlineColor: DefaultStyle.main1_500_main anchors.centerIn: parent width: parent.width - 30 * DefaultStyle.dp modal: true leftPadding: 15 * DefaultStyle.dp rightPadding: 15 * DefaultStyle.dp topPadding: 20 * DefaultStyle.dp bottomPadding: 25 * DefaultStyle.dp contentItem: ColumnLayout { spacing: 10 * DefaultStyle.dp RowLayout { Text { text: qsTr("Which channel do you choose?") font { pixelSize: 16 * DefaultStyle.dp weight: 800 * DefaultStyle.dp } } Item { Layout.fillWidth: true } Button { Layout.preferredWidth: 24 * DefaultStyle.dp Layout.preferredHeight: 24 * DefaultStyle.dp background: Item{} icon.source:AppIcons.closeX width: 24 * DefaultStyle.dp height: 24 * DefaultStyle.dp contentItem: Image { anchors.fill: parent source: AppIcons.closeX } onClicked: startCallPopup.close() } } ListView { id: popuplist model: VariantList { model: startCallPopup.contact && startCallPopup.contact.core.allAddresses || [] } Layout.fillWidth: true Layout.preferredHeight: contentHeight delegate: Item { width: parent.width height: 56 * DefaultStyle.dp ColumnLayout { width: parent.width anchors.verticalCenter: parent.verticalCenter spacing: 10 * DefaultStyle.dp ColumnLayout { Text { Layout.leftMargin: 5 * DefaultStyle.dp text: modelData.label font { pixelSize: 13 * DefaultStyle.dp weight: 700 * DefaultStyle.dp } } Text { Layout.leftMargin: 5 * DefaultStyle.dp text: modelData.address font { pixelSize: 14 * DefaultStyle.dp weight: 400 * DefaultStyle.dp } } } Rectangle { visible: index != popuplist.model.count - 1 Layout.fillWidth: true Layout.preferredHeight: 1 * DefaultStyle.dp color: DefaultStyle.main2_200 } } MouseArea { anchors.fill: parent hoverEnabled: true cursorShape: containsMouse ? Qt.PointingHandCursor : Qt.ArrowCursor onClicked: mainItem.callButtonPressed(modelData.address) } } } } } Control.ScrollBar { id: contactsScrollbar active: true interactive: true policy: Control.ScrollBar.AsNeeded // Layout.fillWidth: true anchors.top: parent.top anchors.bottom: parent.bottom anchors.right: parent.right // x: mainItem.x + mainItem.width - width // anchors.left: control.right } Control.Control { id: listLayout anchors.fill: parent anchors.topMargin: mainItem.topMargin background: Item { anchors.fill: parent } contentItem: ColumnLayout { anchors.fill: parent spacing: 10 * DefaultStyle.dp SearchBar { id: searchBar Layout.alignment: Qt.AlignTop Layout.fillWidth: true Layout.maximumWidth: mainItem.width Layout.leftMargin: mainItem.sideMargin Layout.rightMargin: mainItem.sideMargin color: mainItem.searchBarColor borderColor: mainItem.searchBarBorderColor placeholderText: qsTr("Rechercher un contact") numericPad: numPad } Control.ScrollView { Layout.fillWidth: true Layout.fillHeight: true Layout.leftMargin: mainItem.sideMargin Layout.topMargin: 25 * DefaultStyle.dp rightPadding: mainItem.sideMargin contentWidth: width - mainItem.sideMargin contentHeight: content.height clip: true Control.ScrollBar.vertical: contactsScrollbar ColumnLayout { id: content width: parent.width spacing: 25 * DefaultStyle.dp Button { visible: mainItem.groupCallVisible Layout.fillWidth: true background: Rectangle { color: DefaultStyle.groupCallButtonColor anchors.fill: parent radius: 50 * DefaultStyle.dp } contentItem: RowLayout { Image { source: AppIcons.groupCall Layout.preferredWidth: 35 * DefaultStyle.dp sourceSize.width: 35 * DefaultStyle.dp fillMode: Image.PreserveAspectFit } Text { text: "Appel de groupe" font { pixelSize: 16 * DefaultStyle.dp weight: 800 * DefaultStyle.dp } } Item { Layout.fillWidth: true } Image { source: AppIcons.rightArrow } } } // RowLayout { // //DEBUG // visible: searchBar.text.length > 0 // Layout.maximumWidth: parent.width // Layout.fillWidth: true // Text { // text: searchBar.text // maximumLineCount: 1 // elide: Text.ElideRight // } // Item { // Layout.fillWidth: true // } // Button { // implicitWidth: 30 * DefaultStyle.dp // implicitHeight: 30 * DefaultStyle.dp // background: Item { // visible: false // } // icon.source: AppIcons.phone // width: 20 * DefaultStyle.dp // height: 20 * DefaultStyle.dp // onClicked: { // mainItem.callButtonPressed(searchBar.text) // } // } // } ColumnLayout { Text { text: qsTr("All contacts") font { pixelSize: 16 * DefaultStyle.dp weight: 800 * DefaultStyle.dp } } ContactsList{ id: contactList Layout.fillWidth: true contactMenuVisible: false searchBarText: searchBar.text model: MagicSearchProxy { searchText: searchBarText.length === 0 ? "*" : searchBarText } onContactSelected: (contact) => { if (contact.core.allAddresses.length > 1) { startCallPopup.contact = contact onSelectedContactChanged: { if (selectedContact) { if (selectedContact.core.allAddresses.length > 1) { startCallPopup.selectedContact = selectedContact startCallPopup.open() } else { mainItem.callButtonPressed(selectedContact.core.defaultAddress) } } } // onContactSelected: (contact) => { // if (contact.core.allAddresses.length > 1) { // startCallPopup.contact = contact // startCallPopup.open() // } else { // mainItem.callButtonPressed(contact.core.defaultAddress) // } // } } } ColumnLayout { Text { text: qsTr("Suggestions") font { pixelSize: 16 * DefaultStyle.dp weight: 800 * DefaultStyle.dp } } ContactsList{ contactMenuVisible: false Layout.fillWidth: true Layout.fillHeight: true initialHeadersVisible: false displayNameCapitalization: false // Align the suggestions list to the friends ones (which contains intial column) delegateLeftMargin: 20 * DefaultStyle.dp model: MagicSearchProxy { searchText: searchBar.text.length === 0 ? "*" : searchBar.text sourceFlags: LinphoneEnums.MagicSearchSource.All aggregationFlag: LinphoneEnums.MagicSearchAggregation.Friend } onSelectedContactChanged: { if (selectedContact) { if (selectedContact.core.allAddresses.length > 1) { startCallPopup.selectedContact = selectedContact startCallPopup.open() } else { var addressToCall = selectedContact.core.defaultAddress.length === 0 ? selectedContact.core.phoneNumbers.length === 0 ? "" : selectedContact.core.phoneNumbers[0].address : selectedContact.core.defaultAddress if (addressToCall.length != 0) mainItem.callButtonPressed(addressToCall) } } } // onContactSelected: (contact) => { // if (contact.core.allAddresses.length > 1) { // startCallPopup.contact = contact // startCallPopup.open() // } else { // var addressToCall = contact.core.defaultAddress.length === 0 // ? contact.core.phoneNumbers.length === 0 // ? "" // : contact.core.phoneNumbers[0].address // : contact.core.defaultAddress // if (addressToCall.length != 0) mainItem.callButtonPressed(addressToCall) // } // } } } Item { Layout.fillHeight: true } } } } } Item { anchors.bottom: parent.bottom anchors.left: parent.left anchors.right: parent.right height: numPad.implicitHeight NumericPad { id: numPad width: parent.width property var callObj onLaunchCall: { callObj = UtilsCpp.createCall(searchBar.text + "@sip.linphone.org") // TODO : auto completion instead of sip linphone } } } }