status-desktop/ui/onboarding/EnterSeedPhraseModal.qml

72 lines
1.9 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtGraphicalEffects 1.13
import utils 1.0
2020-06-12 20:47:44 +00:00
import "../shared"
import "../shared/status"
2020-06-12 20:47:44 +00:00
ModalPopup {
property var onConfirmSeedClick: function () {}
id: popup
2021-02-18 16:36:05 +00:00
//% "Enter seed phrase"
title: qsTrId("enter-seed-phrase")
2020-06-12 20:47:44 +00:00
height: 400
onOpened: {
seedPhraseTextArea.textArea.text = "";
seedPhraseTextArea.textArea.forceActiveFocus(Qt.MouseFocusReason)
2020-06-12 20:47:44 +00:00
}
SeedPhraseTextArea {
id: seedPhraseTextArea
anchors.top: parent.top
anchors.topMargin: 40
width: parent.width
hideRectangle: true
2020-06-12 20:47:44 +00:00
textArea.anchors.leftMargin: 76
textArea.anchors.rightMargin: 76
onEnterPressed: submitBtn.clicked()
}
StyledText {
id: helpText
//% "Enter 12, 15, 18, 21 or 24 words.\nSeperate words by a single space."
text: qsTrId("enter-12--15--18--21-or-24-words--nseperate-words-by-a-single-space-")
2020-06-12 20:47:44 +00:00
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: 0
horizontalAlignment: TextEdit.AlignHCenter
color: Style.current.secondaryText
2020-06-12 20:47:44 +00:00
font.pixelSize: 12
}
footer: StatusRoundButton {
2020-06-12 20:47:44 +00:00
id: submitBtn
anchors.bottom: parent.bottom
anchors.topMargin: Style.current.padding
2020-06-12 20:47:44 +00:00
anchors.right: parent.right
icon.name: "arrow-right"
icon.width: 20
icon.height: 16
enabled: seedPhraseTextArea.correctWordCount
2020-06-12 20:47:44 +00:00
onClicked : {
if (seedPhraseTextArea.textArea.text === "") {
2020-06-12 20:47:44 +00:00
return
}
if (seedPhraseTextArea.validateSeed()) {
onConfirmSeedClick(seedPhraseTextArea.textArea.text)
}
2020-06-12 20:47:44 +00:00
}
}
}
/*##^##
Designer {
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
}
##^##*/