aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/gpslocation.h
blob: a279593d588a7cdee3305a621b5baa7d79bffe0d (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
#ifndef GPSLOCATION_H
#define GPSLOCATION_H

#include "units.h"
#include <QObject>
#include <QGeoCoordinate>
#include <QGeoPositionInfoSource>
#include <QGeoPositionInfo>
#include <QSettings>

class GpsLocation : QObject
{
	Q_OBJECT
public:
	GpsLocation(QObject *parent);
	bool applyLocations();
	int getGpsNum() const;

private:
	QGeoPositionInfo lastPos;
	QGeoPositionInfoSource *gpsSource;
	void status(QString msg);
	QSettings *geoSettings;

signals:

public slots:
	void serviceEnable(bool toggle);
	void newPosition(QGeoPositionInfo pos);
	void updateTimeout();
};

#endif // GPSLOCATION_H