2015-05-29 21:19:44 -03:00
|
|
|
#ifndef DIVELOCATIONMODEL_H
|
|
|
|
#define DIVELOCATIONMODEL_H
|
|
|
|
|
2015-07-01 18:46:27 -03:00
|
|
|
#include <QAbstractTableModel>
|
2015-06-22 17:24:15 -03:00
|
|
|
#include <QStringListModel>
|
2015-06-01 13:54:13 -07:00
|
|
|
#include <stdint.h>
|
2015-05-29 21:19:44 -03:00
|
|
|
|
2015-07-14 18:43:47 -03:00
|
|
|
class QLineEdit;
|
|
|
|
|
2015-07-01 18:46:27 -03:00
|
|
|
class LocationInformationModel : public QAbstractTableModel {
|
2015-05-29 21:19:44 -03:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-07-01 18:46:27 -03:00
|
|
|
enum Columns { UUID, NAME, LATITUDE, LONGITUDE, COORDS, DESCRIPTION, NOTES, TAXONOMY_1, TAXONOMY_2, TAXONOMY_3, COLUMNS};
|
2015-05-29 22:22:24 -03:00
|
|
|
static LocationInformationModel *instance();
|
2015-07-01 18:46:27 -03:00
|
|
|
int columnCount(const QModelIndex &parent) const;
|
2015-05-29 21:19:44 -03:00
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const;
|
2015-06-01 16:58:23 -03:00
|
|
|
int32_t addDiveSite(const QString& name, int lat = 0, int lon = 0);
|
2015-06-01 22:16:07 -03:00
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
2015-06-01 23:13:51 -03:00
|
|
|
bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
|
2015-07-14 18:43:47 -03:00
|
|
|
void setFirstRowTextField(QLineEdit *textField);
|
2015-06-01 23:13:51 -03:00
|
|
|
|
2015-05-29 22:22:24 -03:00
|
|
|
public slots:
|
2015-05-29 21:19:44 -03:00
|
|
|
void update();
|
|
|
|
private:
|
2015-05-29 22:22:24 -03:00
|
|
|
LocationInformationModel(QObject *obj = 0);
|
2015-05-29 21:19:44 -03:00
|
|
|
int internalRowCount;
|
2015-07-14 18:43:47 -03:00
|
|
|
QLineEdit *textField;
|
2015-05-29 21:19:44 -03:00
|
|
|
};
|
|
|
|
|
2015-06-22 17:24:15 -03:00
|
|
|
class GeoReferencingOptionsModel : public QStringListModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static GeoReferencingOptionsModel *instance();
|
|
|
|
private:
|
|
|
|
GeoReferencingOptionsModel(QObject *parent = 0);
|
|
|
|
};
|
|
|
|
|
2015-05-29 21:19:44 -03:00
|
|
|
#endif
|