mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
99 lines
No EOL
3.1 KiB
QML
99 lines
No EOL
3.1 KiB
QML
import QtQuick
|
|
import QtQuick.Controls.Basic as Control
|
|
import QtQuick.Layouts
|
|
import Linphone
|
|
import SettingsCpp 1.0
|
|
|
|
ColumnLayout {
|
|
id: mainItem
|
|
signal encryptionValidationRequested()
|
|
property var call
|
|
RoundedPane {
|
|
Layout.fillWidth: true
|
|
leftPadding: 16 * DefaultStyle.dp
|
|
rightPadding: 16 * DefaultStyle.dp
|
|
topPadding: 13 * DefaultStyle.dp
|
|
bottomPadding: 13 * DefaultStyle.dp
|
|
contentItem: ColumnLayout {
|
|
spacing: 12 * DefaultStyle.dp
|
|
Text {
|
|
text: qsTr("Chiffrement :")
|
|
Layout.alignment: Qt.AlignHCenter
|
|
font {
|
|
pixelSize: 12 * DefaultStyle.dp
|
|
weight: 700 * DefaultStyle.dp
|
|
}
|
|
}
|
|
ColumnLayout {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
spacing: 7 * DefaultStyle.dp
|
|
Text {
|
|
property bool isPostQuantum: mainItem.call.core.encryption === LinphoneEnums.MediaEncryption.Zrtp && mainItem.call.core.zrtpStats.isPostQuantum
|
|
text: qsTr("Chiffrement du média : %1%2").arg(isPostQuantum ? "post Quantum " : "").arg(mainItem.call.core.encryptionString)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
font {
|
|
pixelSize: 12 * DefaultStyle.dp
|
|
weight: 500 * DefaultStyle.dp
|
|
}
|
|
}
|
|
ColumnLayout {
|
|
visible: mainItem.call && mainItem.call.core.encryption === LinphoneEnums.MediaEncryption.Zrtp
|
|
Text {
|
|
text: qsTr("Cipher algorithm : %1").arg(mainItem.call && mainItem.call.core.zrtpStats.cipherAlgo)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
font {
|
|
pixelSize: 12 * DefaultStyle.dp
|
|
weight: 500 * DefaultStyle.dp
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Key agreement algorithm : %1").arg(mainItem.call && mainItem.call.core.zrtpStats.keyAgreementAlgo)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
font {
|
|
pixelSize: 12 * DefaultStyle.dp
|
|
weight: 500 * DefaultStyle.dp
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Hash algorithm : %1").arg(mainItem.call && mainItem.call.core.zrtpStats.hashAlgo)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
font {
|
|
pixelSize: 12 * DefaultStyle.dp
|
|
weight: 500 * DefaultStyle.dp
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("Authentication algorithm : %1").arg(mainItem.call && mainItem.call.core.zrtpStats.authenticationAlgo)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
font {
|
|
pixelSize: 12 * DefaultStyle.dp
|
|
weight: 500 * DefaultStyle.dp
|
|
}
|
|
}
|
|
Text {
|
|
text: qsTr("SAS algorithm : %1").arg(mainItem.call && mainItem.call.core.zrtpStats.sasAlgo)
|
|
Layout.alignment: Qt.AlignHCenter
|
|
font {
|
|
pixelSize: 12 * DefaultStyle.dp
|
|
weight: 500 * DefaultStyle.dp
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Item{Layout.fillHeight: true}
|
|
Button {
|
|
visible: mainItem.call && !mainItem.call.core.conference && mainItem.call.core.encryption === LinphoneEnums.MediaEncryption.Zrtp
|
|
Layout.fillWidth: true
|
|
text: qsTr("Validation chiffrement")
|
|
onClicked: mainItem.encryptionValidationRequested()
|
|
Layout.bottomMargin: 13 * DefaultStyle.dp
|
|
Layout.leftMargin: 16 * DefaultStyle.dp
|
|
Layout.rightMargin: 16 * DefaultStyle.dp
|
|
leftPadding: 20 * DefaultStyle.dp
|
|
rightPadding: 20 * DefaultStyle.dp
|
|
topPadding: 11 * DefaultStyle.dp
|
|
bottomPadding: 11 * DefaultStyle.dp
|
|
}
|
|
} |