2015-04-01 11:56:05 +03: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 15:58:02 +03:00
|
|
|
import QtQuick 2.2
|
2016-10-07 23:05:51 +03:00
|
|
|
import moneroComponents.WalletManager 1.0
|
|
|
|
import moneroComponents.Wallet 1.0
|
2017-01-30 11:37:14 +02:00
|
|
|
import QtQuick.Layouts 1.1
|
2014-08-21 13:09:52 +03:00
|
|
|
import QtQuick.Dialogs 1.2
|
2016-08-19 14:44:44 +03:00
|
|
|
import 'utils.js' as Utils
|
2014-08-19 15:58:02 +03:00
|
|
|
|
2017-01-30 11:37:14 +02:00
|
|
|
ColumnLayout {
|
2014-08-20 22:19:21 +03:00
|
|
|
opacity: 0
|
|
|
|
visible: false
|
2016-02-02 23:09:45 +02:00
|
|
|
|
2014-08-20 22:19:21 +03:00
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
|
|
|
|
}
|
2014-08-19 15:58:02 +03:00
|
|
|
|
2016-09-23 00:05:20 +03:00
|
|
|
|
2014-08-20 22:19:21 +03:00
|
|
|
onOpacityChanged: visible = opacity !== 0
|
|
|
|
|
2016-12-08 16:37:16 +02:00
|
|
|
function onWizardRestarted() {
|
|
|
|
// reset account name field
|
|
|
|
uiItem.accountNameText = defaultAccountName
|
|
|
|
}
|
|
|
|
|
2016-06-10 16:41:13 +03:00
|
|
|
//! function called each time we display this page
|
|
|
|
|
2016-07-21 13:56:17 +03:00
|
|
|
function onPageOpened(settingsOblect) {
|
|
|
|
checkNextButton()
|
|
|
|
}
|
|
|
|
|
2016-06-10 16:41:13 +03:00
|
|
|
function onPageClosed(settingsObject) {
|
2016-02-02 23:09:45 +02:00
|
|
|
settingsObject['account_name'] = uiItem.accountNameText
|
|
|
|
settingsObject['words'] = uiItem.wordsTexttext
|
|
|
|
settingsObject['wallet_path'] = uiItem.walletPath
|
2017-04-03 19:51:55 +03:00
|
|
|
console.log("path " +uiItem.walletPath);
|
2016-10-30 19:07:56 +02:00
|
|
|
var walletFullPath = wizard.createWalletPath(uiItem.walletPath,uiItem.accountNameText);
|
2016-11-29 18:14:11 +02:00
|
|
|
return wizard.walletPathValid(walletFullPath);
|
2014-08-21 13:09:52 +03:00
|
|
|
}
|
|
|
|
|
2016-07-21 13:56:17 +03:00
|
|
|
function checkNextButton() {
|
2016-08-19 14:44:44 +03:00
|
|
|
var wordsArray = Utils.lineBreaksToSpaces(uiItem.wordsTextItem.memoText).split(" ");
|
2016-07-21 13:56:17 +03:00
|
|
|
wizard.nextButton.enabled = wordsArray.length === 25;
|
|
|
|
}
|
|
|
|
|
2016-06-10 16:41:13 +03:00
|
|
|
//! function called each time we hide this page
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2016-02-23 17:59:26 +02:00
|
|
|
function createWallet(settingsObject) {
|
2016-06-10 16:41:13 +03:00
|
|
|
// 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
|
|
|
|
|
2016-10-30 22:31:33 +02:00
|
|
|
// Always delete the wallet object before creating new - we could be stepping back from recovering wallet
|
2017-08-06 18:11:12 +03:00
|
|
|
if (typeof m_wallet !== 'undefined') {
|
2016-12-04 14:13:59 +02:00
|
|
|
walletManager.closeWallet()
|
2016-10-30 22:31:33 +02:00
|
|
|
console.log("deleting wallet")
|
2016-02-24 12:25:20 +02:00
|
|
|
}
|
2016-10-30 22:31:33 +02:00
|
|
|
|
2017-01-03 22:44:55 +02:00
|
|
|
var tmp_wallet_filename = oshelper.temporaryFilename();
|
|
|
|
console.log("Creating temporary wallet", tmp_wallet_filename)
|
2016-10-30 22:31:33 +02:00
|
|
|
var testnet = appWindow.persistentSettings.testnet;
|
2017-01-03 22:44:55 +02:00
|
|
|
var wallet = walletManager.createWallet(tmp_wallet_filename, "", settingsObject.wallet_language,
|
2016-10-30 22:31:33 +02:00
|
|
|
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
|
2017-08-06 18:11:12 +03:00
|
|
|
m_wallet = wallet;
|
|
|
|
settingsObject['tmp_wallet_filename'] = tmp_wallet_filename
|
2016-02-23 17:59:26 +02:00
|
|
|
}
|
|
|
|
|
2016-02-02 23:09:45 +02:00
|
|
|
WizardManageWalletUI {
|
|
|
|
id: uiItem
|
2017-01-26 22:54:31 +02:00
|
|
|
titleText: qsTr("Create a new wallet") + translationManager.emptyString
|
2016-02-06 14:49:31 +02:00
|
|
|
wordsTextItem.clipboardButtonVisible: true
|
|
|
|
wordsTextItem.tipTextVisible: true
|
|
|
|
wordsTextItem.memoTextReadOnly: true
|
2016-10-08 02:48:42 +03:00
|
|
|
restoreHeightVisible:false
|
2017-01-26 22:54:31 +02:00
|
|
|
recoverMode: false
|
2014-08-21 13:09:52 +03:00
|
|
|
}
|
2016-12-08 16:37:16 +02:00
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
parent.wizardRestarted.connect(onWizardRestarted)
|
|
|
|
}
|
2014-08-19 15:58:02 +03:00
|
|
|
}
|