blob: 5da0733e141ae8557335ee0d1e41b4d97f933971 (
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
#include "maplocationmodel.h"
MapLocation::MapLocation()
{
}
MapLocation::MapLocation(qreal latitude, qreal longitude) :
m_latitude(latitude), m_longitude(longitude)
{
}
QVariant MapLocation::getRole(int role) const
{
switch (role) {
case Roles::RoleLatitude:
return m_latitude;
case Roles::RoleLongitude:
return m_longitude;
default:
return QVariant();
}
}
MapLocationModel::MapLocationModel(QObject *parent) : QAbstractListModel(parent)
{
m_roles[MapLocation::Roles::RoleLatitude] = "latitude";
m_roles[MapLocation::Roles::RoleLongitude] = "longitude";
}
MapLocationModel::~MapLocationModel()
{
qDeleteAll(m_mapLocations);
}
QVariant MapLocationModel::data( const QModelIndex & index, int role ) const
{
if (index.row() < 0 || index.row() >= m_mapLocations.size())
return QVariant();
return m_mapLocations.at(index.row())->getRole(role);
}
QHash<int, QByteArray> MapLocationModel::roleNames() const
{
return m_roles;
}
int MapLocationModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return m_mapLocations.size();
}
int MapLocationModel::count()
{
return m_mapLocations.size();
}
MapLocation *MapLocationModel::get(int row)
{
if (row < 0 || row >= m_mapLocations.size())
return NULL;
return m_mapLocations.at(row);
}
|