monero-gui/wizard/WizardCreateWallet.qml

112 lines
4.4 KiB
QML
Raw Normal View History

2015-04-01 08:56:05 +00:00
// Copyright (c) 2014-2015, The Monero Project
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2014-08-19 12:58:02 +00:00
import QtQuick 2.2
2016-10-07 20:05:51 +00:00
import moneroComponents.WalletManager 1.0
import moneroComponents.Wallet 1.0
2017-01-30 09:37:14 +00:00
import QtQuick.Layouts 1.1
2014-08-21 10:09:52 +00:00
import QtQuick.Dialogs 1.2
import 'utils.js' as Utils
2014-08-19 12:58:02 +00:00
2017-01-30 09:37:14 +00:00
ColumnLayout {
2014-08-20 19:19:21 +00:00
opacity: 0
visible: false
2014-08-20 19:19:21 +00:00
Behavior on opacity {
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
}
2014-08-19 12:58:02 +00:00
2016-09-22 21:05:20 +00:00
2014-08-20 19:19:21 +00:00
onOpacityChanged: visible = opacity !== 0
function onWizardRestarted() {
// reset account name field
uiItem.accountNameText = defaultAccountName
}
//! function called each time we display this page
2016-07-21 10:56:17 +00:00
function onPageOpened(settingsOblect) {
checkNextButton()
}
function onPageClosed(settingsObject) {
settingsObject['account_name'] = uiItem.accountNameText
settingsObject['words'] = uiItem.wordsTexttext
settingsObject['wallet_path'] = uiItem.walletPath
2017-04-03 16:51:55 +00:00
console.log("path " +uiItem.walletPath);
var walletFullPath = wizard.createWalletPath(uiItem.walletPath,uiItem.accountNameText);
return wizard.walletPathValid(walletFullPath);
2014-08-21 10:09:52 +00:00
}
2016-07-21 10:56:17 +00:00
function checkNextButton() {
var wordsArray = Utils.lineBreaksToSpaces(uiItem.wordsTextItem.memoText).split(" ");
2016-07-21 10:56:17 +00:00
wizard.nextButton.enabled = wordsArray.length === 25;
}
//! function called each time we hide this page
//
2016-02-23 15:59:26 +00:00
function createWallet(settingsObject) {
// TODO: create wallet in temporary filename and a) move it to the path specified by user after the final
// page submitted or b) delete it when program closed before reaching final page
// Always delete the wallet object before creating new - we could be stepping back from recovering wallet
if (typeof m_wallet !== 'undefined') {
walletManager.closeWallet()
console.log("deleting wallet")
}
var tmp_wallet_filename = oshelper.temporaryFilename();
console.log("Creating temporary wallet", tmp_wallet_filename)
var testnet = appWindow.persistentSettings.testnet;
var wallet = walletManager.createWallet(tmp_wallet_filename, "", settingsObject.wallet_language,
testnet)
uiItem.wordsTextItem.memoText = wallet.seed
// saving wallet in "global" settings object
// TODO: wallet should have a property pointing to the file where it stored or loaded from
m_wallet = wallet;
settingsObject['tmp_wallet_filename'] = tmp_wallet_filename
2016-02-23 15:59:26 +00:00
}
WizardManageWalletUI {
id: uiItem
2017-01-26 20:54:31 +00:00
titleText: qsTr("Create a new wallet") + translationManager.emptyString
wordsTextItem.clipboardButtonVisible: true
wordsTextItem.tipTextVisible: true
wordsTextItem.memoTextReadOnly: true
2016-10-07 23:48:42 +00:00
restoreHeightVisible:false
2017-01-26 20:54:31 +00:00
recoverMode: false
2014-08-21 10:09:52 +00:00
}
Component.onCompleted: {
parent.wizardRestarted.connect(onWizardRestarted)
}
2014-08-19 12:58:02 +00:00
}