2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.3
|
2021-01-12 17:04:31 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2020-09-14 14:57:49 +03:00
|
|
|
import QtQuick.Layouts 1.10
|
2020-10-05 23:58:07 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2020-09-14 14:57:49 +03:00
|
|
|
Pane {
|
2020-10-08 22:11:21 +03:00
|
|
|
property string title: qsTr("Verification failed")
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 16
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: content
|
|
|
|
|
|
|
|
Layout.maximumWidth: 400
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
text: {
|
|
|
|
switch (flow.error) {
|
|
|
|
case DeviceVerificationFlow.UnknownMethod:
|
|
|
|
return qsTr("Other client does not support our verification protocol.");
|
|
|
|
case DeviceVerificationFlow.MismatchedCommitment:
|
|
|
|
case DeviceVerificationFlow.MismatchedSAS:
|
|
|
|
case DeviceVerificationFlow.KeyMismatch:
|
|
|
|
return qsTr("Key mismatch detected!");
|
|
|
|
case DeviceVerificationFlow.Timeout:
|
|
|
|
return qsTr("Device verification timed out.");
|
|
|
|
case DeviceVerificationFlow.User:
|
|
|
|
return qsTr("Other party canceled the verification.");
|
|
|
|
case DeviceVerificationFlow.OutOfOrder:
|
|
|
|
return qsTr("Device verification timed out.");
|
|
|
|
default:
|
|
|
|
return "Unknown verification error.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
color: colors.text
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
text: qsTr("Close")
|
|
|
|
onClicked: dialog.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-09-14 14:57:49 +03:00
|
|
|
}
|