2011-05-07 22:13:39 +02:00
|
|
|
/*
|
2011-05-10 19:03:10 +02:00
|
|
|
* Qt4 bitcoin GUI.
|
|
|
|
*
|
2012-02-07 17:28:30 +01:00
|
|
|
* W.J. van der Laan 20011-2012
|
|
|
|
* The Bitcoin Developers 20011-2012
|
2011-05-07 22:13:39 +02:00
|
|
|
*/
|
2011-05-12 14:49:42 +02:00
|
|
|
#include "bitcoingui.h"
|
|
|
|
#include "transactiontablemodel.h"
|
2011-07-07 17:33:15 +02:00
|
|
|
#include "addressbookpage.h"
|
2011-05-12 14:49:42 +02:00
|
|
|
#include "sendcoinsdialog.h"
|
2011-12-23 16:14:57 +01:00
|
|
|
#include "messagepage.h"
|
2011-05-12 14:49:42 +02:00
|
|
|
#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"
|
2011-06-03 21:03:20 +02:00
|
|
|
#include "editaddressdialog.h"
|
2011-06-05 14:19:57 +02:00
|
|
|
#include "optionsmodel.h"
|
2011-06-10 15:05:51 +02:00
|
|
|
#include "transactiondescdialog.h"
|
2011-06-21 20:34:43 +02:00
|
|
|
#include "addresstablemodel.h"
|
2011-06-28 21:41:56 +02:00
|
|
|
#include "transactionview.h"
|
2011-07-05 22:09:39 +02:00
|
|
|
#include "overviewpage.h"
|
2011-07-25 21:35:45 +02:00
|
|
|
#include "bitcoinunits.h"
|
2011-08-23 20:08:42 +02:00
|
|
|
#include "guiconstants.h"
|
2011-08-24 22:07:26 +02:00
|
|
|
#include "askpassphrasedialog.h"
|
2011-09-03 20:52:54 +02:00
|
|
|
#include "notificator.h"
|
2011-05-07 22:13:39 +02:00
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
#ifdef Q_WS_MAC
|
|
|
|
#include "macdockiconhandler.h"
|
|
|
|
#endif
|
|
|
|
|
2011-05-07 22:13:39 +02:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QMenuBar>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QIcon>
|
2011-05-10 19:03:10 +02:00
|
|
|
#include <QTabWidget>
|
2011-05-07 22:13:39 +02:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QToolBar>
|
|
|
|
#include <QStatusBar>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPushButton>
|
2011-05-09 20:44:46 +02:00
|
|
|
#include <QLocale>
|
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>
|
2011-05-10 19:03:10 +02:00
|
|
|
|
2011-08-07 16:04:48 +02:00
|
|
|
#include <QDragEnterEvent>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2011-05-07 22:13:39 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
BitcoinGUI::BitcoinGUI(QWidget *parent):
|
2011-06-30 18:05:29 +02:00
|
|
|
QMainWindow(parent),
|
|
|
|
clientModel(0),
|
|
|
|
walletModel(0),
|
2012-02-03 19:08:50 +01:00
|
|
|
dummyWidget(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),
|
|
|
|
notificator(0)
|
2011-05-07 22:13:39 +02:00
|
|
|
{
|
|
|
|
resize(850, 550);
|
2011-07-07 10:43:04 +02:00
|
|
|
setWindowTitle(tr("Bitcoin Wallet"));
|
2011-10-07 13:21:45 +02:00
|
|
|
#ifndef Q_WS_MAC
|
2011-05-09 20:44:46 +02:00
|
|
|
setWindowIcon(QIcon(":icons/bitcoin"));
|
2011-10-07 13:21:45 +02:00
|
|
|
#else
|
|
|
|
setUnifiedTitleAndToolBarOnMac(true);
|
|
|
|
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
|
|
|
#endif
|
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
|
2011-05-12 20:16:42 +02:00
|
|
|
createActions();
|
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
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
// Create the tray icon (or setup the dock icon)
|
|
|
|
createTrayIcon();
|
2011-07-05 22:09:39 +02:00
|
|
|
|
2012-02-03 19:08:50 +01:00
|
|
|
// Dummy widget used when restoring window state after minimization
|
|
|
|
dummyWidget = new QWidget();
|
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Create tabs
|
2011-07-07 14:27:16 +02:00
|
|
|
overviewPage = new OverviewPage();
|
2011-05-12 20:16:42 +02:00
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
transactionsPage = new QWidget(this);
|
|
|
|
QVBoxLayout *vbox = new QVBoxLayout();
|
2011-06-28 21:41:56 +02:00
|
|
|
transactionView = new TransactionView(this);
|
|
|
|
vbox->addWidget(transactionView);
|
2011-07-05 22:09:39 +02:00
|
|
|
transactionsPage->setLayout(vbox);
|
|
|
|
|
2011-07-07 17:33:15 +02:00
|
|
|
addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);
|
|
|
|
|
|
|
|
receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);
|
|
|
|
|
|
|
|
sendCoinsPage = new SendCoinsDialog(this);
|
|
|
|
|
2011-12-23 16:14:57 +01:00
|
|
|
messagePage = new MessagePage(this);
|
|
|
|
|
2011-07-05 22:09:39 +02:00
|
|
|
centralWidget = new QStackedWidget(this);
|
|
|
|
centralWidget->addWidget(overviewPage);
|
|
|
|
centralWidget->addWidget(transactionsPage);
|
2011-07-07 17:33:15 +02:00
|
|
|
centralWidget->addWidget(addressBookPage);
|
|
|
|
centralWidget->addWidget(receiveCoinsPage);
|
|
|
|
centralWidget->addWidget(sendCoinsPage);
|
2011-12-23 16:14:57 +01:00
|
|
|
#ifdef FIRST_CLASS_MESSAGING
|
|
|
|
centralWidget->addWidget(messagePage);
|
|
|
|
#endif
|
2011-07-05 22:09:39 +02:00
|
|
|
setCentralWidget(centralWidget);
|
2011-08-28 14:12:26 +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
|
|
|
|
2011-06-18 21:25:38 +02:00
|
|
|
// Progress bar for blocks download
|
2011-06-25 12:39:08 +02:00
|
|
|
progressBarLabel = new QLabel(tr("Synchronizing with network..."));
|
2011-06-18 21:25:38 +02:00
|
|
|
progressBarLabel->setVisible(false);
|
|
|
|
progressBar = new QProgressBar();
|
2011-06-25 12:39:08 +02:00
|
|
|
progressBar->setToolTip(tr("Block chain synchronization in progress"));
|
2011-06-18 21:25:38 +02:00
|
|
|
progressBar->setVisible(false);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Clicking on a transaction on the overview page simply sends you to transaction history page
|
2011-08-04 04:41:01 +02:00
|
|
|
connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));
|
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Doubleclicking on a transaction on the transaction history page shows details
|
|
|
|
connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));
|
2011-08-07 16:04:48 +02:00
|
|
|
|
|
|
|
gotoOverviewPage();
|
2011-05-12 20:16:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
BitcoinGUI::~BitcoinGUI()
|
|
|
|
{
|
|
|
|
#ifdef Q_WS_MAC
|
|
|
|
delete appMenuBar;
|
|
|
|
#endif
|
2012-02-03 19:08:50 +01:00
|
|
|
delete dummyWidget;
|
2011-10-07 13:21:45 +02:00
|
|
|
}
|
|
|
|
|
2011-05-12 20:16:42 +02:00
|
|
|
void BitcoinGUI::createActions()
|
|
|
|
{
|
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);
|
2011-07-24 18:06:07 +02:00
|
|
|
overviewAction->setToolTip(tr("Show general overview of wallet"));
|
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
|
|
|
|
2011-07-07 10:59:00 +02:00
|
|
|
historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);
|
2011-07-24 18:06:07 +02:00
|
|
|
historyAction->setToolTip(tr("Browse transaction history"));
|
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);
|
|
|
|
|
2011-07-07 17:33:15 +02:00
|
|
|
addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Address Book"), this);
|
|
|
|
addressBookAction->setToolTip(tr("Edit the list of stored addresses and labels"));
|
|
|
|
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);
|
|
|
|
|
|
|
|
receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive coins"), this);
|
|
|
|
receiveCoinsAction->setToolTip(tr("Show the list of addresses for receiving payments"));
|
|
|
|
receiveCoinsAction->setCheckable(true);
|
2011-10-09 21:40:03 +02:00
|
|
|
receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));
|
2011-07-07 17:33:15 +02:00
|
|
|
tabGroup->addAction(receiveCoinsAction);
|
|
|
|
|
|
|
|
sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send coins"), this);
|
|
|
|
sendCoinsAction->setToolTip(tr("Send coins to a bitcoin address"));
|
|
|
|
sendCoinsAction->setCheckable(true);
|
2011-10-09 21:40:03 +02:00
|
|
|
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
|
2011-07-07 17:33:15 +02:00
|
|
|
tabGroup->addAction(sendCoinsAction);
|
|
|
|
|
2011-12-23 16:14:57 +01:00
|
|
|
messageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message"), this);
|
|
|
|
messageAction->setToolTip(tr("Prove you control an address"));
|
|
|
|
#ifdef FIRST_CLASS_MESSAGING
|
|
|
|
messageAction->setCheckable(true);
|
|
|
|
#endif
|
|
|
|
tabGroup->addAction(messageAction);
|
|
|
|
|
2012-02-03 19:08:50 +01:00
|
|
|
connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormal()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage()));
|
2012-02-03 19:08:50 +01:00
|
|
|
connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormal()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage()));
|
2012-02-03 19:08:50 +01:00
|
|
|
connect(addressBookAction, SIGNAL(triggered()), this, SLOT(showNormal()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage()));
|
2012-02-03 19:08:50 +01:00
|
|
|
connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(showNormal()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage()));
|
2012-02-03 19:08:50 +01:00
|
|
|
connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormal()));
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage()));
|
2012-02-03 19:08:50 +01:00
|
|
|
connect(messageAction, SIGNAL(triggered()), this, SLOT(showNormal()));
|
2011-12-23 16:14:57 +01:00
|
|
|
connect(messageAction, SIGNAL(triggered()), this, SLOT(gotoMessagePage()));
|
2011-07-07 17:33:15 +02:00
|
|
|
|
2011-10-09 21:06:28 +02:00
|
|
|
quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this);
|
2011-07-07 17:33:15 +02:00
|
|
|
quitAction->setToolTip(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);
|
|
|
|
aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About %1").arg(qApp->applicationName()), this);
|
2011-07-07 17:33:15 +02:00
|
|
|
aboutAction->setToolTip(tr("Show information about Bitcoin"));
|
2011-12-13 17:30:13 +01:00
|
|
|
aboutAction->setMenuRole(QAction::AboutRole);
|
|
|
|
aboutQtAction = new QAction(tr("About &Qt"), this);
|
|
|
|
aboutQtAction->setToolTip(tr("Show information about Qt"));
|
|
|
|
aboutQtAction->setMenuRole(QAction::AboutQtRole);
|
2011-07-07 17:33:15 +02:00
|
|
|
optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);
|
|
|
|
optionsAction->setToolTip(tr("Modify configuration options for bitcoin"));
|
2011-10-07 13:21:45 +02:00
|
|
|
optionsAction->setMenuRole(QAction::PreferencesRole);
|
2011-07-07 17:33:15 +02:00
|
|
|
openBitcoinAction = new QAction(QIcon(":/icons/bitcoin"), tr("Open &Bitcoin"), this);
|
|
|
|
openBitcoinAction->setToolTip(tr("Show the Bitcoin window"));
|
2011-07-07 14:27:16 +02:00
|
|
|
exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);
|
2012-02-12 12:53:20 +01:00
|
|
|
exportAction->setToolTip(tr("Export the data in the current tab to a file"));
|
2011-08-24 22:07:26 +02:00
|
|
|
encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet"), this);
|
|
|
|
encryptWalletAction->setToolTip(tr("Encrypt or decrypt wallet"));
|
|
|
|
encryptWalletAction->setCheckable(true);
|
|
|
|
changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase"), this);
|
|
|
|
changePassphraseAction->setToolTip(tr("Change the passphrase used for wallet encryption"));
|
2011-05-12 20:16:42 +02:00
|
|
|
|
2011-07-07 17:33:15 +02:00
|
|
|
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
|
|
|
|
connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));
|
|
|
|
connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));
|
2011-12-13 17:30:13 +01:00
|
|
|
connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
|
2011-09-03 19:05:54 +02:00
|
|
|
connect(openBitcoinAction, SIGNAL(triggered()), this, SLOT(showNormal()));
|
2011-08-24 22:07:26 +02:00
|
|
|
connect(encryptWalletAction, SIGNAL(triggered(bool)), this, SLOT(encryptWallet(bool)));
|
|
|
|
connect(changePassphraseAction, SIGNAL(triggered()), this, SLOT(changePassphrase()));
|
2011-05-12 20:16:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
void BitcoinGUI::createMenuBar()
|
|
|
|
{
|
|
|
|
#ifdef Q_WS_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"));
|
2012-02-12 12:53:20 +01:00
|
|
|
file->addAction(exportAction);
|
2011-12-23 16:14:57 +01:00
|
|
|
#ifndef FIRST_CLASS_MESSAGING
|
|
|
|
file->addAction(messageAction);
|
|
|
|
file->addSeparator();
|
|
|
|
#endif
|
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"));
|
|
|
|
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-12-23 16:14:57 +01:00
|
|
|
#ifdef FIRST_CLASS_MESSAGING
|
|
|
|
toolbar->addAction(messageAction);
|
|
|
|
#endif
|
2011-10-07 13:21:45 +02:00
|
|
|
|
|
|
|
QToolBar *toolbar2 = addToolBar(tr("Actions toolbar"));
|
|
|
|
toolbar2->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
|
|
|
toolbar2->addAction(exportAction);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(clientModel->isTestNet())
|
|
|
|
{
|
|
|
|
QString title_testnet = windowTitle() + QString(" ") + tr("[testnet]");
|
|
|
|
setWindowTitle(title_testnet);
|
2011-10-07 13:21:45 +02:00
|
|
|
#ifndef Q_WS_MAC
|
2011-11-08 21:18:36 +01:00
|
|
|
setWindowIcon(QIcon(":icons/bitcoin_testnet"));
|
2011-10-07 13:21:45 +02:00
|
|
|
#else
|
2011-11-08 21:18:36 +01:00
|
|
|
MacDockIconHandler::instance()->setIcon(QIcon(":icons/bitcoin_testnet"));
|
2011-10-07 13:21:45 +02:00
|
|
|
#endif
|
2011-11-08 21:18:36 +01:00
|
|
|
if(trayIcon)
|
|
|
|
{
|
|
|
|
trayIcon->setToolTip(title_testnet);
|
|
|
|
trayIcon->setIcon(QIcon(":/icons/toolbar_testnet"));
|
|
|
|
}
|
2011-06-30 19:14:42 +02: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
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
setNumBlocks(clientModel->getNumBlocks());
|
|
|
|
connect(clientModel, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int)));
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
// Report errors from network/worker thread
|
|
|
|
connect(clientModel, SIGNAL(error(QString,QString)), this, SLOT(error(QString,QString)));
|
|
|
|
}
|
2011-06-30 18:05:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::setWalletModel(WalletModel *walletModel)
|
|
|
|
{
|
|
|
|
this->walletModel = walletModel;
|
2011-11-08 21:18:36 +01:00
|
|
|
if(walletModel)
|
|
|
|
{
|
|
|
|
// Report errors from wallet thread
|
|
|
|
connect(walletModel, SIGNAL(error(QString,QString)), this, SLOT(error(QString,QString)));
|
2011-05-22 17:19:43 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
// Put transaction list in tabs
|
|
|
|
transactionView->setModel(walletModel);
|
2011-06-28 21:41:56 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
overviewPage->setModel(walletModel);
|
|
|
|
addressBookPage->setModel(walletModel->getAddressTableModel());
|
|
|
|
receiveCoinsPage->setModel(walletModel->getAddressTableModel());
|
|
|
|
sendCoinsPage->setModel(walletModel);
|
2011-12-23 16:14:57 +01:00
|
|
|
messagePage->setModel(walletModel);
|
2011-07-07 17:33:15 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
setEncryptionStatus(walletModel->getEncryptionStatus());
|
|
|
|
connect(walletModel, SIGNAL(encryptionStatusChanged(int)), this, SLOT(setEncryptionStatus(int)));
|
2011-08-23 20:08:42 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
// Balloon popup for new transaction
|
|
|
|
connect(walletModel->getTransactionTableModel(), SIGNAL(rowsInserted(QModelIndex,int,int)),
|
|
|
|
this, SLOT(incomingTransaction(QModelIndex,int,int)));
|
2011-08-24 22:07:26 +02:00
|
|
|
|
2011-11-08 21:18:36 +01:00
|
|
|
// Ask for passphrase if needed
|
|
|
|
connect(walletModel, SIGNAL(requireUnlock()), this, SLOT(unlockWallet()));
|
|
|
|
}
|
2011-05-22 17:19:43 +02:00
|
|
|
}
|
|
|
|
|
2011-05-12 20:16:42 +02:00
|
|
|
void BitcoinGUI::createTrayIcon()
|
|
|
|
{
|
2011-10-07 13:21:45 +02:00
|
|
|
QMenu *trayIconMenu;
|
|
|
|
#ifndef Q_WS_MAC
|
2011-05-12 20:16:42 +02:00
|
|
|
trayIcon = new QSystemTrayIcon(this);
|
2011-10-07 13:21:45 +02:00
|
|
|
trayIconMenu = new QMenu(this);
|
2011-05-12 20:16:42 +02:00
|
|
|
trayIcon->setContextMenu(trayIconMenu);
|
2011-06-30 19:14:42 +02:00
|
|
|
trayIcon->setToolTip("Bitcoin client");
|
2011-05-13 15:58:27 +02:00
|
|
|
trayIcon->setIcon(QIcon(":/icons/toolbar"));
|
2011-06-05 14:19:57 +02:00
|
|
|
connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
|
|
|
|
this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));
|
2011-05-12 20:16:42 +02:00
|
|
|
trayIcon->show();
|
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();
|
|
|
|
connect(dockIconHandler, SIGNAL(dockIconClicked()), openBitcoinAction, SLOT(trigger()));
|
|
|
|
trayIconMenu = dockIconHandler->dockMenu();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Configuration of the tray icon (or dock icon) icon menu
|
|
|
|
trayIconMenu->addAction(openBitcoinAction);
|
|
|
|
trayIconMenu->addSeparator();
|
2011-12-23 16:14:57 +01:00
|
|
|
trayIconMenu->addAction(messageAction);
|
|
|
|
#ifndef FIRST_CLASS_MESSAGING
|
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
#endif
|
2011-10-07 13:21:45 +02:00
|
|
|
trayIconMenu->addAction(receiveCoinsAction);
|
|
|
|
trayIconMenu->addAction(sendCoinsAction);
|
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(optionsAction);
|
|
|
|
#ifndef Q_WS_MAC // This is built-in on Mac
|
|
|
|
trayIconMenu->addSeparator();
|
|
|
|
trayIconMenu->addAction(quitAction);
|
|
|
|
#endif
|
2011-09-03 20:52:54 +02:00
|
|
|
|
|
|
|
notificator = new Notificator(tr("bitcoin-qt"), trayIcon);
|
2011-05-12 20:16:42 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 13:21:45 +02:00
|
|
|
#ifndef Q_WS_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
|
|
|
{
|
2011-09-03 19:05:54 +02:00
|
|
|
// Click on system tray icon triggers "open bitcoin"
|
2011-07-07 17:33:15 +02:00
|
|
|
openBitcoinAction->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
|
|
|
|
2012-02-03 19:08:50 +01:00
|
|
|
void BitcoinGUI::showNormal()
|
|
|
|
{
|
|
|
|
// Reparent window to the desktop (in case it was hidden on minimize)
|
|
|
|
if(parent() != NULL)
|
|
|
|
setParent(NULL, Qt::Window);
|
|
|
|
QMainWindow::showNormal();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::setNumBlocks(int count)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!clientModel)
|
|
|
|
return;
|
2011-09-11 10:49:30 +02:00
|
|
|
int total = clientModel->getNumBlocksOfPeers();
|
2011-07-17 14:06:43 +02:00
|
|
|
QString tooltip;
|
|
|
|
|
2011-06-18 21:25:38 +02:00
|
|
|
if(count < total)
|
|
|
|
{
|
2011-12-13 20:00:21 +01:00
|
|
|
if (clientModel->getStatusBarWarnings() == "")
|
|
|
|
{
|
|
|
|
progressBarLabel->setVisible(true);
|
|
|
|
progressBarLabel->setText(tr("Synchronizing with network..."));
|
|
|
|
progressBar->setVisible(true);
|
2012-01-17 09:19:23 +01:00
|
|
|
progressBar->setMaximum(total);
|
|
|
|
progressBar->setValue(count);
|
2011-12-13 20:00:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
progressBarLabel->setText(clientModel->getStatusBarWarnings());
|
|
|
|
progressBarLabel->setVisible(true);
|
|
|
|
progressBar->setVisible(false);
|
|
|
|
}
|
2011-07-17 14:06:43 +02:00
|
|
|
tooltip = tr("Downloaded %1 of %2 blocks of transaction history.").arg(count).arg(total);
|
2011-06-18 21:25:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-12-13 20:00:21 +01:00
|
|
|
if (clientModel->getStatusBarWarnings() == "")
|
|
|
|
progressBarLabel->setVisible(false);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
progressBarLabel->setText(clientModel->getStatusBarWarnings());
|
|
|
|
progressBarLabel->setVisible(true);
|
|
|
|
}
|
2011-06-18 21:25:38 +02:00
|
|
|
progressBar->setVisible(false);
|
2011-07-17 14:06:43 +02:00
|
|
|
tooltip = tr("Downloaded %1 blocks of transaction history.").arg(count);
|
2011-06-18 21:25:38 +02:00
|
|
|
}
|
|
|
|
|
2011-07-08 18:05:10 +02:00
|
|
|
QDateTime now = QDateTime::currentDateTime();
|
|
|
|
QDateTime lastBlockDate = clientModel->getLastBlockDate();
|
|
|
|
int secs = lastBlockDate.secsTo(now);
|
|
|
|
QString text;
|
|
|
|
|
2011-07-18 06:55:05 +02:00
|
|
|
// Represent time from last generated block in human readable text
|
|
|
|
if(secs < 60)
|
2011-07-08 18:05:10 +02:00
|
|
|
{
|
2011-07-18 06:55:05 +02:00
|
|
|
text = tr("%n second(s) ago","",secs);
|
2011-07-08 18:05:10 +02:00
|
|
|
}
|
|
|
|
else if(secs < 60*60)
|
|
|
|
{
|
|
|
|
text = tr("%n minute(s) ago","",secs/60);
|
|
|
|
}
|
|
|
|
else if(secs < 24*60*60)
|
|
|
|
{
|
|
|
|
text = tr("%n hour(s) ago","",secs/(60*60));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
text = tr("%n day(s) ago","",secs/(60*60*24));
|
|
|
|
}
|
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
|
2011-07-18 06:55:05 +02:00
|
|
|
if(secs < 30*60)
|
|
|
|
{
|
2011-08-04 19:04:42 +02:00
|
|
|
tooltip = tr("Up to date") + QString("\n") + tooltip;
|
2011-08-23 20:08:42 +02:00
|
|
|
labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
|
2011-07-18 06:55:05 +02:00
|
|
|
}
|
2011-08-04 19:04:42 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
tooltip = tr("Catching up...") + QString("\n") + tooltip;
|
2011-08-08 17:38:17 +02:00
|
|
|
labelBlocksIcon->setMovie(syncIconMovie);
|
|
|
|
syncIconMovie->start();
|
2011-08-04 19:04:42 +02:00
|
|
|
}
|
2011-07-18 06:55:05 +02:00
|
|
|
|
2011-07-17 14:06:43 +02:00
|
|
|
tooltip += QString("\n");
|
2011-07-17 17:30:58 +02:00
|
|
|
tooltip += tr("Last received block was generated %1.").arg(text);
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-12-13 20:00:21 +01:00
|
|
|
void BitcoinGUI::refreshStatusBar()
|
|
|
|
{
|
|
|
|
/* Might display multiple times in the case of multiple alerts
|
|
|
|
static QString prevStatusBar;
|
|
|
|
QString newStatusBar = clientModel->getStatusBarWarnings();
|
|
|
|
if (prevStatusBar != newStatusBar)
|
|
|
|
{
|
|
|
|
prevStatusBar = newStatusBar;
|
|
|
|
error(tr("Network Alert"), newStatusBar);
|
|
|
|
}*/
|
|
|
|
setNumBlocks(clientModel->getNumBlocks());
|
|
|
|
}
|
|
|
|
|
2011-05-30 20:20:12 +02:00
|
|
|
void BitcoinGUI::error(const QString &title, const QString &message)
|
|
|
|
{
|
2011-06-05 14:19:57 +02:00
|
|
|
// Report errors from network/worker thread
|
2011-09-03 20:52:54 +02:00
|
|
|
notificator->notify(Notificator::Critical, title, message);
|
2011-05-30 20:20:12 +02:00
|
|
|
}
|
2011-06-05 14:19:57 +02:00
|
|
|
|
|
|
|
void BitcoinGUI::changeEvent(QEvent *e)
|
|
|
|
{
|
2011-10-07 13:21:45 +02:00
|
|
|
#ifndef Q_WS_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
|
|
|
{
|
2011-11-13 08:45:29 +01:00
|
|
|
if(isMinimized())
|
2011-06-05 14:19:57 +02:00
|
|
|
{
|
2012-02-03 19:08:50 +01:00
|
|
|
// Hiding the window from taskbar
|
|
|
|
setParent(dummyWidget, Qt::SubWindow);
|
|
|
|
return;
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-02-03 19:08:50 +01:00
|
|
|
showNormal();
|
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
|
|
|
QMainWindow::changeEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::closeEvent(QCloseEvent *event)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(clientModel)
|
2011-06-05 14:19:57 +02:00
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
#ifndef Q_WS_MAC // Ignored on Mac
|
|
|
|
if(!clientModel->getOptionsModel()->getMinimizeToTray() &&
|
|
|
|
!clientModel->getOptionsModel()->getMinimizeOnClose())
|
|
|
|
{
|
|
|
|
qApp->quit();
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
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. "
|
2011-07-25 21:35:45 +02:00
|
|
|
"Do you want to pay the fee?").arg(
|
|
|
|
BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired));
|
2011-06-05 17:36:52 +02:00
|
|
|
QMessageBox::StandardButton retval = QMessageBox::question(
|
|
|
|
this, tr("Sending..."), strMessage,
|
|
|
|
QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
|
|
|
|
*payFee = (retval == QMessageBox::Yes);
|
|
|
|
}
|
2011-06-10 15:05:51 +02:00
|
|
|
|
2011-06-10 21:59:29 +02:00
|
|
|
void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int end)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!walletModel || !clientModel)
|
|
|
|
return;
|
2011-06-30 18:05:29 +02:00
|
|
|
TransactionTableModel *ttm = walletModel->getTransactionTableModel();
|
2011-06-26 22:47:02 +02:00
|
|
|
qint64 amount = ttm->index(start, TransactionTableModel::Amount, parent)
|
2011-06-10 21:59:29 +02:00
|
|
|
.data(Qt::EditRole).toULongLong();
|
2011-07-11 21:01:53 +02:00
|
|
|
if(!clientModel->inInitialBlockDownload())
|
2011-06-10 21:59:29 +02:00
|
|
|
{
|
2011-08-08 17:38:17 +02:00
|
|
|
// On new transaction, make an info balloon
|
2011-06-18 13:13:48 +02:00
|
|
|
// Unless the initial block download is in progress, to prevent balloon-spam
|
2011-06-10 21:59:29 +02:00
|
|
|
QString date = ttm->index(start, TransactionTableModel::Date, parent)
|
|
|
|
.data().toString();
|
2011-06-26 22:47:02 +02:00
|
|
|
QString type = ttm->index(start, TransactionTableModel::Type, parent)
|
|
|
|
.data().toString();
|
|
|
|
QString address = ttm->index(start, TransactionTableModel::ToAddress, parent)
|
2011-06-10 21:59:29 +02:00
|
|
|
.data().toString();
|
2011-09-03 20:52:54 +02:00
|
|
|
QIcon icon = qvariant_cast<QIcon>(ttm->index(start,
|
|
|
|
TransactionTableModel::ToAddress, parent)
|
|
|
|
.data(Qt::DecorationRole));
|
|
|
|
|
|
|
|
notificator->notify(Notificator::Information,
|
|
|
|
(amount)<0 ? tr("Sent transaction") :
|
|
|
|
tr("Incoming transaction"),
|
|
|
|
tr("Date: %1\n"
|
|
|
|
"Amount: %2\n"
|
|
|
|
"Type: %3\n"
|
|
|
|
"Address: %4\n")
|
|
|
|
.arg(date)
|
|
|
|
.arg(BitcoinUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), amount, true))
|
|
|
|
.arg(type)
|
|
|
|
.arg(address), icon);
|
2011-06-10 21:59:29 +02:00
|
|
|
}
|
|
|
|
}
|
2011-07-05 22:09:39 +02:00
|
|
|
|
2011-07-07 17:33:15 +02:00
|
|
|
void BitcoinGUI::gotoOverviewPage()
|
2011-07-05 22:09:39 +02:00
|
|
|
{
|
|
|
|
overviewAction->setChecked(true);
|
|
|
|
centralWidget->setCurrentWidget(overviewPage);
|
2011-07-09 10:53:55 +02:00
|
|
|
|
2011-07-07 14:27:16 +02:00
|
|
|
exportAction->setEnabled(false);
|
2011-07-09 10:53:55 +02:00
|
|
|
disconnect(exportAction, SIGNAL(triggered()), 0, 0);
|
2011-07-05 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
2011-07-07 17:33:15 +02:00
|
|
|
void BitcoinGUI::gotoHistoryPage()
|
2011-07-05 22:09:39 +02:00
|
|
|
{
|
|
|
|
historyAction->setChecked(true);
|
|
|
|
centralWidget->setCurrentWidget(transactionsPage);
|
2011-07-09 10:53:55 +02:00
|
|
|
|
2011-07-07 14:27:16 +02:00
|
|
|
exportAction->setEnabled(true);
|
2011-07-09 10:53:55 +02:00
|
|
|
disconnect(exportAction, SIGNAL(triggered()), 0, 0);
|
|
|
|
connect(exportAction, SIGNAL(triggered()), transactionView, SLOT(exportClicked()));
|
2011-07-07 14:27:16 +02:00
|
|
|
}
|
|
|
|
|
2011-07-07 17:33:15 +02:00
|
|
|
void BitcoinGUI::gotoAddressBookPage()
|
|
|
|
{
|
|
|
|
addressBookAction->setChecked(true);
|
|
|
|
centralWidget->setCurrentWidget(addressBookPage);
|
2011-07-09 10:53:55 +02:00
|
|
|
|
|
|
|
exportAction->setEnabled(true);
|
|
|
|
disconnect(exportAction, SIGNAL(triggered()), 0, 0);
|
|
|
|
connect(exportAction, SIGNAL(triggered()), addressBookPage, SLOT(exportClicked()));
|
2011-07-07 17:33:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoReceiveCoinsPage()
|
|
|
|
{
|
|
|
|
receiveCoinsAction->setChecked(true);
|
|
|
|
centralWidget->setCurrentWidget(receiveCoinsPage);
|
2011-07-09 10:53:55 +02:00
|
|
|
|
|
|
|
exportAction->setEnabled(true);
|
|
|
|
disconnect(exportAction, SIGNAL(triggered()), 0, 0);
|
|
|
|
connect(exportAction, SIGNAL(triggered()), receiveCoinsPage, SLOT(exportClicked()));
|
2011-07-07 17:33:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoSendCoinsPage()
|
|
|
|
{
|
|
|
|
sendCoinsAction->setChecked(true);
|
|
|
|
centralWidget->setCurrentWidget(sendCoinsPage);
|
|
|
|
|
2011-07-09 10:53:55 +02:00
|
|
|
exportAction->setEnabled(false);
|
|
|
|
disconnect(exportAction, SIGNAL(triggered()), 0, 0);
|
2011-07-05 22:09:39 +02:00
|
|
|
}
|
2011-07-07 14:27:16 +02:00
|
|
|
|
2011-12-23 16:14:57 +01:00
|
|
|
void BitcoinGUI::gotoMessagePage()
|
|
|
|
{
|
|
|
|
#ifdef FIRST_CLASS_MESSAGING
|
|
|
|
messageAction->setChecked(true);
|
|
|
|
centralWidget->setCurrentWidget(messagePage);
|
|
|
|
|
|
|
|
exportAction->setEnabled(false);
|
|
|
|
disconnect(exportAction, SIGNAL(triggered()), 0, 0);
|
|
|
|
#else
|
|
|
|
messagePage->show();
|
|
|
|
messagePage->setFocus();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::gotoMessagePage(QString addr)
|
|
|
|
{
|
|
|
|
gotoMessagePage();
|
|
|
|
messagePage->setAddress(addr);
|
|
|
|
}
|
|
|
|
|
2011-08-07 16:04:48 +02:00
|
|
|
void BitcoinGUI::dragEnterEvent(QDragEnterEvent *event)
|
|
|
|
{
|
|
|
|
// Accept only URLs
|
|
|
|
if(event->mimeData()->hasUrls())
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::dropEvent(QDropEvent *event)
|
|
|
|
{
|
|
|
|
if(event->mimeData()->hasUrls())
|
|
|
|
{
|
|
|
|
gotoSendCoinsPage();
|
|
|
|
QList<QUrl> urls = event->mimeData()->urls();
|
|
|
|
foreach(const QUrl &url, urls)
|
|
|
|
{
|
|
|
|
sendCoinsPage->handleURL(&url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
|
2011-12-24 05:27:12 +01:00
|
|
|
void BitcoinGUI::handleURL(QString strURL)
|
|
|
|
{
|
|
|
|
gotoSendCoinsPage();
|
|
|
|
QUrl url = QUrl(strURL);
|
|
|
|
sendCoinsPage->handleURL(&url);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
void BitcoinGUI::encryptWallet(bool status)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!walletModel)
|
|
|
|
return;
|
2011-08-24 22:07:26 +02:00
|
|
|
AskPassphraseDialog dlg(status ? AskPassphraseDialog::Encrypt:
|
|
|
|
AskPassphraseDialog::Decrypt, this);
|
|
|
|
dlg.setModel(walletModel);
|
|
|
|
dlg.exec();
|
|
|
|
|
|
|
|
setEncryptionStatus(walletModel->getEncryptionStatus());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::changePassphrase()
|
|
|
|
{
|
|
|
|
AskPassphraseDialog dlg(AskPassphraseDialog::ChangePass, this);
|
|
|
|
dlg.setModel(walletModel);
|
|
|
|
dlg.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BitcoinGUI::unlockWallet()
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!walletModel)
|
|
|
|
return;
|
2011-08-31 16:08:31 +02:00
|
|
|
// Unlock wallet when requested by wallet model
|
2011-08-24 22:07:26 +02:00
|
|
|
if(walletModel->getEncryptionStatus() == WalletModel::Locked)
|
|
|
|
{
|
|
|
|
AskPassphraseDialog dlg(AskPassphraseDialog::Unlock, this);
|
|
|
|
dlg.setModel(walletModel);
|
|
|
|
dlg.exec();
|
|
|
|
}
|
|
|
|
}
|