linphone-desktop/Linphone/view/Page/Form/Call/NewCallForm.qml
Gaelle Braud e113058ae9 hide group call button if no videoconference uri set
avoid displaying more messages when the list is not yet initialized

fix meeting form end hour combobox list display #LINQT-2127

check if at least one participant when creating group chat #LINQT-2134

display all the errors at a time if they all occur #LINQT-2133

add signal to add chat to list when state Created #LINQT-2131

fix chat deletion
2025-11-15 00:15:41 +01:00

50 lines
1.5 KiB
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls.Basic as Control
import QtQuick.Effects
import Linphone
import UtilsCpp
import SettingsCpp
CreationFormLayout {
id: mainItem
property bool groupCallVisible
property bool displayCurrentCalls: false
signal transferCallToAnotherRequested(CallGui dest)
//: Appel de groupe
startGroupButtonText: qsTr("call_start_group_call_title")
startGroupButtonVisible: !SettingsCpp.disableMeetingsFeature
topLayoutVisible: mainItem.displayCurrentCalls && callList.count > 0
topContent: [
Text {
//: "Appels en cours"
text: qsTr("call_transfer_active_calls_label")
font {
pixelSize: Typography.h4.pixelSize
weight: Typography.h4.weight
}
},
Flickable {
Layout.fillWidth: true
Layout.preferredHeight: callListBackground.height
Layout.maximumHeight: mainItem.height/2
contentHeight: callListBackground.height
contentWidth: width
RoundedPane {
id: callListBackground
anchors.left: parent.left
anchors.right: parent.right
contentItem: CallListView {
id: callList
isTransferList: true
onTransferCallToAnotherRequested: (dest) => {
mainItem.transferCallToAnotherRequested(dest)
}
}
}
}
]
}