mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-05 10:29:27 +00:00
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2023 The Monero Project
|
|
|
|
#ifndef SUBADDRESSMODEL_H
|
|
#define SUBADDRESSMODEL_H
|
|
|
|
#include <wallet/api/wallet2_api.h>
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QSortFilterProxyModel>
|
|
#include <QDebug>
|
|
|
|
#include "rows/SubaddressRow.h"
|
|
|
|
class Subaddress;
|
|
|
|
class SubaddressModel : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum ModelColumn
|
|
{
|
|
Index = 0,
|
|
Address,
|
|
Label,
|
|
isUsed,
|
|
COUNT
|
|
};
|
|
|
|
explicit SubaddressModel(QObject *parent, Subaddress *subaddress);
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
|
|
|
|
SubaddressRow* entryFromIndex(const QModelIndex &index) const;
|
|
|
|
void setCurrentSubaddressAccount(quint32 accountIndex);
|
|
|
|
private:
|
|
Subaddress *m_subaddress;
|
|
QVariant parseSubaddressRow(const SubaddressRow &subaddress, const QModelIndex &index, int role) const;
|
|
|
|
quint32 m_currentSubaddressAccount;
|
|
};
|
|
|
|
#endif // SUBADDRESSMODEL_H
|