2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2011-2016 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 16:20:43 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
#include "transactionview.h"
|
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
#include "addresstablemodel.h"
|
2011-07-25 21:35:45 +02:00
|
|
|
#include "bitcoinunits.h"
|
2011-07-07 14:27:16 +02:00
|
|
|
#include "csvmodelwriter.h"
|
2011-07-08 22:27:36 +02:00
|
|
|
#include "editaddressdialog.h"
|
2011-12-04 14:14:10 +01:00
|
|
|
#include "guiutil.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "optionsmodel.h"
|
2015-07-28 15:20:14 +02:00
|
|
|
#include "platformstyle.h"
|
2017-02-03 22:04:39 +01:00
|
|
|
#include "sendcoinsdialog.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "transactiondescdialog.h"
|
|
|
|
#include "transactionfilterproxy.h"
|
|
|
|
#include "transactionrecord.h"
|
|
|
|
#include "transactiontablemodel.h"
|
|
|
|
#include "walletmodel.h"
|
|
|
|
|
2013-10-26 19:21:10 +02:00
|
|
|
#include "ui_interface.h"
|
2011-06-28 21:41:56 +02:00
|
|
|
|
|
|
|
#include <QComboBox>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <QDateTimeEdit>
|
2014-04-24 22:21:45 +02:00
|
|
|
#include <QDesktopServices>
|
2011-06-28 21:41:56 +02:00
|
|
|
#include <QDoubleValidator>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QHeaderView>
|
2011-07-22 18:30:25 +02:00
|
|
|
#include <QLabel>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QScrollBar>
|
2014-04-24 22:21:45 +02:00
|
|
|
#include <QSignalMapper>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <QTableView>
|
2014-04-24 22:21:45 +02:00
|
|
|
#include <QUrl>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <QVBoxLayout>
|
2011-06-28 21:41:56 +02:00
|
|
|
|
2015-07-28 15:20:14 +02:00
|
|
|
TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *parent) :
|
2011-06-28 21:41:56 +02:00
|
|
|
QWidget(parent), model(0), transactionProxyModel(0),
|
2017-02-03 22:04:39 +01:00
|
|
|
transactionView(0), abandonAction(0), bumpFeeAction(0), columnResizingFixer(0)
|
2011-06-28 21:41:56 +02:00
|
|
|
{
|
|
|
|
// Build filter row
|
2011-07-03 20:59:56 +02:00
|
|
|
setContentsMargins(0,0,0,0);
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
QHBoxLayout *hlayout = new QHBoxLayout();
|
2011-07-03 20:59:56 +02:00
|
|
|
hlayout->setContentsMargins(0,0,0,0);
|
2015-07-28 15:20:14 +02:00
|
|
|
|
|
|
|
if (platformStyle->getUseExtraSpacing()) {
|
|
|
|
hlayout->setSpacing(5);
|
|
|
|
hlayout->addSpacing(26);
|
|
|
|
} else {
|
|
|
|
hlayout->setSpacing(0);
|
|
|
|
hlayout->addSpacing(23);
|
|
|
|
}
|
2011-06-28 21:41:56 +02:00
|
|
|
|
2014-08-10 02:26:04 +02:00
|
|
|
watchOnlyWidget = new QComboBox(this);
|
|
|
|
watchOnlyWidget->setFixedWidth(24);
|
|
|
|
watchOnlyWidget->addItem("", TransactionFilterProxy::WatchOnlyFilter_All);
|
2015-07-28 15:20:14 +02:00
|
|
|
watchOnlyWidget->addItem(platformStyle->SingleColorIcon(":/icons/eye_plus"), "", TransactionFilterProxy::WatchOnlyFilter_Yes);
|
|
|
|
watchOnlyWidget->addItem(platformStyle->SingleColorIcon(":/icons/eye_minus"), "", TransactionFilterProxy::WatchOnlyFilter_No);
|
2014-08-10 02:26:04 +02:00
|
|
|
hlayout->addWidget(watchOnlyWidget);
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
dateWidget = new QComboBox(this);
|
2015-07-28 15:20:14 +02:00
|
|
|
if (platformStyle->getUseExtraSpacing()) {
|
|
|
|
dateWidget->setFixedWidth(121);
|
|
|
|
} else {
|
|
|
|
dateWidget->setFixedWidth(120);
|
|
|
|
}
|
2011-06-28 21:41:56 +02:00
|
|
|
dateWidget->addItem(tr("All"), All);
|
|
|
|
dateWidget->addItem(tr("Today"), Today);
|
|
|
|
dateWidget->addItem(tr("This week"), ThisWeek);
|
|
|
|
dateWidget->addItem(tr("This month"), ThisMonth);
|
2011-07-01 20:28:11 +02:00
|
|
|
dateWidget->addItem(tr("Last month"), LastMonth);
|
2011-06-28 21:41:56 +02:00
|
|
|
dateWidget->addItem(tr("This year"), ThisYear);
|
|
|
|
dateWidget->addItem(tr("Range..."), Range);
|
|
|
|
hlayout->addWidget(dateWidget);
|
|
|
|
|
|
|
|
typeWidget = new QComboBox(this);
|
2015-07-28 15:20:14 +02:00
|
|
|
if (platformStyle->getUseExtraSpacing()) {
|
|
|
|
typeWidget->setFixedWidth(121);
|
|
|
|
} else {
|
|
|
|
typeWidget->setFixedWidth(120);
|
|
|
|
}
|
2011-06-28 21:41:56 +02:00
|
|
|
|
|
|
|
typeWidget->addItem(tr("All"), TransactionFilterProxy::ALL_TYPES);
|
|
|
|
typeWidget->addItem(tr("Received with"), TransactionFilterProxy::TYPE(TransactionRecord::RecvWithAddress) |
|
2011-12-28 11:14:05 +01:00
|
|
|
TransactionFilterProxy::TYPE(TransactionRecord::RecvFromOther));
|
2011-06-28 21:41:56 +02:00
|
|
|
typeWidget->addItem(tr("Sent to"), TransactionFilterProxy::TYPE(TransactionRecord::SendToAddress) |
|
2011-12-28 11:14:05 +01:00
|
|
|
TransactionFilterProxy::TYPE(TransactionRecord::SendToOther));
|
2011-06-28 21:41:56 +02:00
|
|
|
typeWidget->addItem(tr("To yourself"), TransactionFilterProxy::TYPE(TransactionRecord::SendToSelf));
|
2011-07-07 10:43:04 +02:00
|
|
|
typeWidget->addItem(tr("Mined"), TransactionFilterProxy::TYPE(TransactionRecord::Generated));
|
2011-06-28 21:41:56 +02:00
|
|
|
typeWidget->addItem(tr("Other"), TransactionFilterProxy::TYPE(TransactionRecord::Other));
|
|
|
|
|
|
|
|
hlayout->addWidget(typeWidget);
|
|
|
|
|
|
|
|
addressWidget = new QLineEdit(this);
|
2011-07-02 09:21:16 +02:00
|
|
|
#if QT_VERSION >= 0x040700
|
2011-08-28 14:12:26 +02:00
|
|
|
addressWidget->setPlaceholderText(tr("Enter address or label to search"));
|
2011-07-02 09:21:16 +02:00
|
|
|
#endif
|
2011-06-28 21:41:56 +02:00
|
|
|
hlayout->addWidget(addressWidget);
|
|
|
|
|
|
|
|
amountWidget = new QLineEdit(this);
|
2011-07-02 09:21:16 +02:00
|
|
|
#if QT_VERSION >= 0x040700
|
2011-08-28 14:12:26 +02:00
|
|
|
amountWidget->setPlaceholderText(tr("Min amount"));
|
2011-07-02 09:21:16 +02:00
|
|
|
#endif
|
2015-07-28 15:20:14 +02:00
|
|
|
if (platformStyle->getUseExtraSpacing()) {
|
|
|
|
amountWidget->setFixedWidth(97);
|
|
|
|
} else {
|
|
|
|
amountWidget->setFixedWidth(100);
|
|
|
|
}
|
2011-06-28 21:41:56 +02:00
|
|
|
amountWidget->setValidator(new QDoubleValidator(0, 1e20, 8, this));
|
|
|
|
hlayout->addWidget(amountWidget);
|
|
|
|
|
|
|
|
QVBoxLayout *vlayout = new QVBoxLayout(this);
|
2011-07-03 20:59:56 +02:00
|
|
|
vlayout->setContentsMargins(0,0,0,0);
|
|
|
|
vlayout->setSpacing(0);
|
2011-06-28 21:41:56 +02:00
|
|
|
|
|
|
|
QTableView *view = new QTableView(this);
|
|
|
|
vlayout->addLayout(hlayout);
|
2011-07-22 18:30:25 +02:00
|
|
|
vlayout->addWidget(createDateRangeWidget());
|
2011-06-28 21:41:56 +02:00
|
|
|
vlayout->addWidget(view);
|
|
|
|
vlayout->setSpacing(0);
|
|
|
|
int width = view->verticalScrollBar()->sizeHint().width();
|
|
|
|
// Cover scroll bar width with spacing
|
2015-07-28 15:20:14 +02:00
|
|
|
if (platformStyle->getUseExtraSpacing()) {
|
|
|
|
hlayout->addSpacing(width+2);
|
|
|
|
} else {
|
|
|
|
hlayout->addSpacing(width);
|
|
|
|
}
|
2011-06-28 21:41:56 +02:00
|
|
|
// Always show scroll bar
|
|
|
|
view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
|
2011-07-07 18:25:27 +02:00
|
|
|
view->setTabKeyNavigation(false);
|
2011-07-08 22:27:36 +02:00
|
|
|
view->setContextMenuPolicy(Qt::CustomContextMenu);
|
2011-06-28 21:41:56 +02:00
|
|
|
|
2014-05-10 00:50:09 +02:00
|
|
|
view->installEventFilter(this);
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
transactionView = view;
|
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
// Actions
|
2016-03-17 17:54:54 +01:00
|
|
|
abandonAction = new QAction(tr("Abandon transaction"), this);
|
2017-02-03 22:04:39 +01:00
|
|
|
bumpFeeAction = new QAction(tr("Increase transaction fee"), this);
|
2011-08-28 14:12:26 +02:00
|
|
|
QAction *copyAddressAction = new QAction(tr("Copy address"), this);
|
|
|
|
QAction *copyLabelAction = new QAction(tr("Copy label"), this);
|
2011-12-04 14:14:10 +01:00
|
|
|
QAction *copyAmountAction = new QAction(tr("Copy amount"), this);
|
2013-03-21 10:33:36 +01:00
|
|
|
QAction *copyTxIDAction = new QAction(tr("Copy transaction ID"), this);
|
2015-11-17 11:17:09 +01:00
|
|
|
QAction *copyTxHexAction = new QAction(tr("Copy raw transaction"), this);
|
2016-03-01 20:16:32 +01:00
|
|
|
QAction *copyTxPlainText = new QAction(tr("Copy full transaction details"), this);
|
2011-08-28 14:12:26 +02:00
|
|
|
QAction *editLabelAction = new QAction(tr("Edit label"), this);
|
2012-05-06 16:24:15 +02:00
|
|
|
QAction *showDetailsAction = new QAction(tr("Show transaction details"), this);
|
2011-07-08 22:27:36 +02:00
|
|
|
|
2016-11-18 15:47:20 +01:00
|
|
|
contextMenu = new QMenu(this);
|
2011-07-08 22:27:36 +02:00
|
|
|
contextMenu->addAction(copyAddressAction);
|
|
|
|
contextMenu->addAction(copyLabelAction);
|
2011-12-04 14:14:10 +01:00
|
|
|
contextMenu->addAction(copyAmountAction);
|
2013-03-21 10:33:36 +01:00
|
|
|
contextMenu->addAction(copyTxIDAction);
|
2015-11-17 11:17:09 +01:00
|
|
|
contextMenu->addAction(copyTxHexAction);
|
2016-03-01 20:16:32 +01:00
|
|
|
contextMenu->addAction(copyTxPlainText);
|
2011-07-08 22:27:36 +02:00
|
|
|
contextMenu->addAction(showDetailsAction);
|
2016-03-17 17:54:54 +01:00
|
|
|
contextMenu->addSeparator();
|
2017-02-03 22:04:39 +01:00
|
|
|
contextMenu->addAction(bumpFeeAction);
|
2016-03-17 17:54:54 +01:00
|
|
|
contextMenu->addAction(abandonAction);
|
|
|
|
contextMenu->addAction(editLabelAction);
|
2011-07-08 22:27:36 +02:00
|
|
|
|
2014-04-24 22:21:45 +02:00
|
|
|
mapperThirdPartyTxUrls = new QSignalMapper(this);
|
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
// Connect actions
|
2014-04-24 22:21:45 +02:00
|
|
|
connect(mapperThirdPartyTxUrls, SIGNAL(mapped(QString)), this, SLOT(openThirdPartyTxUrl(QString)));
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int)));
|
|
|
|
connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int)));
|
2014-08-10 02:26:04 +02:00
|
|
|
connect(watchOnlyWidget, SIGNAL(activated(int)), this, SLOT(chooseWatchonly(int)));
|
2011-07-27 20:54:10 +02:00
|
|
|
connect(addressWidget, SIGNAL(textChanged(QString)), this, SLOT(changedPrefix(QString)));
|
|
|
|
connect(amountWidget, SIGNAL(textChanged(QString)), this, SLOT(changedAmount(QString)));
|
2011-06-30 21:34:00 +02:00
|
|
|
|
2011-07-27 20:54:10 +02:00
|
|
|
connect(view, SIGNAL(doubleClicked(QModelIndex)), this, SIGNAL(doubleClicked(QModelIndex)));
|
2011-12-04 14:14:10 +01:00
|
|
|
connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
|
2011-07-08 22:27:36 +02:00
|
|
|
|
2017-02-03 22:04:39 +01:00
|
|
|
connect(bumpFeeAction, SIGNAL(triggered()), this, SLOT(bumpFee()));
|
2016-03-17 17:54:54 +01:00
|
|
|
connect(abandonAction, SIGNAL(triggered()), this, SLOT(abandonTx()));
|
2011-07-08 22:27:36 +02:00
|
|
|
connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress()));
|
|
|
|
connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel()));
|
2011-12-04 14:14:10 +01:00
|
|
|
connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount()));
|
2013-03-21 10:33:36 +01:00
|
|
|
connect(copyTxIDAction, SIGNAL(triggered()), this, SLOT(copyTxID()));
|
2015-11-17 11:17:09 +01:00
|
|
|
connect(copyTxHexAction, SIGNAL(triggered()), this, SLOT(copyTxHex()));
|
2016-03-01 20:16:32 +01:00
|
|
|
connect(copyTxPlainText, SIGNAL(triggered()), this, SLOT(copyTxPlainText()));
|
2011-07-08 22:27:36 +02:00
|
|
|
connect(editLabelAction, SIGNAL(triggered()), this, SLOT(editLabel()));
|
|
|
|
connect(showDetailsAction, SIGNAL(triggered()), this, SLOT(showDetails()));
|
2011-06-28 21:41:56 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 13:43:29 +02:00
|
|
|
void TransactionView::setModel(WalletModel *_model)
|
2011-06-28 21:41:56 +02:00
|
|
|
{
|
2016-09-09 13:43:29 +02:00
|
|
|
this->model = _model;
|
|
|
|
if(_model)
|
2011-11-08 21:18:36 +01:00
|
|
|
{
|
|
|
|
transactionProxyModel = new TransactionFilterProxy(this);
|
2016-09-09 13:43:29 +02:00
|
|
|
transactionProxyModel->setSourceModel(_model->getTransactionTableModel());
|
2011-11-08 21:18:36 +01:00
|
|
|
transactionProxyModel->setDynamicSortFilter(true);
|
2012-07-17 11:38:18 +02:00
|
|
|
transactionProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
transactionProxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
|
2011-11-08 21:18:36 +01:00
|
|
|
|
|
|
|
transactionProxyModel->setSortRole(Qt::EditRole);
|
|
|
|
|
2014-03-21 06:45:47 +01:00
|
|
|
transactionView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
2011-11-08 21:18:36 +01:00
|
|
|
transactionView->setModel(transactionProxyModel);
|
|
|
|
transactionView->setAlternatingRowColors(true);
|
|
|
|
transactionView->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
|
|
transactionView->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
|
|
transactionView->setSortingEnabled(true);
|
2016-05-10 04:46:33 +02:00
|
|
|
transactionView->sortByColumn(TransactionTableModel::Date, Qt::DescendingOrder);
|
2011-11-08 21:18:36 +01:00
|
|
|
transactionView->verticalHeader()->hide();
|
|
|
|
|
2014-03-21 06:45:47 +01:00
|
|
|
transactionView->setColumnWidth(TransactionTableModel::Status, STATUS_COLUMN_WIDTH);
|
2014-08-10 02:26:04 +02:00
|
|
|
transactionView->setColumnWidth(TransactionTableModel::Watchonly, WATCHONLY_COLUMN_WIDTH);
|
2014-03-21 06:45:47 +01:00
|
|
|
transactionView->setColumnWidth(TransactionTableModel::Date, DATE_COLUMN_WIDTH);
|
|
|
|
transactionView->setColumnWidth(TransactionTableModel::Type, TYPE_COLUMN_WIDTH);
|
|
|
|
transactionView->setColumnWidth(TransactionTableModel::Amount, AMOUNT_MINIMUM_COLUMN_WIDTH);
|
|
|
|
|
2016-11-18 15:47:20 +01:00
|
|
|
columnResizingFixer = new GUIUtil::TableViewLastColumnResizingFixer(transactionView, AMOUNT_MINIMUM_COLUMN_WIDTH, MINIMUM_COLUMN_WIDTH, this);
|
2014-04-24 22:21:45 +02:00
|
|
|
|
2016-09-09 13:43:29 +02:00
|
|
|
if (_model->getOptionsModel())
|
2014-04-24 22:21:45 +02:00
|
|
|
{
|
|
|
|
// Add third party transaction URLs to context menu
|
2016-09-09 13:43:29 +02:00
|
|
|
QStringList listUrls = _model->getOptionsModel()->getThirdPartyTxUrls().split("|", QString::SkipEmptyParts);
|
2014-04-24 22:21:45 +02:00
|
|
|
for (int i = 0; i < listUrls.size(); ++i)
|
|
|
|
{
|
|
|
|
QString host = QUrl(listUrls[i].trimmed(), QUrl::StrictMode).host();
|
|
|
|
if (!host.isEmpty())
|
|
|
|
{
|
|
|
|
QAction *thirdPartyTxUrlAction = new QAction(host, this); // use host as menu item label
|
|
|
|
if (i == 0)
|
|
|
|
contextMenu->addSeparator();
|
|
|
|
contextMenu->addAction(thirdPartyTxUrlAction);
|
|
|
|
connect(thirdPartyTxUrlAction, SIGNAL(triggered()), mapperThirdPartyTxUrls, SLOT(map()));
|
|
|
|
mapperThirdPartyTxUrls->setMapping(thirdPartyTxUrlAction, listUrls[i].trimmed());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-10 02:26:04 +02:00
|
|
|
|
|
|
|
// show/hide column Watch-only
|
2016-09-09 13:43:29 +02:00
|
|
|
updateWatchOnlyColumn(_model->haveWatchOnly());
|
2014-08-10 02:26:04 +02:00
|
|
|
|
|
|
|
// Watch-only signal
|
2016-09-09 13:43:29 +02:00
|
|
|
connect(_model, SIGNAL(notifyWatchonlyChanged(bool)), this, SLOT(updateWatchOnlyColumn(bool)));
|
2011-11-08 21:18:36 +01:00
|
|
|
}
|
2011-06-28 21:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionView::chooseDate(int idx)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!transactionProxyModel)
|
|
|
|
return;
|
2011-06-28 21:41:56 +02:00
|
|
|
QDate current = QDate::currentDate();
|
2011-07-22 18:30:25 +02:00
|
|
|
dateRangeWidget->setVisible(false);
|
2011-06-28 21:41:56 +02:00
|
|
|
switch(dateWidget->itemData(idx).toInt())
|
|
|
|
{
|
|
|
|
case All:
|
|
|
|
transactionProxyModel->setDateRange(
|
|
|
|
TransactionFilterProxy::MIN_DATE,
|
|
|
|
TransactionFilterProxy::MAX_DATE);
|
|
|
|
break;
|
|
|
|
case Today:
|
|
|
|
transactionProxyModel->setDateRange(
|
|
|
|
QDateTime(current),
|
|
|
|
TransactionFilterProxy::MAX_DATE);
|
|
|
|
break;
|
|
|
|
case ThisWeek: {
|
2012-07-26 02:48:39 +02:00
|
|
|
// Find last Monday
|
2011-06-28 21:41:56 +02:00
|
|
|
QDate startOfWeek = current.addDays(-(current.dayOfWeek()-1));
|
|
|
|
transactionProxyModel->setDateRange(
|
|
|
|
QDateTime(startOfWeek),
|
|
|
|
TransactionFilterProxy::MAX_DATE);
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case ThisMonth:
|
|
|
|
transactionProxyModel->setDateRange(
|
|
|
|
QDateTime(QDate(current.year(), current.month(), 1)),
|
|
|
|
TransactionFilterProxy::MAX_DATE);
|
|
|
|
break;
|
2011-07-01 20:28:11 +02:00
|
|
|
case LastMonth:
|
|
|
|
transactionProxyModel->setDateRange(
|
2016-01-13 21:17:08 +01:00
|
|
|
QDateTime(QDate(current.year(), current.month(), 1).addMonths(-1)),
|
2011-07-01 20:28:11 +02:00
|
|
|
QDateTime(QDate(current.year(), current.month(), 1)));
|
|
|
|
break;
|
2011-06-28 21:41:56 +02:00
|
|
|
case ThisYear:
|
|
|
|
transactionProxyModel->setDateRange(
|
|
|
|
QDateTime(QDate(current.year(), 1, 1)),
|
|
|
|
TransactionFilterProxy::MAX_DATE);
|
|
|
|
break;
|
|
|
|
case Range:
|
2011-07-22 18:30:25 +02:00
|
|
|
dateRangeWidget->setVisible(true);
|
|
|
|
dateRangeChanged();
|
2011-06-28 21:41:56 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionView::chooseType(int idx)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!transactionProxyModel)
|
|
|
|
return;
|
2011-06-28 21:41:56 +02:00
|
|
|
transactionProxyModel->setTypeFilter(
|
|
|
|
typeWidget->itemData(idx).toInt());
|
|
|
|
}
|
|
|
|
|
2014-08-10 02:26:04 +02:00
|
|
|
void TransactionView::chooseWatchonly(int idx)
|
|
|
|
{
|
|
|
|
if(!transactionProxyModel)
|
|
|
|
return;
|
|
|
|
transactionProxyModel->setWatchOnlyFilter(
|
|
|
|
(TransactionFilterProxy::WatchOnlyFilter)watchOnlyWidget->itemData(idx).toInt());
|
|
|
|
}
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
void TransactionView::changedPrefix(const QString &prefix)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!transactionProxyModel)
|
|
|
|
return;
|
2011-06-28 21:41:56 +02:00
|
|
|
transactionProxyModel->setAddressPrefix(prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionView::changedAmount(const QString &amount)
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!transactionProxyModel)
|
|
|
|
return;
|
2014-04-23 00:46:19 +02:00
|
|
|
CAmount amount_parsed = 0;
|
2011-07-29 14:36:35 +02:00
|
|
|
if(BitcoinUnits::parse(model->getOptionsModel()->getDisplayUnit(), amount, &amount_parsed))
|
2011-06-28 21:41:56 +02:00
|
|
|
{
|
|
|
|
transactionProxyModel->setMinAmount(amount_parsed);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
transactionProxyModel->setMinAmount(0);
|
|
|
|
}
|
|
|
|
}
|
2011-07-07 14:27:16 +02:00
|
|
|
|
|
|
|
void TransactionView::exportClicked()
|
|
|
|
{
|
|
|
|
// CSV is currently the only supported format
|
2013-10-26 19:21:10 +02:00
|
|
|
QString filename = GUIUtil::getSaveFileName(this,
|
|
|
|
tr("Export Transaction History"), QString(),
|
2013-11-11 22:57:25 +01:00
|
|
|
tr("Comma separated file (*.csv)"), NULL);
|
2011-07-07 14:27:16 +02:00
|
|
|
|
2013-10-26 19:21:10 +02:00
|
|
|
if (filename.isNull())
|
|
|
|
return;
|
2011-07-15 02:11:11 +02:00
|
|
|
|
2011-07-07 14:27:16 +02:00
|
|
|
CSVModelWriter writer(filename);
|
|
|
|
|
|
|
|
// name, column, role
|
|
|
|
writer.setModel(transactionProxyModel);
|
2011-08-28 14:12:26 +02:00
|
|
|
writer.addColumn(tr("Confirmed"), 0, TransactionTableModel::ConfirmedRole);
|
2014-08-10 02:26:04 +02:00
|
|
|
if (model && model->haveWatchOnly())
|
2014-08-28 23:20:46 +02:00
|
|
|
writer.addColumn(tr("Watch-only"), TransactionTableModel::Watchonly);
|
2011-08-28 14:12:26 +02:00
|
|
|
writer.addColumn(tr("Date"), 0, TransactionTableModel::DateRole);
|
|
|
|
writer.addColumn(tr("Type"), TransactionTableModel::Type, Qt::EditRole);
|
|
|
|
writer.addColumn(tr("Label"), 0, TransactionTableModel::LabelRole);
|
|
|
|
writer.addColumn(tr("Address"), 0, TransactionTableModel::AddressRole);
|
2014-06-07 08:20:22 +02:00
|
|
|
writer.addColumn(BitcoinUnits::getAmountColumnTitle(model->getOptionsModel()->getDisplayUnit()), 0, TransactionTableModel::FormattedAmountRole);
|
2011-08-28 14:12:26 +02:00
|
|
|
writer.addColumn(tr("ID"), 0, TransactionTableModel::TxIDRole);
|
2011-07-07 14:27:16 +02:00
|
|
|
|
2013-10-26 19:21:10 +02:00
|
|
|
if(!writer.write()) {
|
2015-07-14 13:59:05 +02:00
|
|
|
Q_EMIT message(tr("Exporting Failed"), tr("There was an error trying to save the transaction history to %1.").arg(filename),
|
2013-10-26 19:21:10 +02:00
|
|
|
CClientUIInterface::MSG_ERROR);
|
|
|
|
}
|
|
|
|
else {
|
2015-07-14 13:59:05 +02:00
|
|
|
Q_EMIT message(tr("Exporting Successful"), tr("The transaction history was successfully saved to %1.").arg(filename),
|
2013-10-26 19:21:10 +02:00
|
|
|
CClientUIInterface::MSG_INFORMATION);
|
2011-07-07 14:27:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
void TransactionView::contextualMenu(const QPoint &point)
|
|
|
|
{
|
|
|
|
QModelIndex index = transactionView->indexAt(point);
|
2016-03-17 17:54:54 +01:00
|
|
|
QModelIndexList selection = transactionView->selectionModel()->selectedRows(0);
|
2016-06-24 12:05:45 +02:00
|
|
|
if (selection.empty())
|
|
|
|
return;
|
2016-03-17 17:54:54 +01:00
|
|
|
|
|
|
|
// check if transaction can be abandoned, disable context menu action in case it doesn't
|
|
|
|
uint256 hash;
|
|
|
|
hash.SetHex(selection.at(0).data(TransactionTableModel::TxHashRole).toString().toStdString());
|
|
|
|
abandonAction->setEnabled(model->transactionCanBeAbandoned(hash));
|
2017-02-03 22:04:39 +01:00
|
|
|
bumpFeeAction->setEnabled(model->transactionSignalsRBF(hash));
|
2016-03-17 17:54:54 +01:00
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
if(index.isValid())
|
|
|
|
{
|
|
|
|
contextMenu->exec(QCursor::pos());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-17 17:54:54 +01:00
|
|
|
void TransactionView::abandonTx()
|
|
|
|
{
|
|
|
|
if(!transactionView || !transactionView->selectionModel())
|
|
|
|
return;
|
|
|
|
QModelIndexList selection = transactionView->selectionModel()->selectedRows(0);
|
|
|
|
|
|
|
|
// get the hash from the TxHashRole (QVariant / QString)
|
|
|
|
uint256 hash;
|
|
|
|
QString hashQStr = selection.at(0).data(TransactionTableModel::TxHashRole).toString();
|
|
|
|
hash.SetHex(hashQStr.toStdString());
|
|
|
|
|
|
|
|
// Abandon the wallet transaction over the walletModel
|
|
|
|
model->abandonTransaction(hash);
|
|
|
|
|
|
|
|
// Update the table
|
|
|
|
model->getTransactionTableModel()->updateTransaction(hashQStr, CT_UPDATED, false);
|
|
|
|
}
|
|
|
|
|
2017-02-03 22:04:39 +01:00
|
|
|
void TransactionView::bumpFee()
|
|
|
|
{
|
|
|
|
if(!transactionView || !transactionView->selectionModel())
|
|
|
|
return;
|
|
|
|
QModelIndexList selection = transactionView->selectionModel()->selectedRows(0);
|
|
|
|
|
|
|
|
// get the hash from the TxHashRole (QVariant / QString)
|
|
|
|
uint256 hash;
|
|
|
|
QString hashQStr = selection.at(0).data(TransactionTableModel::TxHashRole).toString();
|
|
|
|
hash.SetHex(hashQStr.toStdString());
|
|
|
|
|
|
|
|
// Bump tx fee over the walletModel
|
2017-05-11 09:33:40 +02:00
|
|
|
if (model->bumpFee(hash)) {
|
|
|
|
// Update the table
|
|
|
|
model->getTransactionTableModel()->updateTransaction(hashQStr, CT_UPDATED, false);
|
|
|
|
}
|
2017-02-03 22:04:39 +01:00
|
|
|
}
|
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
void TransactionView::copyAddress()
|
|
|
|
{
|
2011-12-04 14:14:10 +01:00
|
|
|
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::AddressRole);
|
2011-07-08 22:27:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionView::copyLabel()
|
|
|
|
{
|
2011-12-04 14:14:10 +01:00
|
|
|
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::LabelRole);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionView::copyAmount()
|
|
|
|
{
|
|
|
|
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::FormattedAmountRole);
|
2011-07-08 22:27:36 +02:00
|
|
|
}
|
|
|
|
|
2013-03-21 10:33:36 +01:00
|
|
|
void TransactionView::copyTxID()
|
|
|
|
{
|
|
|
|
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxIDRole);
|
|
|
|
}
|
|
|
|
|
2015-11-17 11:17:09 +01:00
|
|
|
void TransactionView::copyTxHex()
|
|
|
|
{
|
|
|
|
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxHexRole);
|
|
|
|
}
|
|
|
|
|
2016-03-01 20:16:32 +01:00
|
|
|
void TransactionView::copyTxPlainText()
|
|
|
|
{
|
|
|
|
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxPlainTextRole);
|
|
|
|
}
|
|
|
|
|
2011-07-08 22:27:36 +02:00
|
|
|
void TransactionView::editLabel()
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!transactionView->selectionModel() ||!model)
|
|
|
|
return;
|
2011-07-08 22:27:36 +02:00
|
|
|
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
|
|
|
|
if(!selection.isEmpty())
|
|
|
|
{
|
|
|
|
AddressTableModel *addressBook = model->getAddressTableModel();
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!addressBook)
|
|
|
|
return;
|
2011-07-08 22:27:36 +02:00
|
|
|
QString address = selection.at(0).data(TransactionTableModel::AddressRole).toString();
|
|
|
|
if(address.isEmpty())
|
|
|
|
{
|
|
|
|
// If this transaction has no associated address, exit
|
|
|
|
return;
|
|
|
|
}
|
2011-11-08 19:54:16 +01:00
|
|
|
// Is address in address book? Address book can miss address when a transaction is
|
|
|
|
// sent from outside the UI.
|
2011-07-08 22:27:36 +02:00
|
|
|
int idx = addressBook->lookupAddress(address);
|
|
|
|
if(idx != -1)
|
|
|
|
{
|
|
|
|
// Edit sending / receiving address
|
|
|
|
QModelIndex modelIdx = addressBook->index(idx, 0, QModelIndex());
|
|
|
|
// Determine type of address, launch appropriate editor dialog type
|
|
|
|
QString type = modelIdx.data(AddressTableModel::TypeRole).toString();
|
|
|
|
|
2013-11-14 19:47:45 +01:00
|
|
|
EditAddressDialog dlg(
|
|
|
|
type == AddressTableModel::Receive
|
|
|
|
? EditAddressDialog::EditReceivingAddress
|
|
|
|
: EditAddressDialog::EditSendingAddress, this);
|
2011-07-08 22:27:36 +02:00
|
|
|
dlg.setModel(addressBook);
|
|
|
|
dlg.loadRow(idx);
|
|
|
|
dlg.exec();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add sending address
|
|
|
|
EditAddressDialog dlg(EditAddressDialog::NewSendingAddress,
|
2013-11-14 19:47:45 +01:00
|
|
|
this);
|
2011-11-08 19:54:16 +01:00
|
|
|
dlg.setModel(addressBook);
|
|
|
|
dlg.setAddress(address);
|
2011-07-08 22:27:36 +02:00
|
|
|
dlg.exec();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionView::showDetails()
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!transactionView->selectionModel())
|
|
|
|
return;
|
2011-07-08 22:27:36 +02:00
|
|
|
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
|
|
|
|
if(!selection.isEmpty())
|
|
|
|
{
|
2016-04-25 16:01:28 +02:00
|
|
|
TransactionDescDialog *dlg = new TransactionDescDialog(selection.at(0));
|
|
|
|
dlg->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
dlg->show();
|
2011-07-08 22:27:36 +02:00
|
|
|
}
|
|
|
|
}
|
2011-07-22 18:30:25 +02:00
|
|
|
|
2014-04-24 22:21:45 +02:00
|
|
|
void TransactionView::openThirdPartyTxUrl(QString url)
|
|
|
|
{
|
|
|
|
if(!transactionView || !transactionView->selectionModel())
|
|
|
|
return;
|
|
|
|
QModelIndexList selection = transactionView->selectionModel()->selectedRows(0);
|
|
|
|
if(!selection.isEmpty())
|
|
|
|
QDesktopServices::openUrl(QUrl::fromUserInput(url.replace("%s", selection.at(0).data(TransactionTableModel::TxHashRole).toString())));
|
|
|
|
}
|
|
|
|
|
2011-07-22 18:30:25 +02:00
|
|
|
QWidget *TransactionView::createDateRangeWidget()
|
|
|
|
{
|
|
|
|
dateRangeWidget = new QFrame();
|
|
|
|
dateRangeWidget->setFrameStyle(QFrame::Panel | QFrame::Raised);
|
|
|
|
dateRangeWidget->setContentsMargins(1,1,1,1);
|
|
|
|
QHBoxLayout *layout = new QHBoxLayout(dateRangeWidget);
|
|
|
|
layout->setContentsMargins(0,0,0,0);
|
|
|
|
layout->addSpacing(23);
|
2011-08-28 14:12:26 +02:00
|
|
|
layout->addWidget(new QLabel(tr("Range:")));
|
2011-07-22 18:30:25 +02:00
|
|
|
|
|
|
|
dateFrom = new QDateTimeEdit(this);
|
|
|
|
dateFrom->setDisplayFormat("dd/MM/yy");
|
|
|
|
dateFrom->setCalendarPopup(true);
|
|
|
|
dateFrom->setMinimumWidth(100);
|
|
|
|
dateFrom->setDate(QDate::currentDate().addDays(-7));
|
|
|
|
layout->addWidget(dateFrom);
|
2011-08-28 14:12:26 +02:00
|
|
|
layout->addWidget(new QLabel(tr("to")));
|
2011-07-22 18:30:25 +02:00
|
|
|
|
|
|
|
dateTo = new QDateTimeEdit(this);
|
|
|
|
dateTo->setDisplayFormat("dd/MM/yy");
|
|
|
|
dateTo->setCalendarPopup(true);
|
|
|
|
dateTo->setMinimumWidth(100);
|
|
|
|
dateTo->setDate(QDate::currentDate());
|
|
|
|
layout->addWidget(dateTo);
|
|
|
|
layout->addStretch();
|
|
|
|
|
|
|
|
// Hide by default
|
|
|
|
dateRangeWidget->setVisible(false);
|
|
|
|
|
|
|
|
// Notify on change
|
|
|
|
connect(dateFrom, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
|
|
|
|
connect(dateTo, SIGNAL(dateChanged(QDate)), this, SLOT(dateRangeChanged()));
|
|
|
|
|
|
|
|
return dateRangeWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionView::dateRangeChanged()
|
|
|
|
{
|
2011-11-08 21:18:36 +01:00
|
|
|
if(!transactionProxyModel)
|
|
|
|
return;
|
2011-07-22 18:30:25 +02:00
|
|
|
transactionProxyModel->setDateRange(
|
|
|
|
QDateTime(dateFrom->date()),
|
|
|
|
QDateTime(dateTo->date()).addDays(1));
|
|
|
|
}
|
2012-05-12 13:19:44 +02:00
|
|
|
|
|
|
|
void TransactionView::focusTransaction(const QModelIndex &idx)
|
|
|
|
{
|
|
|
|
if(!transactionProxyModel)
|
|
|
|
return;
|
|
|
|
QModelIndex targetIdx = transactionProxyModel->mapFromSource(idx);
|
|
|
|
transactionView->scrollTo(targetIdx);
|
|
|
|
transactionView->setCurrentIndex(targetIdx);
|
|
|
|
transactionView->setFocus();
|
|
|
|
}
|
2014-03-21 06:45:47 +01:00
|
|
|
|
2014-03-21 09:12:01 +01:00
|
|
|
// We override the virtual resizeEvent of the QWidget to adjust tables column
|
|
|
|
// sizes as the tables width is proportional to the dialogs width.
|
|
|
|
void TransactionView::resizeEvent(QResizeEvent* event)
|
|
|
|
{
|
|
|
|
QWidget::resizeEvent(event);
|
|
|
|
columnResizingFixer->stretchColumnWidth(TransactionTableModel::ToAddress);
|
2014-03-21 06:45:47 +01:00
|
|
|
}
|
2014-05-10 00:50:09 +02:00
|
|
|
|
|
|
|
// Need to override default Ctrl+C action for amount as default behaviour is just to copy DisplayRole text
|
|
|
|
bool TransactionView::eventFilter(QObject *obj, QEvent *event)
|
|
|
|
{
|
|
|
|
if (event->type() == QEvent::KeyPress)
|
|
|
|
{
|
|
|
|
QKeyEvent *ke = static_cast<QKeyEvent *>(event);
|
|
|
|
if (ke->key() == Qt::Key_C && ke->modifiers().testFlag(Qt::ControlModifier))
|
|
|
|
{
|
2016-03-01 20:16:32 +01:00
|
|
|
GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxPlainTextRole);
|
|
|
|
return true;
|
2014-05-10 00:50:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return QWidget::eventFilter(obj, event);
|
|
|
|
}
|
2014-08-10 02:26:04 +02:00
|
|
|
|
|
|
|
// show/hide column Watch-only
|
|
|
|
void TransactionView::updateWatchOnlyColumn(bool fHaveWatchOnly)
|
|
|
|
{
|
|
|
|
watchOnlyWidget->setVisible(fHaveWatchOnly);
|
|
|
|
transactionView->setColumnHidden(TransactionTableModel::Watchonly, !fHaveWatchOnly);
|
|
|
|
}
|