SedSat3 1.1.6
Sediment Source Apportionment Tool - Advanced statistical methods for environmental pollution research
Loading...
Searching...
No Matches
omsizecorrectiontablemodel.h
Go to the documentation of this file.
1#ifndef OMSIZECORRECTIONTABLEMODEL_H
2#define OMSIZECORRECTIONTABLEMODEL_H
3
4#include <QObject>
5#include <QAbstractTableModel>
7
8class OmSizeCorrectionTableModel: public QAbstractTableModel
9{
10private:
11 Q_OBJECT
12
13
14public:
16 int rowCount(const QModelIndex &parent = QModelIndex()) const override;
17 int columnCount(const QModelIndex &parent = QModelIndex()) const override;
18 QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
19 QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
20 bool setData(const QModelIndex & index, const QVariant & value, int role = Qt::EditRole) override;
21 Qt::ItemFlags flags(const QModelIndex & index) const override;
23signals:
24 void editCompleted(const QString &);
25
26};
27
28#endif // OMSIZECORRECTIONTABLEMODEL_H
29
30
31
bool setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) override
int rowCount(const QModelIndex &parent=QModelIndex()) const override
QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const override
void editCompleted(const QString &)
int columnCount(const QModelIndex &parent=QModelIndex()) const override
Qt::ItemFlags flags(const QModelIndex &index) const override
MultipleLinearRegressionSet * MLRset
QVariant headerData(int section, Qt::Orientation orientation, int role) const override