2015-04-01 08:56:05 +00:00
|
|
|
// Copyright (c) 2014-2015, The Monero Project
|
2016-11-12 13:28:13 +00:00
|
|
|
//
|
2015-04-01 08:56:05 +00:00
|
|
|
// All rights reserved.
|
2016-11-12 13:28:13 +00:00
|
|
|
//
|
2015-04-01 08:56:05 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
|
|
// permitted provided that the following conditions are met:
|
2016-11-12 13:28:13 +00:00
|
|
|
//
|
2015-04-01 08:56:05 +00:00
|
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
|
|
// conditions and the following disclaimer.
|
2016-11-12 13:28:13 +00:00
|
|
|
//
|
2015-04-01 08:56:05 +00:00
|
|
|
// 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.
|
2016-11-12 13:28:13 +00:00
|
|
|
//
|
2015-04-01 08:56:05 +00:00
|
|
|
// 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.
|
2016-11-12 13:28:13 +00:00
|
|
|
//
|
2015-04-01 08:56:05 +00:00
|
|
|
// 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-07-07 17:08:30 +00:00
|
|
|
import QtQuick 2.2
|
|
|
|
import QtQuick.Window 2.0
|
|
|
|
import QtQuick.Controls 1.1
|
|
|
|
import QtQuick.Controls.Styles 1.1
|
2016-06-28 19:37:14 +00:00
|
|
|
import QtQuick.Dialogs 1.2
|
2016-06-15 13:34:55 +00:00
|
|
|
import Qt.labs.settings 1.0
|
2016-10-02 18:40:40 +00:00
|
|
|
|
|
|
|
import moneroComponents.Wallet 1.0
|
|
|
|
import moneroComponents.PendingTransaction 1.0
|
2016-06-15 10:25:45 +00:00
|
|
|
|
2016-07-13 12:24:40 +00:00
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
import "components"
|
2014-08-19 12:58:02 +00:00
|
|
|
import "wizard"
|
2014-07-07 17:08:30 +00:00
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
id: appWindow
|
2016-08-17 12:14:43 +00:00
|
|
|
|
|
|
|
|
2014-07-09 14:18:48 +00:00
|
|
|
property var currentItem
|
2014-07-07 17:08:30 +00:00
|
|
|
property bool whatIsEnable: false
|
2014-07-13 12:27:50 +00:00
|
|
|
property bool ctrlPressed: false
|
2016-06-20 19:08:09 +00:00
|
|
|
property bool rightPanelExpanded: false
|
2014-07-16 12:40:09 +00:00
|
|
|
property bool osx: false
|
2016-06-15 13:34:55 +00:00
|
|
|
property alias persistentSettings : persistentSettings
|
2016-08-18 18:55:34 +00:00
|
|
|
property var currentWallet;
|
2016-06-28 19:37:14 +00:00
|
|
|
property var transaction;
|
2016-11-05 23:19:28 +00:00
|
|
|
property var transactionDescription;
|
2016-08-17 12:14:43 +00:00
|
|
|
property alias password : passwordDialog.password
|
2016-09-30 10:12:26 +00:00
|
|
|
property int splashCounter: 0
|
2016-10-05 20:34:47 +00:00
|
|
|
property bool isNewWallet: false
|
2016-10-07 23:37:47 +00:00
|
|
|
property int restoreHeight:0
|
2016-11-01 23:17:58 +00:00
|
|
|
property bool daemonSynced: false
|
2016-11-21 21:14:49 +00:00
|
|
|
property int maxWindowHeight: (Screen.height < 900)? 720 : 800;
|
2016-11-25 20:09:32 +00:00
|
|
|
property bool daemonRunning: false
|
2016-12-15 13:09:37 +00:00
|
|
|
property alias toolTip: toolTip
|
2016-10-07 23:37:47 +00:00
|
|
|
|
2016-10-06 21:47:28 +00:00
|
|
|
// true if wallet ever synchronized
|
|
|
|
property bool walletInitialized : false
|
2016-07-13 12:24:40 +00:00
|
|
|
|
2014-07-13 12:27:50 +00:00
|
|
|
function altKeyReleased() { ctrlPressed = false; }
|
2016-06-15 13:34:55 +00:00
|
|
|
|
2014-07-13 12:27:50 +00:00
|
|
|
function showPageRequest(page) {
|
|
|
|
middlePanel.state = page
|
|
|
|
leftPanel.selectItem(page)
|
|
|
|
}
|
2016-06-15 13:34:55 +00:00
|
|
|
|
2014-07-13 12:27:50 +00:00
|
|
|
function sequencePressed(obj, seq) {
|
2014-07-09 14:18:48 +00:00
|
|
|
if(seq === undefined)
|
|
|
|
return
|
2014-07-13 12:27:50 +00:00
|
|
|
if(seq === "Ctrl") {
|
|
|
|
ctrlPressed = true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if(seq === "Ctrl+D") middlePanel.state = "Dashboard"
|
2016-12-18 13:59:24 +00:00
|
|
|
else if(seq === "Ctrl+S") middlePanel.state = "Transfer"
|
|
|
|
else if(seq === "Ctrl+R") middlePanel.state = "Receive"
|
|
|
|
else if(seq === "Ctrl+K") middlePanel.state = "TxKey"
|
2014-07-13 12:27:50 +00:00
|
|
|
else if(seq === "Ctrl+H") middlePanel.state = "History"
|
|
|
|
else if(seq === "Ctrl+B") middlePanel.state = "AddressBook"
|
|
|
|
else if(seq === "Ctrl+M") middlePanel.state = "Mining"
|
2016-12-18 13:59:24 +00:00
|
|
|
else if(seq === "Ctrl+I") middlePanel.state = "Sign"
|
|
|
|
else if(seq === "Ctrl+E") middlePanel.state = "Settings"
|
2014-07-16 12:40:09 +00:00
|
|
|
else if(seq === "Ctrl+Tab" || seq === "Alt+Tab") {
|
2016-12-18 14:24:48 +00:00
|
|
|
/*
|
2014-07-13 12:27:50 +00:00
|
|
|
if(middlePanel.state === "Dashboard") middlePanel.state = "Transfer"
|
2016-12-18 13:59:24 +00:00
|
|
|
else if(middlePanel.state === "Transfer") middlePanel.state = "Receive"
|
|
|
|
else if(middlePanel.state === "Receive") middlePanel.state = "TxKey"
|
|
|
|
else if(middlePanel.state === "TxKey") middlePanel.state = "History"
|
2014-07-13 12:27:50 +00:00
|
|
|
else if(middlePanel.state === "History") middlePanel.state = "AddressBook"
|
|
|
|
else if(middlePanel.state === "AddressBook") middlePanel.state = "Mining"
|
2016-12-18 13:59:24 +00:00
|
|
|
else if(middlePanel.state === "Mining") middlePanel.state = "Sign"
|
|
|
|
else if(middlePanel.state === "Sign") middlePanel.state = "Settings"
|
2014-07-13 12:27:50 +00:00
|
|
|
else if(middlePanel.state === "Settings") middlePanel.state = "Dashboard"
|
2016-12-18 14:24:48 +00:00
|
|
|
*/
|
|
|
|
if(middlePanel.state === "Settings") middlePanel.state = "Transfer"
|
|
|
|
else if(middlePanel.state === "Transfer") middlePanel.state = "Receive"
|
|
|
|
else if(middlePanel.state === "Receive") middlePanel.state = "TxKey"
|
|
|
|
else if(middlePanel.state === "TxKey") middlePanel.state = "History"
|
|
|
|
else if(middlePanel.state === "History") middlePanel.state = "AddressBook"
|
|
|
|
else if(middlePanel.state === "AddressBook") middlePanel.state = "Sign"
|
|
|
|
else if(middlePanel.state === "Sign") middlePanel.state = "Settings"
|
2014-07-16 12:40:09 +00:00
|
|
|
} else if(seq === "Ctrl+Shift+Backtab" || seq === "Alt+Shift+Backtab") {
|
2016-12-18 14:24:48 +00:00
|
|
|
/*
|
2014-07-13 12:27:50 +00:00
|
|
|
if(middlePanel.state === "Dashboard") middlePanel.state = "Settings"
|
2016-12-18 14:24:48 +00:00
|
|
|
if(middlePanel.state === "Settings") middlePanel.state = "Sign"
|
2016-12-18 13:59:24 +00:00
|
|
|
else if(middlePanel.state === "Sign") middlePanel.state = "Mining"
|
2014-07-13 12:27:50 +00:00
|
|
|
else if(middlePanel.state === "Mining") middlePanel.state = "AddressBook"
|
|
|
|
else if(middlePanel.state === "AddressBook") middlePanel.state = "History"
|
2016-12-18 13:59:24 +00:00
|
|
|
else if(middlePanel.state === "History") middlePanel.state = "TxKey"
|
|
|
|
else if(middlePanel.state === "TxKey") middlePanel.state = "Receive"
|
|
|
|
else if(middlePanel.state === "Receive") middlePanel.state = "Transfer"
|
2014-07-13 12:27:50 +00:00
|
|
|
else if(middlePanel.state === "Transfer") middlePanel.state = "Dashboard"
|
2016-12-18 14:24:48 +00:00
|
|
|
*/
|
|
|
|
if(middlePanel.state === "Settings") middlePanel.state = "Sign"
|
|
|
|
else if(middlePanel.state === "Sign") middlePanel.state = "AddressBook"
|
|
|
|
else if(middlePanel.state === "AddressBook") middlePanel.state = "History"
|
|
|
|
else if(middlePanel.state === "History") middlePanel.state = "TxKey"
|
|
|
|
else if(middlePanel.state === "TxKey") middlePanel.state = "Receive"
|
|
|
|
else if(middlePanel.state === "Receive") middlePanel.state = "Transfer"
|
|
|
|
else if(middlePanel.state === "Transfer") middlePanel.state = "Settings"
|
2014-07-13 12:27:50 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 16:03:37 +00:00
|
|
|
leftPanel.selectItem(middlePanel.state)
|
2014-07-09 14:18:48 +00:00
|
|
|
}
|
2014-07-13 12:27:50 +00:00
|
|
|
|
|
|
|
function sequenceReleased(obj, seq) {
|
|
|
|
if(seq === "Ctrl")
|
|
|
|
ctrlPressed = false
|
|
|
|
}
|
|
|
|
|
2016-12-04 12:13:59 +00:00
|
|
|
function mousePressed(obj, mouseX, mouseY) {}
|
|
|
|
function mouseReleased(obj, mouseX, mouseY) {}
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2016-10-29 14:48:10 +00:00
|
|
|
function openWalletFromFile(){
|
|
|
|
persistentSettings.restore_height = 0
|
2016-11-23 18:32:30 +00:00
|
|
|
restoreHeight = 0;
|
2016-10-29 14:48:10 +00:00
|
|
|
persistentSettings.is_recovering = false
|
|
|
|
appWindow.password = ""
|
|
|
|
fileDialog.open();
|
|
|
|
}
|
2016-06-15 13:34:55 +00:00
|
|
|
|
|
|
|
function initialize() {
|
2016-07-13 12:24:40 +00:00
|
|
|
console.log("initializing..")
|
2016-11-07 10:27:53 +00:00
|
|
|
walletInitialized = false;
|
|
|
|
|
2016-12-31 10:56:08 +00:00
|
|
|
// Use stored log level
|
|
|
|
walletManager.setLogLevel(persistentSettings.logLevel)
|
|
|
|
|
2016-07-19 20:45:12 +00:00
|
|
|
// setup language
|
|
|
|
var locale = persistentSettings.locale
|
|
|
|
if (locale !== "") {
|
|
|
|
translationManager.setLanguage(locale.split("_")[0]);
|
|
|
|
}
|
|
|
|
|
2016-12-04 12:13:59 +00:00
|
|
|
// If currentWallet exists, we're just switching daemon - close/reopen wallet
|
|
|
|
if (typeof currentWallet !== "undefined" && currentWallet !== null) {
|
|
|
|
console.log("Daemon change - closing " + currentWallet)
|
2016-12-15 12:18:04 +00:00
|
|
|
closeWallet();
|
2016-12-14 12:11:20 +00:00
|
|
|
currentWallet = undefined
|
2016-10-29 14:48:10 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
// set page to transfer if not changing daemon
|
|
|
|
middlePanel.state = "Transfer";
|
|
|
|
leftPanel.selectItem(middlePanel.state)
|
|
|
|
|
2016-10-04 22:18:50 +00:00
|
|
|
}
|
2016-07-19 20:45:12 +00:00
|
|
|
|
2016-11-24 11:14:46 +00:00
|
|
|
walletManager.setDaemonAddress(persistentSettings.daemon_address)
|
|
|
|
|
2016-08-19 11:44:44 +00:00
|
|
|
// wallet already opened with wizard, we just need to initialize it
|
2016-06-15 13:34:55 +00:00
|
|
|
if (typeof wizard.settings['wallet'] !== 'undefined') {
|
2016-10-04 22:18:50 +00:00
|
|
|
console.log("using wizard wallet")
|
2016-10-07 23:37:47 +00:00
|
|
|
//Set restoreHeight
|
2016-10-10 14:37:03 +00:00
|
|
|
if(persistentSettings.restore_height > 0){
|
2016-11-23 18:32:30 +00:00
|
|
|
// We store restore height in own variable for performance reasons.
|
2016-10-10 14:37:03 +00:00
|
|
|
restoreHeight = persistentSettings.restore_height
|
2016-10-07 23:37:47 +00:00
|
|
|
}
|
|
|
|
|
2016-08-19 11:44:44 +00:00
|
|
|
connectWallet(wizard.settings['wallet'])
|
2016-10-07 23:37:47 +00:00
|
|
|
|
2016-10-05 20:34:47 +00:00
|
|
|
isNewWallet = true
|
2016-10-04 22:18:50 +00:00
|
|
|
// We don't need the wizard wallet any more - delete to avoid conflict with daemon adress change
|
|
|
|
delete wizard.settings['wallet']
|
2016-06-15 13:34:55 +00:00
|
|
|
} else {
|
2016-08-16 20:21:46 +00:00
|
|
|
var wallet_path = walletPath();
|
2016-09-22 21:07:12 +00:00
|
|
|
// console.log("opening wallet at: ", wallet_path, "with password: ", appWindow.password);
|
2016-10-02 18:40:40 +00:00
|
|
|
console.log("opening wallet at: ", wallet_path, ", testnet: ", persistentSettings.testnet);
|
2016-08-18 18:55:34 +00:00
|
|
|
walletManager.openWalletAsync(wallet_path, appWindow.password,
|
2016-08-17 12:14:43 +00:00
|
|
|
persistentSettings.testnet);
|
2016-06-15 13:34:55 +00:00
|
|
|
}
|
2016-10-29 14:48:10 +00:00
|
|
|
|
2016-06-17 13:35:07 +00:00
|
|
|
}
|
2016-12-15 12:18:04 +00:00
|
|
|
function closeWallet() {
|
2016-06-17 13:35:07 +00:00
|
|
|
|
2016-12-15 12:18:04 +00:00
|
|
|
// Disconnect all listeners
|
2016-12-15 23:12:27 +00:00
|
|
|
if (typeof currentWallet !== "undefined" && currentWallet !== null) {
|
|
|
|
currentWallet.refreshed.disconnect(onWalletRefresh)
|
|
|
|
currentWallet.updated.disconnect(onWalletUpdate)
|
|
|
|
currentWallet.newBlock.disconnect(onWalletNewBlock)
|
|
|
|
currentWallet.moneySpent.disconnect(onWalletMoneySent)
|
|
|
|
currentWallet.moneyReceived.disconnect(onWalletMoneyReceived)
|
|
|
|
currentWallet.transactionCreated.disconnect(onTransactionCreated)
|
|
|
|
currentWallet.connectionStatusChanged.disconnect(onWalletConnectionStatusChanged)
|
|
|
|
middlePanel.paymentClicked.disconnect(handlePayment);
|
|
|
|
middlePanel.sweepUnmixableClicked.disconnect(handleSweepUnmixable);
|
|
|
|
middlePanel.checkPaymentClicked.disconnect(handleCheckPayment);
|
|
|
|
}
|
2016-12-15 12:18:04 +00:00
|
|
|
currentWallet = undefined;
|
2016-12-15 23:12:27 +00:00
|
|
|
walletManager.closeWalletAsync();
|
2016-12-15 12:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function connectWallet(wallet) {
|
|
|
|
showProcessingSplash("Please wait...")
|
|
|
|
currentWallet = wallet
|
2016-12-31 13:47:40 +00:00
|
|
|
updateSyncing(false)
|
2016-12-15 12:18:04 +00:00
|
|
|
|
2016-12-04 12:13:59 +00:00
|
|
|
// connect handlers
|
2016-08-19 11:44:44 +00:00
|
|
|
currentWallet.refreshed.connect(onWalletRefresh)
|
|
|
|
currentWallet.updated.connect(onWalletUpdate)
|
2016-09-26 19:55:25 +00:00
|
|
|
currentWallet.newBlock.connect(onWalletNewBlock)
|
2016-10-06 21:47:28 +00:00
|
|
|
currentWallet.moneySpent.connect(onWalletMoneySent)
|
|
|
|
currentWallet.moneyReceived.connect(onWalletMoneyReceived)
|
2016-11-08 17:05:33 +00:00
|
|
|
currentWallet.transactionCreated.connect(onTransactionCreated)
|
2016-11-26 14:50:04 +00:00
|
|
|
currentWallet.connectionStatusChanged.connect(onWalletConnectionStatusChanged)
|
2016-12-04 12:13:59 +00:00
|
|
|
middlePanel.paymentClicked.connect(handlePayment);
|
|
|
|
middlePanel.sweepUnmixableClicked.connect(handleSweepUnmixable);
|
|
|
|
middlePanel.checkPaymentClicked.connect(handleCheckPayment);
|
2016-11-06 22:40:26 +00:00
|
|
|
|
2016-08-19 11:44:44 +00:00
|
|
|
console.log("initializing with daemon address: ", persistentSettings.daemon_address)
|
2016-10-10 19:40:58 +00:00
|
|
|
console.log("Recovering from seed: ", persistentSettings.is_recovering)
|
|
|
|
console.log("restore Height", persistentSettings.restore_height)
|
|
|
|
currentWallet.initAsync(persistentSettings.daemon_address, 0, persistentSettings.is_recovering, persistentSettings.restore_height);
|
2016-08-19 11:44:44 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 20:21:46 +00:00
|
|
|
function walletPath() {
|
2016-10-29 14:48:10 +00:00
|
|
|
var wallet_path = persistentSettings.wallet_path
|
2016-08-16 20:21:46 +00:00
|
|
|
return wallet_path;
|
|
|
|
}
|
|
|
|
|
2016-11-26 14:50:04 +00:00
|
|
|
function onWalletConnectionStatusChanged(){
|
|
|
|
console.log("Wallet connection status changed")
|
|
|
|
middlePanel.updateStatus();
|
|
|
|
}
|
|
|
|
|
2016-08-18 18:55:34 +00:00
|
|
|
function onWalletOpened(wallet) {
|
|
|
|
console.log(">>> wallet opened: " + wallet)
|
|
|
|
if (wallet.status !== Wallet.Status_Ok) {
|
2016-08-19 11:44:44 +00:00
|
|
|
if (appWindow.password === '') {
|
2016-08-18 18:55:34 +00:00
|
|
|
console.error("Error opening wallet with empty password: ", wallet.errorString);
|
2016-08-19 11:44:44 +00:00
|
|
|
console.log("closing wallet async : " + wallet.address)
|
2016-12-15 12:18:04 +00:00
|
|
|
closeWallet();
|
2016-08-18 18:55:34 +00:00
|
|
|
// try to open wallet with password;
|
2016-11-26 14:46:42 +00:00
|
|
|
passwordDialog.open(wallet.path);
|
2016-08-18 18:55:34 +00:00
|
|
|
} else {
|
|
|
|
// opening with password but password doesn't match
|
|
|
|
console.error("Error opening wallet with password: ", wallet.errorString);
|
2016-08-19 11:44:44 +00:00
|
|
|
|
2016-08-18 18:55:34 +00:00
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
informationPopup.text = qsTr("Couldn't open wallet: ") + wallet.errorString;
|
|
|
|
informationPopup.icon = StandardIcon.Critical
|
2016-08-19 11:44:44 +00:00
|
|
|
console.log("closing wallet async : " + wallet.address)
|
2016-12-15 12:18:04 +00:00
|
|
|
closeWallet();
|
2016-08-18 18:55:34 +00:00
|
|
|
informationPopup.open()
|
2016-08-19 11:44:44 +00:00
|
|
|
informationPopup.onCloseCallback = function() {
|
2016-11-26 14:46:42 +00:00
|
|
|
passwordDialog.open(wallet.path)
|
2016-08-19 11:44:44 +00:00
|
|
|
}
|
2016-08-18 18:55:34 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// wallet opened successfully, subscribing for wallet updates
|
2016-08-19 11:44:44 +00:00
|
|
|
connectWallet(wallet)
|
2016-08-18 18:55:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onWalletClosed(walletAddress) {
|
|
|
|
console.log(">>> wallet closed: " + walletAddress)
|
|
|
|
}
|
2016-08-16 20:21:46 +00:00
|
|
|
|
2016-06-17 13:35:07 +00:00
|
|
|
function onWalletUpdate() {
|
2016-07-13 12:24:40 +00:00
|
|
|
console.log(">>> wallet updated")
|
2016-10-08 22:32:03 +00:00
|
|
|
middlePanel.unlockedBalanceText = leftPanel.unlockedBalanceText = walletManager.displayAmount(currentWallet.unlockedBalance);
|
|
|
|
middlePanel.balanceText = leftPanel.balanceText = walletManager.displayAmount(currentWallet.balance);
|
2016-07-13 12:24:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function onWalletRefresh() {
|
|
|
|
console.log(">>> wallet refreshed")
|
2016-08-23 08:55:51 +00:00
|
|
|
if (splash.visible) {
|
|
|
|
hideProcessingSplash()
|
|
|
|
}
|
2016-11-01 23:17:58 +00:00
|
|
|
|
2016-11-26 16:01:29 +00:00
|
|
|
// Daemon connected
|
|
|
|
leftPanel.networkStatus.connected = currentWallet.connected
|
|
|
|
|
2016-11-01 23:17:58 +00:00
|
|
|
// Check daemon status
|
2016-10-03 21:29:30 +00:00
|
|
|
var dCurrentBlock = currentWallet.daemonBlockChainHeight();
|
|
|
|
var dTargetBlock = currentWallet.daemonBlockChainTargetHeight();
|
2016-11-01 23:17:58 +00:00
|
|
|
|
|
|
|
// Daemon fully synced
|
|
|
|
// TODO: implement onDaemonSynced or similar in wallet API and don't start refresh thread before daemon is synced
|
2016-11-07 12:02:27 +00:00
|
|
|
daemonSynced = (currentWallet.connected != Wallet.ConnectionStatus_Disconnected && dCurrentBlock >= dTargetBlock)
|
2016-12-14 12:48:12 +00:00
|
|
|
leftPanel.progressBar.updateProgress(dCurrentBlock,dTargetBlock);
|
2016-12-31 13:47:40 +00:00
|
|
|
updateSyncing((currentWallet.connected !== Wallet.ConnectionStatus_Disconnected) && (dCurrentBlock < dTargetBlock))
|
2016-11-27 12:35:27 +00:00
|
|
|
middlePanel.updateStatus();
|
2016-11-01 23:17:58 +00:00
|
|
|
|
2016-11-25 20:09:32 +00:00
|
|
|
// If wallet isnt connected and no daemon is running - Ask
|
2016-11-26 12:16:36 +00:00
|
|
|
if(currentWallet.connected === Wallet.ConnectionStatus_Disconnected && !daemonManager.running() && !walletInitialized){
|
2016-11-25 20:09:32 +00:00
|
|
|
daemonManagerDialog.open();
|
|
|
|
}
|
2016-11-01 23:17:58 +00:00
|
|
|
|
2016-11-10 11:11:25 +00:00
|
|
|
// Refresh is succesfull if blockchain height > 1
|
2016-10-27 22:24:02 +00:00
|
|
|
if (currentWallet.blockChainHeight() > 1){
|
|
|
|
|
2016-11-10 11:11:25 +00:00
|
|
|
// Save new wallet after first refresh
|
|
|
|
// Wallet is nomrmally saved to disk on app exit. This prevents rescan from block 0 after app crash
|
|
|
|
if(isNewWallet){
|
|
|
|
console.log("Saving wallet after first refresh");
|
2016-11-10 11:23:43 +00:00
|
|
|
currentWallet.store()
|
2016-11-10 11:11:25 +00:00
|
|
|
isNewWallet = false
|
|
|
|
}
|
2016-10-27 22:24:02 +00:00
|
|
|
|
|
|
|
// recovering from seed is finished after first refresh
|
|
|
|
if(persistentSettings.is_recovering) {
|
|
|
|
persistentSettings.is_recovering = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-05 20:34:47 +00:00
|
|
|
|
2016-10-06 21:47:28 +00:00
|
|
|
// initialize transaction history once wallet is initializef first time;
|
|
|
|
if (!walletInitialized) {
|
|
|
|
currentWallet.history.refresh()
|
|
|
|
walletInitialized = true
|
|
|
|
}
|
|
|
|
|
2016-07-14 10:09:39 +00:00
|
|
|
onWalletUpdate();
|
2016-06-15 13:34:55 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 13:30:15 +00:00
|
|
|
function startDaemon(flags){
|
2016-11-26 10:31:27 +00:00
|
|
|
appWindow.showProcessingSplash(qsTr("Waiting for daemon to start..."))
|
2016-12-21 13:30:15 +00:00
|
|
|
daemonManager.start(flags);
|
|
|
|
persistentSettings.daemonFlags = flags
|
2016-11-26 10:31:27 +00:00
|
|
|
}
|
2016-11-26 16:01:29 +00:00
|
|
|
|
2016-11-26 10:31:27 +00:00
|
|
|
function stopDaemon(){
|
|
|
|
appWindow.showProcessingSplash(qsTr("Waiting for daemon to stop..."))
|
|
|
|
daemonManager.stop();
|
|
|
|
}
|
|
|
|
|
2016-11-25 20:09:32 +00:00
|
|
|
function onDaemonStarted(){
|
|
|
|
console.log("daemon started");
|
|
|
|
daemonRunning = true;
|
|
|
|
}
|
|
|
|
function onDaemonStopped(){
|
|
|
|
console.log("daemon stopped");
|
2016-12-14 12:48:12 +00:00
|
|
|
hideProcessingSplash();
|
2016-11-25 20:09:32 +00:00
|
|
|
daemonRunning = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-26 19:55:25 +00:00
|
|
|
function onWalletNewBlock(blockHeight) {
|
2016-10-07 23:37:47 +00:00
|
|
|
|
2016-12-14 12:48:12 +00:00
|
|
|
// Update progress bar
|
|
|
|
var currHeight = blockHeight
|
2016-10-07 23:37:47 +00:00
|
|
|
//fast refresh until restoreHeight is reached
|
|
|
|
var increment = ((restoreHeight == 0) || currHeight < restoreHeight)? 1000 : 10
|
|
|
|
|
|
|
|
if(currHeight > splashCounter + increment){
|
2016-09-30 10:12:26 +00:00
|
|
|
splashCounter = currHeight
|
2016-12-14 12:48:12 +00:00
|
|
|
leftPanel.progressBar.updateProgress(currHeight,currentWallet.daemonBlockChainTargetHeight());
|
2016-09-30 10:12:26 +00:00
|
|
|
}
|
2016-09-26 19:55:25 +00:00
|
|
|
}
|
|
|
|
|
2016-10-06 21:47:28 +00:00
|
|
|
function onWalletMoneyReceived(txId, amount) {
|
|
|
|
// refresh transaction history here
|
|
|
|
currentWallet.refresh()
|
|
|
|
currentWallet.history.refresh() // this will refresh model
|
|
|
|
}
|
|
|
|
|
|
|
|
function onWalletMoneySent(txId, amount) {
|
|
|
|
// refresh transaction history here
|
|
|
|
currentWallet.refresh()
|
|
|
|
currentWallet.history.refresh() // this will refresh model
|
|
|
|
}
|
|
|
|
|
2016-06-07 13:26:25 +00:00
|
|
|
function walletsFound() {
|
2016-10-30 16:58:12 +00:00
|
|
|
if (persistentSettings.wallet_path.length > 0) {
|
2016-11-13 13:14:26 +00:00
|
|
|
return walletManager.walletExists(persistentSettings.wallet_path);
|
2016-06-07 13:26:25 +00:00
|
|
|
}
|
2016-11-13 13:14:26 +00:00
|
|
|
return false;
|
2016-06-07 13:26:25 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 17:05:33 +00:00
|
|
|
function onTransactionCreated(pendingTransaction,address,paymentId,mixinCount){
|
|
|
|
console.log("Transaction created");
|
|
|
|
hideProcessingSplash();
|
|
|
|
transaction = pendingTransaction;
|
|
|
|
// validate address;
|
|
|
|
if (transaction.status !== PendingTransaction.Status_Ok) {
|
|
|
|
console.error("Can't create transaction: ", transaction.errorString);
|
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
if (currentWallet.connected == Wallet.ConnectionStatus_WrongVersion)
|
|
|
|
informationPopup.text = qsTr("Can't create transaction: Wrong daemon version: ") + transaction.errorString
|
|
|
|
else
|
|
|
|
informationPopup.text = qsTr("Can't create transaction: ") + transaction.errorString
|
|
|
|
informationPopup.icon = StandardIcon.Critical
|
|
|
|
informationPopup.onCloseCallback = null
|
|
|
|
informationPopup.open();
|
|
|
|
// deleting transaction object, we don't want memleaks
|
|
|
|
currentWallet.disposeTransaction(transaction);
|
|
|
|
|
2016-11-11 21:54:17 +00:00
|
|
|
} else if (transaction.txCount == 0) {
|
|
|
|
informationPopup.title = qsTr("No unmixable outputs to sweep") + translationManager.emptyString
|
|
|
|
informationPopup.text = qsTr("No unmixable outputs to sweep") + translationManager.emptyString
|
|
|
|
informationPopup.icon = StandardIcon.Information
|
|
|
|
informationPopup.onCloseCallback = null
|
|
|
|
informationPopup.open()
|
|
|
|
// deleting transaction object, we don't want memleaks
|
|
|
|
currentWallet.disposeTransaction(transaction);
|
2016-11-08 17:05:33 +00:00
|
|
|
} else {
|
|
|
|
console.log("Transaction created, amount: " + walletManager.displayAmount(transaction.amount)
|
|
|
|
+ ", fee: " + walletManager.displayAmount(transaction.fee));
|
|
|
|
|
|
|
|
// here we show confirmation popup;
|
|
|
|
|
|
|
|
transactionConfirmationPopup.title = qsTr("Confirmation") + translationManager.emptyString
|
|
|
|
transactionConfirmationPopup.text = qsTr("Please confirm transaction:\n")
|
2016-11-11 21:54:17 +00:00
|
|
|
+ (address === "" ? "" : (qsTr("\nAddress: ") + address))
|
|
|
|
+ (paymentId === "" ? "" : (qsTr("\nPayment ID: ") + paymentId))
|
2016-11-08 17:05:33 +00:00
|
|
|
+ qsTr("\n\nAmount: ") + walletManager.displayAmount(transaction.amount)
|
|
|
|
+ qsTr("\nFee: ") + walletManager.displayAmount(transaction.fee)
|
|
|
|
+ qsTr("\n\nMixin: ") + mixinCount
|
2016-11-12 13:28:13 +00:00
|
|
|
+ qsTr("\n\Number of transactions: ") + transaction.txCount
|
2016-11-11 21:54:17 +00:00
|
|
|
+ (transactionDescription === "" ? "" : (qsTr("\n\nDescription: ") + transactionDescription))
|
2016-11-08 17:05:33 +00:00
|
|
|
+ translationManager.emptyString
|
|
|
|
transactionConfirmationPopup.icon = StandardIcon.Question
|
|
|
|
transactionConfirmationPopup.open()
|
|
|
|
}
|
|
|
|
}
|
2016-08-17 12:14:43 +00:00
|
|
|
|
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
// called on "transfer"
|
2016-11-05 23:19:28 +00:00
|
|
|
function handlePayment(address, paymentId, amount, mixinCount, priority, description) {
|
2016-06-27 12:45:48 +00:00
|
|
|
console.log("Creating transaction: ")
|
|
|
|
console.log("\taddress: ", address,
|
|
|
|
", payment_id: ", paymentId,
|
|
|
|
", amount: ", amount,
|
|
|
|
", mixins: ", mixinCount,
|
2016-11-05 23:19:28 +00:00
|
|
|
", priority: ", priority,
|
|
|
|
", description: ", description);
|
2016-06-27 12:45:48 +00:00
|
|
|
|
2016-11-08 17:05:33 +00:00
|
|
|
showProcessingSplash("Creating transaction");
|
2016-11-12 13:28:13 +00:00
|
|
|
|
2016-11-08 17:05:33 +00:00
|
|
|
transactionDescription = description;
|
2016-11-12 13:28:13 +00:00
|
|
|
|
2016-08-23 13:07:52 +00:00
|
|
|
// validate amount;
|
2016-11-09 13:00:43 +00:00
|
|
|
if (amount !== "(all)") {
|
|
|
|
var amountxmr = walletManager.amountFromString(amount);
|
|
|
|
console.log("integer amount: ", amountxmr);
|
|
|
|
console.log("integer unlocked",currentWallet.unlockedBalance)
|
|
|
|
if (amountxmr <= 0) {
|
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
informationPopup.text = qsTr("Amount is wrong: expected number from %1 to %2")
|
|
|
|
.arg(walletManager.displayAmount(0))
|
|
|
|
.arg(walletManager.maximumAllowedAmountAsSting())
|
|
|
|
+ translationManager.emptyString
|
2016-08-23 13:07:52 +00:00
|
|
|
|
2016-11-09 13:00:43 +00:00
|
|
|
informationPopup.icon = StandardIcon.Critical
|
|
|
|
informationPopup.onCloseCallback = null
|
|
|
|
informationPopup.open()
|
|
|
|
return;
|
|
|
|
} else if (amountxmr > currentWallet.unlockedBalance) {
|
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
informationPopup.text = qsTr("insufficient funds. Unlocked balance: %1")
|
|
|
|
.arg(walletManager.displayAmount(currentWallet.unlockedBalance))
|
|
|
|
+ translationManager.emptyString
|
2016-10-11 21:02:21 +00:00
|
|
|
|
2016-11-09 13:00:43 +00:00
|
|
|
informationPopup.icon = StandardIcon.Critical
|
|
|
|
informationPopup.onCloseCallback = null
|
|
|
|
informationPopup.open()
|
|
|
|
return;
|
|
|
|
}
|
2016-08-23 13:07:52 +00:00
|
|
|
}
|
|
|
|
|
2016-11-09 13:00:43 +00:00
|
|
|
if (amount === "(all)")
|
2016-11-18 19:17:13 +00:00
|
|
|
currentWallet.createTransactionAllAsync(address, paymentId, mixinCount, priority);
|
2016-11-09 13:00:43 +00:00
|
|
|
else
|
|
|
|
currentWallet.createTransactionAsync(address, paymentId, amountxmr, mixinCount, priority);
|
2016-06-28 19:37:14 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 20:23:50 +00:00
|
|
|
function handleSweepUnmixable() {
|
|
|
|
console.log("Creating transaction: ")
|
|
|
|
|
|
|
|
transaction = currentWallet.createSweepUnmixableTransaction();
|
|
|
|
if (transaction.status !== PendingTransaction.Status_Ok) {
|
|
|
|
console.error("Can't create transaction: ", transaction.errorString);
|
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
informationPopup.text = qsTr("Can't create transaction: ") + transaction.errorString
|
|
|
|
informationPopup.icon = StandardIcon.Critical
|
|
|
|
informationPopup.onCloseCallback = null
|
|
|
|
informationPopup.open();
|
|
|
|
// deleting transaction object, we don't want memleaks
|
|
|
|
currentWallet.disposeTransaction(transaction);
|
|
|
|
|
|
|
|
} else if (transaction.txCount == 0) {
|
|
|
|
informationPopup.title = qsTr("No unmixable outputs to sweep") + translationManager.emptyString
|
|
|
|
informationPopup.text = qsTr("No unmixable outputs to sweep") + translationManager.emptyString
|
|
|
|
informationPopup.icon = StandardIcon.Information
|
|
|
|
informationPopup.onCloseCallback = null
|
|
|
|
informationPopup.open()
|
|
|
|
// deleting transaction object, we don't want memleaks
|
|
|
|
currentWallet.disposeTransaction(transaction);
|
|
|
|
} else {
|
|
|
|
console.log("Transaction created, amount: " + walletManager.displayAmount(transaction.amount)
|
|
|
|
+ ", fee: " + walletManager.displayAmount(transaction.fee));
|
|
|
|
|
|
|
|
// here we show confirmation popup;
|
|
|
|
|
|
|
|
transactionConfirmationPopup.title = qsTr("Confirmation") + translationManager.emptyString
|
|
|
|
transactionConfirmationPopup.text = qsTr("Please confirm transaction:\n")
|
|
|
|
+ qsTr("\n\nAmount: ") + walletManager.displayAmount(transaction.amount)
|
|
|
|
+ qsTr("\nFee: ") + walletManager.displayAmount(transaction.fee)
|
|
|
|
+ translationManager.emptyString
|
|
|
|
transactionConfirmationPopup.icon = StandardIcon.Question
|
|
|
|
transactionConfirmationPopup.open()
|
|
|
|
// committing transaction
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
// called after user confirms transaction
|
|
|
|
function handleTransactionConfirmed() {
|
2016-11-05 23:19:28 +00:00
|
|
|
// grab transaction.txid before commit, since it clears it.
|
|
|
|
// we actually need to copy it, because QML will incredibly
|
|
|
|
// call the function multiple times when the variable is used
|
|
|
|
// after commit, where it returns another result...
|
|
|
|
// Of course, this loop is also calling the function multiple
|
|
|
|
// times, but at least with the same result.
|
|
|
|
var txid = [], txid_org = transaction.txid, txid_text = ""
|
|
|
|
for (var i = 0; i < txid_org.length; ++i)
|
|
|
|
txid[i] = txid_org[i]
|
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
if (!transaction.commit()) {
|
|
|
|
console.log("Error committing transaction: " + transaction.errorString);
|
2016-07-20 19:28:11 +00:00
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString
|
2016-06-28 19:37:14 +00:00
|
|
|
informationPopup.text = qsTr("Couldn't send the money: ") + transaction.errorString
|
|
|
|
informationPopup.icon = StandardIcon.Critical
|
|
|
|
} else {
|
2016-07-20 19:28:11 +00:00
|
|
|
informationPopup.title = qsTr("Information") + translationManager.emptyString
|
2016-11-05 23:19:28 +00:00
|
|
|
for (var i = 0; i < txid.length; ++i) {
|
|
|
|
if (txid_text.length > 0)
|
|
|
|
txid_text += ", "
|
|
|
|
txid_text += txid[i]
|
|
|
|
}
|
|
|
|
informationPopup.text = qsTr("Money sent successfully: %1 transaction(s) ").arg(txid.length) + txid_text + translationManager.emptyString
|
2016-06-28 19:37:14 +00:00
|
|
|
informationPopup.icon = StandardIcon.Information
|
2016-11-05 23:19:28 +00:00
|
|
|
if (transactionDescription.length > 0) {
|
|
|
|
for (var i = 0; i < txid.length; ++i)
|
|
|
|
currentWallet.setUserNote(txid[i], transactionDescription);
|
|
|
|
}
|
2016-06-16 14:13:46 +00:00
|
|
|
}
|
2016-08-17 12:14:43 +00:00
|
|
|
informationPopup.onCloseCallback = null
|
2016-06-28 19:37:14 +00:00
|
|
|
informationPopup.open()
|
2016-08-23 13:07:52 +00:00
|
|
|
currentWallet.refresh()
|
|
|
|
currentWallet.disposeTransaction(transaction)
|
2016-11-19 16:33:30 +00:00
|
|
|
currentWallet.store();
|
2016-06-16 14:13:46 +00:00
|
|
|
}
|
|
|
|
|
2016-11-05 14:58:49 +00:00
|
|
|
// called on "checkPayment"
|
|
|
|
function handleCheckPayment(address, txid, txkey) {
|
|
|
|
console.log("Checking payment: ")
|
|
|
|
console.log("\taddress: ", address,
|
|
|
|
", txid: ", txid,
|
|
|
|
", txkey: ", txkey);
|
|
|
|
|
|
|
|
var result = walletManager.checkPayment(address, txid, txkey, persistentSettings.daemon_address);
|
|
|
|
var results = result.split("|");
|
|
|
|
if (results.length < 4) {
|
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
informationPopup.text = "internal error";
|
|
|
|
informationPopup.icon = StandardIcon.Critical
|
|
|
|
informationPopup.open()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var success = results[0] == "true";
|
|
|
|
var received = results[1]
|
|
|
|
var height = results[2]
|
|
|
|
var error = results[3]
|
|
|
|
if (success) {
|
|
|
|
informationPopup.title = qsTr("Payment check") + translationManager.emptyString;
|
|
|
|
informationPopup.icon = StandardIcon.Information
|
|
|
|
if (received > 0) {
|
|
|
|
received = received / 1e12
|
|
|
|
if (height == 0) {
|
|
|
|
informationPopup.text = qsTr("This address received %1 monero, but the transaction is not yet mined").arg(received);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var dCurrentBlock = currentWallet.daemonBlockChainHeight();
|
|
|
|
var confirmations = dCurrentBlock - height
|
|
|
|
informationPopup.text = qsTr("This address received %1 monero, with %2 confirmations").arg(received).arg(confirmations);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
informationPopup.text = qsTr("This address received nothing");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
|
|
informationPopup.text = error;
|
|
|
|
informationPopup.icon = StandardIcon.Critical
|
|
|
|
}
|
|
|
|
informationPopup.open()
|
|
|
|
}
|
|
|
|
|
2016-12-31 13:47:40 +00:00
|
|
|
function updateSyncing(syncing) {
|
|
|
|
var text = (syncing ? qsTr("Balance (syncing)") : qsTr("Balance")) + translationManager.emptyString
|
|
|
|
leftPanel.balanceLabelText = text
|
|
|
|
middlePanel.balanceLabelText = text
|
|
|
|
}
|
2016-11-05 14:58:49 +00:00
|
|
|
|
2016-08-17 12:14:43 +00:00
|
|
|
// blocks UI if wallet can't be opened or no connection to the daemon
|
|
|
|
function enableUI(enable) {
|
|
|
|
middlePanel.enabled = enable;
|
|
|
|
leftPanel.enabled = enable;
|
|
|
|
rightPanel.enabled = enable;
|
|
|
|
}
|
|
|
|
|
2016-08-23 08:55:51 +00:00
|
|
|
function showProcessingSplash(message) {
|
|
|
|
console.log("Displaying processing splash")
|
|
|
|
if (typeof message != 'undefined') {
|
2016-11-08 17:05:33 +00:00
|
|
|
splash.messageText = message
|
|
|
|
splash.heightProgressText = ""
|
2016-08-23 08:55:51 +00:00
|
|
|
}
|
|
|
|
splash.show()
|
|
|
|
}
|
|
|
|
|
|
|
|
function hideProcessingSplash() {
|
|
|
|
console.log("Hiding processing splash")
|
2016-09-01 20:55:30 +00:00
|
|
|
splash.close()
|
2016-08-23 08:55:51 +00:00
|
|
|
}
|
|
|
|
|
2016-10-29 14:48:10 +00:00
|
|
|
// close wallet and show wizard
|
|
|
|
function showWizard(){
|
2016-10-29 14:59:31 +00:00
|
|
|
walletInitialized = false;
|
2016-10-29 14:48:10 +00:00
|
|
|
splashCounter = 0;
|
2016-12-15 12:18:04 +00:00
|
|
|
closeWallet();
|
2016-12-15 23:12:27 +00:00
|
|
|
currentWallet = undefined;
|
2016-10-29 14:48:10 +00:00
|
|
|
wizard.restart();
|
|
|
|
rootItem.state = "wizard"
|
|
|
|
}
|
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
|
2016-08-17 12:14:43 +00:00
|
|
|
objectName: "appWindow"
|
2014-07-07 17:08:30 +00:00
|
|
|
visible: true
|
2014-07-16 08:24:59 +00:00
|
|
|
width: rightPanelExpanded ? 1269 : 1269 - 300
|
2016-11-21 21:14:49 +00:00
|
|
|
height: maxWindowHeight;
|
2014-07-07 17:08:30 +00:00
|
|
|
color: "#FFFFFF"
|
2016-12-09 21:23:43 +00:00
|
|
|
flags: persistentSettings.customDecorations ? (Qt.FramelessWindowHint | Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint) : (Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint | Qt.WindowMaximizeButtonHint)
|
2014-07-19 14:07:40 +00:00
|
|
|
onWidthChanged: x -= 0
|
|
|
|
|
2016-12-15 00:59:10 +00:00
|
|
|
function setCustomWindowDecorations(custom) {
|
|
|
|
var x = appWindow.x
|
|
|
|
var y = appWindow.y
|
|
|
|
if (x < 0)
|
|
|
|
x = 0
|
|
|
|
if (y < 0)
|
|
|
|
y = 0
|
|
|
|
persistentSettings.customDecorations = custom
|
|
|
|
if (custom)
|
|
|
|
appWindow.flags = Qt.FramelessWindowHint | Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint
|
|
|
|
else
|
|
|
|
appWindow.flags = Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint | Qt.WindowMaximizeButtonHint
|
|
|
|
appWindow.hide()
|
|
|
|
appWindow.x = x
|
|
|
|
appWindow.y = y
|
|
|
|
appWindow.show()
|
|
|
|
}
|
2016-08-17 12:14:43 +00:00
|
|
|
|
2014-07-19 14:07:40 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
x = (Screen.width - width) / 2
|
2016-11-21 21:14:49 +00:00
|
|
|
y = (Screen.height - maxWindowHeight) / 2
|
2016-06-07 13:26:25 +00:00
|
|
|
//
|
2016-08-18 18:55:34 +00:00
|
|
|
walletManager.walletOpened.connect(onWalletOpened);
|
|
|
|
walletManager.walletClosed.connect(onWalletClosed);
|
|
|
|
|
2016-11-25 20:09:32 +00:00
|
|
|
daemonManager.daemonStarted.connect(onDaemonStarted);
|
|
|
|
daemonManager.daemonStopped.connect(onDaemonStopped);
|
|
|
|
|
2016-10-30 16:58:12 +00:00
|
|
|
if(!walletsFound()) {
|
2016-10-29 14:48:10 +00:00
|
|
|
rootItem.state = "wizard"
|
|
|
|
} else {
|
|
|
|
rootItem.state = "normal"
|
|
|
|
initialize(persistentSettings);
|
2016-06-15 13:34:55 +00:00
|
|
|
}
|
2016-10-29 14:48:10 +00:00
|
|
|
|
2016-06-15 13:34:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-21 08:58:06 +00:00
|
|
|
onRightPanelExpandedChanged: {
|
|
|
|
if (rightPanelExpanded) {
|
|
|
|
rightPanel.updateTweets()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-17 12:14:43 +00:00
|
|
|
|
2016-06-15 13:34:55 +00:00
|
|
|
Settings {
|
|
|
|
id: persistentSettings
|
|
|
|
property string language
|
2016-07-19 20:45:12 +00:00
|
|
|
property string locale
|
2016-06-15 13:34:55 +00:00
|
|
|
property string account_name
|
|
|
|
property string wallet_path
|
2016-11-12 11:11:24 +00:00
|
|
|
property bool auto_donations_enabled : false
|
2016-06-15 13:34:55 +00:00
|
|
|
property int auto_donations_amount : 50
|
2016-11-12 11:11:24 +00:00
|
|
|
property bool allow_background_mining : false
|
|
|
|
property bool testnet: false
|
|
|
|
property string daemon_address: "localhost:18081"
|
2016-06-26 15:04:45 +00:00
|
|
|
property string payment_id
|
2016-10-10 19:40:58 +00:00
|
|
|
property int restore_height : 0
|
|
|
|
property bool is_recovering : false
|
2016-12-09 21:23:43 +00:00
|
|
|
property bool customDecorations : true
|
2016-12-21 13:30:15 +00:00
|
|
|
property string daemonFlags
|
2016-12-31 10:56:08 +00:00
|
|
|
property int logLevel: 0
|
2014-07-19 14:07:40 +00:00
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
// Information dialog
|
2016-11-19 14:15:11 +00:00
|
|
|
StandardDialog {
|
2016-08-17 12:14:43 +00:00
|
|
|
// dynamically change onclose handler
|
|
|
|
property var onCloseCallback
|
2016-06-28 19:37:14 +00:00
|
|
|
id: informationPopup
|
2016-11-19 14:15:11 +00:00
|
|
|
cancelVisible: false
|
2016-08-17 12:14:43 +00:00
|
|
|
onAccepted: {
|
|
|
|
if (onCloseCallback) {
|
|
|
|
onCloseCallback()
|
|
|
|
}
|
|
|
|
}
|
2016-06-28 19:37:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Confrirmation aka question dialog
|
2016-11-19 14:15:11 +00:00
|
|
|
StandardDialog {
|
2016-06-28 19:37:14 +00:00
|
|
|
id: transactionConfirmationPopup
|
|
|
|
onAccepted: {
|
2016-11-19 14:15:11 +00:00
|
|
|
close();
|
2016-06-28 19:37:14 +00:00
|
|
|
handleTransactionConfirmed()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-29 14:48:10 +00:00
|
|
|
//Open Wallet from file
|
|
|
|
FileDialog {
|
|
|
|
id: fileDialog
|
|
|
|
title: "Please choose a file"
|
|
|
|
folder: "file://" +moneroAccountsDir
|
2016-10-30 16:58:12 +00:00
|
|
|
nameFilters: [ "Wallet files (*.keys)"]
|
2016-10-29 14:48:10 +00:00
|
|
|
|
|
|
|
onAccepted: {
|
|
|
|
persistentSettings.wallet_path = walletManager.urlToLocalPath(fileDialog.fileUrl)
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
onRejected: {
|
|
|
|
console.log("Canceled")
|
|
|
|
rootItem.state = "wizard";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-16 20:21:46 +00:00
|
|
|
PasswordDialog {
|
|
|
|
id: passwordDialog
|
2016-11-01 12:01:24 +00:00
|
|
|
|
2016-08-16 20:21:46 +00:00
|
|
|
onAccepted: {
|
2016-08-19 11:44:44 +00:00
|
|
|
appWindow.initialize();
|
2016-08-16 20:21:46 +00:00
|
|
|
}
|
2016-08-17 12:14:43 +00:00
|
|
|
onRejected: {
|
2016-10-29 14:49:00 +00:00
|
|
|
//appWindow.enableUI(false)
|
|
|
|
rootItem.state = "wizard"
|
2016-08-17 12:14:43 +00:00
|
|
|
}
|
2016-11-01 12:01:24 +00:00
|
|
|
|
2016-08-16 20:21:46 +00:00
|
|
|
}
|
|
|
|
|
2016-11-05 09:54:11 +00:00
|
|
|
DaemonManagerDialog {
|
|
|
|
id: daemonManagerDialog
|
|
|
|
|
|
|
|
}
|
2016-08-23 08:55:51 +00:00
|
|
|
|
|
|
|
ProcessingSplash {
|
|
|
|
id: splash
|
2016-10-09 18:49:56 +00:00
|
|
|
width: appWindow.width / 1.5
|
2016-08-23 08:55:51 +00:00
|
|
|
height: appWindow.height / 2
|
|
|
|
x: (appWindow.width - width) / 2 + appWindow.x
|
|
|
|
y: (appWindow.height - height) / 2 + appWindow.y
|
2016-09-26 19:55:25 +00:00
|
|
|
messageText: qsTr("Please wait...")
|
2016-07-13 12:24:40 +00:00
|
|
|
}
|
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
|
2016-08-23 08:55:51 +00:00
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
Item {
|
|
|
|
id: rootItem
|
|
|
|
anchors.fill: parent
|
2014-07-19 14:07:40 +00:00
|
|
|
clip: true
|
2014-07-07 17:08:30 +00:00
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
state: "wizard"
|
|
|
|
states: [
|
|
|
|
State {
|
|
|
|
name: "wizard"
|
|
|
|
PropertyChanges { target: leftPanel; visible: false }
|
|
|
|
PropertyChanges { target: rightPanel; visible: false }
|
|
|
|
PropertyChanges { target: middlePanel; visible: false }
|
|
|
|
PropertyChanges { target: titleBar; basicButtonVisible: false }
|
|
|
|
PropertyChanges { target: wizard; visible: true }
|
2014-08-21 10:09:52 +00:00
|
|
|
PropertyChanges { target: appWindow; width: 930; }
|
|
|
|
PropertyChanges { target: appWindow; height: 595; }
|
|
|
|
PropertyChanges { target: resizeArea; visible: false }
|
2016-12-09 21:23:43 +00:00
|
|
|
PropertyChanges { target: titleBar; maximizeButtonVisible: false }
|
2014-08-22 09:03:10 +00:00
|
|
|
PropertyChanges { target: frameArea; blocked: true }
|
2016-12-10 18:46:04 +00:00
|
|
|
PropertyChanges { target: titleBar; visible: false }
|
2016-12-09 21:23:43 +00:00
|
|
|
PropertyChanges { target: titleBar; y: 0 }
|
|
|
|
PropertyChanges { target: titleBar; title: qsTr("Program setup wizard") + translationManager.emptyString }
|
2014-08-22 09:03:10 +00:00
|
|
|
}, State {
|
2014-08-19 12:58:02 +00:00
|
|
|
name: "normal"
|
|
|
|
PropertyChanges { target: leftPanel; visible: true }
|
|
|
|
PropertyChanges { target: rightPanel; visible: true }
|
|
|
|
PropertyChanges { target: middlePanel; visible: true }
|
|
|
|
PropertyChanges { target: titleBar; basicButtonVisible: true }
|
|
|
|
PropertyChanges { target: wizard; visible: false }
|
2014-08-21 10:09:52 +00:00
|
|
|
PropertyChanges { target: appWindow; width: rightPanelExpanded ? 1269 : 1269 - 300; }
|
2016-11-21 21:14:49 +00:00
|
|
|
PropertyChanges { target: appWindow; height: maxWindowHeight; }
|
2014-08-21 10:09:52 +00:00
|
|
|
PropertyChanges { target: resizeArea; visible: true }
|
2016-12-09 21:23:43 +00:00
|
|
|
PropertyChanges { target: titleBar; maximizeButtonVisible: true }
|
2014-08-22 09:03:10 +00:00
|
|
|
PropertyChanges { target: frameArea; blocked: false }
|
2016-12-10 18:46:04 +00:00
|
|
|
PropertyChanges { target: titleBar; visible: true }
|
2016-12-09 21:23:43 +00:00
|
|
|
PropertyChanges { target: titleBar; y: 0 }
|
|
|
|
PropertyChanges { target: titleBar; title: qsTr("Monero") + translationManager.emptyString }
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
LeftPanel {
|
|
|
|
id: leftPanel
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.bottom: parent.bottom
|
2014-07-19 14:07:40 +00:00
|
|
|
height: parent.height
|
2014-07-07 17:08:30 +00:00
|
|
|
onDashboardClicked: middlePanel.state = "Dashboard"
|
|
|
|
onTransferClicked: middlePanel.state = "Transfer"
|
2016-06-26 15:04:45 +00:00
|
|
|
onReceiveClicked: middlePanel.state = "Receive"
|
2016-11-05 14:58:49 +00:00
|
|
|
onTxkeyClicked: middlePanel.state = "TxKey"
|
2016-12-18 13:59:24 +00:00
|
|
|
onHistoryClicked: middlePanel.state = "History"
|
2014-07-07 17:08:30 +00:00
|
|
|
onAddressBookClicked: middlePanel.state = "AddressBook"
|
|
|
|
onMiningClicked: middlePanel.state = "Minning"
|
2016-11-08 10:06:34 +00:00
|
|
|
onSignClicked: middlePanel.state = "Sign"
|
2014-07-07 17:08:30 +00:00
|
|
|
onSettingsClicked: middlePanel.state = "Settings"
|
|
|
|
}
|
|
|
|
|
|
|
|
RightPanel {
|
|
|
|
id: rightPanel
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
2014-07-19 14:07:40 +00:00
|
|
|
height: parent.height
|
2014-07-16 08:24:59 +00:00
|
|
|
width: appWindow.rightPanelExpanded ? 300 : 0
|
|
|
|
visible: appWindow.rightPanelExpanded
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|
|
|
|
|
2016-07-14 10:40:27 +00:00
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
MiddlePanel {
|
|
|
|
id: middlePanel
|
|
|
|
anchors.bottom: parent.bottom
|
2016-10-08 21:50:35 +00:00
|
|
|
anchors.left: leftPanel.visible ? leftPanel.right : parent.left
|
2014-07-07 17:08:30 +00:00
|
|
|
anchors.right: rightPanel.left
|
2014-07-19 14:07:40 +00:00
|
|
|
height: parent.height
|
2016-06-26 15:04:45 +00:00
|
|
|
state: "Transfer"
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TipItem {
|
|
|
|
id: tipItem
|
2016-07-20 19:28:11 +00:00
|
|
|
text: qsTr("send to the same destination") + translationManager.emptyString
|
2014-07-07 17:08:30 +00:00
|
|
|
visible: false
|
|
|
|
}
|
2014-07-15 14:03:39 +00:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: frameArea
|
2014-07-19 14:07:40 +00:00
|
|
|
property bool blocked: false
|
2014-07-15 14:03:39 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
height: 30
|
|
|
|
z: 1
|
|
|
|
hoverEnabled: true
|
|
|
|
propagateComposedEvents: true
|
|
|
|
onPressed: mouse.accepted = false
|
|
|
|
onReleased: mouse.accepted = false
|
2014-07-22 12:29:20 +00:00
|
|
|
onMouseXChanged: titleBar.mouseX = mouseX
|
|
|
|
onContainsMouseChanged: titleBar.containsMouse = containsMouse
|
2014-07-15 14:03:39 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 14:07:40 +00:00
|
|
|
SequentialAnimation {
|
|
|
|
id: goToBasicAnimation
|
|
|
|
PropertyAction {
|
|
|
|
target: appWindow
|
|
|
|
properties: "visibility"
|
|
|
|
value: Window.Windowed
|
|
|
|
}
|
2016-12-09 21:23:43 +00:00
|
|
|
PropertyAction {
|
|
|
|
target: titleBar
|
|
|
|
properties: "maximizeButtonVisible"
|
|
|
|
value: false
|
|
|
|
}
|
2014-07-19 14:07:40 +00:00
|
|
|
PropertyAction {
|
|
|
|
target: frameArea
|
|
|
|
properties: "blocked"
|
|
|
|
value: true
|
|
|
|
}
|
2014-08-22 09:03:10 +00:00
|
|
|
PropertyAction {
|
|
|
|
target: resizeArea
|
|
|
|
properties: "visible"
|
|
|
|
value: false
|
|
|
|
}
|
2014-07-19 14:07:40 +00:00
|
|
|
NumberAnimation {
|
|
|
|
target: appWindow
|
|
|
|
properties: "height"
|
|
|
|
to: 30
|
|
|
|
easing.type: Easing.InCubic
|
|
|
|
duration: 200
|
|
|
|
}
|
|
|
|
NumberAnimation {
|
|
|
|
target: appWindow
|
|
|
|
properties: "width"
|
|
|
|
to: 470
|
|
|
|
easing.type: Easing.InCubic
|
|
|
|
duration: 200
|
|
|
|
}
|
|
|
|
PropertyAction {
|
2016-10-08 21:50:35 +00:00
|
|
|
targets: [leftPanel, rightPanel]
|
2014-07-19 14:07:40 +00:00
|
|
|
properties: "visible"
|
|
|
|
value: false
|
|
|
|
}
|
|
|
|
PropertyAction {
|
2016-10-08 21:50:35 +00:00
|
|
|
target: middlePanel
|
|
|
|
properties: "basicMode"
|
2014-07-19 14:07:40 +00:00
|
|
|
value: true
|
|
|
|
}
|
2016-10-08 21:50:35 +00:00
|
|
|
|
2014-07-19 14:07:40 +00:00
|
|
|
NumberAnimation {
|
|
|
|
target: appWindow
|
|
|
|
properties: "height"
|
2016-10-08 21:50:35 +00:00
|
|
|
to: middlePanel.height
|
2014-07-19 14:07:40 +00:00
|
|
|
easing.type: Easing.InCubic
|
|
|
|
duration: 200
|
|
|
|
}
|
|
|
|
|
|
|
|
onStopped: {
|
2016-10-08 21:50:35 +00:00
|
|
|
// middlePanel.visible = false
|
2014-07-19 14:07:40 +00:00
|
|
|
rightPanel.visible = false
|
|
|
|
leftPanel.visible = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SequentialAnimation {
|
|
|
|
id: goToProAnimation
|
|
|
|
NumberAnimation {
|
|
|
|
target: appWindow
|
|
|
|
properties: "height"
|
|
|
|
to: 30
|
|
|
|
easing.type: Easing.InCubic
|
|
|
|
duration: 200
|
|
|
|
}
|
|
|
|
PropertyAction {
|
2016-10-08 21:50:35 +00:00
|
|
|
target: middlePanel
|
|
|
|
properties: "basicMode"
|
2014-07-19 14:07:40 +00:00
|
|
|
value: false
|
|
|
|
}
|
|
|
|
PropertyAction {
|
2014-08-22 09:03:10 +00:00
|
|
|
targets: [leftPanel, middlePanel, rightPanel, resizeArea]
|
2014-07-19 14:07:40 +00:00
|
|
|
properties: "visible"
|
|
|
|
value: true
|
|
|
|
}
|
|
|
|
NumberAnimation {
|
|
|
|
target: appWindow
|
|
|
|
properties: "width"
|
|
|
|
to: rightPanelExpanded ? 1269 : 1269 - 300
|
|
|
|
easing.type: Easing.InCubic
|
|
|
|
duration: 200
|
|
|
|
}
|
|
|
|
NumberAnimation {
|
|
|
|
target: appWindow
|
|
|
|
properties: "height"
|
2016-11-21 21:22:26 +00:00
|
|
|
to: maxWindowHeight
|
2014-07-19 14:07:40 +00:00
|
|
|
easing.type: Easing.InCubic
|
|
|
|
duration: 200
|
|
|
|
}
|
|
|
|
PropertyAction {
|
|
|
|
target: frameArea
|
|
|
|
properties: "blocked"
|
|
|
|
value: false
|
|
|
|
}
|
2016-12-09 21:23:43 +00:00
|
|
|
PropertyAction {
|
|
|
|
target: titleBar
|
|
|
|
properties: "maximizeButtonVisible"
|
|
|
|
value: true
|
|
|
|
}
|
2014-07-19 14:07:40 +00:00
|
|
|
}
|
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
WizardMain {
|
|
|
|
id: wizard
|
|
|
|
anchors.fill: parent
|
2016-06-15 13:34:55 +00:00
|
|
|
onUseMoneroClicked: {
|
|
|
|
rootItem.state = "normal" // TODO: listen for this state change in appWindow;
|
|
|
|
appWindow.initialize();
|
|
|
|
}
|
2016-10-29 14:48:10 +00:00
|
|
|
onOpenWalletFromFileClicked: {
|
|
|
|
rootItem.state = "normal" // TODO: listen for this state change in appWindow;
|
|
|
|
appWindow.openWalletFromFile();
|
|
|
|
}
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|
|
|
|
|
2014-07-22 14:55:25 +00:00
|
|
|
property int maxWidth: leftPanel.width + 655 + rightPanel.width
|
2016-11-23 20:17:01 +00:00
|
|
|
property int minHeight: 720
|
2014-07-23 10:39:35 +00:00
|
|
|
MouseArea {
|
2014-08-21 10:09:52 +00:00
|
|
|
id: resizeArea
|
2014-07-23 10:39:35 +00:00
|
|
|
hoverEnabled: true
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
2014-07-23 11:27:27 +00:00
|
|
|
height: 30
|
|
|
|
width: 30
|
2014-07-23 10:39:35 +00:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
2014-07-23 11:59:26 +00:00
|
|
|
color: parent.containsMouse || parent.pressed ? "#111111" : "transparent"
|
2014-07-23 10:39:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
source: parent.containsMouse || parent.pressed ? "images/resizeHovered.png" :
|
|
|
|
"images/resize.png"
|
|
|
|
}
|
|
|
|
|
2016-02-03 15:37:10 +00:00
|
|
|
property var previousPosition
|
2016-06-16 14:13:46 +00:00
|
|
|
|
2014-07-23 10:39:35 +00:00
|
|
|
onPressed: {
|
2016-02-03 15:37:10 +00:00
|
|
|
previousPosition = globalCursor.getPosition()
|
2014-07-23 10:39:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onPositionChanged: {
|
|
|
|
if(!pressed) return
|
2016-02-03 15:37:10 +00:00
|
|
|
var pos = globalCursor.getPosition()
|
|
|
|
//var delta = previousPosition - pos
|
|
|
|
var dx = previousPosition.x - pos.x
|
|
|
|
var dy = previousPosition.y - pos.y
|
2014-07-23 10:39:35 +00:00
|
|
|
|
|
|
|
if(appWindow.width - dx > parent.maxWidth)
|
|
|
|
appWindow.width -= dx
|
|
|
|
else appWindow.width = parent.maxWidth
|
|
|
|
|
2016-11-23 20:17:01 +00:00
|
|
|
if(appWindow.height - dy > parent.minHeight)
|
2014-07-23 10:39:35 +00:00
|
|
|
appWindow.height -= dy
|
2016-11-23 20:17:01 +00:00
|
|
|
else appWindow.height = parent.minHeight
|
2016-02-03 15:37:10 +00:00
|
|
|
previousPosition = pos
|
2014-07-23 10:39:35 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-22 14:55:25 +00:00
|
|
|
|
2014-07-15 14:03:39 +00:00
|
|
|
TitleBar {
|
|
|
|
id: titleBar
|
2016-12-09 21:23:43 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2016-11-19 14:22:56 +00:00
|
|
|
x: 0
|
|
|
|
y: 0
|
2016-12-09 21:23:43 +00:00
|
|
|
customDecorations: persistentSettings.customDecorations
|
2014-07-19 14:07:40 +00:00
|
|
|
onGoToBasicVersion: {
|
2016-10-08 21:50:35 +00:00
|
|
|
if (yes) {
|
|
|
|
// basicPanel.currentView = middlePanel.currentView
|
|
|
|
goToBasicAnimation.start()
|
|
|
|
} else {
|
|
|
|
// middlePanel.currentView = basicPanel.currentView
|
|
|
|
goToProAnimation.start()
|
|
|
|
}
|
2014-07-19 14:07:40 +00:00
|
|
|
}
|
2016-12-09 21:23:43 +00:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
enabled: persistentSettings.customDecorations
|
|
|
|
property var previousPosition
|
|
|
|
anchors.fill: parent
|
|
|
|
propagateComposedEvents: true
|
|
|
|
onPressed: previousPosition = globalCursor.getPosition()
|
|
|
|
onPositionChanged: {
|
|
|
|
if (pressedButtons == Qt.LeftButton) {
|
|
|
|
var pos = globalCursor.getPosition()
|
|
|
|
var dx = pos.x - previousPosition.x
|
|
|
|
var dy = pos.y - previousPosition.y
|
|
|
|
|
|
|
|
appWindow.x += dx
|
|
|
|
appWindow.y += dy
|
|
|
|
previousPosition = pos
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-15 14:03:39 +00:00
|
|
|
}
|
2016-12-15 13:09:37 +00:00
|
|
|
|
|
|
|
// new ToolTip
|
|
|
|
Rectangle {
|
|
|
|
id: toolTip
|
|
|
|
property alias text: content.text
|
|
|
|
width: content.width + 12
|
|
|
|
height: content.height + 17
|
|
|
|
color: "#FF6C3C"
|
|
|
|
//radius: 3
|
|
|
|
visible:false;
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: tip
|
|
|
|
anchors.top: parent.bottom
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 5
|
|
|
|
source: "../images/tip.png"
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: content
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
y: 6
|
|
|
|
lineHeight: 0.7
|
|
|
|
font.family: "Arial"
|
|
|
|
font.pixelSize: 12
|
|
|
|
font.letterSpacing: -1
|
|
|
|
color: "#FFFFFF"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|
2016-10-10 19:42:25 +00:00
|
|
|
onClosing: {
|
2016-12-15 12:18:04 +00:00
|
|
|
// Close wallet non async on exit
|
2016-12-04 12:13:59 +00:00
|
|
|
walletManager.closeWallet();
|
2016-11-25 20:14:52 +00:00
|
|
|
// Stop daemon
|
|
|
|
daemonManager.stop();
|
2016-10-10 19:42:25 +00:00
|
|
|
}
|
2014-07-07 17:08:30 +00:00
|
|
|
}
|