2017-07-17 14:58:34 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef MAPLOCATIONMODEL_H
|
|
|
|
#define MAPLOCATIONMODEL_H
|
|
|
|
|
|
|
|
#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
|
2017-07-27 19:43:10 +00:00
|
|
|
Q_PROPERTY(quint32 uuid READ uuid)
|
|
|
|
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:
|
2017-07-18 23:02:43 +00:00
|
|
|
static const char *PROPERTY_NAME_COORDINATE;
|
|
|
|
static const char *PROPERTY_NAME_UUID;
|
2017-07-25 20:15:28 +00:00
|
|
|
static const char *PROPERTY_NAME_NAME;
|
2017-07-18 23:02:43 +00:00
|
|
|
|
2017-07-17 14:58:34 +00:00
|
|
|
explicit MapLocation();
|
2017-07-25 20:15:28 +00:00
|
|
|
explicit MapLocation(quint32 uuid, QGeoCoordinate coord, QString name);
|
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);
|
2017-07-27 19:43:10 +00:00
|
|
|
quint32 uuid();
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
enum Roles {
|
2017-07-18 23:02:43 +00:00
|
|
|
RoleUuid = Qt::UserRole + 1,
|
2017-07-25 20:15:28 +00:00
|
|
|
RoleCoordinate,
|
|
|
|
RoleName
|
2017-07-17 14:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2017-07-18 23:02:43 +00:00
|
|
|
quint32 m_uuid;
|
2017-07-17 19:36:55 +00:00
|
|
|
QGeoCoordinate m_coordinate;
|
2017-07-25 20:15:28 +00:00
|
|
|
QString m_name;
|
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)
|
2017-07-27 20:07:37 +00:00
|
|
|
Q_PROPERTY(quint32 selectedUuid READ selectedUuid NOTIFY selectedUuidChanged)
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
MapLocationModel(QObject *parent = NULL);
|
|
|
|
~MapLocationModel();
|
|
|
|
|
|
|
|
Q_INVOKABLE MapLocation *get(int row);
|
2018-08-01 09:01:26 +00:00
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
int rowCount(const QModelIndex &parent) const;
|
2017-07-17 14:58:34 +00:00
|
|
|
int count();
|
2017-07-17 19:12:04 +00:00
|
|
|
void add(MapLocation *);
|
2017-07-17 20:04:00 +00:00
|
|
|
void addList(QVector<MapLocation *>);
|
2017-07-17 19:12:04 +00:00
|
|
|
void clear();
|
2017-07-19 00:02:34 +00:00
|
|
|
MapLocation *getMapLocationForUuid(quint32 uuid);
|
2017-11-09 16:43:21 +00:00
|
|
|
void updateMapLocationCoordinates(quint32 uuid, QGeoCoordinate coord);
|
2017-07-24 18:17:11 +00:00
|
|
|
Q_INVOKABLE void setSelectedUuid(QVariant uuid, QVariant fromClick = true);
|
2017-07-27 20:07:37 +00:00
|
|
|
quint32 selectedUuid();
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
protected:
|
2018-08-01 09:01:26 +00:00
|
|
|
QHash<int, QByteArray> roleNames() const;
|
2017-07-17 14:58:34 +00:00
|
|
|
|
2017-07-24 18:17:11 +00:00
|
|
|
private:
|
2017-07-17 20:04:00 +00:00
|
|
|
QVector<MapLocation *> m_mapLocations;
|
2017-07-17 14:58:34 +00:00
|
|
|
QHash<int, QByteArray> m_roles;
|
2017-07-18 23:27:30 +00:00
|
|
|
quint32 m_selectedUuid;
|
2017-07-17 14:58:34 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void countChanged(int c);
|
2017-07-27 20:07:37 +00:00
|
|
|
void selectedUuidChanged();
|
2017-07-18 23:27:30 +00:00
|
|
|
void selectedLocationChanged(MapLocation *);
|
2017-07-17 14:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|