|
|
|
// Copyright (c) 2011-2014 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include "bitcoingui.h"
|
|
|
|
|
|
|
|
#include "bitcoinunits.h"
|
|
|
|
#include "clientmodel.h"
|
|
|
|
#include "guiconstants.h"
|
|
|
|
#include "guiutil.h"
|
|
|
|
#include "networkstyle.h"
|
|
|
|
#include "notificator.h"
|
|
|
|
#include "openuridialog.h"
|
|
|
|
#include "optionsdialog.h"
|
|
|
|
#include "optionsmodel.h"
|
|
|
|
#include "rpcconsole.h"
|
|
|
|
#include "utilitydialog.h"
|
|
|
|
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
#include "walletframe.h"
|
|
|
|
#include "walletmodel.h"
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
#include "macdockiconhandler.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "init.h"
|
|
|
|
#include "ui_interface.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
#include <QDragEnterEvent>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QListWidget>
|
|
|
|
#include <QMenuBar>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QMimeData>
|
|
|
|
#include <QProgressBar>
|
|
|
|
#include <QProgressDialog>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QStackedWidget>
|
|
|
|
#include <QStatusBar>
|
|
|
|
#include <QStyle>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QToolBar>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#if QT_VERSION < 0x050000
|
|
|
|
#include <QTextDocument>
|
|
|
|
#include <QUrl>
|
|
|
|
#else
|
|
|
|
#include <QUrlQuery>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const QString BitcoinGUI::DEFAULT_WALLET = "~Default";
|
|
|
|
|
|
|
|
BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) :
|
|
|
|
QMainWindow(parent),
|
|
|
|
clientModel(0),
|
|
|
|
walletFrame(0),
|
|
|
|
unitDisplayControl(0),
|
|
|
|
labelEncryptionIcon(0),
|
|
|
|
labelConnectionsIcon(0),
|
|
|
|
labelBlocksIcon(0),
|
|
|
|
progressBarLabel(0),
|
|
|
|
progressBar(0),
|
|
|
|
progressDialog(0),
|
|
|
|
appMenuBar(0),
|
|
|
|
overviewAction(0),
|
|
|
|
historyAction(0),
|
|
|
|
quitAction(0),
|
|
|
|
sendCoinsAction(0),
|
|
|
|
usedSendingAddressesAction(0),
|
|
|
|
usedReceivingAddressesAction(0),
|
|
|
|
signMessageAction(0),
|
|
|
|
verifyMessageAction(0),
|
|
|
|
aboutAction(0),
|
|
|
|
receiveCoinsAction(0),
|
|
|
|
optionsAction(0),
|
|
|
|
toggleHideAction(0),
|
|
|
|
encryptWalletAction(0),
|
|
|
|
backupWalletAction(0),
|
|
|
|
changePassphraseAction(0),
|
|
|
|
aboutQtAction(0),
|
|
|
|
openRPCConsoleAction(0),
|
|
|
|
openAction(0),
|
|
|
|
showHelpMessageAction(0),
|
|
|
|
trayIcon(0),
|
|
|
|
trayIconMenu(0),
|
|
|
|
notificator(0),
|
|
|
|
rpcConsole(0),
|
|
|
|
prevBlocks(0),
|
|
|
|
spinnerFrame(0)
|
|
|
|
{
|
|
|
|
GUIUtil::restoreWindowGeometry("nWindow", QSize(850, 550), this);
|
|
|
|
|
|
|
|
QString windowTitle = tr("Bitcoin Core") + " - ";
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
/* if compiled with wallet support, -disablewallet can still disable the wallet */
|
|
|
|
enableWallet = !GetBoolArg("-disablewallet", false);
|
|
|
|
#else
|
|
|
|
enableWallet = false;
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
if(enableWallet)
|
|
|
|
{
|
|
|
|
windowTitle += tr("Wallet");
|
|
|
|
} else {
|
|
|
|
windowTitle += tr("Node");
|
|
|
|
}
|
|
|
|
windowTitle += " " + networkStyle->getTitleAddText();
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
QApplication::setWindowIcon(networkStyle->getAppIcon());
|
|
|
|
setWindowIcon(networkStyle->getAppIcon());
|
|
|
|
#else
|
|
|
|
MacDockIconHandler::instance()->setIcon(networkStyle->getAppIcon());
|
|
|
|
#endif
|
|
|
|
setWindowTitle(windowTitle);
|
|
|
|
|
|
|
|
#if defined(Q_OS_MAC) && QT_VERSION < 0x050000
|
|
|
|
// This property is not implemented in Qt 5. Setting it has no effect.
|
|
|
|
// A replacement API (QtMacUnifiedToolBar) is available in QtMacExtras.
|
|
|
|
setUnifiedTitleAndToolBarOnMac(true);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rpcConsole = new RPCConsole(enableWallet ? this : 0);
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
if(enableWallet)
|
|
|
|
{
|
|
|
|
/** Create wallet frame and make it the central widget */
|
|
|
|
walletFrame = new WalletFrame(this);
|
|
|
|
setCentralWidget(walletFrame);
|
|
|
|
} else
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
{
|
|
|
|
/* When compiled without wallet or -disablewallet is provided,
|
|
|
|
* the central widget is the rpc console.
|
|
|
|
*/
|
|
|
|
setCentralWidget(rpcConsole);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accept D&D of URIs
|
|
|
|
setAcceptDrops(true);
|
|
|
|
|
|
|
|
// Create actions for the toolbar, menu bar and tray/dock icon
|
|
|
|
// Needs walletFrame to be initialized
|
|
|
|
createActions(networkStyle);
|
|
|
|
|
|
|
|
// Create application menu bar
|
|
|
|
createMenuBar();
|
|
|
|
|
|
|
|
// Create the toolbars
|
|
|
|
createToolBars();
|
|
|
|
|
|
|
|
// Create system tray icon and notification
|
|
|
|
createTrayIcon(networkStyle);
|
|
|
|
|
|
|
|
// Create status bar
|
|
|
|
statusBar();
|
|
|
|
|
|
|
|
// Status bar notification icons
|
|
|
|
QFrame *frameBlocks = new QFrame();
|
|
|
|
frameBlocks->setContentsMargins(0,0,0,0);
|
|
|
|
frameBlocks->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred);
|
|
|
|
QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks);
|
|
|
|
frameBlocksLayout->setContentsMargins(3,0,3,0);
|
|
|
|
frameBlocksLayout->setSpacing(3);
|
|
|
|
unitDisplayControl = new UnitDisplayStatusBarControl();
|
|
|
|
labelEncryptionIcon = new QLabel();
|
|
|
|
labelConnectionsIcon = new QLabel();
|
|
|
|
labelBlocksIcon = new QLabel();
|
|
|
|
if(enableWallet)
|
|
|
|
{
|
|
|
|
frameBlocksLayout->addStretch();
|
|
|
|
frameBlocksLayout->addWidget(unitDisplayControl);
|
|
|
|
frameBlocksLayout->addStretch();
|
|
|
|
frameBlocksLayout->addWidget(labelEncryptionIcon);
|
|
|
|
}
|
|
|
|
frameBlocksLayout->addStretch();
|
|
|
|
frameBlocksLayout->addWidget(labelConnectionsIcon);
|
|
|
|
frameBlocksLayout->addStretch();
|
|
|
|
frameBlocksLayout->addWidget(labelBlocksIcon);
|
|
|
|
frameBlocksLayout->addStretch();
|
|
|
|
|
|
|
|
// Progress bar and label for blocks download
|
|
|
|
progressBarLabel = new QLabel();
|
|
|
|
progressBarLabel->setVisible(false);
|
|
|
|
progressBar = new GUIUtil::ProgressBar();
|
|
|
|
progressBar->setAlignment(Qt::AlignCenter);
|
|
|
|
progressBar->setVisible(false);
|
|
|
|
|
|
|
|
// Override style sheet for progress bar for styles that have a segmented progress bar,
|
|
|
|
// as they make the text unreadable (workaround for issue #1071)
|
|
|
|
// See https://qt-project.org/doc/qt-4.8/gallery.html
|
|
|
|
QString curStyle = QApplication::style()->metaObject()->className();
|
|
|
|
if(curStyle == "QWindowsStyle" || curStyle == "QWindowsXPStyle")
|
|
|
|
{
|
|
|
|
progressBar->setStyleSheet("QProgressBar { background-color: #e8e8e8; border: 1px solid grey; border-radius: 7px; padding: 1px; text-align: center; } QProgressBar::chunk { background: QLinearGradient(x1: 0, y1: 0, x2: 1, y2: 0, stop: 0 #FF8000, stop: 1 orange); border-radius: 7px; margin: 0px; }");
|
|
|
|
}
|
|
|
|
|
|
|
|
statusBar()->addWidget(progressBarLabel);
|
|
|
|
statusBar()->addWidget(progressBar);
|
|
|
|
statusBar()->addPermanentWidget(frameBlocks);
|
|
|
|
|
|
|
|
connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));
|
|
|
|
|
|
|
|
// prevents an open debug window from becoming stuck/unusable on client shutdown
|
|
|
|
connect(quitAction, SIGNAL(triggered()), rpcConsole, SLOT(hide()));
|
|
|
|
|
|
|
|
// Install event filter to be able to catch status tip events (QEvent::StatusTip)
|
|
|
|
this->installEventFilter(this);
|
|
|
|
|
|
|
|
// Initially wallet actions should be disabled
|
|
|
|
setWalletActionsEnabled(false);
|
|
|
|
|
|
|
|
// Subscribe to notifications from core
|
|
|
|
subscribeToCoreSignals();
|
|
|
|
}
|
|
|
|
|
|
|
|
BitcoinGUI::~BitcoinGUI()
|
|
|
|
{
|
|
|
|
// Unsubscribe from notifications from core
|
|
|
|
unsubscribeFromCoreSignals();
|
|
|
|
|
|
|
|
GUIUtil::saveWindowGeometry("nWindow", this);
|
|
|
|
if(trayIcon) // Hide tray icon, as deleting will let it linger until quit (on Ubuntu)
|
|
|
|
trayIcon->hide();
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
delete appMenuBar;
|
|
|
|
MacDockIconHandler::instance()->setMainWindow(NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::createActions(const NetworkStyle *networkStyle)
|
|
|
|
{
|
|
|
|
QActionGroup *tabGroup = new QActionGroup(this);
|
|
|
|
|
|
|
|
overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this);
|
|
|
|
overviewAction->setStatusTip(tr("Show general overview of wallet"));
|
|
|
|
overviewAction->setToolTip(overviewAction->statusTip());
|
|
|
|
overviewAction->setCheckable(true);
|
|
|
|
overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1));
|
|
|
|
tabGroup->addAction(overviewAction);
|
|
|
|
|
|
|
|
sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send"), this);
|
|
|
|
sendCoinsAction->setStatusTip(tr("Send coins to a Bitcoin address"));
|
|
|
|
sendCoinsAction->setToolTip(sendCoinsAction->statusTip());
|
|
|
|
sendCoinsAction->setCheckable(true);
|
|
|
|
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
|
|
|
|
tabGroup->addAction(sendCoinsAction);
|
|
|
|
|
|
|
|
receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive"), this);
|
|
|
|
receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and bitcoin: URIs)"));
|
|
|
|
receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip());
|
|
|
|
receiveCoinsAction->setCheckable(true);
|
|
|
|
receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));
|
|
|
|
tabGroup->addAction(receiveCoinsAction);
|
|
|
|
|
|
|
|
historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);
|
|
|
|
historyAction->setStatusTip(tr("Browse transaction history"));
|
|
|
|
historyAction->setToolTip(historyAction->statusTip());
|
|
|
|
historyAction->setCheckable(true);
|
|
|
|
historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));
|
|
|
|
tabGroup->addAction(historyAction);
|
|
|
|
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
// These showNormalIfMinimized are needed because Send Coins and Receive Coins
|
|
|
|
// can be triggered from the tray menu, and need to show the GUI to be useful.
|
|
|
|
connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
|
|
|
|
connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage()));
|
|
|
|
connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
|
|
|
|
connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage()));
|
|
|
|
connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
|
|
|
|
connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage()));
|
|
|
|
connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
|
|
|
|
connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage()));
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
|
|
|
quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this);
|
|
|
|
quitAction->setStatusTip(tr("Quit application"));
|
|
|
|
quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
|
|
|
|
quitAction->setMenuRole(QAction::QuitRole);
|
|
|
|
aboutAction = new QAction(networkStyle->getAppIcon(), tr("&About Bitcoin Core"), this);
|
|
|
|
aboutAction->setStatusTip(tr("Show information about Bitcoin Core"));
|
|
|
|
aboutAction->setMenuRole(QAction::AboutRole);
|
|
|
|
#if QT_VERSION < 0x050000
|
|
|
|
aboutQtAction = new QAction(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this);
|
|
|
|
#else
|
|
|
|
aboutQtAction = new QAction(QIcon(":/qt-project.org/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this);
|
|
|
|
#endif
|
|
|
|
aboutQtAction->setStatusTip(tr("Show information about Qt"));
|
|
|
|
aboutQtAction->setMenuRole(QAction::AboutQtRole);
|
|
|
|
optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);
|
|
|
|
optionsAction->setStatusTip(tr("Modify configuration options for Bitcoin Core"));
|
|
|
|
optionsAction->setMenuRole(QAction::PreferencesRole);
|
|
|
|
toggleHideAction = new QAction(networkStyle->getAppIcon(), tr("&Show / Hide"), this);
|
|
|
|
toggleHideAction->setStatusTip(tr("Show or hide the main Window"));
|
|
|
|
|
|
|
|
encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this);
|
|
|
|
encryptWalletAction->setStatusTip(tr("Encrypt the private keys that belong to your wallet"));
|
|
|
|
encryptWalletAction->setCheckable(true);
|
|
|
|
backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet..."), this);
|
|
|
|
backupWalletAction->setStatusTip(tr("Backup wallet to another location"));
|
|
|
|
changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this);
|
|
|
|
changePassphraseAction->setStatusTip(tr("Change the passphrase used for wallet encryption"));
|
|
|
|
signMessageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this);
|
|
|
|
signMessageAction->setStatusTip(tr("Sign messages with your Bitcoin addresses to prove you own them"));
|
|
|
|
verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this);
|
|
|
|
verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Bitcoin addresses"));
|
|
|
|
|
|
|
|
openRPCConsoleAction = new QAction(QIcon(":/icons/debugwindow"), tr("&Debug window"), this);
|
|
|
|
openRPCConsoleAction->setStatusTip(tr("Open debugging and diagnostic console"));
|
|
|
|
|
|
|
|
usedSendingAddressesAction = new QAction(QIcon(":/icons/address-book"), tr("&Sending addresses..."), this);
|
|
|
|
usedSendingAddressesAction->setStatusTip(tr("Show the list of used sending addresses and labels"));
|
|
|
|
usedReceivingAddressesAction = new QAction(QIcon(":/icons/address-book"), tr("&Receiving addresses..."), this);
|
|
|
|
usedReceivingAddressesAction->setStatusTip(tr("Show the list of used receiving addresses and labels"));
|
|
|
|
|
|
|
|
openAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_FileIcon), tr("Open &URI..."), this);
|
|
|
|
openAction->setStatusTip(tr("Open a bitcoin: URI or payment request"));
|
|
|
|
|
|
|
|
showHelpMessageAction = new QAction(QApplication::style()->standardIcon(QStyle::SP_MessageBoxInformation), tr("&Command-line options"), this);
|
|
|
|
showHelpMessageAction->setStatusTip(tr("Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options"));
|
|
|
|
|
|
|
|
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
|
|
|
|
connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));
|
|
|
|
connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
|
|
|
|
connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));
|
|
|
|
connect(toggleHideAction, SIGNAL(triggered()), this, SLOT(toggleHidden()));
|
|
|
|
connect(showHelpMessageAction, SIGNAL(triggered()), this, SLOT(showHelpMessageClicked()));
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
if(walletFrame)
|
|
|
|
{
|
|
|
|
connect(encryptWalletAction, SIGNAL(triggered(bool)), walletFrame, SLOT(encryptWallet(bool)));
|
|
|
|
connect(backupWalletAction, SIGNAL(triggered()), walletFrame, SLOT(backupWallet()));
|
|
|
|
connect(changePassphraseAction, SIGNAL(triggered()), walletFrame, SLOT(changePassphrase()));
|
|
|
|
connect(signMessageAction, SIGNAL(triggered()), this, SLOT(gotoSignMessageTab()));
|
|
|
|
connect(verifyMessageAction, SIGNAL(triggered()), this, SLOT(gotoVerifyMessageTab()));
|
|
|
|
connect(usedSendingAddressesAction, SIGNAL(triggered()), walletFrame, SLOT(usedSendingAddresses()));
|
|
|
|
connect(usedReceivingAddressesAction, SIGNAL(triggered()), walletFrame, SLOT(usedReceivingAddresses()));
|
|
|
|
connect(openAction, SIGNAL(triggered()), this, SLOT(openClicked()));
|
|
|
|
}
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::createMenuBar()
|
|
|
|
{
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
// Create a decoupled menu bar on Mac which stays even if the window is closed
|
|
|
|
appMenuBar = new QMenuBar();
|
|
|
|
#else
|
|
|
|
// Get the main window's menu bar on other platforms
|
|
|
|
appMenuBar = menuBar();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Configure the menus
|
|
|
|
QMenu *file = appMenuBar->addMenu(tr("&File"));
|
|
|
|
if(walletFrame)
|
|
|
|
{
|
|
|
|
file->addAction(openAction);
|
|
|
|
file->addAction(backupWalletAction);
|
|
|
|
file->addAction(signMessageAction);
|
|
|
|
file->addAction(verifyMessageAction);
|
|
|
|
file->addSeparator();
|
|
|
|
file->addAction(usedSendingAddressesAction);
|
|
|
|
file->addAction(usedReceivingAddressesAction);
|
|
|
|
file->addSeparator();
|
|
|
|
}
|
|
|
|
file->addAction(quitAction);
|
|
|
|
|
|
|
|
QMenu *settings = appMenuBar->addMenu(tr("&Settings"));
|
|
|
|
if(walletFrame)
|
|
|
|
{
|
|
|
|
settings->addAction(encryptWalletAction);
|
|
|
|
settings->addAction(changePassphraseAction);
|
|
|
|
settings->addSeparator();
|
|
|
|
}
|
|
|
|
settings->addAction(optionsAction);
|
|
|
|
|
|
|
|
QMenu *help = appMenuBar->addMenu(tr("&Help"));
|
|
|
|
if(walletFrame)
|
|
|
|
{
|
|
|
|
help->addAction(openRPCConsoleAction);
|
|
|
|
}
|
|
|
|
help->addAction(showHelpMessageAction);
|
|
|
|
help->addSeparator();
|
|
|
|
help->addAction(aboutAction);
|
|
|
|
help->addAction(aboutQtAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::createToolBars()
|
|
|
|
{
|
|
|
|
if(walletFrame)
|
|
|
|
{
|
|
|
|
QToolBar *toolbar = addToolBar(tr("Tabs toolbar"));
|
|
|
|
toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
toolbar->addAction(overviewAction);
|
|
|
|
toolbar->addAction(sendCoinsAction);
|
|
|
|
toolbar->addAction(receiveCoinsAction);
|
|
|
|
toolbar->addAction(historyAction);
|
|
|
|
overviewAction->setChecked(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::setClientModel(ClientModel *clientModel)
|
|
|
|
{
|
|
|
|
this->clientModel = clientModel;
|
|
|
|
if(clientModel)
|
|
|
|
{
|
|
|
|
// Create system tray menu (or setup the dock menu) that late to prevent users from calling actions,
|
|
|
|
// while the client has not yet fully loaded
|
|
|
|
createTrayIconMenu();
|
|
|
|
|
|
|
|
// Keep up to date with client
|
|
|
|
setNumConnections(clientModel->getNumConnections());
|
|
|
|
connect(clientModel, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int)));
|
|
|
|
|
|
|
|
setNumBlocks(clientModel->getNumBlocks());
|
|
|
|
connect(clientModel, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int)));
|
|
|
|
|
|
|
|
// Receive and report messages from client model
|
|
|
|
connect(clientModel, SIGNAL(message(QString,QString,unsigned int)), this, SLOT(message(QString,QString,unsigned int)));
|
|
|
|
|
|
|
|
// Show progress dialog
|
|
|
|
connect(clientModel, SIGNAL(showProgress(QString,int)), this, SLOT(showProgress(QString,int)));
|
|
|
|
|
|
|
|
rpcConsole->setClientModel(clientModel);
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
if(walletFrame)
|
|
|
|
{
|
|
|
|
walletFrame->setClientModel(clientModel);
|
|
|
|
}
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
unitDisplayControl->setOptionsModel(clientModel->getOptionsModel());
|
|
|
|
} else {
|
|
|
|
// Disable possibility to show main window via action
|
|
|
|
toggleHideAction->setEnabled(false);
|
|
|
|
if(trayIconMenu)
|
|
|
|
{
|
|
|
|
// Disable context menu on tray icon
|
|
|
|
trayIconMenu->clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
bool BitcoinGUI::addWallet(const QString& name, WalletModel *walletModel)
|
|
|
|
{
|
|
|
|
if(!walletFrame)
|
|
|
|
return false;
|
|
|
|
setWalletActionsEnabled(true);
|
|
|
|
return walletFrame->addWallet(name, walletModel);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BitcoinGUI::setCurrentWallet(const QString& name)
|
|
|
|
{
|
|
|
|
if(!walletFrame)
|
|
|
|
return false;
|
|
|
|
return walletFrame->setCurrentWallet(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::removeAllWallets()
|
|
|
|
{
|
|
|
|
if(!walletFrame)
|
|
|
|
return;
|
|
|
|
setWalletActionsEnabled(false);
|
|
|
|
walletFrame->removeAllWallets();
|
|
|
|
}
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
|
|
|
void BitcoinGUI::setWalletActionsEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
overviewAction->setEnabled(enabled);
|
|
|
|
sendCoinsAction->setEnabled(enabled);
|
|
|
|
receiveCoinsAction->setEnabled(enabled);
|
|
|
|
historyAction->setEnabled(enabled);
|
|
|
|
encryptWalletAction->setEnabled(enabled);
|
|
|
|
backupWalletAction->setEnabled(enabled);
|
|
|
|
changePassphraseAction->setEnabled(enabled);
|
|
|
|
signMessageAction->setEnabled(enabled);
|
|
|
|
verifyMessageAction->setEnabled(enabled);
|
|
|
|
usedSendingAddressesAction->setEnabled(enabled);
|
|
|
|
usedReceivingAddressesAction->setEnabled(enabled);
|
|
|
|
openAction->setEnabled(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::createTrayIcon(const NetworkStyle *networkStyle)
|
|
|
|
{
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
trayIcon = new QSystemTrayIcon(this);
|
|
|
|
QString toolTip = tr("Bitcoin Core client") + " " + networkStyle->getTitleAddText();
|
|
|
|
trayIcon->setToolTip(toolTip);
|
|
|
|
trayIcon->setIcon(networkStyle->getAppIcon());
|
|
|
|
trayIcon->show();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
notificator = new Notificator(QApplication::applicationName(), trayIcon, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::createTrayIconMenu()
|
|
|
|
{
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
// return if trayIcon is unset (only on non-Mac OSes)
|
|
|
|
if (!trayIcon)
|
|
|
|
return;
|
|
|
|
|
|
|
|
trayIconMenu = new QMenu(this);
|
|
|
|
trayIcon->setContextMenu(trayIconMenu);
|
|
|
|
|
|
|
|
connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
|
|
|
|
this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));
|
|
|
|
#else
|
|
|
|
// Note: On Mac, the dock icon is used to provide the tray's functionality.
|
|
|
|
MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance();
|
|
|
|
dockIconHandler->setMainWindow((QMainWindow *)this);
|
|
|
|
trayIconMenu = dockIconHandler->dockMenu();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Configuration of the tray icon (or dock icon) icon menu
|
|
|
|
trayIconMenu->addAction(toggleHideAction);
|
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(sendCoinsAction);
|
|
|
|
trayIconMenu->addAction(receiveCoinsAction);
|
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(signMessageAction);
|
|
|
|
trayIconMenu->addAction(verifyMessageAction);
|
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(optionsAction);
|
|
|
|
trayIconMenu->addAction(openRPCConsoleAction);
|
|
|
|
#ifndef Q_OS_MAC // This is built-in on Mac
|
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(quitAction);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason)
|
|
|
|
{
|
|
|
|
if(reason == QSystemTrayIcon::Trigger)
|
|
|
|
{
|
|
|
|
// Click on system tray icon triggers show/hide of the main window
|
|
|
|
toggleHidden();
|
|
|
|
}
|
|
|
|
}
|
|
|