blob: 8cc5b7269162a461944bc1912ff62c6c3b386ad0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// SPDX-License-Identifier: GPL-2.0
#ifndef MAPLOCATIONMODEL_H
#define MAPLOCATIONMODEL_H
#include "core/subsurface-qt/divelistnotifier.h"
#include <QObject>
#include <QVector>
#include <QHash>
#include <QByteArray>
#include <QAbstractListModel>
#include <QGeoCoordinate>
class MapLocation
{
public:
explicit MapLocation(struct dive_site *ds, QGeoCoordinate coord, QString name, bool selected);
QVariant getRole(int role) const;
enum Roles {
RoleDivesite = Qt::UserRole + 1,
RoleCoordinate,
RoleName,
RolePixmap,
RoleZ,
RoleIsSelected
};
struct dive_site *divesite;
QGeoCoordinate coordinate;
QString name;
bool selected;
};
class MapLocationModel : public QAbstractListModel
{
Q_OBJECT
public:
MapLocationModel(QObject *parent = NULL);
~MapLocationModel();
QVariant data(const QModelIndex &index, int role) const override;
int rowCount(const QModelIndex &parent) const override;
void add(MapLocation *);
// 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);
void selectionChanged();
void setSelected(const QVector<dive_site *> &divesites);
MapLocation *getMapLocation(const struct dive_site *ds);
const QVector<dive_site *> &selectedDs() const;
void setSelected(struct dive_site *ds);
protected:
QHash<int, QByteArray> roleNames() const override;
private slots:
void diveSiteChanged(struct dive_site *ds, int field);
private:
QVector<MapLocation *> m_mapLocations;
QVector<dive_site *> m_selectedDs;
};
#endif
|