mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-20 14:55:27 +00:00
89eed5d36e
with the adittion of gpslistmodel/location, the libraries qt-models had a direct dependency on subsurface-core, and subsurface-core had a direct dependency on qt-models, this is bad. Moving a bit of code around I'v managed to clean this out, and also to clear a bit of uneeded code (GpsTracker and gpsTracker where basically the same thing.) Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
33 lines
723 B
C++
33 lines
723 B
C++
#ifndef GPSLISTMODEL_H
|
|
#define GPSLISTMODEL_H
|
|
|
|
#include "gpslocation.h"
|
|
#include <QObject>
|
|
#include <QAbstractListModel>
|
|
|
|
class GpsListModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
|
|
enum GpsListRoles {
|
|
GpsDateRole = Qt::UserRole + 1,
|
|
GpsNameRole,
|
|
GpsLatitudeRole,
|
|
GpsLongitudeRole
|
|
};
|
|
|
|
static GpsListModel *instance();
|
|
GpsListModel(QObject *parent = 0);
|
|
void addGpsFix(gpsTracker g);
|
|
void clear();
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
QHash<int, QByteArray> roleNames() const;
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
|
void update();
|
|
private:
|
|
QVector<gpsTracker> m_gpsFixes;
|
|
static GpsListModel *m_instance;
|
|
};
|
|
|
|
#endif // GPSLISTMODEL_H
|