2020-09-14 14:57:49 +03:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 2.10
|
|
|
|
import QtQuick.Layouts 1.10
|
|
|
|
|
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
Pane {
|
|
|
|
property string title: qsTr("Awaiting Confirmation")
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 16
|
|
|
|
Label {
|
|
|
|
Layout.maximumWidth: 400
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
id: content
|
|
|
|
text: qsTr("Waiting for other side to complete verification.")
|
|
|
|
color:colors.text
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
}
|
|
|
|
BusyIndicator {
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
|
|
Button {
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
text: qsTr("Cancel")
|
2020-10-02 18:33:04 +03:00
|
|
|
|
2020-09-14 14:57:49 +03:00
|
|
|
onClicked: {
|
2020-10-05 23:12:10 +03:00
|
|
|
flow.cancel();
|
|
|
|
dialog.close();
|
2020-09-14 14:57:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|