2011-05-12 14:49:42 +02:00
|
|
|
#include "transactiontablemodel.h"
|
2011-05-27 18:38:30 +02:00
|
|
|
#include "guiutil.h"
|
2011-05-27 19:48:42 +02:00
|
|
|
#include "transactionrecord.h"
|
2011-05-28 20:32:19 +02:00
|
|
|
#include "guiconstants.h"
|
2011-06-10 15:05:51 +02:00
|
|
|
#include "transactiondesc.h"
|
2011-07-02 13:45:59 +02:00
|
|
|
#include "walletmodel.h"
|
2011-05-08 16:30:10 +02:00
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
#include "headers.h"
|
|
|
|
|
2011-05-10 19:03:10 +02:00
|
|
|
#include <QLocale>
|
2011-05-27 08:20:23 +02:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QList>
|
2011-05-27 19:48:42 +02:00
|
|
|
#include <QColor>
|
2011-05-28 20:32:19 +02:00
|
|
|
#include <QTimer>
|
2011-06-15 20:07:21 +02:00
|
|
|
#include <QIcon>
|
2011-06-28 21:41:56 +02:00
|
|
|
#include <QDateTime>
|
2011-06-03 20:48:03 +02:00
|
|
|
#include <QtAlgorithms>
|
2011-05-10 19:03:10 +02:00
|
|
|
|
2011-06-26 22:47:02 +02:00
|
|
|
// Credit and Debit columns are right-aligned as they contain numbers
|
|
|
|
static int column_alignments[] = {
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter,
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter,
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter,
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter,
|
|
|
|
Qt::AlignRight|Qt::AlignVCenter
|
|
|
|
};
|
|
|
|
|
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
|
2011-06-01 15:33:33 +02:00
|
|
|
struct TransactionTablePriv
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-06-26 19:23:24 +02:00
|
|
|
TransactionTablePriv(CWallet *wallet, TransactionTableModel *parent):
|
|
|
|
wallet(wallet),
|
2011-06-03 20:48:03 +02:00
|
|
|
parent(parent)
|
|
|
|
{
|
|
|
|
}
|
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
|
|
|
{
|
2011-06-12 11:22:44 +02:00
|
|
|
#ifdef WALLET_UPDATE_DEBUG
|
2011-05-28 20:32:19 +02:00
|
|
|
qDebug() << "refreshWallet";
|
2011-06-12 11:22:44 +02:00
|
|
|
#endif
|
2011-05-28 22:31:27 +02:00
|
|
|
cachedWallet.clear();
|
2011-06-26 19:23:24 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_mapWallet)
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
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
|
|
|
{
|
2011-06-26 19:23:24 +02:00
|
|
|
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.
|
|
|
|
|
2011-05-28 20:32:19 +02:00
|
|
|
Call with list of hashes of transactions that were added, removed or changed.
|
|
|
|
*/
|
|
|
|
void updateWallet(const QList<uint256> &updated)
|
|
|
|
{
|
2011-06-18 11:53:25 +02:00
|
|
|
// Walk through updated transactions, update model as needed.
|
2011-06-12 11:22:44 +02:00
|
|
|
#ifdef WALLET_UPDATE_DEBUG
|
2011-05-28 20:32:19 +02:00
|
|
|
qDebug() << "updateWallet";
|
2011-06-12 11:22:44 +02:00
|
|
|
#endif
|
2011-06-18 11:53:25 +02:00
|
|
|
// Sort update list, and iterate through it in reverse, so that model updates
|
|
|
|
// can be emitted from end to beginning (so that earlier updates will not influence
|
|
|
|
// the indices of latter ones).
|
2011-06-03 20:48:03 +02:00
|
|
|
QList<uint256> updated_sorted = updated;
|
|
|
|
qSort(updated_sorted);
|
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_mapWallet)
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
2011-06-03 20:48:03 +02:00
|
|
|
for(int update_idx = updated_sorted.size()-1; update_idx >= 0; --update_idx)
|
|
|
|
{
|
|
|
|
const uint256 &hash = updated_sorted.at(update_idx);
|
|
|
|
/* Find transaction in wallet */
|
2011-06-26 19:23:24 +02:00
|
|
|
std::map<uint256, CWalletTx>::iterator mi = wallet->mapWallet.find(hash);
|
|
|
|
bool inWallet = mi != wallet->mapWallet.end();
|
2011-06-03 20:48:03 +02:00
|
|
|
/* 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());
|
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
// Determine if transaction is in model already
|
2011-06-03 20:48:03 +02:00
|
|
|
bool inModel = false;
|
|
|
|
if(lower != upper)
|
|
|
|
{
|
|
|
|
inModel = true;
|
|
|
|
}
|
|
|
|
|
2011-06-12 11:22:44 +02:00
|
|
|
#ifdef WALLET_UPDATE_DEBUG
|
2011-06-03 20:48:03 +02:00
|
|
|
qDebug() << " " << QString::fromStdString(hash.ToString()) << inWallet << " " << inModel
|
|
|
|
<< lowerIndex << "-" << upperIndex;
|
2011-06-12 11:22:44 +02:00
|
|
|
#endif
|
2011-06-03 20:48:03 +02:00
|
|
|
|
|
|
|
if(inWallet && !inModel)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
else if(!inWallet && inModel)
|
2011-06-03 20:48:03 +02:00
|
|
|
{
|
2011-06-18 11:53:25 +02:00
|
|
|
// Removed -- remove entire transaction from table
|
2011-06-03 20:48:03 +02:00
|
|
|
parent->beginRemoveRows(QModelIndex(), lowerIndex, upperIndex-1);
|
|
|
|
cachedWallet.erase(lower, upper);
|
|
|
|
parent->endRemoveRows();
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else if(inWallet && inModel)
|
2011-06-03 20:48:03 +02:00
|
|
|
{
|
2011-06-18 11:53:25 +02:00
|
|
|
// Updated -- nothing to do, status update will take care of this
|
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())
|
|
|
|
{
|
2011-06-26 19:23:24 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_mapWallet)
|
2011-06-04 21:41:31 +02:00
|
|
|
{
|
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
|
|
|
|
2011-06-10 15:05:51 +02:00
|
|
|
QString describe(TransactionRecord *rec)
|
|
|
|
{
|
2011-06-26 19:23:24 +02:00
|
|
|
CRITICAL_BLOCK(wallet->cs_mapWallet)
|
2011-06-10 15:05:51 +02:00
|
|
|
{
|
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
|
|
|
{
|
2011-06-26 19:23:24 +02:00
|
|
|
return QString::fromStdString(TransactionDesc::toHTML(wallet, mi->second));
|
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),
|
2011-06-26 19:23:24 +02:00
|
|
|
priv(new TransactionTablePriv(wallet, this))
|
2011-05-08 16:30:10 +02:00
|
|
|
{
|
2011-06-26 22:47:02 +02:00
|
|
|
columns << tr("Status") << 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);
|
|
|
|
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
|
|
|
|
timer->start(MODEL_UPDATE_DELAY);
|
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
|
|
|
}
|
|
|
|
|
2011-05-28 20:32:19 +02:00
|
|
|
void TransactionTableModel::update()
|
2011-05-27 21:24:17 +02:00
|
|
|
{
|
2011-05-28 20:32:19 +02:00
|
|
|
QList<uint256> updated;
|
|
|
|
|
2011-06-18 11:53:25 +02:00
|
|
|
// Check if there are changes to wallet map
|
2011-06-26 19:23:24 +02:00
|
|
|
TRY_CRITICAL_BLOCK(wallet->cs_mapWallet)
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
2011-06-26 19:23:24 +02:00
|
|
|
if(!wallet->vWalletUpdated.empty())
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
2011-06-26 19:23:24 +02:00
|
|
|
BOOST_FOREACH(uint256 hash, wallet->vWalletUpdated)
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
|
|
|
updated.append(hash);
|
|
|
|
}
|
2011-06-26 19:23:24 +02:00
|
|
|
wallet->vWalletUpdated.clear();
|
2011-05-28 20:32:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!updated.empty())
|
|
|
|
{
|
2011-06-01 15:33:33 +02:00
|
|
|
priv->updateWallet(updated);
|
2011-06-04 21:41:31 +02:00
|
|
|
|
2011-06-18 11:53:25 +02:00
|
|
|
// Status (number of confirmations) and (possibly) description
|
|
|
|
// columns changed for all 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-05-27 08:20:23 +02:00
|
|
|
QVariant TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) const
|
|
|
|
{
|
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:
|
|
|
|
status = tr("Open for %n block(s)","",wtx->status.open_for);
|
|
|
|
break;
|
|
|
|
case TransactionStatus::OpenUntilDate:
|
2011-06-24 21:45:33 +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-07-07 10:29:07 +02:00
|
|
|
status = tr("Unconfirmed (%1/%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)
|
|
|
|
{
|
2011-07-07 10:43:04 +02:00
|
|
|
status += "\n\n";
|
2011-07-07 10:29:07 +02:00
|
|
|
switch(wtx->status.maturity)
|
|
|
|
{
|
|
|
|
case TransactionStatus::Immature:
|
2011-07-07 10:43:04 +02:00
|
|
|
status += tr("Mined balance will be available in %n more blocks", "",
|
2011-07-07 10:29:07 +02:00
|
|
|
wtx->status.matures_in);
|
|
|
|
break;
|
|
|
|
case TransactionStatus::Mature:
|
|
|
|
break;
|
|
|
|
case TransactionStatus::MaturesWarning:
|
|
|
|
status += tr("This block was not received by any other nodes and will probably not be accepted!");
|
|
|
|
break;
|
|
|
|
case TransactionStatus::NotAccepted:
|
|
|
|
status += tr("Generated but not accepted");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-05-27 18:38:30 +02:00
|
|
|
|
|
|
|
return QVariant(status);
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TransactionTableModel::formatTxDate(const TransactionRecord *wtx) const
|
|
|
|
{
|
2011-05-27 18:38:30 +02:00
|
|
|
if(wtx->time)
|
|
|
|
{
|
2011-06-02 15:57:23 +02:00
|
|
|
return QVariant(GUIUtil::DateTimeStr(wtx->time));
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-05-27 18:38:30 +02:00
|
|
|
return QVariant();
|
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
2011-06-28 21:41:56 +02:00
|
|
|
/* Look up address in address book, if found return
|
|
|
|
address[0:12]... (label)
|
|
|
|
otherwise just return address
|
|
|
|
*/
|
|
|
|
QString TransactionTableModel::lookupAddress(const std::string &address) const
|
|
|
|
{
|
2011-07-02 13:45:59 +02:00
|
|
|
QString label = walletModel->labelForAddress(QString::fromStdString(address));
|
2011-06-28 21:41:56 +02:00
|
|
|
QString description;
|
|
|
|
if(label.isEmpty())
|
|
|
|
{
|
|
|
|
description = QString::fromStdString(address);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-07-01 17:26:57 +02:00
|
|
|
description = label + QString(" (") + QString::fromStdString(address.substr(0,12)) + QString("...)");
|
2011-06-28 21:41:56 +02:00
|
|
|
}
|
2011-05-27 20:36:58 +02:00
|
|
|
return description;
|
|
|
|
}
|
|
|
|
|
2011-06-26 22:47:02 +02:00
|
|
|
QVariant TransactionTableModel::formatTxType(const TransactionRecord *wtx) const
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-05-27 19:48:42 +02:00
|
|
|
QString description;
|
|
|
|
|
|
|
|
switch(wtx->type)
|
|
|
|
{
|
2011-05-28 22:31:27 +02:00
|
|
|
case TransactionRecord::RecvWithAddress:
|
2011-06-26 22:47:02 +02:00
|
|
|
description = tr("Received with");
|
2011-05-27 19:48:42 +02:00
|
|
|
break;
|
|
|
|
case TransactionRecord::RecvFromIP:
|
2011-06-26 22:47:02 +02:00
|
|
|
description = tr("Received from IP");
|
2011-05-27 19:48:42 +02:00
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToAddress:
|
2011-06-26 22:47:02 +02:00
|
|
|
description = tr("Sent to");
|
2011-05-27 19:48:42 +02:00
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToIP:
|
2011-06-26 22:47:02 +02:00
|
|
|
description = tr("Sent to IP");
|
2011-05-27 19:48:42 +02:00
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToSelf:
|
|
|
|
description = tr("Payment to yourself");
|
|
|
|
break;
|
2011-06-26 22:47:02 +02:00
|
|
|
case TransactionRecord::Generated:
|
2011-07-07 10:43:04 +02:00
|
|
|
description = tr("Mined");
|
2011-06-26 22:47:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QVariant(description);
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TransactionTableModel::formatTxToAddress(const TransactionRecord *wtx) const
|
|
|
|
{
|
|
|
|
QString description;
|
|
|
|
|
|
|
|
switch(wtx->type)
|
|
|
|
{
|
|
|
|
case TransactionRecord::RecvWithAddress:
|
2011-06-28 21:41:56 +02:00
|
|
|
description = lookupAddress(wtx->address);
|
2011-06-26 22:47:02 +02:00
|
|
|
break;
|
|
|
|
case TransactionRecord::RecvFromIP:
|
|
|
|
description = QString::fromStdString(wtx->address);
|
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToAddress:
|
2011-06-28 21:41:56 +02:00
|
|
|
description = lookupAddress(wtx->address);
|
2011-06-26 22:47:02 +02:00
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToIP:
|
|
|
|
description = QString::fromStdString(wtx->address);
|
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToSelf:
|
|
|
|
description = QString();
|
|
|
|
break;
|
2011-05-27 19:48:42 +02:00
|
|
|
case TransactionRecord::Generated:
|
2011-07-07 10:29:07 +02:00
|
|
|
description = QString();
|
2011-05-27 19:48:42 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QVariant(description);
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
2011-07-07 14:27:16 +02:00
|
|
|
QVariant TransactionTableModel::formatTxAmount(const TransactionRecord *wtx, bool showUnconfirmed) const
|
2011-05-27 08:20:23 +02:00
|
|
|
{
|
2011-06-26 22:47:02 +02:00
|
|
|
QString str = QString::fromStdString(FormatMoney(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-06-26 22:47:02 +02:00
|
|
|
return QVariant(str);
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
2011-06-13 09:05:48 +02:00
|
|
|
QVariant TransactionTableModel::formatTxDecoration(const TransactionRecord *wtx) const
|
|
|
|
{
|
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-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-06-13 09:05:48 +02:00
|
|
|
if(role == Qt::DecorationRole)
|
|
|
|
{
|
|
|
|
if(index.column() == Status)
|
|
|
|
{
|
|
|
|
return formatTxDecoration(rec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(role == Qt::DisplayRole)
|
2011-05-08 16:30:10 +02:00
|
|
|
{
|
2011-06-18 11:53:25 +02:00
|
|
|
// Delegate to specific column handlers
|
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:
|
|
|
|
return formatTxToAddress(rec);
|
|
|
|
case Amount:
|
|
|
|
return formatTxAmount(rec);
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else if(role == Qt::EditRole)
|
2011-05-28 20:32:19 +02:00
|
|
|
{
|
2011-06-18 11:53:25 +02:00
|
|
|
// Edit role is used for sorting so return the real 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:
|
|
|
|
return formatTxToAddress(rec);
|
|
|
|
case Amount:
|
|
|
|
return rec->credit + rec->debit;
|
2011-05-28 20:32:19 +02:00
|
|
|
}
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
2011-06-14 21:06:00 +02:00
|
|
|
else if (role == Qt::ToolTipRole)
|
|
|
|
{
|
|
|
|
if(index.column() == Status)
|
|
|
|
{
|
|
|
|
return formatTxStatus(rec);
|
|
|
|
}
|
|
|
|
}
|
2011-06-07 18:59:01 +02:00
|
|
|
else if (role == Qt::TextAlignmentRole)
|
2011-05-08 22:23:31 +02:00
|
|
|
{
|
|
|
|
return column_alignments[index.column()];
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else if (role == Qt::ForegroundRole)
|
2011-05-27 19:48:42 +02:00
|
|
|
{
|
2011-05-28 16:09:23 +02:00
|
|
|
/* 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-05-27 19:48:42 +02:00
|
|
|
return QColor(128, 128, 128);
|
|
|
|
}
|
2011-06-26 22:47:02 +02:00
|
|
|
if(index.column() == Amount && (rec->credit+rec->debit) < 0)
|
|
|
|
{
|
|
|
|
return QColor(255, 0, 0);
|
|
|
|
}
|
2011-06-07 18:59:01 +02:00
|
|
|
}
|
|
|
|
else if (role == TypeRole)
|
2011-05-10 19:03:10 +02:00
|
|
|
{
|
2011-06-28 21:41:56 +02:00
|
|
|
return rec->type;
|
|
|
|
}
|
|
|
|
else if (role == DateRole)
|
|
|
|
{
|
|
|
|
return QDateTime::fromTime_t(static_cast<uint>(rec->time));
|
2011-05-08 16:30:10 +02:00
|
|
|
}
|
2011-06-10 15:05:51 +02:00
|
|
|
else if (role == LongDescriptionRole)
|
|
|
|
{
|
|
|
|
return priv->describe(rec);
|
|
|
|
}
|
2011-06-28 21:41:56 +02:00
|
|
|
else if (role == AddressRole)
|
|
|
|
{
|
|
|
|
return QString::fromStdString(rec->address);
|
|
|
|
}
|
|
|
|
else if (role == LabelRole)
|
|
|
|
{
|
2011-07-02 13:45:59 +02:00
|
|
|
return walletModel->labelForAddress(QString::fromStdString(rec->address));
|
2011-06-28 21:41:56 +02:00
|
|
|
}
|
|
|
|
else if (role == AbsoluteAmountRole)
|
|
|
|
{
|
|
|
|
return llabs(rec->credit + rec->debit);
|
|
|
|
}
|
2011-07-07 14:27:16 +02:00
|
|
|
else if (role == TxIDRole)
|
|
|
|
{
|
|
|
|
return QString::fromStdString(rec->getTxID());
|
|
|
|
}
|
|
|
|
else if (role == ConfirmedRole)
|
|
|
|
{
|
|
|
|
return rec->status.status == TransactionStatus::HaveConfirmations;
|
|
|
|
}
|
|
|
|
else if (role == FormattedAmountRole)
|
|
|
|
{
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::ItemFlags TransactionTableModel::flags(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
return QAbstractTableModel::flags(index);
|
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|