2023-08-16 09:57:32 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
|
|
import shared.controls 1.0
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: root
|
|
|
|
|
2023-08-23 07:09:16 +00:00
|
|
|
enum Purpose {
|
2023-08-21 10:58:21 +00:00
|
|
|
AppSync,
|
|
|
|
KeypairSync
|
2023-08-16 09:57:32 +00:00
|
|
|
}
|
|
|
|
|
2023-08-23 07:09:16 +00:00
|
|
|
enum Type {
|
|
|
|
QRCode,
|
|
|
|
EncryptedKey
|
|
|
|
}
|
|
|
|
|
|
|
|
property int purpose: SyncingCodeInstructions.Purpose.AppSync
|
|
|
|
property int type: SyncingCodeInstructions.Type.QRCode
|
2023-08-21 10:58:21 +00:00
|
|
|
|
2023-08-16 09:57:32 +00:00
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
StatusSwitchTabBar {
|
|
|
|
id: switchTabBar
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.minimumWidth: 400
|
|
|
|
currentIndex: 0
|
|
|
|
|
|
|
|
StatusSwitchTabButton {
|
|
|
|
text: qsTr("Mobile")
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusSwitchTabButton {
|
|
|
|
text: qsTr("Desktop")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
implicitHeight: 41
|
|
|
|
}
|
|
|
|
|
|
|
|
StackLayout {
|
|
|
|
Layout.fillWidth: false
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
implicitWidth: Math.max(mobileSync.implicitWidth, desktopSync.implicitWidth)
|
|
|
|
implicitHeight: Math.max(mobileSync.implicitHeight, desktopSync.implicitHeight)
|
|
|
|
currentIndex: switchTabBar.currentIndex
|
|
|
|
|
|
|
|
GetSyncCodeMobileInstructions {
|
|
|
|
id: mobileSync
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: false
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
2023-08-21 10:58:21 +00:00
|
|
|
|
2023-08-23 07:09:16 +00:00
|
|
|
purpose: root.purpose
|
2023-08-21 10:58:21 +00:00
|
|
|
type: root.type
|
2023-08-16 09:57:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GetSyncCodeDesktopInstructions {
|
|
|
|
id: desktopSync
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: false
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
2023-08-21 10:58:21 +00:00
|
|
|
|
2023-08-23 07:09:16 +00:00
|
|
|
purpose: root.purpose
|
2023-08-21 10:58:21 +00:00
|
|
|
type: root.type
|
2023-08-16 09:57:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|