41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
|
#pragma once
|
||
|
|
||
|
#include "CheckableTest.h"
|
||
|
#include <QAbstractTableModel>
|
||
|
|
||
|
class CheckableTestModel : public QAbstractTableModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
protected:
|
||
|
CheckableTests m_tests;
|
||
|
|
||
|
public:
|
||
|
CheckableTestModel(QObject *parent);
|
||
|
|
||
|
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;
|
||
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
||
|
bool setData(const QModelIndex &index, const QVariant &value,
|
||
|
int role = Qt::EditRole) override;
|
||
|
|
||
|
QVariant headerData(int section, Qt::Orientation orientation,
|
||
|
int role = Qt::DisplayRole) const override;
|
||
|
|
||
|
void write(QJsonObject &json) const;
|
||
|
void read(const QJsonObject &json);
|
||
|
|
||
|
private:
|
||
|
bool isValidIndex(const QModelIndex &index) const;
|
||
|
|
||
|
CheckableItems &getItems(const QModelIndex &index);
|
||
|
const CheckableItems &getItems(const QModelIndex &index) const;
|
||
|
|
||
|
CheckableItem &getItem(const QModelIndex &index);
|
||
|
const CheckableItem &getItem(const QModelIndex &index) const;
|
||
|
};
|
||
|
|