Merge branch '0.6.0.x' into 0.6.x
[novacoin.git] / src / qt / bitcoingui.cpp
1 /*
2  * Qt4 bitcoin GUI.
3  *
4  * W.J. van der Laan 2011-2012
5  * The Bitcoin Developers 2011-2012
6  */
7 #include "bitcoingui.h"
8 #include "transactiontablemodel.h"
9 #include "addressbookpage.h"
10 #include "sendcoinsdialog.h"
11 #include "messagepage.h"
12 #include "optionsdialog.h"
13 #include "aboutdialog.h"
14 #include "clientmodel.h"
15 #include "walletmodel.h"
16 #include "editaddressdialog.h"
17 #include "optionsmodel.h"
18 #include "transactiondescdialog.h"
19 #include "addresstablemodel.h"
20 #include "transactionview.h"
21 #include "overviewpage.h"
22 #include "bitcoinunits.h"
23 #include "guiconstants.h"
24 #include "askpassphrasedialog.h"
25 #include "notificator.h"
26 #include "guiutil.h"
27
28 #ifdef Q_WS_MAC
29 #include "macdockiconhandler.h"
30 #endif
31
32 #include <QApplication>
33 #include <QMainWindow>
34 #include <QMenuBar>
35 #include <QMenu>
36 #include <QIcon>
37 #include <QTabWidget>
38 #include <QVBoxLayout>
39 #include <QToolBar>
40 #include <QStatusBar>
41 #include <QLabel>
42 #include <QLineEdit>
43 #include <QPushButton>
44 #include <QLocale>
45 #include <QMessageBox>
46 #include <QProgressBar>
47 #include <QStackedWidget>
48 #include <QDateTime>
49 #include <QMovie>
50 #include <QFileDialog>
51 #include <QDesktopServices>
52 #include <QTimer>
53
54 #include <QDragEnterEvent>
55 #include <QUrl>
56
57 #include <iostream>
58
59 BitcoinGUI::BitcoinGUI(QWidget *parent):
60     QMainWindow(parent),
61     clientModel(0),
62     walletModel(0),
63     encryptWalletAction(0),
64     changePassphraseAction(0),
65     aboutQtAction(0),
66     trayIcon(0),
67     notificator(0)
68 {
69     resize(850, 550);
70     setWindowTitle(tr("Bitcoin Wallet"));
71 #ifndef Q_WS_MAC
72     setWindowIcon(QIcon(":icons/bitcoin"));
73 #else
74     setUnifiedTitleAndToolBarOnMac(true);
75     QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
76 #endif
77     // Accept D&D of URIs
78     setAcceptDrops(true);
79
80     // Create actions for the toolbar, menu bar and tray/dock icon
81     createActions();
82
83     // Create application menu bar
84     createMenuBar();
85
86     // Create the toolbars
87     createToolBars();
88
89     // Create the tray icon (or setup the dock icon)
90     createTrayIcon();
91
92     // Create tabs
93     overviewPage = new OverviewPage();
94
95     transactionsPage = new QWidget(this);
96     QVBoxLayout *vbox = new QVBoxLayout();
97     transactionView = new TransactionView(this);
98     vbox->addWidget(transactionView);
99     transactionsPage->setLayout(vbox);
100
101     addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);
102
103     receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);
104
105     sendCoinsPage = new SendCoinsDialog(this);
106
107     messagePage = new MessagePage(this);
108
109     centralWidget = new QStackedWidget(this);
110     centralWidget->addWidget(overviewPage);
111     centralWidget->addWidget(transactionsPage);
112     centralWidget->addWidget(addressBookPage);
113     centralWidget->addWidget(receiveCoinsPage);
114     centralWidget->addWidget(sendCoinsPage);
115 #ifdef FIRST_CLASS_MESSAGING
116     centralWidget->addWidget(messagePage);
117 #endif
118     setCentralWidget(centralWidget);
119
120     // Create status bar
121     statusBar();
122
123     // Status bar notification icons
124     QFrame *frameBlocks = new QFrame();
125     frameBlocks->setContentsMargins(0,0,0,0);
126     frameBlocks->setMinimumWidth(56);
127     frameBlocks->setMaximumWidth(56);
128     QHBoxLayout *frameBlocksLayout = new QHBoxLayout(frameBlocks);
129     frameBlocksLayout->setContentsMargins(3,0,3,0);
130     frameBlocksLayout->setSpacing(3);
131     labelEncryptionIcon = new QLabel();
132     labelConnectionsIcon = new QLabel();
133     labelBlocksIcon = new QLabel();
134     frameBlocksLayout->addStretch();
135     frameBlocksLayout->addWidget(labelEncryptionIcon);
136     frameBlocksLayout->addStretch();
137     frameBlocksLayout->addWidget(labelConnectionsIcon);
138     frameBlocksLayout->addStretch();
139     frameBlocksLayout->addWidget(labelBlocksIcon);
140     frameBlocksLayout->addStretch();
141
142     // Progress bar and label for blocks download
143     progressBarLabel = new QLabel();
144     progressBarLabel->setVisible(false);
145     progressBar = new QProgressBar();
146     progressBar->setAlignment(Qt::AlignCenter);
147     progressBar->setVisible(false);
148
149     statusBar()->addWidget(progressBarLabel);
150     statusBar()->addWidget(progressBar);
151     statusBar()->addPermanentWidget(frameBlocks);
152
153     syncIconMovie = new QMovie(":/movies/update_spinner", "mng", this);
154
155     // Clicking on a transaction on the overview page simply sends you to transaction history page
156     connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), this, SLOT(gotoHistoryPage()));
157
158     // Doubleclicking on a transaction on the transaction history page shows details
159     connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails()));
160
161     gotoOverviewPage();
162 }
163
164 BitcoinGUI::~BitcoinGUI()
165 {
166     if(trayIcon) // Hide tray icon, as deleting will let it linger until quit (on Ubuntu)
167         trayIcon->hide();
168 #ifdef Q_WS_MAC
169     delete appMenuBar;
170 #endif
171 }
172
173 void BitcoinGUI::createActions()
174 {
175     QActionGroup *tabGroup = new QActionGroup(this);
176
177     overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this);
178     overviewAction->setToolTip(tr("Show general overview of wallet"));
179     overviewAction->setCheckable(true);
180     overviewAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_1));
181     tabGroup->addAction(overviewAction);
182
183     historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);
184     historyAction->setToolTip(tr("Browse transaction history"));
185     historyAction->setCheckable(true);
186     historyAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_4));
187     tabGroup->addAction(historyAction);
188
189     addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Address Book"), this);
190     addressBookAction->setToolTip(tr("Edit the list of stored addresses and labels"));
191     addressBookAction->setCheckable(true);
192     addressBookAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5));
193     tabGroup->addAction(addressBookAction);
194
195     receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive coins"), this);
196     receiveCoinsAction->setToolTip(tr("Show the list of addresses for receiving payments"));
197     receiveCoinsAction->setCheckable(true);
198     receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));
199     tabGroup->addAction(receiveCoinsAction);
200
201     sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send coins"), this);
202     sendCoinsAction->setToolTip(tr("Send coins to a bitcoin address"));
203     sendCoinsAction->setCheckable(true);
204     sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
205     tabGroup->addAction(sendCoinsAction);
206
207     messageAction = new QAction(QIcon(":/icons/edit"), tr("Sign &message"), this);
208     messageAction->setToolTip(tr("Prove you control an address"));
209 #ifdef FIRST_CLASS_MESSAGING
210     messageAction->setCheckable(true);
211 #endif
212     tabGroup->addAction(messageAction);
213
214     connect(overviewAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
215     connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage()));
216     connect(historyAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
217     connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage()));
218     connect(addressBookAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
219     connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage()));
220     connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
221     connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage()));
222     connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
223     connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage()));
224     connect(messageAction, SIGNAL(triggered()), this, SLOT(showNormalIfMinimized()));
225     connect(messageAction, SIGNAL(triggered()), this, SLOT(gotoMessagePage()));
226
227     quitAction = new QAction(QIcon(":/icons/quit"), tr("E&xit"), this);
228     quitAction->setToolTip(tr("Quit application"));
229     quitAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
230     quitAction->setMenuRole(QAction::QuitRole);
231     aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About %1").arg(qApp->applicationName()), this);
232     aboutAction->setToolTip(tr("Show information about Bitcoin"));
233     aboutAction->setMenuRole(QAction::AboutRole);
234     aboutQtAction = new QAction(tr("About &Qt"), this);
235     aboutQtAction->setToolTip(tr("Show information about Qt"));
236     aboutQtAction->setMenuRole(QAction::AboutQtRole);
237     optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);
238     optionsAction->setToolTip(tr("Modify configuration options for bitcoin"));
239     optionsAction->setMenuRole(QAction::PreferencesRole);
240     toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("Show/Hide &Bitcoin"), this);
241     toggleHideAction->setToolTip(tr("Show or hide the Bitcoin window"));
242     exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);
243     exportAction->setToolTip(tr("Export the data in the current tab to a file"));
244     encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet"), this);
245     encryptWalletAction->setToolTip(tr("Encrypt or decrypt wallet"));
246     encryptWalletAction->setCheckable(true);
247     backupWalletAction = new QAction(QIcon(":/icons/filesave"), tr("&Backup Wallet"), this);
248     backupWalletAction->setToolTip(tr("Backup wallet to another location"));
249     changePassphraseAction = new QAction(QIcon(":/icons/key"), tr("&Change Passphrase"), this);
250     changePassphraseAction->setToolTip(tr("Change the passphrase used for wallet encryption"));
251
252     connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
253     connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));
254     connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));
255     connect(aboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
256     connect(toggleHideAction, SIGNAL(triggered()), this, SLOT(toggleHidden()));
257     connect(encryptWalletAction, SIGNAL(triggered(bool)), this, SLOT(encryptWallet(bool)));
258     connect(backupWalletAction, SIGNAL(triggered()), this, SLOT(backupWallet()));
259     connect(changePassphraseAction, SIGNAL(triggered()), this, SLOT(changePassphrase()));
260 }
261
262 void BitcoinGUI::createMenuBar()
263 {
264 #ifdef Q_WS_MAC
265     // Create a decoupled menu bar on Mac which stays even if the window is closed
266     appMenuBar = new QMenuBar();
267 #else
268     // Get the main window's menu bar on other platforms
269     appMenuBar = menuBar();
270 #endif
271
272     // Configure the menus
273     QMenu *file = appMenuBar->addMenu(tr("&File"));
274     file->addAction(backupWalletAction);
275     file->addAction(exportAction);
276 #ifndef FIRST_CLASS_MESSAGING
277     file->addAction(messageAction);
278 #endif
279     file->addSeparator();
280     file->addAction(quitAction);
281
282     QMenu *settings = appMenuBar->addMenu(tr("&Settings"));
283     settings->addAction(encryptWalletAction);
284     settings->addAction(changePassphraseAction);
285     settings->addSeparator();
286     settings->addAction(optionsAction);
287
288     QMenu *help = appMenuBar->addMenu(tr("&Help"));
289     help->addAction(aboutAction);
290     help->addAction(aboutQtAction);
291 }
292
293 void BitcoinGUI::createToolBars()
294 {
295     QToolBar *toolbar = addToolBar(tr("Tabs toolbar"));
296     toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
297     toolbar->addAction(overviewAction);
298     toolbar->addAction(sendCoinsAction);
299     toolbar->addAction(receiveCoinsAction);
300     toolbar->addAction(historyAction);
301     toolbar->addAction(addressBookAction);
302 #ifdef FIRST_CLASS_MESSAGING
303     toolbar->addAction(messageAction);
304 #endif
305
306     QToolBar *toolbar2 = addToolBar(tr("Actions toolbar"));
307     toolbar2->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
308     toolbar2->addAction(exportAction);
309 }
310
311 void BitcoinGUI::setClientModel(ClientModel *clientModel)
312 {
313     this->clientModel = clientModel;
314     if(clientModel)
315     {
316         if(clientModel->isTestNet())
317         {
318             QString title_testnet = windowTitle() + QString(" ") + tr("[testnet]");
319             setWindowTitle(title_testnet);
320 #ifndef Q_WS_MAC
321             setWindowIcon(QIcon(":icons/bitcoin_testnet"));
322 #else
323             MacDockIconHandler::instance()->setIcon(QIcon(":icons/bitcoin_testnet"));
324 #endif
325             if(trayIcon)
326             {
327                 trayIcon->setToolTip(title_testnet);
328                 trayIcon->setIcon(QIcon(":/icons/toolbar_testnet"));
329             }
330         }
331
332         // Keep up to date with client
333         setNumConnections(clientModel->getNumConnections());
334         connect(clientModel, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int)));
335
336         setNumBlocks(clientModel->getNumBlocks());
337         connect(clientModel, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int)));
338
339         // Report errors from network/worker thread
340         connect(clientModel, SIGNAL(error(QString,QString, bool)), this, SLOT(error(QString,QString,bool)));
341     }
342 }
343
344 void BitcoinGUI::setWalletModel(WalletModel *walletModel)
345 {
346     this->walletModel = walletModel;
347     if(walletModel)
348     {
349         // Report errors from wallet thread
350         connect(walletModel, SIGNAL(error(QString,QString,bool)), this, SLOT(error(QString,QString,bool)));
351
352         // Put transaction list in tabs
353         transactionView->setModel(walletModel);
354
355         overviewPage->setModel(walletModel);
356         addressBookPage->setModel(walletModel->getAddressTableModel());
357         receiveCoinsPage->setModel(walletModel->getAddressTableModel());
358         sendCoinsPage->setModel(walletModel);
359         messagePage->setModel(walletModel);
360
361         setEncryptionStatus(walletModel->getEncryptionStatus());
362         connect(walletModel, SIGNAL(encryptionStatusChanged(int)), this, SLOT(setEncryptionStatus(int)));
363
364         // Balloon popup for new transaction
365         connect(walletModel->getTransactionTableModel(), SIGNAL(rowsInserted(QModelIndex,int,int)),
366                 this, SLOT(incomingTransaction(QModelIndex,int,int)));
367
368         // Ask for passphrase if needed
369         connect(walletModel, SIGNAL(requireUnlock()), this, SLOT(unlockWallet()));
370     }
371 }
372
373 void BitcoinGUI::createTrayIcon()
374 {
375     QMenu *trayIconMenu;
376 #ifndef Q_WS_MAC
377     trayIcon = new QSystemTrayIcon(this);
378     trayIconMenu = new QMenu(this);
379     trayIcon->setContextMenu(trayIconMenu);
380     trayIcon->setToolTip(tr("Bitcoin client"));
381     trayIcon->setIcon(QIcon(":/icons/toolbar"));
382     connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
383             this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));
384     trayIcon->show();
385 #else
386     // Note: On Mac, the dock icon is used to provide the tray's functionality.
387     MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance();
388     trayIconMenu = dockIconHandler->dockMenu();
389 #endif
390
391     // Configuration of the tray icon (or dock icon) icon menu
392     trayIconMenu->addAction(toggleHideAction);
393     trayIconMenu->addSeparator();
394     trayIconMenu->addAction(messageAction);
395 #ifndef FIRST_CLASS_MESSAGING
396     trayIconMenu->addSeparator();
397 #endif
398     trayIconMenu->addAction(receiveCoinsAction);
399     trayIconMenu->addAction(sendCoinsAction);
400     trayIconMenu->addSeparator();
401     trayIconMenu->addAction(optionsAction);
402 #ifndef Q_WS_MAC // This is built-in on Mac
403     trayIconMenu->addSeparator();
404     trayIconMenu->addAction(quitAction);
405 #endif
406
407     notificator = new Notificator(tr("bitcoin-qt"), trayIcon);
408 }
409
410 #ifndef Q_WS_MAC
411 void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason)
412 {
413     if(reason == QSystemTrayIcon::Trigger)
414     {
415         // Click on system tray icon triggers "show/hide bitcoin"
416         toggleHideAction->trigger();
417     }
418 }
419 #endif
420
421 void BitcoinGUI::toggleHidden()
422 {
423     // activateWindow() (sometimes) helps with keyboard focus on Windows
424     if (isHidden())
425     {
426         show();
427         activateWindow();
428     }
429     else if (isMinimized())
430     {
431         showNormal();
432         activateWindow();
433     }
434     else if (GUIUtil::isObscured(this))
435     {
436         raise();
437         activateWindow();
438     }
439     else
440         hide();
441 }
442
443 void BitcoinGUI::optionsClicked()
444 {
445     if(!clientModel || !clientModel->getOptionsModel())
446         return;
447     OptionsDialog dlg;
448     dlg.setModel(clientModel->getOptionsModel());
449     dlg.exec();
450 }
451
452 void BitcoinGUI::aboutClicked()
453 {
454     AboutDialog dlg;
455     dlg.setModel(clientModel);
456     dlg.exec();
457 }
458
459 void BitcoinGUI::setNumConnections(int count)
460 {
461     QString icon;
462     switch(count)
463     {
464     case 0: icon = ":/icons/connect_0"; break;
465     case 1: case 2: case 3: icon = ":/icons/connect_1"; break;
466     case 4: case 5: case 6: icon = ":/icons/connect_2"; break;
467     case 7: case 8: case 9: icon = ":/icons/connect_3"; break;
468     default: icon = ":/icons/connect_4"; break;
469     }
470     labelConnectionsIcon->setPixmap(QIcon(icon).pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
471     labelConnectionsIcon->setToolTip(tr("%n active connection(s) to Bitcoin network", "", count));
472 }
473
474 void BitcoinGUI::setNumBlocks(int count)
475 {
476     // don't show / hide progressBar and it's label if we have no connection(s) to the network
477     if (!clientModel || clientModel->getNumConnections() == 0)
478     {
479         progressBarLabel->setVisible(false);
480         progressBar->setVisible(false);
481
482         return;
483     }
484
485     int nTotalBlocks = clientModel->getNumBlocksOfPeers();
486     QString tooltip;
487
488     if(count < nTotalBlocks)
489     {
490         int nRemainingBlocks = nTotalBlocks - count;
491         float nPercentageDone = count / (nTotalBlocks * 0.01f);
492
493         if (clientModel->getStatusBarWarnings() == "")
494         {
495             progressBarLabel->setText(tr("Synchronizing with network..."));
496             progressBarLabel->setVisible(true);
497             progressBar->setFormat(tr("~%n block(s) remaining", "", nRemainingBlocks));
498             progressBar->setMaximum(nTotalBlocks);
499             progressBar->setValue(count);
500             progressBar->setVisible(true);
501         }
502         else
503         {
504             progressBarLabel->setText(clientModel->getStatusBarWarnings());
505             progressBarLabel->setVisible(true);
506             progressBar->setVisible(false);
507         }
508         tooltip = tr("Downloaded %1 of %2 blocks of transaction history (%3% done).").arg(count).arg(nTotalBlocks).arg(nPercentageDone, 0, 'f', 2);
509     }
510     else
511     {
512         if (clientModel->getStatusBarWarnings() == "")
513             progressBarLabel->setVisible(false);
514         else
515         {
516             progressBarLabel->setText(clientModel->getStatusBarWarnings());
517             progressBarLabel->setVisible(true);
518         }
519         progressBar->setVisible(false);
520         tooltip = tr("Downloaded %1 blocks of transaction history.").arg(count);
521     }
522
523     QDateTime now = QDateTime::currentDateTime();
524     QDateTime lastBlockDate = clientModel->getLastBlockDate();
525     int secs = lastBlockDate.secsTo(now);
526     QString text;
527
528     // Represent time from last generated block in human readable text
529     if(secs <= 0)
530     {
531         // Fully up to date. Leave text empty.
532     }
533     else if(secs < 60)
534     {
535         text = tr("%n second(s) ago","",secs);
536     }
537     else if(secs < 60*60)
538     {
539         text = tr("%n minute(s) ago","",secs/60);
540     }
541     else if(secs < 24*60*60)
542     {
543         text = tr("%n hour(s) ago","",secs/(60*60));
544     }
545     else
546     {
547         text = tr("%n day(s) ago","",secs/(60*60*24));
548     }
549
550     // Set icon state: spinning if catching up, tick otherwise
551     if(secs < 90*60 && count >= nTotalBlocks)
552     {
553         tooltip = tr("Up to date") + QString(".\n") + tooltip;
554         labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE));
555     }
556     else
557     {
558         tooltip = tr("Catching up...") + QString("\n") + tooltip;
559         labelBlocksIcon->setMovie(syncIconMovie);
560         syncIconMovie->start();
561     }
562
563     if(!text.isEmpty())
564     {
565         tooltip += QString("\n");
566         tooltip += tr("Last received block was generated %1.").arg(text);
567     }
568
569     labelBlocksIcon->setToolTip(tooltip);
570     progressBarLabel->setToolTip(tooltip);
571     progressBar->setToolTip(tooltip);
572 }
573
574 void BitcoinGUI::error(const QString &title, const QString &message, bool modal)
575 {
576     // Report errors from network/worker thread
577     if(modal)
578     {
579         QMessageBox::critical(this, title, message, QMessageBox::Ok, QMessageBox::Ok);
580     } else {
581         notificator->notify(Notificator::Critical, title, message);
582     }
583 }
584
585 void BitcoinGUI::changeEvent(QEvent *e)
586 {
587     QMainWindow::changeEvent(e);
588 #ifndef Q_WS_MAC // Ignored on Mac
589     if(e->type() == QEvent::WindowStateChange)
590     {
591         if(clientModel && clientModel->getOptionsModel()->getMinimizeToTray())
592         {
593             QWindowStateChangeEvent *wsevt = static_cast<QWindowStateChangeEvent*>(e);
594             if(!(wsevt->oldState() & Qt::WindowMinimized) && isMinimized())
595             {
596                 QTimer::singleShot(0, this, SLOT(hide()));
597                 e->ignore();
598             }
599         }
600     }
601 #endif
602 }
603
604 void BitcoinGUI::closeEvent(QCloseEvent *event)
605 {
606     if(clientModel)
607     {
608 #ifndef Q_WS_MAC // Ignored on Mac
609         if(!clientModel->getOptionsModel()->getMinimizeToTray() &&
610            !clientModel->getOptionsModel()->getMinimizeOnClose())
611         {
612             qApp->quit();
613         }
614 #endif
615     }
616     QMainWindow::closeEvent(event);
617 }
618
619 void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
620 {
621     QString strMessage =
622         tr("This transaction is over the size limit.  You can still send it for a fee of %1, "
623           "which goes to the nodes that process your transaction and helps to support the network.  "
624           "Do you want to pay the fee?").arg(
625                 BitcoinUnits::formatWithUnit(BitcoinUnits::BTC, nFeeRequired));
626     QMessageBox::StandardButton retval = QMessageBox::question(
627           this, tr("Sending..."), strMessage,
628           QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
629     *payFee = (retval == QMessageBox::Yes);
630 }
631
632 void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int end)
633 {
634     if(!walletModel || !clientModel)
635         return;
636     TransactionTableModel *ttm = walletModel->getTransactionTableModel();
637     qint64 amount = ttm->index(start, TransactionTableModel::Amount, parent)
638                     .data(Qt::EditRole).toULongLong();
639     if(!clientModel->inInitialBlockDownload())
640     {
641         // On new transaction, make an info balloon
642         // Unless the initial block download is in progress, to prevent balloon-spam
643         QString date = ttm->index(start, TransactionTableModel::Date, parent)
644                         .data().toString();
645         QString type = ttm->index(start, TransactionTableModel::Type, parent)
646                         .data().toString();
647         QString address = ttm->index(start, TransactionTableModel::ToAddress, parent)
648                         .data().toString();
649         QIcon icon = qvariant_cast<QIcon>(ttm->index(start,
650                             TransactionTableModel::ToAddress, parent)
651                         .data(Qt::DecorationRole));
652
653         notificator->notify(Notificator::Information,
654                             (amount)<0 ? tr("Sent transaction") :
655                                          tr("Incoming transaction"),
656                               tr("Date: %1\n"
657                                  "Amount: %2\n"
658                                  "Type: %3\n"
659                                  "Address: %4\n")
660                               .arg(date)
661                               .arg(BitcoinUnits::formatWithUnit(walletModel->getOptionsModel()->getDisplayUnit(), amount, true))
662                               .arg(type)
663                               .arg(address), icon);
664     }
665 }
666
667 void BitcoinGUI::gotoOverviewPage()
668 {
669     overviewAction->setChecked(true);
670     centralWidget->setCurrentWidget(overviewPage);
671
672     exportAction->setEnabled(false);
673     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
674 }
675
676 void BitcoinGUI::gotoHistoryPage()
677 {
678     historyAction->setChecked(true);
679     centralWidget->setCurrentWidget(transactionsPage);
680
681     exportAction->setEnabled(true);
682     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
683     connect(exportAction, SIGNAL(triggered()), transactionView, SLOT(exportClicked()));
684 }
685
686 void BitcoinGUI::gotoAddressBookPage()
687 {
688     addressBookAction->setChecked(true);
689     centralWidget->setCurrentWidget(addressBookPage);
690
691     exportAction->setEnabled(true);
692     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
693     connect(exportAction, SIGNAL(triggered()), addressBookPage, SLOT(exportClicked()));
694 }
695
696 void BitcoinGUI::gotoReceiveCoinsPage()
697 {
698     receiveCoinsAction->setChecked(true);
699     centralWidget->setCurrentWidget(receiveCoinsPage);
700
701     exportAction->setEnabled(true);
702     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
703     connect(exportAction, SIGNAL(triggered()), receiveCoinsPage, SLOT(exportClicked()));
704 }
705
706 void BitcoinGUI::gotoSendCoinsPage()
707 {
708     sendCoinsAction->setChecked(true);
709     centralWidget->setCurrentWidget(sendCoinsPage);
710
711     exportAction->setEnabled(false);
712     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
713 }
714
715 void BitcoinGUI::gotoMessagePage()
716 {
717 #ifdef FIRST_CLASS_MESSAGING
718     messageAction->setChecked(true);
719     centralWidget->setCurrentWidget(messagePage);
720
721     exportAction->setEnabled(false);
722     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
723 #else
724     messagePage->show();
725     messagePage->setFocus();
726 #endif
727 }
728
729 void BitcoinGUI::gotoMessagePage(QString addr)
730 {
731     gotoMessagePage();
732     messagePage->setAddress(addr);
733 }
734
735 void BitcoinGUI::dragEnterEvent(QDragEnterEvent *event)
736 {
737     // Accept only URIs
738     if(event->mimeData()->hasUrls())
739         event->acceptProposedAction();
740 }
741
742 void BitcoinGUI::dropEvent(QDropEvent *event)
743 {
744     if(event->mimeData()->hasUrls())
745     {
746         gotoSendCoinsPage();
747         QList<QUrl> uris = event->mimeData()->urls();
748         foreach(const QUrl &uri, uris)
749         {
750             sendCoinsPage->handleURI(uri.toString());
751         }
752     }
753
754     event->acceptProposedAction();
755 }
756
757 void BitcoinGUI::handleURI(QString strURI)
758 {
759     gotoSendCoinsPage();
760     sendCoinsPage->handleURI(strURI);
761
762     if(!isActiveWindow())
763         activateWindow();
764
765     showNormalIfMinimized();
766 }
767
768 void BitcoinGUI::setEncryptionStatus(int status)
769 {
770     switch(status)
771     {
772     case WalletModel::Unencrypted:
773         labelEncryptionIcon->hide();
774         encryptWalletAction->setChecked(false);
775         changePassphraseAction->setEnabled(false);
776         encryptWalletAction->setEnabled(true);
777         break;
778     case WalletModel::Unlocked:
779         labelEncryptionIcon->show();
780         labelEncryptionIcon->setPixmap(QIcon(":/icons/lock_open").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
781         labelEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>unlocked</b>"));
782         encryptWalletAction->setChecked(true);
783         changePassphraseAction->setEnabled(true);
784         encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported
785         break;
786     case WalletModel::Locked:
787         labelEncryptionIcon->show();
788         labelEncryptionIcon->setPixmap(QIcon(":/icons/lock_closed").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
789         labelEncryptionIcon->setToolTip(tr("Wallet is <b>encrypted</b> and currently <b>locked</b>"));
790         encryptWalletAction->setChecked(true);
791         changePassphraseAction->setEnabled(true);
792         encryptWalletAction->setEnabled(false); // TODO: decrypt currently not supported
793         break;
794     }
795 }
796
797 void BitcoinGUI::encryptWallet(bool status)
798 {
799     if(!walletModel)
800         return;
801     AskPassphraseDialog dlg(status ? AskPassphraseDialog::Encrypt:
802                                      AskPassphraseDialog::Decrypt, this);
803     dlg.setModel(walletModel);
804     dlg.exec();
805
806     setEncryptionStatus(walletModel->getEncryptionStatus());
807 }
808
809 void BitcoinGUI::backupWallet()
810 {
811     QString saveDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation);
812     QString filename = QFileDialog::getSaveFileName(this, tr("Backup Wallet"), saveDir, tr("Wallet Data (*.dat)"));
813     if(!filename.isEmpty()) {
814         if(!walletModel->backupWallet(filename)) {
815             QMessageBox::warning(this, tr("Backup Failed"), tr("There was an error trying to save the wallet data to the new location."));
816         }
817     }
818 }
819
820 void BitcoinGUI::changePassphrase()
821 {
822     AskPassphraseDialog dlg(AskPassphraseDialog::ChangePass, this);
823     dlg.setModel(walletModel);
824     dlg.exec();
825 }
826
827 void BitcoinGUI::unlockWallet()
828 {
829     if(!walletModel)
830         return;
831     // Unlock wallet when requested by wallet model
832     if(walletModel->getEncryptionStatus() == WalletModel::Locked)
833     {
834         AskPassphraseDialog dlg(AskPassphraseDialog::Unlock, this);
835         dlg.setModel(walletModel);
836         dlg.exec();
837     }
838 }
839
840 void BitcoinGUI::showNormalIfMinimized()
841 {
842     if(!isVisible()) // Show, if hidden
843         show();
844     if(isMinimized()) // Unminimize, if minimized
845         showNormal();
846 }