fix unnecessary adding ThirdPartyURL
[novacoin.git] / src / qt / transactionview.cpp
1 #include "transactionview.h"
2
3 #include "transactionfilterproxy.h"
4 #include "transactionrecord.h"
5 #include "walletmodel.h"
6 #include "addresstablemodel.h"
7 #include "transactiontablemodel.h"
8 #include "bitcoinunits.h"
9 #include "csvmodelwriter.h"
10 #include "transactiondescdialog.h"
11 #include "editaddressdialog.h"
12 #include "optionsmodel.h"
13 #include "guiutil.h"
14 #include "wallet.h"
15
16 #include <QScrollBar>
17 #include <QComboBox>
18 #include <QDoubleValidator>
19 #include <QHBoxLayout>
20 #include <QVBoxLayout>
21 #include <QLineEdit>
22 #include <QTableView>
23 #include <QHeaderView>
24 #include <QPushButton>
25 #include <QMessageBox>
26 #include <QPoint>
27 #include <QMenu>
28 #include <QApplication>
29 #include <QClipboard>
30 #include <QLabel>
31 #include <QDateTimeEdit>
32 #include <QDesktopServices>
33 #include <QSignalMapper>
34 #include <QUrl>
35
36 TransactionView::TransactionView(QWidget *parent) :
37     QWidget(parent), model(0), transactionProxyModel(0),
38     transactionView(0)
39 {
40     // Build filter row
41     setContentsMargins(0,0,0,0);
42
43     QHBoxLayout *hlayout = new QHBoxLayout();
44     hlayout->setContentsMargins(0,0,0,0);
45 #ifdef Q_OS_MAC
46     hlayout->setSpacing(5);
47     hlayout->addSpacing(26);
48 #else
49     hlayout->setSpacing(0);
50     hlayout->addSpacing(23);
51 #endif
52
53     dateWidget = new QComboBox(this);
54 #ifdef Q_OS_MAC
55     dateWidget->setFixedWidth(121);
56 #else
57     dateWidget->setFixedWidth(120);
58 #endif
59     dateWidget->addItem(tr("All"), All);
60     dateWidget->addItem(tr("Today"), Today);
61     dateWidget->addItem(tr("This week"), ThisWeek);
62     dateWidget->addItem(tr("This month"), ThisMonth);
63     dateWidget->addItem(tr("Last month"), LastMonth);
64     dateWidget->addItem(tr("This year"), ThisYear);
65     dateWidget->addItem(tr("Range..."), Range);
66     hlayout->addWidget(dateWidget);
67
68     typeWidget = new QComboBox(this);
69 #ifdef Q_OS_MAC
70     typeWidget->setFixedWidth(121);
71 #else
72     typeWidget->setFixedWidth(120);
73 #endif
74
75     typeWidget->addItem(tr("All"), TransactionFilterProxy::ALL_TYPES);
76     typeWidget->addItem(tr("Received with"), TransactionFilterProxy::TYPE(TransactionRecord::RecvWithAddress) |
77                                         TransactionFilterProxy::TYPE(TransactionRecord::RecvFromOther));
78     typeWidget->addItem(tr("Sent to"), TransactionFilterProxy::TYPE(TransactionRecord::SendToAddress) |
79                                   TransactionFilterProxy::TYPE(TransactionRecord::SendToOther));
80     typeWidget->addItem(tr("To yourself"), TransactionFilterProxy::TYPE(TransactionRecord::SendToSelf));
81     typeWidget->addItem(tr("Mined"), TransactionFilterProxy::TYPE(TransactionRecord::Generated));
82     typeWidget->addItem(tr("Other"), TransactionFilterProxy::TYPE(TransactionRecord::Other));
83
84     hlayout->addWidget(typeWidget);
85
86     addressWidget = new QLineEdit(this);
87 #if QT_VERSION >= 0x040700
88     /* Do not move this to the XML file, Qt before 4.7 will choke on it */
89     addressWidget->setPlaceholderText(tr("Enter address or label to search"));
90 #endif
91     hlayout->addWidget(addressWidget);
92
93     amountWidget = new QLineEdit(this);
94 #if QT_VERSION >= 0x040700
95     /* Do not move this to the XML file, Qt before 4.7 will choke on it */
96     amountWidget->setPlaceholderText(tr("Min amount"));
97 #endif
98 #ifdef Q_OS_MAC
99     amountWidget->setFixedWidth(97);
100 #else
101     amountWidget->setFixedWidth(100);
102 #endif
103     amountWidget->setValidator(new QDoubleValidator(0, 1e20, 8, this));
104     hlayout->addWidget(amountWidget);
105
106     QVBoxLayout *vlayout = new QVBoxLayout(this);
107     vlayout->setContentsMargins(0,0,0,0);
108     vlayout->setSpacing(0);
109
110     QTableView *view = new QTableView(this);
111     vlayout->addLayout(hlayout);
112     vlayout->addWidget(createDateRangeWidget());
113     vlayout->addWidget(view);
114     vlayout->setSpacing(0);
115     int width = view->verticalScrollBar()->sizeHint().width();
116     // Cover scroll bar width with spacing
117 #ifdef Q_OS_MAC
118     hlayout->addSpacing(width+2);
119 #else
120     hlayout->addSpacing(width);
121 #endif
122     // Always show scroll bar
123     view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
124     view->setTabKeyNavigation(false);
125     view->setContextMenuPolicy(Qt::CustomContextMenu);
126
127     transactionView = view;
128
129     // Actions
130     QAction *copyAddressAction = new QAction(tr("Copy address"), this);
131     QAction *copyLabelAction = new QAction(tr("Copy label"), this);
132     QAction *copyAmountAction = new QAction(tr("Copy amount"), this);
133     QAction *copyTxIDAction = new QAction(tr("Copy transaction ID"), this);
134     QAction *editLabelAction = new QAction(tr("Edit label"), this);
135     QAction *showDetailsAction = new QAction(tr("Show transaction details"), this);
136     QAction *clearOrphansAction = new QAction(tr("Clear orphans"), this);
137
138     contextMenu = new QMenu();
139     contextMenu->addAction(copyAddressAction);
140     contextMenu->addAction(copyLabelAction);
141     contextMenu->addAction(copyAmountAction);
142     contextMenu->addAction(copyTxIDAction);
143     contextMenu->addAction(editLabelAction);
144     contextMenu->addAction(showDetailsAction);
145     contextMenu->addSeparator();
146     contextMenu->addAction(clearOrphansAction);
147
148     mapperThirdPartyTxUrls = new QSignalMapper(this);
149
150     // Connect actions
151     connect(mapperThirdPartyTxUrls, SIGNAL(mapped(QString)), this, SLOT(openThirdPartyTxUrl(QString)));
152
153     connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int)));
154     connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int)));
155     connect(addressWidget, SIGNAL(textChanged(QString)), this, SLOT(changedPrefix(QString)));
156     connect(amountWidget, SIGNAL(textChanged(QString)), this, SLOT(changedAmount(QString)));
157
158     connect(view, SIGNAL(doubleClicked(QModelIndex)), this, SIGNAL(doubleClicked(QModelIndex)));
159     connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
160
161     connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress()));
162     connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel()));
163     connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount()));
164     connect(copyTxIDAction, SIGNAL(triggered()), this, SLOT(copyTxID()));
165     connect(editLabelAction, SIGNAL(triggered()), this, SLOT(editLabel()));
166     connect(showDetailsAction, SIGNAL(triggered()), this, SLOT(showDetails()));
167     connect(clearOrphansAction, SIGNAL(triggered()), this, SLOT(clearOrphans()));
168 }
169
170 void TransactionView::setModel(WalletModel *model, bool fShoudAddThirdPartyURL)
171 {
172     this->model = model;
173     if(model)
174     {
175         transactionProxyModel = new TransactionFilterProxy(this);
176         transactionProxyModel->setSourceModel(model->getTransactionTableModel());
177         transactionProxyModel->setDynamicSortFilter(true);
178         transactionProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
179         transactionProxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
180
181 //        transactionProxyModel->setSortRole(Qt::EditRole);
182         transactionProxyModel->setSortRole(TransactionTableModel::DateRole);
183
184         transactionView->setModel(transactionProxyModel);
185         transactionView->setAlternatingRowColors(true);
186         transactionView->setSelectionBehavior(QAbstractItemView::SelectRows);
187         transactionView->setSelectionMode(QAbstractItemView::ExtendedSelection);
188         transactionView->setSortingEnabled(true);
189         transactionView->sortByColumn(TransactionTableModel::Status, Qt::DescendingOrder);
190         transactionView->verticalHeader()->hide();
191
192         transactionView->horizontalHeader()->resizeSection(
193                 TransactionTableModel::Status, 23);
194         transactionView->horizontalHeader()->resizeSection(
195                 TransactionTableModel::Date, 120);
196         transactionView->horizontalHeader()->resizeSection(
197                 TransactionTableModel::Type, 120);
198 #if QT_VERSION < 0x050000
199         transactionView->horizontalHeader()->setResizeMode(
200                 TransactionTableModel::ToAddress, QHeaderView::Stretch);
201 #else
202         transactionView->horizontalHeader()->setSectionResizeMode(TransactionTableModel::ToAddress, QHeaderView::Stretch);
203 #endif
204         transactionView->horizontalHeader()->resizeSection(
205                 TransactionTableModel::Amount, 100);
206
207         if (model->getOptionsModel() && fShoudAddThirdPartyURL)
208         {
209
210             // Add third party transaction URLs to context menu
211             QStringList listUrls = model->getOptionsModel()->getThirdPartyTxUrls().split("|", QString::SkipEmptyParts);
212             for (int i = 0; i < listUrls.size(); ++i)
213             {
214                 QString host = QUrl(listUrls[i].trimmed(), QUrl::StrictMode).host();
215                 if (!host.isEmpty())
216                 {
217                     QAction *thirdPartyTxUrlAction = new QAction(host, this); // use host as menu item label
218                     if (i == 0)
219                         contextMenu->addSeparator();
220                     contextMenu->addAction(thirdPartyTxUrlAction);
221                     connect(thirdPartyTxUrlAction, SIGNAL(triggered()), mapperThirdPartyTxUrls, SLOT(map()));
222                     mapperThirdPartyTxUrls->setMapping(thirdPartyTxUrlAction, listUrls[i].trimmed());
223                  }
224              }
225         }
226     }
227 }
228
229 void TransactionView::chooseDate(int idx)
230 {
231     if(!transactionProxyModel)
232         return;
233     QDate current = QDate::currentDate();
234     dateRangeWidget->setVisible(false);
235     switch(dateWidget->itemData(idx).toInt())
236     {
237     case All:
238         transactionProxyModel->setDateRange(
239                 TransactionFilterProxy::MIN_DATE,
240                 TransactionFilterProxy::MAX_DATE);
241         break;
242     case Today:
243         transactionProxyModel->setDateRange(
244                 QDateTime(current),
245                 TransactionFilterProxy::MAX_DATE);
246         break;
247     case ThisWeek: {
248         // Find last Monday
249         QDate startOfWeek = current.addDays(-(current.dayOfWeek()-1));
250         transactionProxyModel->setDateRange(
251                 QDateTime(startOfWeek),
252                 TransactionFilterProxy::MAX_DATE);
253
254         } break;
255     case ThisMonth:
256         transactionProxyModel->setDateRange(
257                 QDateTime(QDate(current.year(), current.month(), 1)),
258                 TransactionFilterProxy::MAX_DATE);
259         break;
260     case LastMonth:
261         transactionProxyModel->setDateRange(
262                 QDateTime(QDate(current.year(), current.month()-1, 1)),
263                 QDateTime(QDate(current.year(), current.month(), 1)));
264         break;
265     case ThisYear:
266         transactionProxyModel->setDateRange(
267                 QDateTime(QDate(current.year(), 1, 1)),
268                 TransactionFilterProxy::MAX_DATE);
269         break;
270     case Range:
271         dateRangeWidget->setVisible(true);
272         dateRangeChanged();
273         break;
274     }
275 }
276
277 void TransactionView::chooseType(int idx)
278 {
279     if(!transactionProxyModel)
280         return;
281     transactionProxyModel->setTypeFilter(
282         typeWidget->itemData(idx).toInt());
283 }
284
285 void TransactionView::changedPrefix(const QString &prefix)
286 {
287     if(!transactionProxyModel)
288         return;
289     transactionProxyModel->setAddressPrefix(prefix);
290 }
291
292 void TransactionView::changedAmount(const QString &amount)
293 {
294     if(!transactionProxyModel)
295         return;
296     qint64 amount_parsed = 0;
297     if(BitcoinUnits::parse(model->getOptionsModel()->getDisplayUnit(), amount, &amount_parsed))
298     {
299         transactionProxyModel->setMinAmount(amount_parsed);
300     }
301     else
302     {
303         transactionProxyModel->setMinAmount(0);
304     }
305 }
306
307 void TransactionView::exportClicked()
308 {
309     // CSV is currently the only supported format
310     QString filename = GUIUtil::getSaveFileName(
311             this,
312             tr("Export Transaction Data"), QString(),
313             tr("Comma separated file (*.csv)"));
314
315     if (filename.isNull()) return;
316
317     CSVModelWriter writer(filename);
318
319     // name, column, role
320     writer.setModel(transactionProxyModel);
321     writer.addColumn(tr("Confirmed"), 0, TransactionTableModel::ConfirmedRole);
322     writer.addColumn(tr("Date"), 0, TransactionTableModel::DateRole);
323     writer.addColumn(tr("Type"), TransactionTableModel::Type, Qt::EditRole);
324     writer.addColumn(tr("Label"), 0, TransactionTableModel::LabelRole);
325     writer.addColumn(tr("Address"), 0, TransactionTableModel::AddressRole);
326     writer.addColumn(tr("Amount"), 0, TransactionTableModel::FormattedAmountRole);
327     writer.addColumn(tr("ID"), 0, TransactionTableModel::TxIDRole);
328
329     if(!writer.write())
330     {
331         QMessageBox::critical(this, tr("Error exporting"), tr("Could not write to file %1.").arg(filename),
332                               QMessageBox::Abort, QMessageBox::Abort);
333     }
334 }
335
336 void TransactionView::contextualMenu(const QPoint &point)
337 {
338     QModelIndex index = transactionView->indexAt(point);
339     if(index.isValid())
340     {
341         contextMenu->exec(QCursor::pos());
342     }
343 }
344
345 void TransactionView::copyAddress()
346 {
347     GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::AddressRole);
348 }
349
350 void TransactionView::copyLabel()
351 {
352     GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::LabelRole);
353 }
354
355 void TransactionView::copyAmount()
356 {
357     GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::FormattedAmountRole);
358 }
359
360 void TransactionView::copyTxID()
361 {
362     GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxIDRole);
363 }
364
365 void TransactionView::editLabel()
366 {
367     if(!transactionView->selectionModel() ||!model)
368         return;
369     QModelIndexList selection = transactionView->selectionModel()->selectedRows();
370     if(!selection.isEmpty())
371     {
372         AddressTableModel *addressBook = model->getAddressTableModel();
373         if(!addressBook)
374             return;
375         QString address = selection.at(0).data(TransactionTableModel::AddressRole).toString();
376         if(address.isEmpty())
377         {
378             // If this transaction has no associated address, exit
379             return;
380         }
381         // Is address in address book? Address book can miss address when a transaction is
382         // sent from outside the UI.
383         int idx = addressBook->lookupAddress(address);
384         if(idx != -1)
385         {
386             // Edit sending / receiving address
387             QModelIndex modelIdx = addressBook->index(idx, 0, QModelIndex());
388             // Determine type of address, launch appropriate editor dialog type
389             QString type = modelIdx.data(AddressTableModel::TypeRole).toString();
390
391             EditAddressDialog dlg(type==AddressTableModel::Receive
392                                          ? EditAddressDialog::EditReceivingAddress
393                                          : EditAddressDialog::EditSendingAddress,
394                                   this);
395             dlg.setModel(addressBook);
396             dlg.loadRow(idx);
397             dlg.exec();
398         }
399         else
400         {
401             // Add sending address
402             EditAddressDialog dlg(EditAddressDialog::NewSendingAddress,
403                                   this);
404             dlg.setModel(addressBook);
405             dlg.setAddress(address);
406             dlg.exec();
407         }
408     }
409 }
410
411 void TransactionView::showDetails()
412 {
413     if(!transactionView->selectionModel())
414         return;
415     QModelIndexList selection = transactionView->selectionModel()->selectedRows();
416     if(!selection.isEmpty())
417     {
418         TransactionDescDialog dlg(selection.at(0));
419         dlg.exec();
420     }
421 }
422
423 void TransactionView::clearOrphans()
424 {
425     if(!model)
426         return;
427
428     model->clearOrphans();
429     model->getTransactionTableModel()->refresh();
430     delete transactionProxyModel;
431     setModel(model, false);
432     transactionView->sortByColumn(TransactionTableModel::Status, Qt::DescendingOrder);
433     transactionView->sortByColumn(TransactionTableModel::Date, Qt::DescendingOrder);
434 }
435
436 void TransactionView::openThirdPartyTxUrl(QString url)
437 {
438     if(!transactionView->selectionModel())
439        return;
440     QModelIndexList selection = transactionView->selectionModel()->selectedRows(0);
441     if(!selection.isEmpty())
442         QDesktopServices::openUrl(QUrl::fromUserInput(url.replace("%s", selection.at(0).data(TransactionTableModel::TxHashRole).toString())));
443 }
444
445 QWidget *TransactionView::createDateRangeWidget()
446 {
447     dateRangeWidget = new QFrame();
448     dateRangeWidget->setFrameStyle(QFrame::Panel | QFrame::Raised);
449     dateRangeWidget->setContentsMargins(1,1,1,1);
450     QHBoxLayout *layout = new QHBoxLayout(dateRangeWidget);
451     layout->setContentsMargins(0,0,0,0);
452     layout->addSpacing(23);
453     layout->addWidget(new QLabel(tr("Range:")));
454
455     dateFrom = new QDateTimeEdit(this);
456     dateFrom->setDisplayFormat("dd/MM/yy");
457     dateFrom->setCalendarPopup(true);
458     dateFrom->setMinimumWidth(100);
459     dateFrom->setDate(QDate::currentDate().addDays(-7));
460     layout->addWidget(dateFrom);
461     layout->addWidget(new QLabel(tr("to")));
462
463     dateTo = new QDateTimeEdit(this);
464     dateTo->setDisplayFormat("dd/MM/yy");
465     dateTo->setCalendarPopup(true);
466     dateTo->setMinimumWidth(100);
467     dateTo->setDate(QDate::currentDate());
468     layout->addWidget(dateTo);
469     layout->addStretch();
470
471     // Hide by default
472     dateRangeWidget->setVisible(false);
473
474     // Notify on change
475     connect(dateFrom, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
476     connect(dateTo, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
477
478     return dateRangeWidget;
479 }
480
481 void TransactionView::dateRangeChanged()
482 {
483     if(!transactionProxyModel)
484         return;
485     transactionProxyModel->setDateRange(
486             QDateTime(dateFrom->date()),
487             QDateTime(dateTo->date()).addDays(1));
488 }
489
490 void TransactionView::focusTransaction(const QModelIndex &idx)
491 {
492     if(!transactionProxyModel)
493         return;
494     QModelIndex targetIdx = transactionProxyModel->mapFromSource(idx);
495     transactionView->scrollTo(targetIdx);
496     transactionView->setCurrentIndex(targetIdx);
497     transactionView->setFocus();
498 }