mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			779 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			779 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef GPSLISTMODEL_H
 | |
| #define GPSLISTMODEL_H
 | |
| 
 | |
| #include "core/gpslocation.h"
 | |
| #include <QObject>
 | |
| #include <QAbstractListModel>
 | |
| 
 | |
| class GpsListModel : public QAbstractListModel
 | |
| {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 
 | |
| 	enum GpsListRoles {
 | |
| 		GpsDateRole = Qt::UserRole + 1,
 | |
| 		GpsNameRole,
 | |
| 		GpsLatitudeRole,
 | |
| 		GpsLongitudeRole,
 | |
| 		GpsWhenRole
 | |
| 	};
 | |
| 
 | |
| 	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
 |