-
-
Notifications
You must be signed in to change notification settings - Fork 557
/
Copy pathheightmaptablemodel.h
39 lines (29 loc) · 1.16 KB
/
heightmaptablemodel.h
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
// This file is a part of "grblControl" application.
// Copyright 2015 Hayrullin Denis Ravilevich
#ifndef HEIGHTMAPTABLEMODEL_H
#define HEIGHTMAPTABLEMODEL_H
#include <QObject>
#include <QAbstractTableModel>
class HeightMapTableModel : public QAbstractTableModel
{
Q_OBJECT
public:
explicit HeightMapTableModel(QObject *parent = 0);
void resize(int cols, int rows);
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
bool insertRow(int row, const QModelIndex &parent = QModelIndex());
bool removeRow(int row, const QModelIndex &parent = QModelIndex());
void clear();
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
signals:
void dataChangedByUserInput();
private:
// QList<QList<double>> m_data;
QVector<QVector<double>> m_data;
QList<QString> m_headers;
};
#endif // HEIGHTMAPTABLEMODEL_H