2017-04-18 17:32:10 +02:00
|
|
|
#ifndef DIVEIMPORTEDMODEL_H
|
|
|
|
#define DIVEIMPORTEDMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
2018-12-09 19:10:55 +01:00
|
|
|
#include <vector>
|
2019-03-04 23:20:29 +01:00
|
|
|
#include "core/divesite.h"
|
2017-04-18 17:32:10 +02:00
|
|
|
|
|
|
|
class DiveImportedModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-06-04 14:40:25 +02:00
|
|
|
enum roleTypes { DateTime = Qt::UserRole + 1, Duration, Depth, Selected};
|
2017-05-26 17:53:25 +02:00
|
|
|
|
|
|
|
DiveImportedModel(QObject *parent = 0);
|
2017-04-18 17:32:10 +02:00
|
|
|
int columnCount(const QModelIndex& index = QModelIndex()) const;
|
|
|
|
int rowCount(const QModelIndex& index = QModelIndex()) const;
|
|
|
|
QVariant data(const QModelIndex& index, int role) const;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
|
|
void setImportedDivesIndexes(int first, int last);
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
2017-06-16 01:22:44 -07:00
|
|
|
Q_INVOKABLE void clearTable();
|
2017-05-26 17:53:25 +02:00
|
|
|
QHash<int, QByteArray> roleNames() const;
|
2019-03-03 15:12:22 +01:00
|
|
|
Q_INVOKABLE void repopulate(dive_table_t *table, dive_site_table_t *sites);
|
2017-05-28 11:48:30 -07:00
|
|
|
Q_INVOKABLE void recordDives();
|
2017-04-18 17:32:10 +02:00
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void changeSelected(QModelIndex clickedIndex);
|
2017-05-29 20:36:00 +02:00
|
|
|
void selectRow(int row);
|
2017-04-18 17:32:10 +02:00
|
|
|
void selectAll();
|
|
|
|
void selectNone();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int firstIndex;
|
|
|
|
int lastIndex;
|
2018-12-09 19:10:55 +01:00
|
|
|
std::vector<char> checkStates; // char instead of bool to avoid silly pessimization of std::vector.
|
2017-05-26 17:53:25 +02:00
|
|
|
struct dive_table *diveTable;
|
2019-03-03 15:12:22 +01:00
|
|
|
struct dive_site_table *sitesTable;
|
2017-04-18 17:32:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|