Files
SilentDragonXLite/src/balancestablemodel.h
2019-10-16 13:12:32 -07:00

27 lines
794 B
C++

#ifndef BALANCESTABLEMODEL_H
#define BALANCESTABLEMODEL_H
#include "precompiled.h"
#include "datamodel.h"
class BalancesTableModel : public QAbstractTableModel
{
public:
BalancesTableModel(QObject* parent);
~BalancesTableModel();
void setNewData(const QMap<QString, qint64> balances, const QList<UnspentOutput> outputs);
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<std::tuple<QString, qint64>>* modeldata = nullptr;
QList<UnspentOutput>* utxos = nullptr;
bool loading = true;
};
#endif // BALANCESTABLEMODEL_H