feather/src/historywidget.cpp

174 lines
5.8 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
#include "historywidget.h"
#include "ui_historywidget.h"
#include "dialog/transactioninfodialog.h"
2021-03-08 20:03:20 +00:00
#include "dialog/TxProofDialog.h"
2020-12-30 03:58:17 +00:00
#include <QMessageBox>
HistoryWidget::HistoryWidget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::HistoryWidget)
, m_contextMenu(new QMenu(this))
, m_copyMenu(new QMenu("Copy", this))
{
ui->setupUi(this);
m_contextMenu->addMenu(m_copyMenu);
m_contextMenu->addAction(QIcon(":/assets/images/info.png"), "Show details", this, &HistoryWidget::showTxDetails);
m_contextMenu->addAction(QIcon(":/assets/images/network.png"), "View on block explorer", this, &HistoryWidget::onViewOnBlockExplorer);
// copy menu
m_copyMenu->setIcon(QIcon(":/assets/images/copy.png"));
m_copyMenu->addAction("Transaction ID", this, [this]{copy(copyField::TxID);});
2021-03-08 20:03:20 +00:00
m_copyMenu->addAction("Description", this, [this]{copy(copyField::Description);});
m_copyMenu->addAction("Date", this, [this]{copy(copyField::Date);});
m_copyMenu->addAction("Amount", this, [this]{copy(copyField::Amount);});
ui->history->setContextMenuPolicy(Qt::CustomContextMenu);
2020-12-14 22:07:23 +00:00
connect(ui->history, &QTreeView::customContextMenuRequested, this, &HistoryWidget::showContextMenu);
connect(ui->search, &QLineEdit::textChanged, this, &HistoryWidget::setSearchFilter);
connect(ui->history, &QTreeView::doubleClicked, [this](QModelIndex index){
if (m_model == nullptr) return;
if (!(m_model->flags(index) & Qt::ItemIsEditable)) {
this->showTxDetails();
}
});
2020-12-30 03:58:17 +00:00
connect(ui->btn_moreInfo, &QPushButton::clicked, this, &HistoryWidget::showSyncNoticeMsg);
connect(ui->btn_close, &QPushButton::clicked, [this]{
config()->set(Config::showHistorySyncNotice, false);
ui->syncNotice->hide();
});
}
2020-12-14 22:07:23 +00:00
void HistoryWidget::showContextMenu(const QPoint &point) {
QModelIndex index = ui->history->indexAt(point);
if (!index.isValid()) {
return;
}
QMenu menu(this);
2021-03-08 20:03:20 +00:00
auto *tx = ui->history->currentEntry();
if (!tx) return;
bool unconfirmed = tx->isFailed() || tx->isPending();
if (AppContext::txCache.contains(tx->hash()) && unconfirmed && tx->direction() != TransactionInfo::Direction_In) {
2020-12-14 22:07:23 +00:00
menu.addAction(QIcon(":/assets/images/info.png"), "Resend transaction", this, &HistoryWidget::onResendTransaction);
}
menu.addMenu(m_copyMenu);
menu.addAction(QIcon(":/assets/images/info.png"), "Show details", this, &HistoryWidget::showTxDetails);
menu.addAction(QIcon(":/assets/images/network.png"), "View on block explorer", this, &HistoryWidget::onViewOnBlockExplorer);
2021-03-08 20:03:20 +00:00
menu.addAction("Create tx proof", this, &HistoryWidget::createTxProof);
2020-12-14 22:07:23 +00:00
menu.exec(ui->history->viewport()->mapToGlobal(point));
}
void HistoryWidget::onResendTransaction() {
2021-03-08 20:03:20 +00:00
auto *tx = ui->history->currentEntry();
if (tx) {
QString txid = tx->hash();
emit resendTransaction(txid);
}
2020-12-14 22:07:23 +00:00
}
2020-10-19 23:05:42 +00:00
void HistoryWidget::setModel(TransactionHistoryProxyModel *model, Wallet *wallet)
{
m_model = model;
2020-10-19 23:05:42 +00:00
m_wallet = wallet;
m_txHistory = m_wallet->history();
2021-03-08 20:03:20 +00:00
ui->history->setHistoryModel(m_model);
m_wallet->transactionHistoryModel()->amountPrecision = config()->get(Config::amountPrecision).toInt();
2021-03-08 20:03:20 +00:00
// Load view state
ui->history->setViewState(QByteArray::fromBase64(config()->get(Config::GUI_HistoryViewState).toByteArray()));
}
2020-12-30 04:45:00 +00:00
void HistoryWidget::resetModel()
{
2021-03-08 20:03:20 +00:00
// Save view state
config()->set(Config::GUI_HistoryViewState, ui->history->viewState().toBase64());
config()->sync();
2020-12-30 04:45:00 +00:00
ui->history->setModel(nullptr);
}
void HistoryWidget::showTxDetails() {
2021-03-08 20:03:20 +00:00
auto *tx = ui->history->currentEntry();
if (!tx) return;
2021-03-08 20:03:20 +00:00
auto *dialog = new TransactionInfoDialog(m_wallet, tx, this);
dialog->show();
}
void HistoryWidget::onViewOnBlockExplorer() {
2021-03-08 20:03:20 +00:00
auto *tx = ui->history->currentEntry();
if (!tx) return;
2021-03-08 20:03:20 +00:00
QString txid = tx->hash();
emit viewOnBlockExplorer(txid);
}
void HistoryWidget::setSearchText(const QString &text) {
ui->search->setText(text);
}
void HistoryWidget::setSearchFilter(const QString &filter) {
2021-03-08 20:03:20 +00:00
if (!m_model) return;
m_model->setSearchFilter(filter);
2021-03-08 20:03:20 +00:00
ui->history->setSearchMode(!filter.isEmpty());
}
void HistoryWidget::createTxProof() {
auto *tx = ui->history->currentEntry();
if (!tx) return;
auto *dialog = new TxProofDialog(this, m_wallet, tx);
dialog->exec();
dialog->deleteLater();
}
void HistoryWidget::copy(copyField field) {
2021-03-08 20:03:20 +00:00
auto *tx = ui->history->currentEntry();
if (!tx) return;
2021-03-08 20:03:20 +00:00
QString data = [field, tx]{
switch(field) {
case copyField::TxID:
2021-03-08 20:03:20 +00:00
return tx->hash();
case copyField::Date:
2021-03-08 20:03:20 +00:00
return tx->timestamp().toString("yyyy-MM-dd HH:mm");
case copyField::Amount:
2021-03-08 20:03:20 +00:00
return tx->displayAmount();
default:
return QString("");
}
2021-03-08 20:03:20 +00:00
}();
Utils::copyToClipboard(data);
}
2020-12-30 03:58:17 +00:00
void HistoryWidget::onWalletOpened() {
ui->syncNotice->setVisible(config()->get(Config::showHistorySyncNotice).toBool());
}
void HistoryWidget::onWalletRefreshed() {
ui->syncNotice->hide();
}
void HistoryWidget::showSyncNoticeMsg() {
QMessageBox::information(this, "Sync notice",
"The wallet needs to scan the blockchain to find your transactions. "
"The status bar will show you how many blocks are still remaining.\n"
"\n"
"The history page will update once synchronization has finished. "
"To update the history page during synchronization press Ctrl+R.");
}
HistoryWidget::~HistoryWidget() {
delete ui;
}