mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
07a16574e9
We started out using Q_SLOTS and Q_SIGNALS but then changed our mind. Let's make this consistent again. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
37 lines
819 B
C++
37 lines
819 B
C++
#ifndef GLOBE_H
|
|
#define GLOBE_H
|
|
|
|
#include <marble/MarbleWidget.h>
|
|
#include <marble/GeoDataCoordinates.h>
|
|
#include <marble/GeoDataDocument.h>
|
|
|
|
#include <QHash>
|
|
|
|
class KMessageWidget;
|
|
using namespace Marble;
|
|
struct dive;
|
|
|
|
class GlobeGPS : public MarbleWidget{
|
|
Q_OBJECT
|
|
void prepareForGetDiveCoordinates(struct dive* dive);
|
|
public:
|
|
using MarbleWidget::centerOn;
|
|
GlobeGPS(QWidget *parent);
|
|
void reload();
|
|
void centerOn(struct dive* dive);
|
|
void resizeEvent(QResizeEvent *event);
|
|
|
|
protected:
|
|
virtual void mousePressEvent(QMouseEvent* event);
|
|
|
|
private:
|
|
GeoDataDocument *loadedDives;
|
|
struct dive* editingDiveCoords;
|
|
KMessageWidget* messageWidget;
|
|
|
|
public slots:
|
|
void changeDiveGeoPosition(qreal lon,qreal lat,GeoDataCoordinates::Unit);
|
|
void mouseClicked(qreal lon, qreal lat, GeoDataCoordinates::Unit);
|
|
};
|
|
|
|
#endif
|