Kevacoin source tree
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.7 KiB

14 years ago
#include "TransactionTableModel.h"
/* Credit and Debit columns are right-aligned as they contain numbers */
static Qt::AlignmentFlag column_alignments[] = {
Qt::AlignLeft,
Qt::AlignLeft,
Qt::AlignLeft,
Qt::AlignRight,
Qt::AlignRight
};
14 years ago
TransactionTableModel::TransactionTableModel(QObject *parent):
QAbstractTableModel(parent)
{
14 years ago
columns << tr("Status") << tr("Date") << tr("Description") << tr("Debit") << tr("Credit");
14 years ago
}
int TransactionTableModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return 5;
}
int TransactionTableModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return columns.length();
}
QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
{
if(!index.isValid())
return QVariant();
if(role == Qt::DisplayRole)
{
/* index.row(), index.column() */
/* Return QString */
return QString("test");
} else if (role == Qt::TextAlignmentRole)
{
return column_alignments[index.column()];
14 years ago
}
14 years ago
/* user role: transaction type
"s" (sent)
"r" (received)
"g" (generated)
*/
14 years ago
return QVariant();
}
QVariant TransactionTableModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if(role == Qt::DisplayRole)
{
if(orientation == Qt::Horizontal)
{
return columns[section];
}
} else if (role == Qt::TextAlignmentRole)
14 years ago
{
return column_alignments[section];
14 years ago
}
return QVariant();
}
Qt::ItemFlags TransactionTableModel::flags(const QModelIndex &index) const
{
if (!index.isValid())
return Qt::ItemIsEnabled;
return QAbstractTableModel::flags(index);
}