feather/src/dialog/TxInfoDialog.cpp

137 lines
4.9 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.
2021-06-27 12:22:54 +00:00
#include "TxInfoDialog.h"
#include "ui_TxInfoDialog.h"
#include <QMessageBox>
2021-03-14 21:12:02 +00:00
#include <QScrollBar>
2021-06-27 14:33:18 +00:00
#include "appcontext.h"
#include "config.h"
#include "libwalletqt/TransactionHistory.h"
#include "libwalletqt/Transfer.h"
#include "libwalletqt/WalletManager.h"
#include "model/ModelUtils.h"
#include "utils.h"
2021-06-27 12:22:54 +00:00
TxInfoDialog::TxInfoDialog(QSharedPointer<AppContext> ctx, TransactionInfo *txInfo, QWidget *parent)
2021-05-18 15:59:18 +00:00
: QDialog(parent)
2021-06-27 12:22:54 +00:00
, ui(new Ui::TxInfoDialog)
2021-05-18 15:59:18 +00:00
, m_ctx(std::move(ctx))
, m_txInfo(txInfo)
2021-07-02 17:35:21 +00:00
, m_txProofDialog(new TxProofDialog(this, m_ctx, txInfo))
{
ui->setupUi(this);
2021-03-08 20:03:20 +00:00
m_txid = txInfo->hash();
ui->label_txid->setText(m_txid);
2021-06-27 12:22:54 +00:00
connect(ui->btn_CopyTxKey, &QPushButton::pressed, this, &TxInfoDialog::copyTxKey);
connect(ui->btn_createTxProof, &QPushButton::pressed, this, &TxInfoDialog::createTxProof);
connect(m_ctx->wallet, &Wallet::newBlock, this, &TxInfoDialog::updateData);
2021-03-14 21:12:02 +00:00
this->setData(txInfo);
2021-05-18 15:59:18 +00:00
if (m_ctx->txCache.contains(txInfo->hash()) && (txInfo->isFailed() || txInfo->isPending()) && txInfo->direction() != TransactionInfo::Direction_In) {
2021-03-14 21:12:02 +00:00
connect(ui->btn_rebroadcastTx, &QPushButton::pressed, [this]{
emit resendTranscation(m_txid);
});
} else {
ui->btn_rebroadcastTx->hide();
}
2021-01-29 14:51:59 +00:00
QTextCursor cursor = ui->destinations->textCursor();
for (const auto& transfer : txInfo->transfers()) {
auto address = transfer->address();
auto amount = WalletManager::displayAmount(transfer->amount());
2021-05-18 15:59:18 +00:00
auto index = m_ctx->wallet->subaddressIndex(address);
2021-06-28 15:30:08 +00:00
cursor.insertText(address, Utils::addressTextFormat(index, transfer->amount()));
2021-01-29 14:51:59 +00:00
cursor.insertText(QString(" %1").arg(amount), QTextCharFormat());
cursor.insertBlock();
}
2021-03-14 21:12:02 +00:00
2021-01-29 14:51:59 +00:00
if (txInfo->transfers().size() == 0) {
ui->frameDestinations->hide();
}
2021-03-14 21:12:02 +00:00
QCoreApplication::processEvents();
qreal lineHeight = QFontMetrics(ui->destinations->document()->defaultFont()).height();
qreal docHeight = txInfo->transfers().size();
int h = int(docHeight * (lineHeight + 2) + 11);
h = qMin(qMax(h, 100), 600);
ui->destinations->setMinimumHeight(h);
ui->destinations->setMaximumHeight(h);
ui->destinations->verticalScrollBar()->hide();
this->adjustSize();
}
2021-06-27 14:35:49 +00:00
void TxInfoDialog::setData(TransactionInfo *tx) {
2021-03-14 21:12:02 +00:00
QString blockHeight = QString::number(tx->blockHeight());
if (tx->isFailed()) {
ui->label_status->setText("Status: Failed (node was unable to relay transaction)");
}
if (blockHeight == "0") {
ui->label_status->setText("Status: Unconfirmed (in mempool)");
}
else {
QString dateTimeFormat = QString("%1 %2").arg(config()->get(Config::dateFormat).toString(), config()->get(Config::timeFormat).toString());
QString date = tx->timestamp().toString(dateTimeFormat);
QString statusText = QString("Status: Included in block %1 (%2 confirmations) on %3").arg(blockHeight, QString::number(tx->confirmations()), date);
ui->label_status->setText(statusText);
}
if (tx->confirmationsRequired() > tx->confirmations()) {
bool mandatoryLock = tx->confirmationsRequired() == 10;
QString confsRequired = QString::number(tx->confirmationsRequired() - tx->confirmations());
ui->label_lock->setText(QString("Lock: Outputs become spendable in %1 blocks (%2)").arg(confsRequired, mandatoryLock ? "consensus rule" : "specified by sender"));
} else {
ui->label_lock->setText("Lock: Outputs are spendable");
}
QString direction = tx->direction() == TransactionInfo::Direction_In ? "received" : "sent";
2021-05-24 12:26:04 +00:00
ui->label_amount->setText(QString("Amount %1: %2 XMR").arg(direction, tx->displayAmount()));
2021-03-14 21:12:02 +00:00
2021-03-27 14:55:13 +00:00
QString fee;
if (tx->isCoinbase())
fee = "Not applicable";
else if (tx->direction() == TransactionInfo::Direction_In)
fee = "Paid by sender";
else if (tx->fee().isEmpty())
fee = "N/A";
else
fee = QString("%1 XMR").arg(tx->fee());
ui->label_fee->setText(QString("Fee: %1").arg(fee));
2021-03-14 21:12:02 +00:00
}
2021-06-27 12:22:54 +00:00
void TxInfoDialog::updateData() {
2021-06-27 14:35:49 +00:00
TransactionInfo *tx = m_ctx->wallet->history()->transaction(m_txid);
2021-03-14 21:12:02 +00:00
if (!tx) return;
this->setData(tx);
}
2021-06-27 12:22:54 +00:00
void TxInfoDialog::copyTxKey() {
2021-07-02 17:35:21 +00:00
m_ctx->wallet->getTxKeyAsync(m_txid, [this](QVariantMap map){
QString txKey = map.value("tx_key").toString();
if (txKey.isEmpty()) {
QMessageBox::warning(this, "Unable to copy transaction key", "Transaction key unknown");
} else {
Utils::copyToClipboard(txKey);
QMessageBox::information(this, "Transaction key copied", "Transaction key copied to clipboard.");
}
});
2021-01-29 14:51:59 +00:00
}
2021-06-27 12:22:54 +00:00
void TxInfoDialog::createTxProof() {
2021-03-08 20:03:20 +00:00
m_txProofDialog->show();
2021-07-02 17:35:21 +00:00
m_txProofDialog->getTxKey();
2021-03-08 20:03:20 +00:00
}
2021-06-27 12:22:54 +00:00
TxInfoDialog::~TxInfoDialog() = default;