matrixion/qml/device-verification/Waiting.qml

65 lines
1.8 KiB
QML
Raw Permalink Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import "../ui"
import QtQuick 2.3
import QtQuick.Controls 2.3
2020-09-14 14:57:49 +03:00
import QtQuick.Layouts 1.10
import im.nheko
2020-09-14 14:57:49 +03:00
Pane {
2021-01-15 15:57:19 +03:00
property string title: qsTr("Waiting for other party…")
2022-04-16 03:13:01 +03:00
2022-01-12 08:44:51 +03:00
background: Rectangle {
2022-04-11 05:18:16 +03:00
color: timelineRoot.palette.window
2022-01-12 08:44:51 +03:00
}
2020-10-08 22:11:21 +03:00
ColumnLayout {
2022-01-12 08:44:51 +03:00
anchors.fill: parent
2020-10-08 22:11:21 +03:00
spacing: 16
Label {
id: content
Layout.fillWidth: true
2022-04-16 03:13:01 +03:00
Layout.preferredWidth: 400
color: timelineRoot.palette.text
2020-10-08 22:11:21 +03:00
text: {
switch (flow.state) {
case "WaitingForOtherToAccept":
return qsTr("Waiting for other side to accept the verification request.");
case "WaitingForKeys":
return qsTr("Waiting for other side to continue the verification process.");
2020-10-08 22:11:21 +03:00
case "WaitingForMac":
return qsTr("Waiting for other side to complete the verification process.");
2020-10-08 22:11:21 +03:00
}
}
verticalAlignment: Text.AlignVCenter
2022-04-16 03:13:01 +03:00
wrapMode: Text.Wrap
}
Item {
Layout.fillHeight: true
2020-10-08 22:11:21 +03:00
}
Spinner {
2020-10-08 22:11:21 +03:00
Layout.alignment: Qt.AlignHCenter
2022-04-11 05:18:16 +03:00
foreground: timelineRoot.palette.mid
2020-10-08 22:11:21 +03:00
}
2022-04-16 03:13:01 +03:00
Item {
Layout.fillHeight: true
}
2020-10-08 22:11:21 +03:00
RowLayout {
Button {
Layout.alignment: Qt.AlignLeft
text: qsTr("Cancel")
2022-04-16 03:13:01 +03:00
2020-10-08 22:11:21 +03:00
onClicked: {
flow.cancel();
dialog.close();
}
}
Item {
Layout.fillWidth: true
}
}
}
2020-09-14 14:57:49 +03:00
}