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.

34 lines
970 B

// Copyright 2019-2024 The Hush developers
3 years ago
// Released under the GPLv3
6 years ago
#ifndef BALANCESTABLEMODEL_H
#define BALANCESTABLEMODEL_H
#include "precompiled.h"
#include "datamodel.h"
5 years ago
#include "camount.h"
6 years ago
class BalancesTableModel : public QAbstractTableModel {
Q_OBJECT
6 years ago
public:
BalancesTableModel(QObject* parent);
6 years ago
~BalancesTableModel();
5 years ago
void setNewData(const QList<QString> zaddrs, const QList<QString> taddrs, const QMap<QString, CAmount> balances, const QList<UnspentOutput> outputs);
6 years ago
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:
5 years ago
QList<std::tuple<QString, CAmount>>* modeldata = nullptr;
QList<UnspentOutput>* unspentOutputs = nullptr;
bool loading = true;
6 years ago
};
3 years ago
#endif // BALANCESTABLEMODEL_H