2011-05-07 22:13:39 +02:00
|
|
|
/*
|
2011-05-10 19:03:10 +02:00
|
|
|
* Qt4 bitcoin GUI.
|
|
|
|
*
|
2012-05-12 05:36:37 +02:00
|
|
|
* W.J. van der Laan 2011-2012
|
2012-05-12 05:32:03 +02:00
|
|
|
* The Bitcoin Developers 2011-2012
|
2011-05-07 22:13:39 +02:00
|
|
|
*/
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2011-05-12 14:49:42 +02:00
|
|
|
#include "bitcoingui.h"
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2011-05-12 14:49:42 +02:00
|
|
|
#include "transactiontablemodel.h"
|
|
|
|
#include "optionsdialog.h"
|
|
|
|
#include "aboutdialog.h"
|
2011-05-22 17:19:43 +02:00
|
|
|
#include "clientmodel.h"
|
2011-06-30 18:05:29 +02:00
|
|
|
#include "walletmodel.h"
|
2013-03-22 18:32:49 +01:00
|
|
|
#include "walletframe.h"
|
2011-06-05 14:19:57 +02:00
|
|
|
#include "optionsmodel.h"
|
2011-06-10 15:05:51 +02:00
|
|
|
#include "transactiondescdialog.h"
|
2011-07-25 21:35:45 +02:00
|
|
|
#include "bitcoinunits.h"
|
2011-08-23 20:08:42 +02:00
|
|
|
#include "guiconstants.h"
|
2011-09-03 20:52:54 +02:00
|
|
|
#include "notificator.h"
|
2012-02-17 15:34:53 +01:00
|
|
|
#include "guiutil.h"
|
2012-04-09 21:07:25 +02:00
|
|
|
#include "rpcconsole.h"
|
2012-11-05 08:04:21 +01:00
|
|
|
#include "ui_interface.h"
|
2013-03-22 18:32:49 +01:00
|
|
|
#include "wallet.h"
|
2013-03-23 23:14:12 +01:00
|
|
|
#include "init.h"
|
2011-05-07 22:13:39 +02:00
|
|
|
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifdef Q_OS_MAC
|
2011-10-07 13:21:45 +02:00
|
|
|
#include "macdockiconhandler.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-23 08:52:24 +02:00
|
|
|
#include <QApplication>
|
2011-05-07 22:13:39 +02:00
|
|
|
#include <QMenuBar>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QToolBar>
|
|
|
|
#include <QStatusBar>
|
|
|
|
#include <QLabel>
|
2011-05-30 20:20:12 +02:00
|
|
|
#include <QMessageBox>
|
2011-06-18 21:25:38 +02:00
|
|
|
#include <QProgressBar>
|
2011-07-05 22:09:39 +02:00
|
|
|
#include <QStackedWidget>
|
2011-07-08 18:05:10 +02:00
|
|
|
#include <QDateTime>
|
2011-07-17 17:30:58 +02:00
|
|
|
#include <QMovie>
|
2012-03-15 22:30:08 +01:00
|
|
|
#include <QTimer>
|
2011-08-07 16:04:48 +02:00
|
|
|
#include <QDragEnterEvent>
|
2013-05-31 14:02:24 +02:00
|
|
|
#if QT_VERSION < 0x050000
|
2011-08-07 16:04:48 +02:00
|
|
|
#include <QUrl>
|
2013-07-22 08:50:39 +02:00
|
|
|
#include <QTextDocument>
|
2013-05-31 14:02:24 +02:00
|
|
|
#endif
|
2013-01-23 21:51:02 +01:00
|
|
|
#include <QMimeData>
|
2012-08-24 14:47:54 +02:00
|
|
|
#include <QStyle>
|
2013-03-22 18:32:49 +01:00
|
|
|
#include <QListWidget>
|
2011-08-07 16:04:48 +02:00
|
|
|
|
2011-05-07 22:13:39 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
const QString BitcoinGUI::DEFAULT_WALLET = "~Default";
|
|
|
|
|
2013-05-19 20:20:06 +02:00
|
|
|
BitcoinGUI::BitcoinGUI(bool fIsTestnet, QWidget *parent) :
|
2011-06-30 18:05:29 +02:00
|
|
|
QMainWindow(parent),
|
|
|
|
clientModel(0),
|
2011-08-24 22:07:26 +02:00
|
|
|
encryptWalletAction(0),
|
|
|
|
changePassphraseAction(0),
|
2011-12-13 17:30:13 +01:00
|
|
|
aboutQtAction(0),
|
2011-09-03 20:52:54 +02:00
|
|
|
trayIcon(0),
|
2012-04-09 21:07:25 +02:00
|
|
|
notificator(0),
|
2013-02-10 19:01:30 +01:00
|
|
|
rpcConsole(0),
|
|
|
|
prevBlocks(0)
|
2011-05-07 22:13:39 +02:00
|
|
|
{
|
2013-07-13 13:14:23 +02:00
|
|
|
GUIUtil::restoreWindowGeometry("nWindow", QSize(850, 550), this);
|
2013-05-19 20:20:06 +02:00
|
|
|
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifndef Q_OS_MAC
|
2013-05-19 20:20:06 +02:00
|
|
|
if (!fIsTestnet)
|
|
|
|
{
|
|
|
|
setWindowTitle(tr("Bitcoin") + " - " + tr("Wallet"));
|
|
|
|
QApplication::setWindowIcon(QIcon(":icons/bitcoin"));
|
|
|
|
setWindowIcon(QIcon(":icons/bitcoin"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setWindowTitle(tr("Bitcoin") + " - " + tr("Wallet") + " " + tr("[testnet]"));
|
|
|
|
QApplication::setWindowIcon(QIcon(":icons/bitcoin_testnet"));
|
|
|
|
setWindowIcon(QIcon(":icons/bitcoin_testnet"));
|
|
|
|
}
|
2011-10-07 13:21:45 +02:00
|
|
|
#else
|
|
|
|
setUnifiedTitleAndToolBarOnMac(true);
|
|
|
|
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
2013-05-19 20:20:06 +02:00
|
|
|
|
|
|
|
if (!fIsTestnet)
|
|
|
|
MacDockIconHandler::instance()->setIcon(QIcon(":icons/bitcoin"));
|
|
|
|
else
|
|
|
|
MacDockIconHandler::instance()->setIcon(QIcon(":icons/bitcoin_testnet"));
|
2011-10-07 13:21:45 +02:00
|
|
|
#endif
|
2013-05-19 20:20:06 +02:00
|
|
|
|
2013-04-06 18:11:15 +02:00
|
|
|
// Create wallet frame and make it the central widget
|
|
|
|
walletFrame = new WalletFrame(this);
|
|
|
|
setCentralWidget(walletFrame);
|
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Accept D&D of URIs
|
|
|
|
setAcceptDrops(true);
|
2011-05-12 20:16:42 +02:00
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
// Create actions for the toolbar, menu bar and tray/dock icon
|
2013-04-06 18:11:15 +02:00
|
|
|
// Needs walletFrame to be initialized
|
2013-05-19 20:20:06 +02:00
|
|
|
createActions(fIsTestnet);
|
2011-05-10 19:03:10 +02:00
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
// Create application menu bar
|
|
|
|
createMenuBar();
|
2011-07-16 19:28:15 +02:00
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
// Create the toolbars
|
|
|
|
createToolBars();
|
2011-05-07 22:13:39 +02:00
|
|
|
|
2012-11-27 22:20:43 +01:00
|
|
|
// Create system tray icon and notification
|
2013-05-19 20:20:06 +02:00
|
|
|
createTrayIcon(fIsTestnet);
|
2011-07-05 22:09:39 +02:00
|
|
|
|
2011-06-05 14:19:57 +02:00
|
|
|
// Create status bar
|
2011-05-12 20:16:42 +02:00
|
|
|
statusBar();
|
2011-06-14 21:34:51 +02:00
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Status bar notification icons
|
2011-07-17 17:30:58 +02:00
|
|
|
QFrame *frameBlocks = new QFrame();
|
2011-08-04 19:04:42 +02:00
|
|
|
frameBlocks->setContentsMargins(0,0,0,0);
|
|
|
|
frameBlocks->setMinimumWidth(56);
|
|
|
|
frameBlocks->setMaximumWidth(56);
|
2011-07-17 17:30:58 +02:00
|
|
|
QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks);
|
|
|
|
frameBlocksLayout->setContentsMargins(3,0,3,0);
|
|
|
|
frameBlocksLayout->setSpacing(3);
|
2011-08-23 20:08:42 +02:00
|
|
|
labelEncryptionIcon = new QLabel();
|
2011-08-04 19:04:42 +02:00
|
|
|
labelConnectionsIcon = new QLabel();
|
2011-07-17 17:30:58 +02:00
|
|
|
labelBlocksIcon = new QLabel();
|
2011-08-04 19:04:42 +02:00
|
|
|
frameBlocksLayout->addStretch();
|
2011-08-23 20:08:42 +02:00
|
|
|
frameBlocksLayout->addWidget(labelEncryptionIcon);
|
|
|
|
frameBlocksLayout->addStretch();
|
2011-08-04 19:04:42 +02:00
|
|
|
frameBlocksLayout->addWidget(labelConnectionsIcon);
|
|
|
|
frameBlocksLayout->addStretch();
|
2011-07-17 17:30:58 +02:00
|
|
|
frameBlocksLayout->addWidget(labelBlocksIcon);
|
|
|
|
frameBlocksLayout->addStretch();
|
2011-06-11 12:46:09 +02:00
|
|
|
|
2012-04-02 19:07:03 +02:00
|
|
|
// Progress bar and label for blocks download
|
|
|
|
progressBarLabel = new QLabel();
|
2011-06-18 21:25:38 +02:00
|
|
|
progressBarLabel->setVisible(false);
|
|
|
|
progressBar = new QProgressBar();
|
2012-04-13 18:25:56 +02:00
|
|
|
progressBar->setAlignment(Qt::AlignCenter);
|
2011-06-18 21:25:38 +02:00
|
|
|
progressBar->setVisible(false);
|
|
|
|
|
2012-08-24 14:47:54 +02:00
|
|
|
// 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
|
2013-04-02 17:30:14 +02:00
|
|
|
QString curStyle = QApplication::style()->metaObject()->className();
|
2012-08-24 14:47:54 +02:00
|
|
|
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; }");
|
|
|
|
}
|
|
|
|
|
2011-06-18 21:25:38 +02:00
|
|
|
statusBar()->addWidget(progressBarLabel);
|
|
|
|
statusBar()->addWidget(progressBar);
|
2011-07-17 17:30:58 +02:00
|
|
|
statusBar()->addPermanentWidget(frameBlocks);
|
2011-06-18 21:25:38 +02:00
|
|
|
|
2011-07-17 17:30:58 +02:00
|
|
|
syncIconMovie = new QMovie(":/movies/update_spinner", "mng", this);
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
rpcConsole = new RPCConsole(this);
|
|
|
|
connect(openRPCConsoleAction, SIGNAL(triggered()), rpcConsole, SLOT(show()));
|
2013-10-05 13:15:50 +02:00
|
|
|
// prevents an oben debug window from becoming stuck/unusable on client shutdown
|
|
|
|
connect(quitAction, SIGNAL(triggered()), rpcConsole, SLOT(hide()));
|
2012-04-09 21:07:25 +02:00
|
|
|
|
2012-10-12 16:08:47 +02:00
|
|
|
// Install event filter to be able to catch status tip events (QEvent::StatusTip)
|
|
|
|
this->installEventFilter(this);
|
2011-05-12 20:16:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
BitcoinGUI::~BitcoinGUI()
|
|
|
|
{
|
2013-07-13 13:14:23 +02:00
|
|
|
GUIUtil::saveWindowGeometry("nWindow", this);
|
2012-02-19 12:07:07 +01:00
|
|
|
if(trayIcon) // Hide tray icon, as deleting will let it linger until quit (on Ubuntu)
|
|
|
|
trayIcon->hide();
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifdef Q_OS_MAC
|
2011-10-07 13:21:45 +02:00
|
|
|
delete appMenuBar;
|
2013-04-14 22:11:55 +02:00
|
|
|
MacDockIconHandler::instance()->setMainWindow(NULL);
|
2011-10-07 13:21:45 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-05-19 20:20:06 +02:00
|
|
|
void BitcoinGUI::createActions(bool fIsTestnet)
|
2011-05-12 20:16:42 +02:00
|
|
|
{
|
2011-07-05 22:09:39 +02:00
|
|
|
QActionGroup *tabGroup = new QActionGroup(this);
|
2011-07-07 17:33:15 +02:00
|
|
|
|
2011-07-05 22:09:39 +02:00
|
|
|
overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
overviewAction->setStatusTip(tr("Show general overview of wallet"));
|
|
|
|
overviewAction->setToolTip(overviewAction->statusTip());
|
2011-07-05 22:09:39 +02:00
|
|
|
overviewAction->setCheckable(true);
|
2011-10-09 21:40:03 +02:00
|
|
|
overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1));
|
2011-07-05 22:09:39 +02:00
|
|
|
tabGroup->addAction(overviewAction);
|
2011-07-07 17:33:15 +02:00
|
|
|
|
2013-03-31 09:11:38 +02:00
|
|
|
sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
sendCoinsAction->setStatusTip(tr("Send coins to a Bitcoin address"));
|
|
|
|
sendCoinsAction->setToolTip(sendCoinsAction->statusTip());
|
2012-08-29 10:12:34 +02:00
|
|
|
sendCoinsAction->setCheckable(true);
|
|
|
|
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
|
|
|
|
tabGroup->addAction(sendCoinsAction);
|
|
|
|
|
2013-03-31 09:11:38 +02:00
|
|
|
receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
receiveCoinsAction->setStatusTip(tr("Show the list of addresses for receiving payments"));
|
|
|
|
receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip());
|
2012-08-29 10:12:34 +02:00
|
|
|
receiveCoinsAction->setCheckable(true);
|
|
|
|
receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));
|
|
|
|
tabGroup->addAction(receiveCoinsAction);
|
|
|
|
|
2011-07-07 10:59:00 +02:00
|
|
|
historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
historyAction->setStatusTip(tr("Browse transaction history"));
|
|
|
|
historyAction->setToolTip(historyAction->statusTip());
|
2011-07-05 22:09:39 +02:00
|
|
|
historyAction->setCheckable(true);
|
2011-10-09 21:40:03 +02:00
|
|
|
historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));
|
2011-07-05 22:09:39 +02:00
|
|
|
tabGroup->addAction(historyAction);
|
|
|
|
|
2013-03-31 09:11:38 +02:00
|
|
|
addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Addresses"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
addressBookAction->setStatusTip(tr("Edit the list of stored addresses and labels"));
|
|
|
|
addressBookAction->setToolTip(addressBookAction->statusTip());
|
2011-07-07 17:33:15 +02:00
|
|
|
addressBookAction->setCheckable(true);
|
2011-10-09 21:40:03 +02:00
|
|
|
addressBookAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5));
|
2011-07-07 17:33:15 +02:00
|
|
|
tabGroup->addAction(addressBookAction);
|
|
|
|
|
2012-02-17 23:19:52 +01:00
|
|
|
connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage()));
|
2012-08-29 10:12:34 +02:00
|
|
|
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()));
|
2012-02-17 23:19:52 +01:00
|
|
|
connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage()));
|
2012-02-17 23:19:52 +01:00
|
|
|
connect(addressBookAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage()));
|
2013-04-01 14:43:50 +02:00
|
|
|
|
2011-10-09 21:06:28 +02:00
|
|
|
quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
quitAction->setStatusTip(tr("Quit application"));
|
2011-10-09 21:06:28 +02:00
|
|
|
quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
|
2011-10-07 13:21:45 +02:00
|
|
|
quitAction->setMenuRole(QAction::QuitRole);
|
2013-05-19 20:20:06 +02:00
|
|
|
if (!fIsTestnet)
|
|
|
|
aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About Bitcoin"), this);
|
|
|
|
else
|
|
|
|
aboutAction = new QAction(QIcon(":/icons/bitcoin_testnet"), tr("&About Bitcoin"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
aboutAction->setStatusTip(tr("Show information about Bitcoin"));
|
2011-12-13 17:30:13 +01:00
|
|
|
aboutAction->setMenuRole(QAction::AboutRole);
|
2013-10-08 12:27:57 +02:00
|
|
|
#if QT_VERSION < 0x050000
|
2012-08-23 21:55:03 +02:00
|
|
|
aboutQtAction = new QAction(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this);
|
2013-10-08 12:27:57 +02:00
|
|
|
#else
|
|
|
|
aboutQtAction = new QAction(QIcon(":/qt-project.org/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this);
|
|
|
|
#endif
|
2012-10-12 16:08:47 +02:00
|
|
|
aboutQtAction->setStatusTip(tr("Show information about Qt"));
|
2011-12-13 17:30:13 +01:00
|
|
|
aboutQtAction->setMenuRole(QAction::AboutQtRole);
|
2011-07-07 17:33:15 +02:00
|
|
|
optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
optionsAction->setStatusTip(tr("Modify configuration options for Bitcoin"));
|
2011-10-07 13:21:45 +02:00
|
|
|
optionsAction->setMenuRole(QAction::PreferencesRole);
|
2013-05-19 20:20:06 +02:00
|
|
|
if (!fIsTestnet)
|
|
|
|
toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Show / Hide"), this);
|
|
|
|
else
|
|
|
|
toggleHideAction = new QAction(QIcon(":/icons/bitcoin_testnet"), tr("&Show / Hide"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
toggleHideAction->setStatusTip(tr("Show or hide the main Window"));
|
2013-04-03 17:29:02 +02:00
|
|
|
|
2012-05-06 16:24:15 +02:00
|
|
|
encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
encryptWalletAction->setStatusTip(tr("Encrypt the private keys that belong to your wallet"));
|
2011-08-24 22:07:26 +02:00
|
|
|
encryptWalletAction->setCheckable(true);
|
2012-05-06 16:24:15 +02:00
|
|
|
backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet..."), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
backupWalletAction->setStatusTip(tr("Backup wallet to another location"));
|
2012-05-06 16:24:15 +02:00
|
|
|
changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase..."), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
changePassphraseAction->setStatusTip(tr("Change the passphrase used for wallet encryption"));
|
2012-08-29 10:12:34 +02:00
|
|
|
signMessageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message..."), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
signMessageAction->setStatusTip(tr("Sign messages with your Bitcoin addresses to prove you own them"));
|
2012-08-29 10:12:34 +02:00
|
|
|
verifyMessageAction = new QAction(QIcon(":/icons/transaction_0"), tr("&Verify message..."), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Bitcoin addresses"));
|
2012-08-29 10:12:34 +02:00
|
|
|
|
2012-05-17 20:05:49 +02:00
|
|
|
openRPCConsoleAction = new QAction(QIcon(":/icons/debugwindow"), tr("&Debug window"), this);
|
2012-10-12 16:08:47 +02:00
|
|
|
openRPCConsoleAction->setStatusTip(tr("Open debugging and diagnostic console"));
|
2011-05-12 20:16:42 +02:00
|
|
|
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
|
|
|
|
connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));
|
2011-12-13 17:30:13 +01:00
|
|
|
connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
|
2012-08-29 10:12:34 +02:00
|
|
|
connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));
|
2012-02-17 15:34:53 +01:00
|
|
|
connect(toggleHideAction, SIGNAL(triggered()), this, SLOT(toggleHidden()));
|
2013-04-06 18:11:15 +02:00
|
|
|
connect(encryptWalletAction, SIGNAL(triggered(bool)), walletFrame, SLOT(encryptWallet(bool)));
|
|
|
|
connect(backupWalletAction, SIGNAL(triggered()), walletFrame, SLOT(backupWallet()));
|
|
|
|
connect(changePassphraseAction, SIGNAL(triggered()), walletFrame, SLOT(changePassphrase()));
|
2012-08-29 10:12:34 +02:00
|
|
|
connect(signMessageAction, SIGNAL(triggered()), this, SLOT(gotoSignMessageTab()));
|
|
|
|
connect(verifyMessageAction, SIGNAL(triggered()), this, SLOT(gotoVerifyMessageTab()));
|
2011-05-12 20:16:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
void BitcoinGUI::createMenuBar()
|
|
|
|
{
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifdef Q_OS_MAC
|
2011-10-07 13:21:45 +02:00
|
|
|
// 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"));
|
2012-02-26 03:04:25 +01:00
|
|
|
file->addAction(backupWalletAction);
|
2012-06-15 09:48:26 +02:00
|
|
|
file->addAction(signMessageAction);
|
2012-02-27 12:55:04 +01:00
|
|
|
file->addAction(verifyMessageAction);
|
2012-02-26 03:04:25 +01:00
|
|
|
file->addSeparator();
|
2011-10-07 13:21:45 +02:00
|
|
|
file->addAction(quitAction);
|
|
|
|
|
|
|
|
QMenu *settings = appMenuBar->addMenu(tr("&Settings"));
|
|
|
|
settings->addAction(encryptWalletAction);
|
|
|
|
settings->addAction(changePassphraseAction);
|
|
|
|
settings->addSeparator();
|
|
|
|
settings->addAction(optionsAction);
|
|
|
|
|
|
|
|
QMenu *help = appMenuBar->addMenu(tr("&Help"));
|
2012-04-09 21:07:25 +02:00
|
|
|
help->addAction(openRPCConsoleAction);
|
|
|
|
help->addSeparator();
|
2011-10-07 13:21:45 +02:00
|
|
|
help->addAction(aboutAction);
|
2011-12-13 17:30:13 +01:00
|
|
|
help->addAction(aboutQtAction);
|
2011-10-07 13:21:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::createToolBars()
|
|
|
|
{
|
|
|
|
QToolBar *toolbar = addToolBar(tr("Tabs toolbar"));
|
|
|
|
toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
toolbar->addAction(overviewAction);
|
|
|
|
toolbar->addAction(sendCoinsAction);
|
|
|
|
toolbar->addAction(receiveCoinsAction);
|
|
|
|
toolbar->addAction(historyAction);
|
|
|
|
toolbar->addAction(addressBookAction);
|
|
|
|
}
|
|
|
|
|
2011-06-30 18:05:29 +02:00
|
|
|
void BitcoinGUI::setClientModel(ClientModel *clientModel)
|
2011-05-22 17:19:43 +02:00
|
|
|
{
|
2011-06-30 18:05:29 +02:00
|
|
|
this->clientModel = clientModel;
|
2011-11-08 21:18:36 +01:00
|
|
|
if(clientModel)
|
2011-06-30 19:14:42 +02:00
|
|
|
{
|
2012-11-27 22:20:43 +01:00
|
|
|
// 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
|
2013-03-19 23:33:36 +01:00
|
|
|
createTrayIconMenu();
|
2012-11-27 22:20:43 +01:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
// Keep up to date with client
|
|
|
|
setNumConnections(clientModel->getNumConnections());
|
|
|
|
connect(clientModel, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int)));
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
setNumBlocks(clientModel->getNumBlocks(), clientModel->getNumBlocksOfPeers());
|
|
|
|
connect(clientModel, SIGNAL(numBlocksChanged(int,int)), this, SLOT(setNumBlocks(int,int)));
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2012-11-05 08:04:21 +01:00
|
|
|
// Receive and report messages from network/worker thread
|
2012-12-03 13:24:42 +01:00
|
|
|
connect(clientModel, SIGNAL(message(QString,QString,unsigned int)), this, SLOT(message(QString,QString,unsigned int)));
|
2012-04-09 21:07:25 +02:00
|
|
|
|
2013-04-01 15:19:40 +02:00
|
|
|
rpcConsole->setClientModel(clientModel);
|
2013-03-22 18:32:49 +01:00
|
|
|
walletFrame->setClientModel(clientModel);
|
2011-11-08 21:18:36 +01:00
|
|
|
}
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
bool BitcoinGUI::addWallet(const QString& name, WalletModel *walletModel)
|
2011-06-30 18:05:29 +02:00
|
|
|
{
|
2013-03-22 18:32:49 +01:00
|
|
|
return walletFrame->addWallet(name, walletModel);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BitcoinGUI::setCurrentWallet(const QString& name)
|
|
|
|
{
|
|
|
|
return walletFrame->setCurrentWallet(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::removeAllWallets()
|
|
|
|
{
|
|
|
|
walletFrame->removeAllWallets();
|
2011-05-22 17:19:43 +02:00
|
|
|
}
|
|
|
|
|
2013-05-19 20:20:06 +02:00
|
|
|
void BitcoinGUI::createTrayIcon(bool fIsTestnet)
|
2011-05-12 20:16:42 +02:00
|
|
|
{
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifndef Q_OS_MAC
|
2011-05-12 20:16:42 +02:00
|
|
|
trayIcon = new QSystemTrayIcon(this);
|
2012-11-27 22:20:43 +01:00
|
|
|
|
2013-05-19 20:20:06 +02:00
|
|
|
if (!fIsTestnet)
|
|
|
|
{
|
|
|
|
trayIcon->setToolTip(tr("Bitcoin client"));
|
|
|
|
trayIcon->setIcon(QIcon(":/icons/toolbar"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
trayIcon->setToolTip(tr("Bitcoin client") + " " + tr("[testnet]"));
|
|
|
|
trayIcon->setIcon(QIcon(":/icons/toolbar_testnet"));
|
|
|
|
}
|
|
|
|
|
2012-11-27 22:20:43 +01:00
|
|
|
trayIcon->show();
|
|
|
|
#endif
|
|
|
|
|
2013-04-02 17:30:14 +02:00
|
|
|
notificator = new Notificator(QApplication::applicationName(), trayIcon);
|
2012-11-27 22:20:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::createTrayIconMenu()
|
|
|
|
{
|
|
|
|
QMenu *trayIconMenu;
|
|
|
|
#ifndef Q_OS_MAC
|
2013-03-19 23:33:36 +01:00
|
|
|
// return if trayIcon is unset (only on non-Mac OSes)
|
|
|
|
if (!trayIcon)
|
|
|
|
return;
|
|
|
|
|
2012-11-27 22:20:43 +01:00
|
|
|
trayIconMenu = new QMenu(this);
|
|
|
|
trayIcon->setContextMenu(trayIconMenu);
|
|
|
|
|
2011-06-05 14:19:57 +02:00
|
|
|
connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
|
|
|
|
this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));
|
2011-10-07 13:21:45 +02:00
|
|
|
#else
|
|
|
|
// Note: On Mac, the dock icon is used to provide the tray's functionality.
|
|
|
|
MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance();
|
2013-04-14 22:11:55 +02:00
|
|
|
dockIconHandler->setMainWindow((QMainWindow *)this);
|
2011-10-07 13:21:45 +02:00
|
|
|
trayIconMenu = dockIconHandler->dockMenu();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Configuration of the tray icon (or dock icon) icon menu
|
2012-02-17 15:34:53 +01:00
|
|
|
trayIconMenu->addAction(toggleHideAction);
|
2011-10-07 13:21:45 +02:00
|
|
|
trayIconMenu->addSeparator();
|
2012-06-14 07:57:10 +02:00
|
|
|
trayIconMenu->addAction(sendCoinsAction);
|
|
|
|
trayIconMenu->addAction(receiveCoinsAction);
|
2011-12-23 16:14:57 +01:00
|
|
|
trayIconMenu->addSeparator();
|
2012-06-15 09:48:26 +02:00
|
|
|
trayIconMenu->addAction(signMessageAction);
|
2012-06-14 07:57:10 +02:00
|
|
|
trayIconMenu->addAction(verifyMessageAction);
|
2011-10-07 13:21:45 +02:00
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(optionsAction);
|
2012-06-14 07:57:10 +02:00
|
|
|
trayIconMenu->addAction(openRPCConsoleAction);
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifndef Q_OS_MAC // This is built-in on Mac
|
2011-10-07 13:21:45 +02:00
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(quitAction);
|
|
|
|
#endif
|
2011-05-12 20:16:42 +02:00
|
|
|
}
|
|
|
|
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifndef Q_OS_MAC
|
2011-06-05 14:19:57 +02:00
|
|
|
void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason)
|
|
|
|
{
|
2011-08-08 17:38:17 +02:00
|
|
|
if(reason == QSystemTrayIcon::Trigger)
|
2011-06-05 14:19:57 +02:00
|
|
|
{
|
2012-07-21 13:01:02 +02:00
|
|
|
// Click on system tray icon triggers show/hide of the main window
|
2012-02-17 15:34:53 +01:00
|
|
|
toggleHideAction->trigger();
|
2011-06-05 14:19:57 +02:00
|
|
|
}
|
|
|
|
}
|
2011-10-07 13:21:45 +02:00
|
|
|
#endif
|
2011-06-05 14:19:57 +02:00
|
|
|
|
2011-05-10 19:03:10 +02:00
|
|
|
void BitcoinGUI::optionsClicked()
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!clientModel || !clientModel->getOptionsModel())
|
|
|
|
return;
|
2011-05-12 09:40:40 +02:00
|
|
|
OptionsDialog dlg;
|
2011-06-30 18:05:29 +02:00
|
|
|
dlg.setModel(clientModel->getOptionsModel());
|
2011-05-12 09:40:40 +02:00
|
|
|
dlg.exec();
|
2011-05-10 19:03:10 +02:00
|
|
|
}
|
|
|
|
|
2011-05-12 09:40:40 +02:00
|
|
|
void BitcoinGUI::aboutClicked()
|
2011-05-10 19:03:10 +02:00
|
|
|
{
|
2011-05-12 09:40:40 +02:00
|
|
|
AboutDialog dlg;
|
2011-07-01 17:06:36 +02:00
|
|
|
dlg.setModel(clientModel);
|
2011-05-12 09:40:40 +02:00
|
|
|
dlg.exec();
|
2011-05-10 19:03:10 +02:00
|
|
|
}
|
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
void BitcoinGUI::gotoOverviewPage()
|
|
|
|
{
|
2013-10-18 18:43:07 +02:00
|
|
|
overviewAction->setChecked(true);
|
2013-03-22 18:32:49 +01:00
|
|
|
if (walletFrame) walletFrame->gotoOverviewPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoHistoryPage()
|
|
|
|
{
|
2013-10-18 18:43:07 +02:00
|
|
|
historyAction->setChecked(true);
|
2013-03-22 18:32:49 +01:00
|
|
|
if (walletFrame) walletFrame->gotoHistoryPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoAddressBookPage()
|
|
|
|
{
|
2013-10-18 18:43:07 +02:00
|
|
|
addressBookAction->setChecked(true);
|
2013-03-22 18:32:49 +01:00
|
|
|
if (walletFrame) walletFrame->gotoAddressBookPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoReceiveCoinsPage()
|
|
|
|
{
|
2013-10-18 18:43:07 +02:00
|
|
|
receiveCoinsAction->setChecked(true);
|
2013-03-22 18:32:49 +01:00
|
|
|
if (walletFrame) walletFrame->gotoReceiveCoinsPage();
|
|
|
|
}
|
|
|
|
|
2013-04-01 14:43:50 +02:00
|
|
|
void BitcoinGUI::gotoSendCoinsPage(QString addr)
|
2013-03-22 18:32:49 +01:00
|
|
|
{
|
2013-10-18 18:43:07 +02:00
|
|
|
sendCoinsAction->setChecked(true);
|
2013-04-01 14:43:50 +02:00
|
|
|
if (walletFrame) walletFrame->gotoSendCoinsPage(addr);
|
2013-03-22 18:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoSignMessageTab(QString addr)
|
|
|
|
{
|
|
|
|
if (walletFrame) walletFrame->gotoSignMessageTab(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoVerifyMessageTab(QString addr)
|
|
|
|
{
|
2013-04-03 15:28:16 +02:00
|
|
|
if (walletFrame) walletFrame->gotoVerifyMessageTab(addr);
|
2013-03-22 18:32:49 +01:00
|
|
|
}
|
|
|
|
|
2011-05-12 20:28:07 +02:00
|
|
|
void BitcoinGUI::setNumConnections(int count)
|
|
|
|
{
|
2011-06-14 21:34:51 +02:00
|
|
|
QString icon;
|
|
|
|
switch(count)
|
|
|
|
{
|
2011-06-17 17:47:40 +02:00
|
|
|
case 0: icon = ":/icons/connect_0"; break;
|
|
|
|
case 1: case 2: case 3: icon = ":/icons/connect_1"; break;
|
|
|
|
case 4: case 5: case 6: icon = ":/icons/connect_2"; break;
|
|
|
|
case 7: case 8: case 9: icon = ":/icons/connect_3"; break;
|
|
|
|
default: icon = ":/icons/connect_4"; break;
|
2011-06-14 21:34:51 +02:00
|
|
|
}
|
2011-08-23 20:08:42 +02:00
|
|
|
labelConnectionsIcon->setPixmap(QIcon(icon).pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
|
2011-08-05 15:37:49 +02:00
|
|
|
labelConnectionsIcon->setToolTip(tr("%n active connection(s) to Bitcoin network", "", count));
|
2011-05-12 20:28:07 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks)
|
2011-05-12 20:28:07 +02:00
|
|
|
{
|
2012-10-12 16:08:47 +02:00
|
|
|
// Prevent orphan statusbar messages (e.g. hover Quit in main menu, wait until chain-sync starts -> garbelled text)
|
|
|
|
statusBar()->clearMessage();
|
|
|
|
|
2013-04-10 15:45:49 +02:00
|
|
|
// Acquire current block source
|
|
|
|
enum BlockSource blockSource = clientModel->getBlockSource();
|
|
|
|
switch (blockSource) {
|
|
|
|
case BLOCK_SOURCE_NETWORK:
|
|
|
|
progressBarLabel->setText(tr("Synchronizing with network..."));
|
|
|
|
break;
|
|
|
|
case BLOCK_SOURCE_DISK:
|
|
|
|
progressBarLabel->setText(tr("Importing blocks from disk..."));
|
|
|
|
break;
|
|
|
|
case BLOCK_SOURCE_REINDEX:
|
|
|
|
progressBarLabel->setText(tr("Reindexing blocks on disk..."));
|
|
|
|
break;
|
|
|
|
case BLOCK_SOURCE_NONE:
|
|
|
|
// Case: not Importing, not Reindexing and no network connection
|
|
|
|
progressBarLabel->setText(tr("No block source available..."));
|
|
|
|
break;
|
2012-04-02 10:18:51 +02:00
|
|
|
}
|
|
|
|
|
2011-07-17 14:06:43 +02:00
|
|
|
QString tooltip;
|
|
|
|
|
2011-07-08 18:05:10 +02:00
|
|
|
QDateTime lastBlockDate = clientModel->getLastBlockDate();
|
2013-02-10 19:01:30 +01:00
|
|
|
QDateTime currentDate = QDateTime::currentDateTime();
|
|
|
|
int secs = lastBlockDate.secsTo(currentDate);
|
2011-07-08 18:05:10 +02:00
|
|
|
|
2013-02-10 19:01:30 +01:00
|
|
|
if(count < nTotalBlocks)
|
2011-07-08 18:05:10 +02:00
|
|
|
{
|
2013-02-10 19:01:30 +01:00
|
|
|
tooltip = tr("Processed %1 of %2 (estimated) blocks of transaction history.").arg(count).arg(nTotalBlocks);
|
2011-07-08 18:05:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-02-10 19:01:30 +01:00
|
|
|
tooltip = tr("Processed %1 blocks of transaction history.").arg(count);
|
2011-07-08 18:05:10 +02:00
|
|
|
}
|
2011-07-18 06:55:05 +02:00
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Set icon state: spinning if catching up, tick otherwise
|
2012-04-14 08:21:22 +02:00
|
|
|
if(secs < 90*60 && count >= nTotalBlocks)
|
2011-07-18 06:55:05 +02:00
|
|
|
{
|
2012-04-13 17:10:50 +02:00
|
|
|
tooltip = tr("Up to date") + QString(".<br>") + tooltip;
|
2012-04-13 18:25:56 +02:00
|
|
|
labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE));
|
2012-05-15 16:57:59 +02:00
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
walletFrame->showOutOfSyncWarning(false);
|
2013-02-10 19:01:30 +01:00
|
|
|
|
|
|
|
progressBarLabel->setVisible(false);
|
|
|
|
progressBar->setVisible(false);
|
2011-07-18 06:55:05 +02:00
|
|
|
}
|
2011-08-04 19:04:42 +02:00
|
|
|
else
|
|
|
|
{
|
2013-02-10 19:01:30 +01:00
|
|
|
// Represent time from last generated block in human readable text
|
|
|
|
QString timeBehindText;
|
|
|
|
if(secs < 48*60*60)
|
|
|
|
{
|
|
|
|
timeBehindText = tr("%n hour(s)","",secs/(60*60));
|
|
|
|
}
|
|
|
|
else if(secs < 14*24*60*60)
|
|
|
|
{
|
|
|
|
timeBehindText = tr("%n day(s)","",secs/(24*60*60));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
timeBehindText = tr("%n week(s)","",secs/(7*24*60*60));
|
|
|
|
}
|
|
|
|
|
|
|
|
progressBarLabel->setVisible(true);
|
|
|
|
progressBar->setFormat(tr("%1 behind").arg(timeBehindText));
|
2013-02-10 19:46:42 +01:00
|
|
|
progressBar->setMaximum(1000000000);
|
|
|
|
progressBar->setValue(clientModel->getVerificationProgress() * 1000000000.0 + 0.5);
|
2013-02-10 19:01:30 +01:00
|
|
|
progressBar->setVisible(true);
|
|
|
|
|
2012-04-13 17:10:50 +02:00
|
|
|
tooltip = tr("Catching up...") + QString("<br>") + tooltip;
|
2011-08-08 17:38:17 +02:00
|
|
|
labelBlocksIcon->setMovie(syncIconMovie);
|
2013-02-10 19:01:30 +01:00
|
|
|
if(count != prevBlocks)
|
|
|
|
syncIconMovie->jumpToNextFrame();
|
|
|
|
prevBlocks = count;
|
2012-05-15 16:57:59 +02:00
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
walletFrame->showOutOfSyncWarning(true);
|
2011-07-18 06:55:05 +02:00
|
|
|
|
2012-04-13 17:10:50 +02:00
|
|
|
tooltip += QString("<br>");
|
2013-02-10 19:01:30 +01:00
|
|
|
tooltip += tr("Last received block was generated %1 ago.").arg(timeBehindText);
|
|
|
|
tooltip += QString("<br>");
|
|
|
|
tooltip += tr("Transactions after this will not yet be visible.");
|
2012-02-25 19:07:53 +01:00
|
|
|
}
|
2011-07-17 17:30:58 +02:00
|
|
|
|
2012-04-13 17:10:50 +02:00
|
|
|
// Don't word-wrap this (fixed-width) tooltip
|
|
|
|
tooltip = QString("<nobr>") + tooltip + QString("</nobr>");
|
|
|
|
|
2011-07-17 17:30:58 +02:00
|
|
|
labelBlocksIcon->setToolTip(tooltip);
|
2011-07-17 14:06:43 +02:00
|
|
|
progressBarLabel->setToolTip(tooltip);
|
|
|
|
progressBar->setToolTip(tooltip);
|
2011-05-12 20:28:07 +02:00
|
|
|
}
|
|
|
|
|
2013-02-16 17:58:45 +01:00
|
|
|
void BitcoinGUI::message(const QString &title, const QString &message, unsigned int style, bool *ret)
|
2011-05-30 20:20:12 +02:00
|
|
|
{
|
2013-04-09 09:54:19 +02:00
|
|
|
QString strTitle = tr("Bitcoin"); // default title
|
2012-11-05 08:04:21 +01:00
|
|
|
// Default to information icon
|
|
|
|
int nMBoxIcon = QMessageBox::Information;
|
|
|
|
int nNotifyIcon = Notificator::Information;
|
|
|
|
|
2013-04-09 09:54:19 +02:00
|
|
|
QString msgType;
|
2013-09-14 11:44:12 +02:00
|
|
|
|
|
|
|
// Prefer supplied title over style based title
|
|
|
|
if (!title.isEmpty()) {
|
|
|
|
msgType = title;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
switch (style) {
|
|
|
|
case CClientUIInterface::MSG_ERROR:
|
|
|
|
msgType = tr("Error");
|
|
|
|
break;
|
|
|
|
case CClientUIInterface::MSG_WARNING:
|
|
|
|
msgType = tr("Warning");
|
|
|
|
break;
|
|
|
|
case CClientUIInterface::MSG_INFORMATION:
|
|
|
|
msgType = tr("Information");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-11-05 08:04:21 +01:00
|
|
|
}
|
2013-09-14 11:44:12 +02:00
|
|
|
// Append title to "Bitcoin - "
|
2013-04-09 09:54:19 +02:00
|
|
|
if (!msgType.isEmpty())
|
|
|
|
strTitle += " - " + msgType;
|
2012-11-05 08:04:21 +01:00
|
|
|
|
|
|
|
// Check for error/warning icon
|
|
|
|
if (style & CClientUIInterface::ICON_ERROR) {
|
|
|
|
nMBoxIcon = QMessageBox::Critical;
|
|
|
|
nNotifyIcon = Notificator::Critical;
|
2012-03-25 20:47:33 +02:00
|
|
|
}
|
2012-11-05 08:04:21 +01:00
|
|
|
else if (style & CClientUIInterface::ICON_WARNING) {
|
|
|
|
nMBoxIcon = QMessageBox::Warning;
|
|
|
|
nNotifyIcon = Notificator::Warning;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display message
|
2012-12-03 13:24:42 +01:00
|
|
|
if (style & CClientUIInterface::MODAL) {
|
2012-11-05 08:04:21 +01:00
|
|
|
// Check for buttons, use OK as default, if none was supplied
|
|
|
|
QMessageBox::StandardButton buttons;
|
|
|
|
if (!(buttons = (QMessageBox::StandardButton)(style & CClientUIInterface::BTN_MASK)))
|
|
|
|
buttons = QMessageBox::Ok;
|
|
|
|
|
2013-09-14 11:44:12 +02:00
|
|
|
QMessageBox mBox((QMessageBox::Icon)nMBoxIcon, strTitle, message, buttons, this);
|
2013-02-16 17:58:45 +01:00
|
|
|
int r = mBox.exec();
|
|
|
|
if (ret != NULL)
|
|
|
|
*ret = r == QMessageBox::Ok;
|
2012-11-05 08:04:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
notificator->notify((Notificator::Class)nNotifyIcon, strTitle, message);
|
2011-05-30 20:20:12 +02:00
|
|
|
}
|
2011-06-05 14:19:57 +02:00
|
|
|
|
|
|
|
void BitcoinGUI::changeEvent(QEvent *e)
|
|
|
|
{
|
2012-03-15 22:30:08 +01:00
|
|
|
QMainWindow::changeEvent(e);
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifndef Q_OS_MAC // Ignored on Mac
|
2011-11-13 08:45:29 +01:00
|
|
|
if(e->type() == QEvent::WindowStateChange)
|
2011-06-05 14:19:57 +02:00
|
|
|
{
|
2011-11-13 08:45:29 +01:00
|
|
|
if(clientModel && clientModel->getOptionsModel()->getMinimizeToTray())
|
2011-06-05 14:19:57 +02:00
|
|
|
{
|
2012-02-17 13:50:32 +01:00
|
|
|
QWindowStateChangeEvent *wsevt = static_cast<QWindowStateChangeEvent*>(e);
|
2012-03-15 22:30:08 +01:00
|
|
|
if(!(wsevt->oldState() & Qt::WindowMinimized) && isMinimized())
|
2011-06-07 18:59:01 +02:00
|
|
|
{
|
2012-03-15 22:30:08 +01:00
|
|
|
QTimer::singleShot(0, this, SLOT(hide()));
|
|
|
|
e->ignore();
|
2011-06-05 14:19:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-07 13:21:45 +02:00
|
|
|
#endif
|
2011-06-05 14:19:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::closeEvent(QCloseEvent *event)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(clientModel)
|
2011-06-05 14:19:57 +02:00
|
|
|
{
|
2012-09-21 19:06:53 +02:00
|
|
|
#ifndef Q_OS_MAC // Ignored on Mac
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!clientModel->getOptionsModel()->getMinimizeToTray() &&
|
|
|
|
!clientModel->getOptionsModel()->getMinimizeOnClose())
|
|
|
|
{
|
2013-04-02 17:30:14 +02:00
|
|
|
QApplication::quit();
|
2011-11-08 21:18:36 +01:00
|
|
|
}
|
2011-10-07 13:21:45 +02:00
|
|
|
#endif
|
2011-11-08 21:18:36 +01:00
|
|
|
}
|
2011-06-05 14:19:57 +02:00
|
|
|
QMainWindow::closeEvent(event);
|
|
|
|
}
|
2011-06-05 17:36:52 +02:00
|
|
|
|
|
|
|
void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
|
|
|
|
{
|
2013-08-24 15:07:17 +02:00
|
|
|
if (!clientModel || !clientModel->getOptionsModel())
|
|
|
|
return;
|
|
|
|
|
2012-09-18 18:26:02 +02:00
|
|
|
QString strMessage = tr("This transaction is over the size limit. You can still send it for a fee of %1, "
|
|
|
|
"which goes to the nodes that process your transaction and helps to support the network. "
|
2013-08-24 15:07:17 +02:00
|
|
|
"Do you want to pay the fee?").arg(BitcoinUnits::formatWithUnit(clientModel->getOptionsModel()->getDisplayUnit(), nFeeRequired));
|
2011-06-05 17:36:52 +02:00
|
|
|
QMessageBox::StandardButton retval = QMessageBox::question(
|
2012-05-06 16:24:15 +02:00
|
|
|
this, tr("Confirm transaction fee"), strMessage,
|
2011-06-05 17:36:52 +02:00
|
|
|
QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
|
|
|
|
*payFee = (retval == QMessageBox::Yes);
|
|
|
|
}
|
2011-06-10 15:05:51 +02:00
|
|
|
|
2013-03-22 18:32:49 +01:00
|
|
|
void BitcoinGUI::incomingTransaction(const QString& date, int unit, qint64 amount, const QString& type, const QString& address)
|
2011-06-10 21:59:29 +02:00
|
|
|
{
|
2013-04-01 14:43:50 +02:00
|
|
|
// On new transaction, make an info balloon
|
2012-11-27 22:02:50 +01:00
|
|
|
message((amount)<0 ? tr("Sent transaction") : tr("Incoming transaction"),
|
|
|
|
tr("Date: %1\n"
|
|
|
|
"Amount: %2\n"
|
|
|
|
"Type: %3\n"
|
|
|
|
"Address: %4\n")
|
|
|
|
.arg(date)
|
2013-03-22 18:32:49 +01:00
|
|
|
.arg(BitcoinUnits::formatWithUnit(unit, amount, true))
|
2012-11-27 22:02:50 +01:00
|
|
|
.arg(type)
|
|
|
|
.arg(address), CClientUIInterface::MSG_INFORMATION);
|
2011-06-10 21:59:29 +02:00
|
|
|
}
|
2011-07-05 22:09:39 +02:00
|
|
|
|
2011-08-07 16:04:48 +02:00
|
|
|
void BitcoinGUI::dragEnterEvent(QDragEnterEvent *event)
|
|
|
|
{
|
2012-03-25 23:25:10 +02:00
|
|
|
// Accept only URIs
|
2011-08-07 16:04:48 +02:00
|
|
|
if(event->mimeData()->hasUrls())
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::dropEvent(QDropEvent *event)
|
|
|
|
{
|
|
|
|
if(event->mimeData()->hasUrls())
|
|
|
|
{
|
2012-03-28 14:55:29 +02:00
|
|
|
int nValidUrisFound = 0;
|
2012-03-25 23:25:10 +02:00
|
|
|
QList<QUrl> uris = event->mimeData()->urls();
|
|
|
|
foreach(const QUrl &uri, uris)
|
2011-08-07 16:04:48 +02:00
|
|
|
{
|
2013-07-22 08:50:39 +02:00
|
|
|
SendCoinsRecipient r;
|
|
|
|
if (GUIUtil::parseBitcoinURI(uri, &r) && walletFrame->handlePaymentRequest(r))
|
2012-03-28 14:55:29 +02:00
|
|
|
nValidUrisFound++;
|
2011-08-07 16:04:48 +02:00
|
|
|
}
|
2012-03-28 14:55:29 +02:00
|
|
|
|
|
|
|
// if valid URIs were found
|
|
|
|
if (nValidUrisFound)
|
2013-03-22 18:32:49 +01:00
|
|
|
walletFrame->gotoSendCoinsPage();
|
2012-03-28 14:55:29 +02:00
|
|
|
else
|
2012-11-27 22:02:50 +01:00
|
|
|
message(tr("URI handling"), tr("URI can not be parsed! This can be caused by an invalid Bitcoin address or malformed URI parameters."),
|
|
|
|
CClientUIInterface::ICON_WARNING);
|
2011-08-07 16:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
2012-10-12 16:08:47 +02:00
|
|
|
bool BitcoinGUI::eventFilter(QObject *object, QEvent *event)
|
|
|
|
{
|
|
|
|
// Catch status tip events
|
|
|
|
if (event->type() == QEvent::StatusTip)
|
|
|
|
{
|
|
|
|
// Prevent adding text from setStatusTip(), if we currently use the status bar for displaying other stuff
|
2013-04-06 12:20:02 +02:00
|
|
|
if (progressBarLabel->isVisible() || progressBar->isVisible())
|
2012-10-12 16:08:47 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return QMainWindow::eventFilter(object, event);
|
|
|
|
}
|
|
|
|
|
2013-07-22 08:50:39 +02:00
|
|
|
void BitcoinGUI::handlePaymentRequest(const SendCoinsRecipient& recipient)
|
2011-12-24 05:27:12 +01:00
|
|
|
{
|
2013-07-22 08:50:39 +02:00
|
|
|
walletFrame->handlePaymentRequest(recipient);
|
|
|
|
}
|
|
|
|
|
2013-09-28 19:29:44 +02:00
|
|
|
void BitcoinGUI::showPaymentACK(const QString& msg)
|
2013-07-22 08:50:39 +02:00
|
|
|
{
|
2013-09-28 19:29:44 +02:00
|
|
|
message(tr("Payment acknowledged"), GUIUtil::HtmlEscape(msg), CClientUIInterface::MODAL);
|
2011-12-24 05:27:12 +01:00
|
|
|
}
|
|
|
|
|
2011-08-23 20:08:42 +02:00
|
|
|
void BitcoinGUI::setEncryptionStatus(int status)
|
|
|
|
{
|
|
|
|
switch(status)
|
|
|
|
{
|
|
|
|
case WalletModel::Unencrypted:
|
|
|
|
labelEncryptionIcon->hide();
|
2011-08-24 22:07:26 +02:00
|
|
|
encryptWalletAction->setChecked(false);
|
|
|
|
changePassphraseAction->setEnabled(false);
|
|
|
|
encryptWalletAction->setEnabled(true);
|
2011-08-23 20:08:42 +02:00
|
|
|
break;
|
|
|
|
case WalletModel::Unlocked:
|
|
|
|
labelEncryptionIcon->show();
|
|
|
|
labelEncryptionIcon->setPixmap(QIcon(":/icons/lock_open").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
|
|
|
|
labelEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>unlocked</b>"));
|
2011-08-24 22:07:26 +02:00
|
|
|
encryptWalletAction->setChecked(true);
|
|
|
|
changePassphraseAction->setEnabled(true);
|
|
|
|
encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported
|
2011-08-23 20:08:42 +02:00
|
|
|
break;
|
|
|
|
case WalletModel::Locked:
|
|
|
|
labelEncryptionIcon->show();
|
|
|
|
labelEncryptionIcon->setPixmap(QIcon(":/icons/lock_closed").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
|
|
|
|
labelEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>locked</b>"));
|
2011-08-24 22:07:26 +02:00
|
|
|
encryptWalletAction->setChecked(true);
|
|
|
|
changePassphraseAction->setEnabled(true);
|
|
|
|
encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported
|
2011-08-23 20:08:42 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-08-24 22:07:26 +02:00
|
|
|
|
2012-06-05 07:23:26 +02:00
|
|
|
void BitcoinGUI::showNormalIfMinimized(bool fToggleHidden)
|
2012-02-17 23:19:52 +01:00
|
|
|
{
|
2012-06-05 07:23:26 +02:00
|
|
|
// activateWindow() (sometimes) helps with keyboard focus on Windows
|
|
|
|
if (isHidden())
|
|
|
|
{
|
2012-02-17 23:19:52 +01:00
|
|
|
show();
|
2012-06-05 07:23:26 +02:00
|
|
|
activateWindow();
|
|
|
|
}
|
|
|
|
else if (isMinimized())
|
|
|
|
{
|
2012-02-17 23:19:52 +01:00
|
|
|
showNormal();
|
2012-06-05 07:23:26 +02:00
|
|
|
activateWindow();
|
|
|
|
}
|
|
|
|
else if (GUIUtil::isObscured(this))
|
|
|
|
{
|
|
|
|
raise();
|
|
|
|
activateWindow();
|
|
|
|
}
|
|
|
|
else if(fToggleHidden)
|
|
|
|
hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::toggleHidden()
|
|
|
|
{
|
|
|
|
showNormalIfMinimized(true);
|
2012-02-17 23:19:52 +01:00
|
|
|
}
|
2013-03-23 23:14:12 +01:00
|
|
|
|
|
|
|
void BitcoinGUI::detectShutdown()
|
|
|
|
{
|
|
|
|
if (ShutdownRequested())
|
|
|
|
QMetaObject::invokeMethod(QCoreApplication::instance(), "quit", Qt::QueuedConnection);
|
|
|
|
}
|