2017-04-27 20:25:32 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-05-28 17:51:07 -03:00
|
|
|
#ifndef DIVECOMPUTERMODEL_H
|
|
|
|
#define DIVECOMPUTERMODEL_H
|
|
|
|
|
2016-04-04 22:02:03 -07:00
|
|
|
#include "qt-models/cleanertablemodel.h"
|
|
|
|
#include "core/divecomputer.h"
|
2015-05-28 17:51:07 -03:00
|
|
|
|
|
|
|
class DiveComputerModel : public CleanerTableModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
REMOVE,
|
|
|
|
MODEL,
|
|
|
|
ID,
|
|
|
|
NICKNAME
|
|
|
|
};
|
2018-06-16 14:06:35 +02:00
|
|
|
DiveComputerModel(QObject *parent = 0);
|
2018-09-29 22:13:44 +02:00
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
2015-05-28 17:51:07 -03:00
|
|
|
void keepWorkingList();
|
|
|
|
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void remove(const QModelIndex &index);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int numRows;
|
2018-06-16 14:06:35 +02:00
|
|
|
QVector<DiveComputerNode> dcs;
|
2015-05-28 17:51:07 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|