2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-12 18:26:02 +00:00
|
|
|
|
2021-10-20 12:23:58 +00:00
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
2020-06-12 20:47:44 +00:00
|
|
|
|
2021-10-14 11:33:34 +00:00
|
|
|
// TODO: replace with StatusModal
|
2020-06-12 20:47:44 +00:00
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
2022-04-04 11:26:30 +00:00
|
|
|
title: qsTr("Enter seed phrase")
|
2020-06-12 20:47:44 +00:00
|
|
|
height: 200
|
2022-03-15 22:27:36 +00:00
|
|
|
signal openModalClicked()
|
2020-06-12 20:47:44 +00:00
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2022-07-19 08:34:27 +00:00
|
|
|
text: qsTr("Do you want to add another existing key?")
|
2020-06-12 20:47:44 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
}
|
|
|
|
|
2021-01-28 11:04:10 +00:00
|
|
|
footer: StatusButton {
|
2020-06-12 20:47:44 +00:00
|
|
|
anchors.bottom: parent.bottom
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.topMargin: Style.current.padding
|
2020-06-12 20:47:44 +00:00
|
|
|
anchors.right: parent.right
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.rightMargin: Style.current.padding
|
2022-07-19 08:34:27 +00:00
|
|
|
text: qsTr("Add another existing key")
|
2020-06-12 20:47:44 +00:00
|
|
|
|
|
|
|
onClicked : {
|
2022-03-15 22:27:36 +00:00
|
|
|
openModalClicked()
|
2020-06-12 20:47:44 +00:00
|
|
|
popup.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|