Hush lite wallet https://faq.hush.is/sdl
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.

33 lines
844 B

6 years ago
#ifndef STRINGSTABLEMODEL_H
#define STRINGSTABLEMODEL_H
#include "transactionitem.h"
#include "precompiled.h"
class TxTableModel: public QAbstractTableModel
{
public:
TxTableModel(QObject* parent);
6 years ago
~TxTableModel();
void prepNewData (int expectedData);
void addNewData (const QList<TransactionItem>& data);
6 years ago
QString getTxId(int row);
int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
private:
QList<TransactionItem>* modeldata = nullptr;
QList<TransactionItem>* newmodeldata = nullptr;
int expectedData;
6 years ago
QList<QString> headers;
};
#endif // STRINGSTABLEMODEL_H