syncthingtray/model/syncthingdirectorymodel.h

42 lines
1.2 KiB
C
Raw Normal View History

2016-08-25 00:45:32 +02:00
#ifndef DATA_SYNCTHINGDIRECTORYMODEL_H
#define DATA_SYNCTHINGDIRECTORYMODEL_H
#include "./syncthingmodel.h"
2016-08-25 00:45:32 +02:00
#include <QIcon>
#include <vector>
namespace Data {
struct SyncthingDir;
class LIB_SYNCTHING_MODEL_EXPORT SyncthingDirectoryModel : public SyncthingModel
2016-08-25 00:45:32 +02:00
{
Q_OBJECT
public:
explicit SyncthingDirectoryModel(SyncthingConnection &connection, QObject *parent = nullptr);
public Q_SLOTS:
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &child) const;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
QVariant data(const QModelIndex &index, int role) const;
bool setData(const QModelIndex &index, const QVariant &value, int role);
int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent) const;
const SyncthingDir *dirInfo(const QModelIndex &index) const;
2016-09-21 21:09:12 +02:00
private Q_SLOTS:
2016-08-25 00:45:32 +02:00
void newConfig();
void newDirs();
void dirStatusChanged(const SyncthingDir &, int index);
private:
const std::vector<SyncthingDir> &m_dirs;
};
} // namespace Data
#endif // DATA_SYNCTHINGDIRECTORYMODEL_H