summaryrefslogtreecommitdiffstats
path: root/qt-ui/globe.h
blob: e89c9b777f731abf4a5624a7fa9e6d76b38992e7 (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
#ifndef GLOBE_H
#define GLOBE_H

#include <marble/MarbleWidget.h>
#include <QHash>

namespace Marble{
	class GeoDataDocument;
}
class GlobeGPS : public Marble::MarbleWidget{
	Q_OBJECT
public:
	using Marble::MarbleWidget::centerOn;
	GlobeGPS(QWidget *parent);
	void reload();
	void centerOn(struct dive* dive);

private:
	Marble::GeoDataDocument *loadedDives;
	QStringList diveLocations;
	
};

#endif