42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
|
|
#ifndef PARAMLISTMODEL_H
|
|||
|
|
#define PARAMLISTMODEL_H
|
|||
|
|
|
|||
|
|
#include <QAbstractTableModel>
|
|||
|
|
|
|||
|
|
class ParamListModel : public QAbstractTableModel
|
|||
|
|
{
|
|||
|
|
Q_OBJECT
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
explicit ParamListModel(QObject *parent = 0);
|
|||
|
|
|
|||
|
|
// Header:
|
|||
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
|||
|
|
|
|||
|
|
// bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role = Qt::EditRole) override;
|
|||
|
|
|
|||
|
|
// Basic functionality:
|
|||
|
|
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;
|
|||
|
|
|
|||
|
|
// Editable:
|
|||
|
|
bool setData(const QModelIndex &index, const QVariant &value,
|
|||
|
|
int role = Qt::EditRole) override;
|
|||
|
|
|
|||
|
|
Qt::ItemFlags flags(const QModelIndex& index) const override;
|
|||
|
|
|
|||
|
|
// Add data:
|
|||
|
|
// bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;
|
|||
|
|
//bool insertColumns(int column, int count, const QModelIndex &parent = QModelIndex()) override;
|
|||
|
|
|
|||
|
|
// Remove data:
|
|||
|
|
// bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;
|
|||
|
|
//bool removeColumns(int column, int count, const QModelIndex &parent = QModelIndex()) override;
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // PARAMLISTMODEL_H
|