1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#ifndef DATA_SYNCTHINGDEVICEMODEL_H
#define DATA_SYNCTHINGDEVICEMODEL_H
#include "./syncthingmodel.h"
#include <QIcon>
#include <vector>
namespace Data {
struct SyncthingDev;
class LIB_SYNCTHING_MODEL_EXPORT SyncthingDeviceModel : public SyncthingModel {
Q_OBJECT
public:
enum SyncthingDeviceModelRole {
DeviceStatus = SyncthingModelUserRole + 1,
DevicePaused,
IsThisDevice,
DeviceStatusString,
DeviceStatusColor,
DeviceId,
DeviceDetail,
DeviceDetailIcon,
DeviceNeededItemsCount,
DeviceDetailTooltip,
};
explicit SyncthingDeviceModel(SyncthingConnection &connection, QObject *parent = nullptr);
public:
QHash<int, QByteArray> roleNames() const override;
const QVector<int> &colorRoles() const override;
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex &child) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
int rowCount(const QModelIndex &parent) const override;
Q_INVOKABLE const SyncthingDev *devInfo(const QModelIndex &index) const;
Q_INVOKABLE const SyncthingDev *info(const QModelIndex &index) const;
private Q_SLOTS:
void devStatusChanged(const Data::SyncthingDev &, int index);
void handleConfigInvalidated() override;
void handleNewConfigAvailable() override;
void handleStatusIconsChanged() override;
void handleForkAwesomeIconsChanged() override;
private:
QVariant devStatusColor(const SyncthingDev &dev) const;
void updateRowCount();
const std::vector<SyncthingDev> &m_devs;
std::vector<int> m_rowCount;
mutable QString m_thisDevVersion;
};
inline const SyncthingDev *SyncthingDeviceModel::info(const QModelIndex &index) const
{
return devInfo(index);
}
} // namespace Data
#endif // DATA_SYNCTHINGDEVICEMODEL_H
|