2017-07-17 14:58:34 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef MAPLOCATIONMODEL_H
|
|
|
|
#define MAPLOCATIONMODEL_H
|
|
|
|
|
2019-05-09 19:33:01 +00:00
|
|
|
#include "core/subsurface-qt/DiveListNotifier.h"
|
2017-07-17 14:58:34 +00:00
|
|
|
#include <QObject>
|
2017-07-17 20:04:00 +00:00
|
|
|
#include <QVector>
|
2017-07-17 14:58:34 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QAbstractListModel>
|
2017-07-17 19:36:55 +00:00
|
|
|
#include <QGeoCoordinate>
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
class MapLocation : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2018-10-26 15:03:54 +00:00
|
|
|
Q_PROPERTY(QVariant divesite READ divesiteVariant)
|
2017-07-27 19:43:10 +00:00
|
|
|
Q_PROPERTY(QGeoCoordinate coordinate READ coordinate WRITE setCoordinate NOTIFY coordinateChanged)
|
2017-07-25 20:15:28 +00:00
|
|
|
Q_PROPERTY(QString name MEMBER m_name)
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MapLocation();
|
2019-08-30 13:25:59 +00:00
|
|
|
explicit MapLocation(struct dive_site *ds, QGeoCoordinate coord, QString name, bool selected);
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
QVariant getRole(int role) const;
|
2017-07-27 19:43:10 +00:00
|
|
|
QGeoCoordinate coordinate();
|
|
|
|
void setCoordinate(QGeoCoordinate coord);
|
2017-11-09 16:43:21 +00:00
|
|
|
void setCoordinateNoEmit(QGeoCoordinate coord);
|
2018-10-26 15:03:54 +00:00
|
|
|
QVariant divesiteVariant();
|
|
|
|
struct dive_site *divesite();
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
enum Roles {
|
2018-10-26 15:03:54 +00:00
|
|
|
RoleDivesite = Qt::UserRole + 1,
|
2017-07-25 20:15:28 +00:00
|
|
|
RoleCoordinate,
|
2019-08-30 13:25:59 +00:00
|
|
|
RoleName,
|
2019-08-30 16:09:37 +00:00
|
|
|
RolePixmap,
|
|
|
|
RoleZ
|
2017-07-17 14:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2018-10-26 15:03:54 +00:00
|
|
|
struct dive_site *m_ds;
|
2017-07-17 19:36:55 +00:00
|
|
|
QGeoCoordinate m_coordinate;
|
2017-07-25 20:15:28 +00:00
|
|
|
QString m_name;
|
2019-08-30 13:25:59 +00:00
|
|
|
public:
|
|
|
|
bool m_selected = false;
|
2017-07-27 19:43:10 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void coordinateChanged();
|
2017-07-17 14:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class MapLocationModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(int count READ count NOTIFY countChanged)
|
|
|
|
|
|
|
|
public:
|
|
|
|
MapLocationModel(QObject *parent = NULL);
|
|
|
|
~MapLocationModel();
|
|
|
|
|
|
|
|
Q_INVOKABLE MapLocation *get(int row);
|
2018-09-29 20:13:44 +00:00
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
2017-07-17 14:58:34 +00:00
|
|
|
int count();
|
2017-07-17 19:12:04 +00:00
|
|
|
void add(MapLocation *);
|
2019-05-08 20:15:01 +00:00
|
|
|
// If map is not null, it will be used to place new dive sites without GPS location at the center of the map
|
|
|
|
void reload(QObject *map);
|
2019-08-30 14:51:59 +00:00
|
|
|
void selectionChanged();
|
2019-08-30 15:38:54 +00:00
|
|
|
void setSelected(const QVector<dive_site *> &divesites);
|
2018-10-26 15:03:54 +00:00
|
|
|
MapLocation *getMapLocation(const struct dive_site *ds);
|
2019-05-03 21:16:40 +00:00
|
|
|
const QVector<dive_site *> &selectedDs() const;
|
2019-08-30 10:38:25 +00:00
|
|
|
Q_INVOKABLE void setSelected(struct dive_site *ds);
|
2019-05-01 22:09:59 +00:00
|
|
|
// The dive site is passed as a QVariant, because a null-QVariant is not automatically
|
|
|
|
// transformed into a null pointer and warning messages are spewed onto the console.
|
|
|
|
Q_INVOKABLE bool isSelected(const QVariant &ds) const;
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
protected:
|
2018-09-29 20:13:44 +00:00
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
2017-07-17 14:58:34 +00:00
|
|
|
|
2019-05-09 19:33:01 +00:00
|
|
|
private slots:
|
|
|
|
void diveSiteChanged(struct dive_site *ds, int field);
|
|
|
|
|
2017-07-24 18:17:11 +00:00
|
|
|
private:
|
2017-07-17 20:04:00 +00:00
|
|
|
QVector<MapLocation *> m_mapLocations;
|
2019-05-01 22:09:59 +00:00
|
|
|
QVector<dive_site *> m_selectedDs;
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void countChanged(int c);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|