2017-04-18 15:32:10 +00:00
|
|
|
#ifndef DIVEIMPORTEDMODEL_H
|
|
|
|
#define DIVEIMPORTEDMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
2018-12-09 18:10:55 +00:00
|
|
|
#include <vector>
|
2019-03-04 22:20:29 +00:00
|
|
|
#include "core/divesite.h"
|
2019-09-25 18:49:13 +00:00
|
|
|
#include "core/downloadfromdcthread.h"
|
2017-04-18 15:32:10 +00:00
|
|
|
|
|
|
|
class DiveImportedModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-06-04 12:40:25 +00:00
|
|
|
enum roleTypes { DateTime = Qt::UserRole + 1, Duration, Depth, Selected};
|
2017-05-26 15:53:25 +00:00
|
|
|
|
|
|
|
DiveImportedModel(QObject *parent = 0);
|
2017-04-18 15:32:10 +00: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 08:22:44 +00:00
|
|
|
Q_INVOKABLE void clearTable();
|
2017-05-26 15:53:25 +00:00
|
|
|
QHash<int, QByteArray> roleNames() const;
|
2019-09-22 16:50:10 +00:00
|
|
|
void deleteDeselected();
|
2019-09-22 18:23:37 +00:00
|
|
|
std::pair<struct dive_table, struct dive_site_table> consumeTables(); // Returns dives and sites and resets model.
|
2019-09-22 19:00:15 +00:00
|
|
|
int numDives() const;
|
2017-05-28 18:48:30 +00:00
|
|
|
Q_INVOKABLE void recordDives();
|
2019-09-25 18:49:13 +00:00
|
|
|
Q_INVOKABLE void startDownload();
|
|
|
|
|
|
|
|
DownloadThread thread;
|
2017-04-18 15:32:10 +00:00
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void changeSelected(QModelIndex clickedIndex);
|
2017-05-29 18:36:00 +00:00
|
|
|
void selectRow(int row);
|
2017-04-18 15:32:10 +00:00
|
|
|
void selectAll();
|
|
|
|
void selectNone();
|
|
|
|
|
2019-09-25 18:49:13 +00:00
|
|
|
private
|
|
|
|
slots:
|
|
|
|
void downloadThreadFinished();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void downloadFinished();
|
|
|
|
|
2017-04-18 15:32:10 +00:00
|
|
|
private:
|
2019-09-25 18:49:13 +00:00
|
|
|
void repopulate(dive_table_t *table, dive_site_table_t *sites);
|
2017-04-18 15:32:10 +00:00
|
|
|
int firstIndex;
|
|
|
|
int lastIndex;
|
2018-12-09 18:10:55 +00:00
|
|
|
std::vector<char> checkStates; // char instead of bool to avoid silly pessimization of std::vector.
|
2017-05-26 15:53:25 +00:00
|
|
|
struct dive_table *diveTable;
|
2019-03-03 14:12:22 +00:00
|
|
|
struct dive_site_table *sitesTable;
|
2017-04-18 15:32:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|