2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-12 14:49:42 +02:00
|
|
|
#include "transactiontablemodel.h"
|
2013-01-23 21:51:02 +01:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "addresstablemodel.h"
|
|
|
|
#include "bitcoinunits.h"
|
2011-05-28 20:32:19 +02:00
|
|
|
#include "guiconstants.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "guiutil.h"
|
|
|
|
#include "optionsmodel.h"
|
2011-06-10 15:05:51 +02:00
|
|
|
#include "transactiondesc.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "transactionrecord.h"
|
2011-07-02 13:45:59 +02:00
|
|
|
#include "walletmodel.h"
|
2011-05-08 16:30:10 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "main.h"
|
|
|
|
#include "sync.h"
|
|
|
|
#include "uint256.h"
|
|
|
|
#include "util.h"
|
2012-04-15 22:10:54 +02:00
|
|
|
#include "wallet.h"
|
2011-06-26 19:23:24 +02:00
|
|
|
|
2011-05-27 19:48:42 +02:00
|
|
|
#include <QColor>
|
2011-06-28 21:41:56 +02:00
|
|
|
#include <QDateTime>
|
2013-09-04 11:52:45 +02:00
|
|
|
#include <QDebug>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <QIcon>
|
|
|
|
#include <QList>
|
|
|
|
#include <QTimer>
|
2011-05-10 19:03:10 +02:00
|
|
|
|
2011-08-08 17:38:17 +02:00
|
|
|
// Amount column is right-aligned it contains numbers
|
2011-06-26 22:47:02 +02:00
|
|
|
static int column_alignments[] = {
|
2013-08-29 16:19:43 +02:00
|
|
|
Qt::AlignLeft|Qt::AlignVCenter, /* status */
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter, /* date */
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter, /* type */
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter, /* address */
|
|
|
|
Qt::AlignRight|Qt::AlignVCenter /* amount */
|
2011-06-26 22:47:02 +02:00
|
|
|
};
|
|
|
|
|
2011-06-18 11:53:25 +02:00
|
|
|
// Comparison operator for sort/binary search of model tx list
|
2011-06-03 20:48:03 +02:00
|
|
|
struct TxLessThan
|
|
|
|
{
|
|
|
|
bool operator()(const TransactionRecord &a, const TransactionRecord &b) const
|
|
|
|
{
|
|
|
|
return a.hash < b.hash;
|
|
|
|
}
|
|
|
|
bool operator()(const TransactionRecord &a, const uint256 &b) const
|
|
|
|
{
|
|
|
|
return a.hash < b;
|
|
|
|
}
|
|
|
|
bool operator()(const uint256 &a, const TransactionRecord &b) const
|
|
|
|
{
|
|
|
|
return a < b.hash;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-06-18 11:53:25 +02:00
|
|
|
// Private implementation
|
2012-04-15 12:31:56 +02:00
|
|
|
class TransactionTablePriv
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2012-04-15 12:31:56 +02:00
|
|
|
public:
|
2013-08-24 15:07:17 +02:00
|
|
|
TransactionTablePriv(CWallet *wallet, TransactionTableModel *parent) :
|
|
|
|
wallet(wallet),
|
|
|
|
parent(parent)
|
2011-06-03 20:48:03 +02:00
|
|
|
{
|
|
|
|
}
|
2013-08-24 15:07:17 +02:00
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
CWallet *wallet;
|
2011-06-03 20:48:03 +02:00
|
|
|
TransactionTableModel *parent;
|
|
|
|
|
2011-05-28 20:32:19 +02:00
|
|
|
/* Local cache of wallet.
|
|
|
|
* As it is in the same order as the CWallet, by definition
|
|
|
|
* this is sorted by sha256.
|
|
|
|
*/
|
2011-05-27 08:20:23 +02:00
|
|
|
QList<TransactionRecord> cachedWallet;
|
|
|
|
|
2011-06-18 11:53:25 +02:00
|
|
|
/* Query entire wallet anew from core.
|
|
|
|
*/
|
2011-05-28 20:32:19 +02:00
|
|
|
void refreshWallet()
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2013-09-04 11:52:45 +02:00
|
|
|
qDebug() << "TransactionTablePriv::refreshWallet";
|
2011-05-28 22:31:27 +02:00
|
|
|
cachedWallet.clear();
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK(wallet->cs_wallet);
|
2011-06-26 19:23:24 +02:00
|
|
|
for(std::map<uint256, CWalletTx>::iterator it = wallet->mapWallet.begin(); it != wallet->mapWallet.end(); ++it)
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2012-05-05 16:07:14 +02:00
|
|
|
if(TransactionRecord::showTransaction(it->second))
|
|
|
|
cachedWallet.append(TransactionRecord::decomposeTransaction(wallet, it->second));
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-18 11:53:25 +02:00
|
|
|
/* Update our model of the wallet incrementally, to synchronize our model of the wallet
|
|
|
|
with that of the core.
|
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
Call with transaction that was added, removed or changed.
|
2011-05-28 20:32:19 +02:00
|
|
|
*/
|
2012-05-05 16:07:14 +02:00
|
|
|
void updateWallet(const uint256 &hash, int status)
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
2013-09-04 11:52:45 +02:00
|
|
|
qDebug() << "TransactionTablePriv::updateWallet : " + QString::fromStdString(hash.ToString()) + " " + QString::number(status);
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK(wallet->cs_wallet);
|
2012-05-05 16:07:14 +02:00
|
|
|
|
|
|
|
// Find transaction in wallet
|
|
|
|
std::map<uint256, CWalletTx>::iterator mi = wallet->mapWallet.find(hash);
|
|
|
|
bool inWallet = mi != wallet->mapWallet.end();
|
|
|
|
|
|
|
|
// Find bounds of this transaction in model
|
|
|
|
QList<TransactionRecord>::iterator lower = qLowerBound(
|
|
|
|
cachedWallet.begin(), cachedWallet.end(), hash, TxLessThan());
|
|
|
|
QList<TransactionRecord>::iterator upper = qUpperBound(
|
|
|
|
cachedWallet.begin(), cachedWallet.end(), hash, TxLessThan());
|
|
|
|
int lowerIndex = (lower - cachedWallet.begin());
|
|
|
|
int upperIndex = (upper - cachedWallet.begin());
|
|
|
|
bool inModel = (lower != upper);
|
|
|
|
|
|
|
|
// Determine whether to show transaction or not
|
|
|
|
bool showTransaction = (inWallet && TransactionRecord::showTransaction(mi->second));
|
|
|
|
|
|
|
|
if(status == CT_UPDATED)
|
2011-06-03 20:48:03 +02:00
|
|
|
{
|
2012-05-05 16:07:14 +02:00
|
|
|
if(showTransaction && !inModel)
|
|
|
|
status = CT_NEW; /* Not in model, but want to show, treat as new */
|
|
|
|
if(!showTransaction && inModel)
|
|
|
|
status = CT_DELETED; /* In model, but want to hide, treat as deleted */
|
|
|
|
}
|
2011-06-03 20:48:03 +02:00
|
|
|
|
2013-09-04 11:52:45 +02:00
|
|
|
qDebug() << " inWallet=" + QString::number(inWallet) + " inModel=" + QString::number(inModel) +
|
|
|
|
" Index=" + QString::number(lowerIndex) + "-" + QString::number(upperIndex) +
|
|
|
|
" showTransaction=" + QString::number(showTransaction) + " derivedStatus=" + QString::number(status);
|
2012-05-05 16:07:14 +02:00
|
|
|
|
|
|
|
switch(status)
|
|
|
|
{
|
|
|
|
case CT_NEW:
|
|
|
|
if(inModel)
|
2011-06-03 20:48:03 +02:00
|
|
|
{
|
2013-09-04 11:52:45 +02:00
|
|
|
qDebug() << "TransactionTablePriv::updateWallet : Warning: Got CT_NEW, but transaction is already in model";
|
2012-05-05 16:07:14 +02:00
|
|
|
break;
|
2011-06-03 20:48:03 +02:00
|
|
|
}
|
2012-05-05 16:07:14 +02:00
|
|
|
if(!inWallet)
|
|
|
|
{
|
2013-09-04 11:52:45 +02:00
|
|
|
qDebug() << "TransactionTablePriv::updateWallet : Warning: Got CT_NEW, but transaction is not in wallet";
|
2012-05-05 16:07:14 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(showTransaction)
|
2011-06-03 20:48:03 +02:00
|
|
|
{
|
2011-06-18 11:53:25 +02:00
|
|
|
// Added -- insert at the right position
|
2011-06-03 20:48:03 +02:00
|
|
|
QList<TransactionRecord> toInsert =
|
2011-06-26 19:23:24 +02:00
|
|
|
TransactionRecord::decomposeTransaction(wallet, mi->second);
|
2011-06-03 20:48:03 +02:00
|
|
|
if(!toInsert.isEmpty()) /* only if something to insert */
|
|
|
|
{
|
|
|
|
parent->beginInsertRows(QModelIndex(), lowerIndex, lowerIndex+toInsert.size()-1);
|
|
|
|
int insert_idx = lowerIndex;
|
|
|
|
foreach(const TransactionRecord &rec, toInsert)
|
|
|
|
{
|
|
|
|
cachedWallet.insert(insert_idx, rec);
|
|
|
|
insert_idx += 1;
|
|
|
|
}
|
|
|
|
parent->endInsertRows();
|
|
|
|
}
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
2012-05-05 16:07:14 +02:00
|
|
|
break;
|
|
|
|
case CT_DELETED:
|
|
|
|
if(!inModel)
|
2011-06-03 20:48:03 +02:00
|
|
|
{
|
2013-09-04 11:52:45 +02:00
|
|
|
qDebug() << "TransactionTablePriv::updateWallet : Warning: Got CT_DELETED, but transaction is not in model";
|
2012-05-05 16:07:14 +02:00
|
|
|
break;
|
2011-06-03 20:48:03 +02:00
|
|
|
}
|
2012-05-05 16:07:14 +02:00
|
|
|
// Removed -- remove entire transaction from table
|
|
|
|
parent->beginRemoveRows(QModelIndex(), lowerIndex, upperIndex-1);
|
|
|
|
cachedWallet.erase(lower, upper);
|
|
|
|
parent->endRemoveRows();
|
|
|
|
break;
|
|
|
|
case CT_UPDATED:
|
|
|
|
// Miscellaneous updates -- nothing to do, status update will take care of this, and is only computed for
|
|
|
|
// visible transactions.
|
|
|
|
break;
|
2011-06-03 20:48:03 +02:00
|
|
|
}
|
2011-05-28 20:32:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-27 08:20:23 +02:00
|
|
|
int size()
|
|
|
|
{
|
|
|
|
return cachedWallet.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
TransactionRecord *index(int idx)
|
|
|
|
{
|
|
|
|
if(idx >= 0 && idx < cachedWallet.size())
|
|
|
|
{
|
2011-06-04 21:41:31 +02:00
|
|
|
TransactionRecord *rec = &cachedWallet[idx];
|
|
|
|
|
2011-06-18 11:53:25 +02:00
|
|
|
// If a status update is needed (blocks came in since last check),
|
|
|
|
// update the status of this transaction from the wallet. Otherwise,
|
|
|
|
// simply re-use the cached status.
|
2011-06-04 21:41:31 +02:00
|
|
|
if(rec->statusUpdateNeeded())
|
|
|
|
{
|
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK(wallet->cs_wallet);
|
2011-06-26 19:23:24 +02:00
|
|
|
std::map<uint256, CWalletTx>::iterator mi = wallet->mapWallet.find(rec->hash);
|
2011-06-04 21:41:31 +02:00
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
if(mi != wallet->mapWallet.end())
|
2011-06-04 21:41:31 +02:00
|
|
|
{
|
|
|
|
rec->updateStatus(mi->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rec;
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-05-27 08:20:23 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2011-05-28 20:32:19 +02:00
|
|
|
|
2013-08-24 15:07:17 +02:00
|
|
|
QString describe(TransactionRecord *rec, int unit)
|
2011-06-10 15:05:51 +02:00
|
|
|
{
|
|
|
|
{
|
2012-04-06 18:39:12 +02:00
|
|
|
LOCK(wallet->cs_wallet);
|
2011-06-26 19:23:24 +02:00
|
|
|
std::map<uint256, CWalletTx>::iterator mi = wallet->mapWallet.find(rec->hash);
|
|
|
|
if(mi != wallet->mapWallet.end())
|
2011-06-10 15:05:51 +02:00
|
|
|
{
|
2013-09-05 12:23:08 +02:00
|
|
|
return TransactionDesc::toHTML(wallet, mi->second, rec->idx, unit);
|
2011-06-10 15:05:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return QString("");
|
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
};
|
|
|
|
|
2011-07-02 13:45:59 +02:00
|
|
|
TransactionTableModel::TransactionTableModel(CWallet* wallet, WalletModel *parent):
|
2011-05-27 08:20:23 +02:00
|
|
|
QAbstractTableModel(parent),
|
2011-06-26 19:23:24 +02:00
|
|
|
wallet(wallet),
|
2011-07-02 13:45:59 +02:00
|
|
|
walletModel(parent),
|
2012-05-05 16:07:14 +02:00
|
|
|
priv(new TransactionTablePriv(wallet, this)),
|
|
|
|
cachedNumBlocks(0)
|
2011-05-08 16:30:10 +02:00
|
|
|
{
|
2011-07-07 21:25:17 +02:00
|
|
|
columns << QString() << tr("Date") << tr("Type") << tr("Address") << tr("Amount");
|
2011-05-27 08:20:23 +02:00
|
|
|
|
2011-06-01 15:33:33 +02:00
|
|
|
priv->refreshWallet();
|
2011-05-28 20:32:19 +02:00
|
|
|
|
|
|
|
QTimer *timer = new QTimer(this);
|
2012-05-05 16:07:14 +02:00
|
|
|
connect(timer, SIGNAL(timeout()), this, SLOT(updateConfirmations()));
|
2011-05-28 20:32:19 +02:00
|
|
|
timer->start(MODEL_UPDATE_DELAY);
|
2012-06-18 22:48:35 +02:00
|
|
|
|
|
|
|
connect(walletModel->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit()));
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TransactionTableModel::~TransactionTableModel()
|
|
|
|
{
|
2011-06-01 15:33:33 +02:00
|
|
|
delete priv;
|
2011-05-08 16:30:10 +02:00
|
|
|
}
|
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
void TransactionTableModel::updateTransaction(const QString &hash, int status)
|
2011-05-27 21:24:17 +02:00
|
|
|
{
|
2012-05-05 16:07:14 +02:00
|
|
|
uint256 updated;
|
|
|
|
updated.SetHex(hash.toStdString());
|
2011-05-28 20:32:19 +02:00
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
priv->updateWallet(updated, status);
|
|
|
|
}
|
2011-05-28 20:32:19 +02:00
|
|
|
|
2012-05-05 16:07:14 +02:00
|
|
|
void TransactionTableModel::updateConfirmations()
|
|
|
|
{
|
2013-10-10 23:07:44 +02:00
|
|
|
if(chainActive.Height() != cachedNumBlocks)
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
2013-10-10 23:07:44 +02:00
|
|
|
cachedNumBlocks = chainActive.Height();
|
2012-05-05 16:07:14 +02:00
|
|
|
// Blocks came in since last poll.
|
|
|
|
// Invalidate status (number of confirmations) and (possibly) description
|
|
|
|
// for all rows. Qt is smart enough to only actually request the data for the
|
|
|
|
// visible rows.
|
2011-06-04 21:41:31 +02:00
|
|
|
emit dataChanged(index(0, Status), index(priv->size()-1, Status));
|
2011-06-26 22:47:02 +02:00
|
|
|
emit dataChanged(index(0, ToAddress), index(priv->size()-1, ToAddress));
|
2011-05-28 20:32:19 +02:00
|
|
|
}
|
2011-05-27 21:24:17 +02:00
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
|
2011-05-08 16:30:10 +02:00
|
|
|
int TransactionTableModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
2011-06-01 15:33:33 +02:00
|
|
|
return priv->size();
|
2011-05-08 16:30:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int TransactionTableModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
|
|
|
return columns.length();
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:35:52 +02:00
|
|
|
QString TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) const
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-05-27 18:38:30 +02:00
|
|
|
QString status;
|
2011-05-27 20:36:58 +02:00
|
|
|
|
2011-05-27 18:38:30 +02:00
|
|
|
switch(wtx->status.status)
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-05-27 18:38:30 +02:00
|
|
|
case TransactionStatus::OpenUntilBlock:
|
2013-01-09 09:14:48 +01:00
|
|
|
status = tr("Open for %n more block(s)","",wtx->status.open_for);
|
2011-05-27 18:38:30 +02:00
|
|
|
break;
|
|
|
|
case TransactionStatus::OpenUntilDate:
|
2011-08-08 17:38:17 +02:00
|
|
|
status = tr("Open until %1").arg(GUIUtil::dateTimeStr(wtx->status.open_for));
|
2011-05-27 18:38:30 +02:00
|
|
|
break;
|
|
|
|
case TransactionStatus::Offline:
|
2011-07-07 10:29:07 +02:00
|
|
|
status = tr("Offline (%1 confirmations)").arg(wtx->status.depth);
|
2011-05-27 18:38:30 +02:00
|
|
|
break;
|
|
|
|
case TransactionStatus::Unconfirmed:
|
2011-08-06 18:37:41 +02:00
|
|
|
status = tr("Unconfirmed (%1 of %2 confirmations)").arg(wtx->status.depth).arg(TransactionRecord::NumConfirmations);
|
2011-05-27 18:38:30 +02:00
|
|
|
break;
|
|
|
|
case TransactionStatus::HaveConfirmations:
|
2011-07-07 10:29:07 +02:00
|
|
|
status = tr("Confirmed (%1 confirmations)").arg(wtx->status.depth);
|
2011-05-27 18:38:30 +02:00
|
|
|
break;
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
2011-07-07 10:29:07 +02:00
|
|
|
if(wtx->type == TransactionRecord::Generated)
|
|
|
|
{
|
|
|
|
switch(wtx->status.maturity)
|
|
|
|
{
|
|
|
|
case TransactionStatus::Immature:
|
2012-06-03 13:03:55 +02:00
|
|
|
status += "\n" + tr("Mined balance will be available when it matures in %n more block(s)", "", wtx->status.matures_in);
|
2011-07-07 10:29:07 +02:00
|
|
|
break;
|
|
|
|
case TransactionStatus::Mature:
|
|
|
|
break;
|
|
|
|
case TransactionStatus::MaturesWarning:
|
2012-03-27 23:15:05 +02:00
|
|
|
status += "\n" + tr("This block was not received by any other nodes and will probably not be accepted!");
|
2011-07-07 10:29:07 +02:00
|
|
|
break;
|
|
|
|
case TransactionStatus::NotAccepted:
|
2012-03-27 23:15:05 +02:00
|
|
|
status += "\n" + tr("Generated but not accepted");
|
2011-07-07 10:29:07 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-05-27 18:38:30 +02:00
|
|
|
|
2011-08-05 15:35:52 +02:00
|
|
|
return status;
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:35:52 +02:00
|
|
|
QString TransactionTableModel::formatTxDate(const TransactionRecord *wtx) const
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-05-27 18:38:30 +02:00
|
|
|
if(wtx->time)
|
|
|
|
{
|
2011-08-08 17:38:17 +02:00
|
|
|
return GUIUtil::dateTimeStr(wtx->time);
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-08-05 15:35:52 +02:00
|
|
|
return QString();
|
2011-05-27 18:38:30 +02:00
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
2011-07-30 17:42:02 +02:00
|
|
|
/* Look up address in address book, if found return label (address)
|
|
|
|
otherwise just return (address)
|
2011-06-28 21:41:56 +02:00
|
|
|
*/
|
2011-07-30 17:42:02 +02:00
|
|
|
QString TransactionTableModel::lookupAddress(const std::string &address, bool tooltip) const
|
2011-06-28 21:41:56 +02:00
|
|
|
{
|
2011-07-08 22:27:36 +02:00
|
|
|
QString label = walletModel->getAddressTableModel()->labelForAddress(QString::fromStdString(address));
|
2011-06-28 21:41:56 +02:00
|
|
|
QString description;
|
2011-07-30 17:42:02 +02:00
|
|
|
if(!label.isEmpty())
|
2011-06-28 21:41:56 +02:00
|
|
|
{
|
2011-07-30 17:42:02 +02:00
|
|
|
description += label + QString(" ");
|
2011-06-28 21:41:56 +02:00
|
|
|
}
|
2011-07-30 17:42:02 +02:00
|
|
|
if(label.isEmpty() || walletModel->getOptionsModel()->getDisplayAddresses() || tooltip)
|
2011-06-28 21:41:56 +02:00
|
|
|
{
|
2011-07-30 17:42:02 +02:00
|
|
|
description += QString("(") + QString::fromStdString(address) + QString(")");
|
2011-06-28 21:41:56 +02:00
|
|
|
}
|
2011-05-27 20:36:58 +02:00
|
|
|
return description;
|
|
|
|
}
|
|
|
|
|
2011-07-31 17:05:34 +02:00
|
|
|
QString TransactionTableModel::formatTxType(const TransactionRecord *wtx) const
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-05-27 19:48:42 +02:00
|
|
|
switch(wtx->type)
|
|
|
|
{
|
2011-05-28 22:31:27 +02:00
|
|
|
case TransactionRecord::RecvWithAddress:
|
2011-07-31 17:05:34 +02:00
|
|
|
return tr("Received with");
|
2011-12-28 11:14:05 +01:00
|
|
|
case TransactionRecord::RecvFromOther:
|
|
|
|
return tr("Received from");
|
2011-05-27 19:48:42 +02:00
|
|
|
case TransactionRecord::SendToAddress:
|
2011-12-28 11:14:05 +01:00
|
|
|
case TransactionRecord::SendToOther:
|
2011-07-31 17:05:34 +02:00
|
|
|
return tr("Sent to");
|
2011-05-27 19:48:42 +02:00
|
|
|
case TransactionRecord::SendToSelf:
|
2011-07-31 17:05:34 +02:00
|
|
|
return tr("Payment to yourself");
|
2011-06-26 22:47:02 +02:00
|
|
|
case TransactionRecord::Generated:
|
2011-07-31 17:05:34 +02:00
|
|
|
return tr("Mined");
|
|
|
|
default:
|
|
|
|
return QString();
|
2011-06-26 22:47:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-31 17:05:34 +02:00
|
|
|
QVariant TransactionTableModel::txAddressDecoration(const TransactionRecord *wtx) const
|
2011-06-26 22:47:02 +02:00
|
|
|
{
|
2011-07-31 17:05:34 +02:00
|
|
|
switch(wtx->type)
|
|
|
|
{
|
|
|
|
case TransactionRecord::Generated:
|
|
|
|
return QIcon(":/icons/tx_mined");
|
|
|
|
case TransactionRecord::RecvWithAddress:
|
2011-12-28 11:14:05 +01:00
|
|
|
case TransactionRecord::RecvFromOther:
|
2011-07-31 17:05:34 +02:00
|
|
|
return QIcon(":/icons/tx_input");
|
|
|
|
case TransactionRecord::SendToAddress:
|
2011-12-28 11:14:05 +01:00
|
|
|
case TransactionRecord::SendToOther:
|
2011-07-31 17:05:34 +02:00
|
|
|
return QIcon(":/icons/tx_output");
|
|
|
|
default:
|
|
|
|
return QIcon(":/icons/tx_inout");
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
2011-06-26 22:47:02 +02:00
|
|
|
|
2011-07-31 17:05:34 +02:00
|
|
|
QString TransactionTableModel::formatTxToAddress(const TransactionRecord *wtx, bool tooltip) const
|
|
|
|
{
|
2011-06-26 22:47:02 +02:00
|
|
|
switch(wtx->type)
|
|
|
|
{
|
2011-12-28 11:14:05 +01:00
|
|
|
case TransactionRecord::RecvFromOther:
|
2011-07-31 17:05:34 +02:00
|
|
|
return QString::fromStdString(wtx->address);
|
2011-07-30 17:42:02 +02:00
|
|
|
case TransactionRecord::RecvWithAddress:
|
2011-06-26 22:47:02 +02:00
|
|
|
case TransactionRecord::SendToAddress:
|
2012-06-02 04:33:28 +02:00
|
|
|
case TransactionRecord::Generated:
|
2011-07-31 17:05:34 +02:00
|
|
|
return lookupAddress(wtx->address, tooltip);
|
2011-12-28 11:14:05 +01:00
|
|
|
case TransactionRecord::SendToOther:
|
2011-07-31 17:05:34 +02:00
|
|
|
return QString::fromStdString(wtx->address);
|
2011-06-26 22:47:02 +02:00
|
|
|
case TransactionRecord::SendToSelf:
|
2011-07-31 17:05:34 +02:00
|
|
|
default:
|
2011-07-31 17:43:46 +02:00
|
|
|
return tr("(n/a)");
|
2011-05-27 19:48:42 +02:00
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
2011-07-30 17:42:02 +02:00
|
|
|
QVariant TransactionTableModel::addressColor(const TransactionRecord *wtx) const
|
|
|
|
{
|
|
|
|
// Show addresses without label in a less visible color
|
|
|
|
switch(wtx->type)
|
|
|
|
{
|
|
|
|
case TransactionRecord::RecvWithAddress:
|
|
|
|
case TransactionRecord::SendToAddress:
|
2012-06-02 04:33:28 +02:00
|
|
|
case TransactionRecord::Generated:
|
2011-07-30 17:42:02 +02:00
|
|
|
{
|
|
|
|
QString label = walletModel->getAddressTableModel()->labelForAddress(QString::fromStdString(wtx->address));
|
|
|
|
if(label.isEmpty())
|
|
|
|
return COLOR_BAREADDRESS;
|
|
|
|
} break;
|
2011-07-31 17:43:46 +02:00
|
|
|
case TransactionRecord::SendToSelf:
|
|
|
|
return COLOR_BAREADDRESS;
|
2011-07-30 17:42:02 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:35:52 +02:00
|
|
|
QString TransactionTableModel::formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed) const
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-07-29 14:36:35 +02:00
|
|
|
QString str = BitcoinUnits::format(walletModel->getOptionsModel()->getDisplayUnit(), wtx->credit + wtx->debit);
|
2011-07-07 14:27:16 +02:00
|
|
|
if(showUnconfirmed)
|
2011-05-27 18:38:30 +02:00
|
|
|
{
|
2011-07-07 14:27:16 +02:00
|
|
|
if(!wtx->status.confirmed || wtx->status.maturity != TransactionStatus::Mature)
|
|
|
|
{
|
|
|
|
str = QString("[") + str + QString("]");
|
|
|
|
}
|
2011-05-27 18:38:30 +02:00
|
|
|
}
|
2011-08-05 15:35:52 +02:00
|
|
|
return QString(str);
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:35:52 +02:00
|
|
|
QVariant TransactionTableModel::txStatusDecoration(const TransactionRecord *wtx) const
|
2011-06-13 09:05:48 +02:00
|
|
|
{
|
2011-07-07 10:29:07 +02:00
|
|
|
if(wtx->type == TransactionRecord::Generated)
|
2011-06-13 09:05:48 +02:00
|
|
|
{
|
2011-07-07 10:29:07 +02:00
|
|
|
switch(wtx->status.maturity)
|
2011-06-13 09:05:48 +02:00
|
|
|
{
|
2011-07-07 10:29:07 +02:00
|
|
|
case TransactionStatus::Immature: {
|
|
|
|
int total = wtx->status.depth + wtx->status.matures_in;
|
|
|
|
int part = (wtx->status.depth * 4 / total) + 1;
|
|
|
|
return QIcon(QString(":/icons/transaction_%1").arg(part));
|
|
|
|
}
|
|
|
|
case TransactionStatus::Mature:
|
|
|
|
return QIcon(":/icons/transaction_confirmed");
|
|
|
|
case TransactionStatus::MaturesWarning:
|
|
|
|
case TransactionStatus::NotAccepted:
|
|
|
|
return QIcon(":/icons/transaction_0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch(wtx->status.status)
|
|
|
|
{
|
|
|
|
case TransactionStatus::OpenUntilBlock:
|
|
|
|
case TransactionStatus::OpenUntilDate:
|
|
|
|
return QColor(64,64,255);
|
|
|
|
break;
|
|
|
|
case TransactionStatus::Offline:
|
|
|
|
return QColor(192,192,192);
|
|
|
|
case TransactionStatus::Unconfirmed:
|
|
|
|
switch(wtx->status.depth)
|
|
|
|
{
|
|
|
|
case 0: return QIcon(":/icons/transaction_0");
|
|
|
|
case 1: return QIcon(":/icons/transaction_1");
|
|
|
|
case 2: return QIcon(":/icons/transaction_2");
|
|
|
|
case 3: return QIcon(":/icons/transaction_3");
|
|
|
|
case 4: return QIcon(":/icons/transaction_4");
|
|
|
|
default: return QIcon(":/icons/transaction_5");
|
|
|
|
};
|
|
|
|
case TransactionStatus::HaveConfirmations:
|
|
|
|
return QIcon(":/icons/transaction_confirmed");
|
|
|
|
}
|
2011-06-13 09:05:48 +02:00
|
|
|
}
|
|
|
|
return QColor(0,0,0);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:35:52 +02:00
|
|
|
QString TransactionTableModel::formatTooltip(const TransactionRecord *rec) const
|
|
|
|
{
|
2011-08-06 18:37:41 +02:00
|
|
|
QString tooltip = formatTxStatus(rec) + QString("\n") + formatTxType(rec);
|
2011-12-28 11:14:05 +01:00
|
|
|
if(rec->type==TransactionRecord::RecvFromOther || rec->type==TransactionRecord::SendToOther ||
|
2011-08-05 15:35:52 +02:00
|
|
|
rec->type==TransactionRecord::SendToAddress || rec->type==TransactionRecord::RecvWithAddress)
|
|
|
|
{
|
|
|
|
tooltip += QString(" ") + formatTxToAddress(rec, true);
|
|
|
|
}
|
|
|
|
return tooltip;
|
|
|
|
}
|
|
|
|
|
2011-05-08 16:30:10 +02:00
|
|
|
QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
if(!index.isValid())
|
|
|
|
return QVariant();
|
2011-05-27 08:20:23 +02:00
|
|
|
TransactionRecord *rec = static_cast<TransactionRecord*>(index.internalPointer());
|
2011-05-08 16:30:10 +02:00
|
|
|
|
2011-08-06 18:37:41 +02:00
|
|
|
switch(role)
|
2011-06-13 09:05:48 +02:00
|
|
|
{
|
2011-08-06 18:37:41 +02:00
|
|
|
case Qt::DecorationRole:
|
2011-07-31 17:05:34 +02:00
|
|
|
switch(index.column())
|
2011-06-13 09:05:48 +02:00
|
|
|
{
|
2011-07-31 17:05:34 +02:00
|
|
|
case Status:
|
2011-08-05 15:35:52 +02:00
|
|
|
return txStatusDecoration(rec);
|
2011-07-31 17:05:34 +02:00
|
|
|
case ToAddress:
|
|
|
|
return txAddressDecoration(rec);
|
2011-06-13 09:05:48 +02:00
|
|
|
}
|
2011-08-06 18:37:41 +02:00
|
|
|
break;
|
|
|
|
case Qt::DisplayRole:
|
2011-05-27 08:20:23 +02:00
|
|
|
switch(index.column())
|
|
|
|
{
|
|
|
|
case Date:
|
|
|
|
return formatTxDate(rec);
|
2011-06-26 22:47:02 +02:00
|
|
|
case Type:
|
|
|
|
return formatTxType(rec);
|
|
|
|
case ToAddress:
|
2011-07-30 17:42:02 +02:00
|
|
|
return formatTxToAddress(rec, false);
|
2011-06-26 22:47:02 +02:00
|
|
|
case Amount:
|
|
|
|
return formatTxAmount(rec);
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
2011-08-06 18:37:41 +02:00
|
|
|
break;
|
|
|
|
case Qt::EditRole:
|
|
|
|
// Edit role is used for sorting, so return the unformatted values
|
2011-05-28 20:32:19 +02:00
|
|
|
switch(index.column())
|
|
|
|
{
|
|
|
|
case Status:
|
|
|
|
return QString::fromStdString(rec->status.sortKey);
|
|
|
|
case Date:
|
|
|
|
return rec->time;
|
2011-06-26 22:47:02 +02:00
|
|
|
case Type:
|
|
|
|
return formatTxType(rec);
|
|
|
|
case ToAddress:
|
2011-07-30 17:42:02 +02:00
|
|
|
return formatTxToAddress(rec, true);
|
2011-06-26 22:47:02 +02:00
|
|
|
case Amount:
|
|
|
|
return rec->credit + rec->debit;
|
2011-05-28 20:32:19 +02:00
|
|
|
}
|
2011-08-06 18:37:41 +02:00
|
|
|
break;
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
return formatTooltip(rec);
|
|
|
|
case Qt::TextAlignmentRole:
|
2011-05-08 22:23:31 +02:00
|
|
|
return column_alignments[index.column()];
|
2011-08-06 18:37:41 +02:00
|
|
|
case Qt::ForegroundRole:
|
|
|
|
// Non-confirmed transactions are grey
|
2011-06-17 22:44:15 +02:00
|
|
|
if(!rec->status.confirmed)
|
2011-06-07 18:59:01 +02:00
|
|
|
{
|
2011-07-25 18:39:52 +02:00
|
|
|
return COLOR_UNCONFIRMED;
|
2011-05-27 19:48:42 +02:00
|
|
|
}
|
2011-06-26 22:47:02 +02:00
|
|
|
if(index.column() == Amount && (rec->credit+rec->debit) < 0)
|
|
|
|
{
|
2011-07-25 18:39:52 +02:00
|
|
|
return COLOR_NEGATIVE;
|
2011-06-26 22:47:02 +02:00
|
|
|
}
|
2011-07-30 17:42:02 +02:00
|
|
|
if(index.column() == ToAddress)
|
|
|
|
{
|
|
|
|
return addressColor(rec);
|
|
|
|
}
|
2011-08-06 18:37:41 +02:00
|
|
|
break;
|
|
|
|
case TypeRole:
|
2011-06-28 21:41:56 +02:00
|
|
|
return rec->type;
|
2011-08-06 18:37:41 +02:00
|
|
|
case DateRole:
|
2011-06-28 21:41:56 +02:00
|
|
|
return QDateTime::fromTime_t(static_cast<uint>(rec->time));
|
2011-08-06 18:37:41 +02:00
|
|
|
case LongDescriptionRole:
|
2013-08-24 15:07:17 +02:00
|
|
|
return priv->describe(rec, walletModel->getOptionsModel()->getDisplayUnit());
|
2011-08-06 18:37:41 +02:00
|
|
|
case AddressRole:
|
2011-06-28 21:41:56 +02:00
|
|
|
return QString::fromStdString(rec->address);
|
2011-08-06 18:37:41 +02:00
|
|
|
case LabelRole:
|
2011-07-08 22:27:36 +02:00
|
|
|
return walletModel->getAddressTableModel()->labelForAddress(QString::fromStdString(rec->address));
|
2011-08-06 18:37:41 +02:00
|
|
|
case AmountRole:
|
2011-08-03 20:52:18 +02:00
|
|
|
return rec->credit + rec->debit;
|
2011-08-06 18:37:41 +02:00
|
|
|
case TxIDRole:
|
2013-09-05 12:23:08 +02:00
|
|
|
return rec->getTxID();
|
2011-08-06 18:37:41 +02:00
|
|
|
case ConfirmedRole:
|
2011-08-04 04:40:01 +02:00
|
|
|
// Return True if transaction counts for balance
|
|
|
|
return rec->status.confirmed && !(rec->type == TransactionRecord::Generated &&
|
|
|
|
rec->status.maturity != TransactionStatus::Mature);
|
2011-08-06 18:37:41 +02:00
|
|
|
case FormattedAmountRole:
|
2011-07-07 14:27:16 +02:00
|
|
|
return formatTxAmount(rec, false);
|
|
|
|
}
|
2011-05-08 16:30:10 +02:00
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TransactionTableModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
2011-05-28 16:09:23 +02:00
|
|
|
if(orientation == Qt::Horizontal)
|
2011-05-08 22:23:31 +02:00
|
|
|
{
|
2011-05-28 16:09:23 +02:00
|
|
|
if(role == Qt::DisplayRole)
|
2011-05-08 22:23:31 +02:00
|
|
|
{
|
|
|
|
return columns[section];
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else if (role == Qt::TextAlignmentRole)
|
2011-05-28 16:09:23 +02:00
|
|
|
{
|
|
|
|
return column_alignments[section];
|
2011-06-14 21:06:00 +02:00
|
|
|
} else if (role == Qt::ToolTipRole)
|
|
|
|
{
|
|
|
|
switch(section)
|
|
|
|
{
|
|
|
|
case Status:
|
2011-06-24 21:45:33 +02:00
|
|
|
return tr("Transaction status. Hover over this field to show number of confirmations.");
|
2011-06-14 21:06:00 +02:00
|
|
|
case Date:
|
|
|
|
return tr("Date and time that the transaction was received.");
|
2011-06-26 22:47:02 +02:00
|
|
|
case Type:
|
|
|
|
return tr("Type of transaction.");
|
|
|
|
case ToAddress:
|
|
|
|
return tr("Destination address of transaction.");
|
|
|
|
case Amount:
|
|
|
|
return tr("Amount removed from or added to balance.");
|
2011-06-14 21:06:00 +02:00
|
|
|
}
|
2011-05-08 22:23:31 +02:00
|
|
|
}
|
2011-05-08 16:30:10 +02:00
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
2011-06-01 15:33:33 +02:00
|
|
|
QModelIndex TransactionTableModel::index(int row, int column, const QModelIndex &parent) const
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
2011-06-01 15:33:33 +02:00
|
|
|
TransactionRecord *data = priv->index(row);
|
2011-05-27 08:20:23 +02:00
|
|
|
if(data)
|
|
|
|
{
|
2011-06-01 15:33:33 +02:00
|
|
|
return createIndex(row, column, priv->index(row));
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-05-27 08:20:23 +02:00
|
|
|
return QModelIndex();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-18 22:48:35 +02:00
|
|
|
void TransactionTableModel::updateDisplayUnit()
|
|
|
|
{
|
|
|
|
// emit dataChanged to update Amount column with the current unit
|
|
|
|
emit dataChanged(index(0, Amount), index(priv->size()-1, Amount));
|
|
|
|
}
|