mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
fc6cb67626
The QML Map widget requires a QAbstractListModel based model to operate with good performance. Technically gpslistmodel.cpp can be used for that same purpose (e.g. has GPS coordinates), but the way it updates may complicate the Map widget integration. Thus, a new model is created - MapLocationModel, with items of type MapLocation, for an attempt for a clean project structure on the C++ side. For now it only handles latitude and longitude. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
60 lines
1.1 KiB
C++
60 lines
1.1 KiB
C++
// 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();
|
|
|
|
protected:
|
|
QHash<int, QByteArray> roleNames() const;
|
|
|
|
private:
|
|
QList<MapLocation *> m_mapLocations;
|
|
QHash<int, QByteArray> m_roles;
|
|
|
|
signals:
|
|
void countChanged(int c);
|
|
|
|
};
|
|
|
|
#endif
|