2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
2020-05-19 13:22:38 +00:00
|
|
|
|
2020-06-13 15:17:54 +00:00
|
|
|
Item {
|
|
|
|
property var onClosed: function () {}
|
|
|
|
id: genKeyView
|
2020-05-21 15:25:33 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2020-06-13 15:17:54 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
genKeyModal.open()
|
2020-05-21 15:25:33 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 15:17:54 +00:00
|
|
|
GenKeyModal {
|
|
|
|
property bool wentNext: false
|
|
|
|
id: genKeyModal
|
|
|
|
onNextClick: function (selectedIndex) {
|
|
|
|
wentNext = true
|
|
|
|
onboardingModel.setCurrentAccount(selectedIndex)
|
|
|
|
createPasswordModal.open()
|
2020-05-19 13:22:38 +00:00
|
|
|
}
|
2020-06-13 15:17:54 +00:00
|
|
|
onClosed: function () {
|
|
|
|
if (!wentNext) {
|
|
|
|
genKeyView.onClosed()
|
2020-05-21 15:25:33 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-19 13:22:38 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 15:17:54 +00:00
|
|
|
CreatePasswordModal {
|
|
|
|
id: createPasswordModal
|
|
|
|
onClosed: function () {
|
2020-07-01 15:37:36 +00:00
|
|
|
genKeyView.onClosed()
|
2020-05-19 13:22:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-21 15:25:33 +00:00
|
|
|
|
2020-05-19 13:22:38 +00:00
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-05-27 17:26:21 +00:00
|
|
|
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:480;width:640}
|
2020-05-19 13:22:38 +00:00
|
|
|
}
|
|
|
|
##^##*/
|