wizard v0.2

This commit is contained in:
marcin
2014-08-20 21:19:21 +02:00
parent 28dd3f2e58
commit 2a1f381470
4 changed files with 102 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ Rectangle {
var pages = new Array()
pages[0] = welcomePage
pages[1] = optionsPage
pages[2] = createWalletPage
if(next === false) {
if(currentPage > 0) {
@@ -67,6 +68,17 @@ Rectangle {
anchors.left: prevButton.right
anchors.leftMargin: 50
anchors.rightMargin: 50
onCreateWalletClicked: wizard.switchPage(true)
}
WizardCreateWallet {
id: createWalletPage
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.right: nextButton.left
anchors.left: prevButton.right
anchors.leftMargin: 50
anchors.rightMargin: 50
}
Rectangle {