Show unconfirmed balance on overview page
[novacoin.git] / src / qt / bitcoingui.cpp
1 /*
2  * Qt4 bitcoin GUI.
3  *
4  * W.J. van der Laan 2011
5  */
6 #include "bitcoingui.h"
7 #include "transactiontablemodel.h"
8 #include "addressbookpage.h"
9 #include "sendcoinsdialog.h"
10 #include "optionsdialog.h"
11 #include "aboutdialog.h"
12 #include "clientmodel.h"
13 #include "walletmodel.h"
14 #include "guiutil.h"
15 #include "editaddressdialog.h"
16 #include "optionsmodel.h"
17 #include "transactiondescdialog.h"
18 #include "addresstablemodel.h"
19 #include "transactionview.h"
20 #include "overviewpage.h"
21
22 #include <QApplication>
23 #include <QMainWindow>
24 #include <QMenuBar>
25 #include <QMenu>
26 #include <QIcon>
27 #include <QTabWidget>
28 #include <QVBoxLayout>
29 #include <QToolBar>
30 #include <QStatusBar>
31 #include <QLabel>
32 #include <QLineEdit>
33 #include <QPushButton>
34 #include <QLocale>
35 #include <QMessageBox>
36 #include <QProgressBar>
37 #include <QStackedWidget>
38 #include <QDateTime>
39
40 #include <QDebug>
41
42 #include <iostream>
43
44 BitcoinGUI::BitcoinGUI(QWidget *parent):
45     QMainWindow(parent),
46     clientModel(0),
47     walletModel(0),
48     trayIcon(0)
49 {
50     resize(850, 550);
51     setWindowTitle(tr("Bitcoin Wallet"));
52     setWindowIcon(QIcon(":icons/bitcoin"));
53
54     createActions();
55
56     // Menus
57     QMenu *file = menuBar()->addMenu("&File");
58     file->addAction(sendCoinsAction);
59     file->addAction(receiveCoinsAction);
60     file->addSeparator();
61     file->addAction(quitAction);
62     
63     QMenu *settings = menuBar()->addMenu("&Settings");
64     settings->addAction(optionsAction);
65
66     QMenu *help = menuBar()->addMenu("&Help");
67     help->addAction(aboutAction);
68     
69     // Toolbar
70     QToolBar *toolbar = addToolBar("Main toolbar");
71     toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
72     toolbar->addAction(overviewAction);
73     toolbar->addAction(sendCoinsAction);
74     toolbar->addAction(receiveCoinsAction);
75     toolbar->addAction(historyAction);
76     toolbar->addAction(addressBookAction);
77
78     QToolBar *toolbar2 = addToolBar("Transactions toolbar");
79     toolbar2->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
80     toolbar2->addAction(exportAction);
81
82     // Overview page
83     overviewPage = new OverviewPage();
84     QVBoxLayout *vbox = new QVBoxLayout();
85
86     transactionView = new TransactionView(this);
87     connect(transactionView, SIGNAL(doubleClicked(const QModelIndex&)), transactionView, SLOT(transactionDetails()));
88     vbox->addWidget(transactionView);
89
90     transactionsPage = new QWidget(this);
91     transactionsPage->setLayout(vbox);
92
93     addressBookPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab);
94
95     receiveCoinsPage = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::ReceivingTab);
96
97     sendCoinsPage = new SendCoinsDialog(this);
98
99     centralWidget = new QStackedWidget(this);
100     centralWidget->addWidget(overviewPage);
101     centralWidget->addWidget(transactionsPage);
102     centralWidget->addWidget(addressBookPage);
103     centralWidget->addWidget(receiveCoinsPage);
104     centralWidget->addWidget(sendCoinsPage);
105     setCentralWidget(centralWidget);
106     
107     // Create status bar
108     statusBar();
109
110     labelConnections = new QLabel();
111     labelConnections->setFrameStyle(QFrame::Panel | QFrame::Sunken);
112     labelConnections->setMinimumWidth(150);
113     labelConnections->setMaximumWidth(150);
114     labelConnections->setToolTip(tr("Number of connections to other clients"));
115
116     labelBlocks = new QLabel();
117     labelBlocks->setFrameStyle(QFrame::Panel | QFrame::Sunken);
118     labelBlocks->setMinimumWidth(150);
119     labelBlocks->setMaximumWidth(150);
120     labelBlocks->setToolTip(tr("Number of blocks in the block chain"));
121
122     // Progress bar for blocks download
123     progressBarLabel = new QLabel(tr("Synchronizing with network..."));
124     progressBarLabel->setVisible(false);
125     progressBar = new QProgressBar();
126     progressBar->setToolTip(tr("Block chain synchronization in progress"));
127     progressBar->setVisible(false);
128
129     statusBar()->addWidget(progressBarLabel);
130     statusBar()->addWidget(progressBar);
131     statusBar()->addPermanentWidget(labelConnections);
132     statusBar()->addPermanentWidget(labelBlocks);
133
134     createTrayIcon();
135
136     gotoOverviewPage();
137 }
138
139 void BitcoinGUI::createActions()
140 {
141     QActionGroup *tabGroup = new QActionGroup(this);
142
143     overviewAction = new QAction(QIcon(":/icons/overview"), tr("&Overview"), this);
144     overviewAction->setCheckable(true);
145     tabGroup->addAction(overviewAction);
146
147     historyAction = new QAction(QIcon(":/icons/history"), tr("&Transactions"), this);
148     historyAction->setCheckable(true);
149     tabGroup->addAction(historyAction);
150
151     addressBookAction = new QAction(QIcon(":/icons/address-book"), tr("&Address Book"), this);
152     addressBookAction->setToolTip(tr("Edit the list of stored addresses and labels"));
153     addressBookAction->setCheckable(true);
154     tabGroup->addAction(addressBookAction);
155
156     receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive coins"), this);
157     receiveCoinsAction->setToolTip(tr("Show the list of addresses for receiving payments"));
158     receiveCoinsAction->setCheckable(true);
159     tabGroup->addAction(receiveCoinsAction);
160
161     sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send coins"), this);
162     sendCoinsAction->setToolTip(tr("Send coins to a bitcoin address"));
163     sendCoinsAction->setCheckable(true);
164     tabGroup->addAction(sendCoinsAction);
165
166     connect(overviewAction, SIGNAL(triggered()), this, SLOT(gotoOverviewPage()));
167     connect(historyAction, SIGNAL(triggered()), this, SLOT(gotoHistoryPage()));
168     connect(addressBookAction, SIGNAL(triggered()), this, SLOT(gotoAddressBookPage()));
169     connect(receiveCoinsAction, SIGNAL(triggered()), this, SLOT(gotoReceiveCoinsPage()));
170     connect(sendCoinsAction, SIGNAL(triggered()), this, SLOT(gotoSendCoinsPage()));
171
172     quitAction = new QAction(QIcon(":/icons/quit"), tr("&Exit"), this);
173     quitAction->setToolTip(tr("Quit application"));
174     aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About"), this);
175     aboutAction->setToolTip(tr("Show information about Bitcoin"));
176     optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);
177     optionsAction->setToolTip(tr("Modify configuration options for bitcoin"));
178     openBitcoinAction = new QAction(QIcon(":/icons/bitcoin"), tr("Open &Bitcoin"), this);
179     openBitcoinAction->setToolTip(tr("Show the Bitcoin window"));
180     exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);
181     exportAction->setToolTip(tr("Export data in current view to a file"));
182
183     connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
184     connect(optionsAction, SIGNAL(triggered()), this, SLOT(optionsClicked()));
185     connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));
186     connect(openBitcoinAction, SIGNAL(triggered()), this, SLOT(show()));
187 }
188
189 void BitcoinGUI::setClientModel(ClientModel *clientModel)
190 {
191     this->clientModel = clientModel;
192
193     if(clientModel->isTestNet())
194     {
195         QString title_testnet = windowTitle() + QString(" ") + tr("[testnet]");
196         setWindowTitle(title_testnet);
197         setWindowIcon(QIcon(":icons/bitcoin_testnet"));
198         if(trayIcon)
199         {
200             trayIcon->setToolTip(title_testnet);
201             trayIcon->setIcon(QIcon(":/icons/toolbar_testnet"));
202         }
203     }
204
205     // Keep up to date with client
206     setNumConnections(clientModel->getNumConnections());
207     connect(clientModel, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int)));
208
209     setNumBlocks(clientModel->getNumBlocks());
210     connect(clientModel, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int)));
211
212     // Report errors from network/worker thread
213     connect(clientModel, SIGNAL(error(QString,QString)), this, SLOT(error(QString,QString)));
214 }
215
216 void BitcoinGUI::setWalletModel(WalletModel *walletModel)
217 {
218     this->walletModel = walletModel;
219
220     // Report errors from wallet thread
221     connect(walletModel, SIGNAL(error(QString,QString)), this, SLOT(error(QString,QString)));
222
223     // Put transaction list in tabs
224     transactionView->setModel(walletModel);
225
226     overviewPage->setModel(walletModel);
227     addressBookPage->setModel(walletModel->getAddressTableModel());
228     receiveCoinsPage->setModel(walletModel->getAddressTableModel());
229     sendCoinsPage->setModel(walletModel);
230
231     // Balloon popup for new transaction
232     connect(walletModel->getTransactionTableModel(), SIGNAL(rowsInserted(const QModelIndex &, int, int)),
233             this, SLOT(incomingTransaction(const QModelIndex &, int, int)));
234 }
235
236 void BitcoinGUI::createTrayIcon()
237 {
238     QMenu *trayIconMenu = new QMenu(this);
239     trayIconMenu->addAction(openBitcoinAction);
240     trayIconMenu->addAction(sendCoinsAction);
241     trayIconMenu->addAction(optionsAction);
242     trayIconMenu->addSeparator();
243     trayIconMenu->addAction(quitAction);
244
245     trayIcon = new QSystemTrayIcon(this);
246     trayIcon->setContextMenu(trayIconMenu);
247     trayIcon->setToolTip("Bitcoin client");
248     trayIcon->setIcon(QIcon(":/icons/toolbar"));
249     connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
250             this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));
251     trayIcon->show();
252 }
253
254 void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason)
255 {
256     if(reason == QSystemTrayIcon::DoubleClick)
257     {
258         // Doubleclick on system tray icon triggers "open bitcoin"
259         openBitcoinAction->trigger();
260     }
261 }
262
263 void BitcoinGUI::optionsClicked()
264 {
265     OptionsDialog dlg;
266     dlg.setModel(clientModel->getOptionsModel());
267     dlg.exec();
268 }
269
270 void BitcoinGUI::aboutClicked()
271 {
272     AboutDialog dlg;
273     dlg.setModel(clientModel);
274     dlg.exec();
275 }
276
277 void BitcoinGUI::setNumConnections(int count)
278 {
279     QString icon;
280     switch(count)
281     {
282     case 0: icon = ":/icons/connect_0"; break;
283     case 1: case 2: case 3: icon = ":/icons/connect_1"; break;
284     case 4: case 5: case 6: icon = ":/icons/connect_2"; break;
285     case 7: case 8: case 9: icon = ":/icons/connect_3"; break;
286     default: icon = ":/icons/connect_4"; break;
287     }
288     labelConnections->setTextFormat(Qt::RichText);
289     labelConnections->setText("<img src=\""+icon+"\"> " + tr("%n connection(s)", "", count));
290 }
291
292 void BitcoinGUI::setNumBlocks(int count)
293 {
294     int total = clientModel->getTotalBlocksEstimate();
295     if(count < total)
296     {
297         progressBarLabel->setVisible(true);
298         progressBar->setVisible(true);
299         progressBar->setMaximum(total);
300         progressBar->setValue(count);
301     }
302     else
303     {
304         progressBarLabel->setVisible(false);
305         progressBar->setVisible(false);
306     }
307
308     QDateTime now = QDateTime::currentDateTime();
309     QDateTime lastBlockDate = clientModel->getLastBlockDate();
310     int secs = lastBlockDate.secsTo(now);
311     QString text;
312     QString icon = ":/icons/notsynced";
313
314     // "Up to date" icon, and outdated icon
315     if(secs < 30*60)
316     {
317         text = "Up to date";
318         icon = ":/icons/synced";
319     }
320     else if(secs < 60*60)
321     {
322         text = tr("%n minute(s) ago","",secs/60);
323     }
324     else if(secs < 24*60*60)
325     {
326         text = tr("%n hour(s) ago","",secs/(60*60));
327     }
328     else
329     {
330         text = tr("%n day(s) ago","",secs/(60*60*24));
331     }
332
333     labelBlocks->setText("<img src=\""+icon+"\"> " + text);
334     labelBlocks->setToolTip(tr("Downloaded %n block(s) of transaction history. Last block was generated %1.", "", count)
335                             .arg(QLocale::system().toString(lastBlockDate)));
336 }
337
338 void BitcoinGUI::error(const QString &title, const QString &message)
339 {
340     // Report errors from network/worker thread
341     if(trayIcon->supportsMessages())
342     {
343         // Show as "balloon" message if possible
344         trayIcon->showMessage(title, message, QSystemTrayIcon::Critical);
345     }
346     else
347     {
348         // Fall back to old fashioned popup dialog if not
349         QMessageBox::critical(this, title,
350             message,
351             QMessageBox::Ok, QMessageBox::Ok);
352     }
353 }
354
355 void BitcoinGUI::changeEvent(QEvent *e)
356 {
357     if (e->type() == QEvent::WindowStateChange)
358     {
359         if(clientModel->getOptionsModel()->getMinimizeToTray())
360         {
361             if (isMinimized())
362             {
363                 hide();
364                 e->ignore();
365             }
366             else
367             {
368                 e->accept();
369             }
370         }
371     }
372     QMainWindow::changeEvent(e);
373 }
374
375 void BitcoinGUI::closeEvent(QCloseEvent *event)
376 {
377     if(!clientModel->getOptionsModel()->getMinimizeToTray() &&
378        !clientModel->getOptionsModel()->getMinimizeOnClose())
379     {
380         qApp->quit();
381     }
382     QMainWindow::closeEvent(event);
383 }
384
385 void BitcoinGUI::askFee(qint64 nFeeRequired, bool *payFee)
386 {
387     QString strMessage =
388         tr("This transaction is over the size limit.  You can still send it for a fee of %1, "
389           "which goes to the nodes that process your transaction and helps to support the network.  "
390           "Do you want to pay the fee?").arg(GUIUtil::formatMoney(nFeeRequired));
391     QMessageBox::StandardButton retval = QMessageBox::question(
392           this, tr("Sending..."), strMessage,
393           QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Yes);
394     *payFee = (retval == QMessageBox::Yes);
395 }
396
397 void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int end)
398 {
399     TransactionTableModel *ttm = walletModel->getTransactionTableModel();
400     qint64 amount = ttm->index(start, TransactionTableModel::Amount, parent)
401                     .data(Qt::EditRole).toULongLong();
402     if(amount>0 && !clientModel->inInitialBlockDownload())
403     {
404         // On incoming transaction, make an info balloon
405         // Unless the initial block download is in progress, to prevent balloon-spam
406         QString date = ttm->index(start, TransactionTableModel::Date, parent)
407                         .data().toString();
408         QString type = ttm->index(start, TransactionTableModel::Type, parent)
409                         .data().toString();
410         QString address = ttm->index(start, TransactionTableModel::ToAddress, parent)
411                         .data().toString();
412
413         trayIcon->showMessage(tr("Incoming transaction"),
414                               tr("Date: ") + date + "\n" +
415                               tr("Amount: ") + GUIUtil::formatMoney(amount, true) + "\n" +
416                               tr("Type: ") + type + "\n" +
417                               tr("Address: ") + address + "\n",
418                               QSystemTrayIcon::Information);
419     }
420 }
421
422 void BitcoinGUI::gotoOverviewPage()
423 {
424     overviewAction->setChecked(true);
425     centralWidget->setCurrentWidget(overviewPage);
426
427     exportAction->setEnabled(false);
428     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
429 }
430
431 void BitcoinGUI::gotoHistoryPage()
432 {
433     historyAction->setChecked(true);
434     centralWidget->setCurrentWidget(transactionsPage);
435
436     exportAction->setEnabled(true);
437     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
438     connect(exportAction, SIGNAL(triggered()), transactionView, SLOT(exportClicked()));
439 }
440
441 void BitcoinGUI::gotoAddressBookPage()
442 {
443     addressBookAction->setChecked(true);
444     centralWidget->setCurrentWidget(addressBookPage);
445
446     exportAction->setEnabled(true);
447     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
448     connect(exportAction, SIGNAL(triggered()), addressBookPage, SLOT(exportClicked()));
449 }
450
451 void BitcoinGUI::gotoReceiveCoinsPage()
452 {
453     receiveCoinsAction->setChecked(true);
454     centralWidget->setCurrentWidget(receiveCoinsPage);
455
456     exportAction->setEnabled(true);
457     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
458     connect(exportAction, SIGNAL(triggered()), receiveCoinsPage, SLOT(exportClicked()));
459 }
460
461 void BitcoinGUI::gotoSendCoinsPage()
462 {
463     sendCoinsAction->setChecked(true);
464     sendCoinsPage->clear();
465     centralWidget->setCurrentWidget(sendCoinsPage);
466
467     exportAction->setEnabled(false);
468     disconnect(exportAction, SIGNAL(triggered()), 0, 0);
469 }
470