aboutsummaryrefslogblamecommitdiffstats
path: root/qt-models/gpslistmodel.h
blob: bce84c985f8baab3423915d7a5e48c79e684131e (plain) (tree)
1
2
3
4
5
6
7
8
9
                                   

                      
                             
                  
                             
                                              

                


                                               
                                 
          
                                        


                                                                                  
                      
        
                       
                                       

                        
// 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();
	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:
	GpsListModel();
	QVector<gpsTracker> m_gpsFixes;
};

#endif // GPSLISTMODEL_H