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-22 19:32:37 +02:00
|
|
|
#include "main.h"
|
2011-05-08 16:30:10 +02:00
|
|
|
|
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-10 19:03:10 +02:00
|
|
|
|
2011-05-13 15:58:27 +02:00
|
|
|
const QString TransactionTableModel::Sent = "s";
|
|
|
|
const QString TransactionTableModel::Received = "r";
|
2011-05-27 18:38:30 +02:00
|
|
|
const QString TransactionTableModel::Other = "o";
|
2011-05-13 15:58:27 +02:00
|
|
|
|
2011-05-27 08:20:23 +02:00
|
|
|
/* Internal implementation */
|
|
|
|
class TransactionTableImpl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QList<TransactionRecord> cachedWallet;
|
|
|
|
|
|
|
|
/* Update our model of the wallet */
|
|
|
|
void updateWallet()
|
|
|
|
{
|
|
|
|
QList<int> insertedIndices;
|
|
|
|
QList<int> removedIndices;
|
|
|
|
|
|
|
|
cachedWallet.clear();
|
|
|
|
|
|
|
|
/* Query wallet from core, and compare with our own
|
|
|
|
representation.
|
|
|
|
*/
|
|
|
|
CRITICAL_BLOCK(cs_mapWallet)
|
|
|
|
{
|
|
|
|
for(std::map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
|
|
|
|
{
|
|
|
|
/* TODO: Make note of new and removed transactions */
|
|
|
|
/* insertedIndices */
|
|
|
|
/* removedIndices */
|
2011-05-27 19:48:42 +02:00
|
|
|
cachedWallet.append(TransactionRecord::decomposeTransaction(it->second));
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* beginInsertRows(QModelIndex(), first, last) */
|
|
|
|
/* endInsertRows */
|
|
|
|
/* beginRemoveRows(QModelIndex(), first, last) */
|
|
|
|
/* beginEndRows */
|
|
|
|
}
|
|
|
|
|
|
|
|
int size()
|
|
|
|
{
|
|
|
|
return cachedWallet.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
TransactionRecord *index(int idx)
|
|
|
|
{
|
|
|
|
if(idx >= 0 && idx < cachedWallet.size())
|
|
|
|
{
|
|
|
|
return &cachedWallet[idx];
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-05-08 22:23:31 +02:00
|
|
|
/* Credit and Debit columns are right-aligned as they contain numbers */
|
2011-05-10 19:03:10 +02:00
|
|
|
static int column_alignments[] = {
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter,
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter,
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter,
|
|
|
|
Qt::AlignRight|Qt::AlignVCenter,
|
2011-05-13 15:58:27 +02:00
|
|
|
Qt::AlignRight|Qt::AlignVCenter,
|
|
|
|
Qt::AlignLeft|Qt::AlignVCenter
|
2011-05-08 22:23:31 +02:00
|
|
|
};
|
|
|
|
|
2011-05-08 16:30:10 +02:00
|
|
|
TransactionTableModel::TransactionTableModel(QObject *parent):
|
2011-05-27 08:20:23 +02:00
|
|
|
QAbstractTableModel(parent),
|
|
|
|
impl(new TransactionTableImpl())
|
2011-05-08 16:30:10 +02:00
|
|
|
{
|
2011-05-22 19:32:37 +02:00
|
|
|
columns << tr("Status") << tr("Date") << tr("Description") << tr("Debit") << tr("Credit");
|
2011-05-27 08:20:23 +02:00
|
|
|
|
|
|
|
impl->updateWallet();
|
|
|
|
}
|
|
|
|
|
|
|
|
TransactionTableModel::~TransactionTableModel()
|
|
|
|
{
|
|
|
|
delete impl;
|
2011-05-08 16:30:10 +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-05-27 08:20:23 +02:00
|
|
|
return impl->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;
|
|
|
|
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:
|
|
|
|
status = tr("Open until ") + DateTimeStr(wtx->status.open_for);
|
|
|
|
break;
|
|
|
|
case TransactionStatus::Offline:
|
|
|
|
status = tr("%1/offline").arg(wtx->status.depth);
|
|
|
|
break;
|
|
|
|
case TransactionStatus::Unconfirmed:
|
|
|
|
status = tr("%1/unconfirmed").arg(wtx->status.depth);
|
|
|
|
break;
|
|
|
|
case TransactionStatus::HaveConfirmations:
|
|
|
|
status = tr("%1 confirmations").arg(wtx->status.depth);
|
|
|
|
break;
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
return QVariant(DateTimeStr(wtx->time));
|
|
|
|
} else {
|
|
|
|
return QVariant();
|
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TransactionTableModel::formatTxDescription(const TransactionRecord *wtx) const
|
|
|
|
{
|
2011-05-27 19:48:42 +02:00
|
|
|
QString description;
|
|
|
|
/* TODO: look up label for wtx->address in address book if
|
|
|
|
TransactionRecord::RecvFromAddress / TransactionRecord::SendToAddress
|
|
|
|
|
|
|
|
strDescription += strAddress.substr(0,12) + "... ";
|
|
|
|
strDescription += "(" + strLabel + ")";
|
|
|
|
*/
|
|
|
|
switch(wtx->type)
|
|
|
|
{
|
|
|
|
case TransactionRecord::RecvFromAddress:
|
|
|
|
description = tr("From: ") + QString::fromStdString(wtx->address);
|
|
|
|
break;
|
|
|
|
case TransactionRecord::RecvFromIP:
|
|
|
|
description = tr("From IP: ") + QString::fromStdString(wtx->address);
|
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToAddress:
|
|
|
|
description = tr("To: ") + QString::fromStdString(wtx->address);
|
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToIP:
|
|
|
|
description = tr("To IP: ") + QString::fromStdString(wtx->address);
|
|
|
|
break;
|
|
|
|
case TransactionRecord::SendToSelf:
|
|
|
|
description = tr("Payment to yourself");
|
|
|
|
break;
|
|
|
|
case TransactionRecord::Generated:
|
|
|
|
description = tr("Generated");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QVariant(description);
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TransactionTableModel::formatTxDebit(const TransactionRecord *wtx) const
|
|
|
|
{
|
2011-05-27 18:38:30 +02:00
|
|
|
if(wtx->debit)
|
|
|
|
{
|
|
|
|
QString str = QString::fromStdString(FormatMoney(wtx->debit));
|
|
|
|
if(!wtx->status.confirmed)
|
|
|
|
{
|
|
|
|
str = QString("[") + str + QString("]");
|
|
|
|
}
|
|
|
|
return QVariant(str);
|
|
|
|
} else {
|
|
|
|
return QVariant();
|
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TransactionTableModel::formatTxCredit(const TransactionRecord *wtx) const
|
|
|
|
{
|
2011-05-27 18:38:30 +02:00
|
|
|
if(wtx->credit)
|
|
|
|
{
|
|
|
|
QString str = QString::fromStdString(FormatMoney(wtx->credit));
|
|
|
|
if(!wtx->status.confirmed)
|
|
|
|
{
|
|
|
|
str = QString("[") + str + QString("]");
|
|
|
|
}
|
|
|
|
return QVariant(str);
|
|
|
|
} else {
|
|
|
|
return QVariant();
|
|
|
|
}
|
2011-05-27 08:20:23 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
if(role == Qt::DisplayRole)
|
|
|
|
{
|
2011-05-27 08:20:23 +02:00
|
|
|
switch(index.column())
|
|
|
|
{
|
|
|
|
case Status:
|
|
|
|
return formatTxStatus(rec);
|
|
|
|
case Date:
|
|
|
|
return formatTxDate(rec);
|
|
|
|
case Description:
|
|
|
|
return formatTxDescription(rec);
|
|
|
|
case Debit:
|
|
|
|
return formatTxDebit(rec);
|
|
|
|
case Credit:
|
|
|
|
return formatTxCredit(rec);
|
|
|
|
}
|
2011-05-08 22:23:31 +02:00
|
|
|
} else if (role == Qt::TextAlignmentRole)
|
|
|
|
{
|
|
|
|
return column_alignments[index.column()];
|
2011-05-27 19:48:42 +02:00
|
|
|
} else if (role == Qt::ForegroundRole)
|
|
|
|
{
|
|
|
|
if(rec->status.confirmed)
|
|
|
|
{
|
|
|
|
return QColor(0, 0, 0);
|
|
|
|
} else {
|
|
|
|
return QColor(128, 128, 128);
|
|
|
|
}
|
2011-05-22 19:32:37 +02:00
|
|
|
} else if (role == TypeRole)
|
2011-05-10 19:03:10 +02:00
|
|
|
{
|
2011-05-27 19:48:42 +02:00
|
|
|
switch(rec->type)
|
2011-05-10 19:03:10 +02:00
|
|
|
{
|
2011-05-27 19:48:42 +02:00
|
|
|
case TransactionRecord::RecvFromAddress:
|
|
|
|
case TransactionRecord::RecvFromIP:
|
|
|
|
case TransactionRecord::Generated:
|
|
|
|
return TransactionTableModel::Received;
|
|
|
|
case TransactionRecord::SendToAddress:
|
|
|
|
case TransactionRecord::SendToIP:
|
|
|
|
case TransactionRecord::SendToSelf:
|
|
|
|
return TransactionTableModel::Sent;
|
|
|
|
default:
|
|
|
|
return TransactionTableModel::Other;
|
2011-05-10 19:03:10 +02:00
|
|
|
}
|
2011-05-08 16:30:10 +02:00
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TransactionTableModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
2011-05-08 22:23:31 +02:00
|
|
|
if(role == Qt::DisplayRole)
|
|
|
|
{
|
|
|
|
if(orientation == Qt::Horizontal)
|
|
|
|
{
|
|
|
|
return columns[section];
|
|
|
|
}
|
|
|
|
} else if (role == Qt::TextAlignmentRole)
|
2011-05-08 16:30:10 +02:00
|
|
|
{
|
2011-05-08 22:23:31 +02:00
|
|
|
return column_alignments[section];
|
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
|
|
|
|
|
|
|
|
|
|
|
QModelIndex TransactionTableModel::index ( int row, int column, const QModelIndex & parent ) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent);
|
|
|
|
TransactionRecord *data = impl->index(row);
|
|
|
|
if(data)
|
|
|
|
{
|
|
|
|
return createIndex(row, column, impl->index(row));
|
|
|
|
} else {
|
|
|
|
return QModelIndex();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|