blob: 8dff65eacdeabda63a2ccbc0549c4192eccdcbb1 (
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
|
// SPDX-License-Identifier: GPL-2.0
#ifndef MAPLOCATIONMODEL_H
#define MAPLOCATIONMODEL_H
#include <QObject>
#include <QList>
#include <QHash>
#include <QByteArray>
#include <QAbstractListModel>
class MapLocation : public QObject
{
Q_OBJECT
Q_PROPERTY(qreal latitude MEMBER m_latitude)
Q_PROPERTY(qreal longitude MEMBER m_longitude)
public:
explicit MapLocation();
explicit MapLocation(qreal lat, qreal lng);
QVariant getRole(int role) const;
enum Roles {
RoleLatitude = Qt::UserRole + 1,
RoleLongitude
};
private:
qreal m_latitude;
qreal m_longitude;
};
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);
QVariant data(const QModelIndex &index, int role) const override;
int rowCount(const QModelIndex &parent) const override;
int count();
void add(MapLocation *);
void clear();
protected:
QHash<int, QByteArray> roleNames() const;
private:
QList<MapLocation *> m_mapLocations;
QHash<int, QByteArray> m_roles;
signals:
void countChanged(int c);
};
#endif
|