mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
41 lines
979 B
C
41 lines
979 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_NODEMODEL_H
|
||
|
#define FEATHER_NODEMODEL_H
|
||
|
|
||
|
#include <QAbstractTableModel>
|
||
|
#include <QIcon>
|
||
|
|
||
|
class FeatherNode;
|
||
|
|
||
|
class NodeModel : public QAbstractTableModel {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
enum ModelColumn {
|
||
|
URL,
|
||
|
Height,
|
||
|
COUNT
|
||
|
};
|
||
|
|
||
|
explicit NodeModel(unsigned int nodeSource, QObject *parent = nullptr);
|
||
|
|
||
|
int rowCount(const QModelIndex &parent) const override;
|
||
|
int columnCount(const QModelIndex &parent) const override;
|
||
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
||
|
FeatherNode node(int row);
|
||
|
|
||
|
void clear();
|
||
|
void updateNodes(QList<FeatherNode> nodes);
|
||
|
|
||
|
private:
|
||
|
QList<FeatherNode> m_nodes;
|
||
|
QIcon m_offline;
|
||
|
QIcon m_online;
|
||
|
unsigned int m_nodeSource;
|
||
|
};
|
||
|
|
||
|
#endif //FEATHER_NODEMODEL_H
|