2013-05-17 11:14:10 +00:00
|
|
|
#ifndef GLOBE_H
|
|
|
|
#define GLOBE_H
|
|
|
|
|
|
|
|
#include <marble/MarbleWidget.h>
|
2013-05-17 19:12:55 +00:00
|
|
|
#include <marble/GeoDataCoordinates.h>
|
2013-05-30 00:52:31 +00:00
|
|
|
#include <marble/GeoDataDocument.h>
|
2013-05-17 19:12:55 +00:00
|
|
|
|
2013-05-17 17:09:10 +00:00
|
|
|
#include <QHash>
|
2013-05-17 11:14:10 +00:00
|
|
|
|
2013-05-18 00:58:49 +00:00
|
|
|
class KMessageWidget;
|
2013-05-17 19:12:55 +00:00
|
|
|
using namespace Marble;
|
|
|
|
struct dive;
|
|
|
|
|
|
|
|
class GlobeGPS : public MarbleWidget{
|
2013-05-17 11:14:10 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-05-17 19:12:55 +00:00
|
|
|
using MarbleWidget::centerOn;
|
2013-05-17 11:14:10 +00:00
|
|
|
GlobeGPS(QWidget *parent);
|
2013-05-17 16:28:02 +00:00
|
|
|
void reload();
|
2013-11-19 12:23:59 +00:00
|
|
|
void repopulateLabels();
|
2013-05-17 16:28:02 +00:00
|
|
|
void centerOn(struct dive* dive);
|
2013-11-22 02:22:57 +00:00
|
|
|
bool eventFilter(QObject*, QEvent*);
|
2013-05-17 19:12:55 +00:00
|
|
|
protected:
|
2013-10-17 21:53:12 +00:00
|
|
|
/* reimp */ void resizeEvent(QResizeEvent *event);
|
|
|
|
/* reimp */ void mousePressEvent(QMouseEvent* event);
|
2013-12-02 17:06:19 +00:00
|
|
|
/* reimp */ void contextMenuEvent(QContextMenuEvent*);
|
2013-05-17 16:28:02 +00:00
|
|
|
private:
|
2013-05-17 19:12:55 +00:00
|
|
|
GeoDataDocument *loadedDives;
|
2013-05-18 00:58:49 +00:00
|
|
|
KMessageWidget* messageWidget;
|
2013-10-17 21:53:12 +00:00
|
|
|
QTimer *fixZoomTimer;
|
|
|
|
int currentZoomLevel;
|
2013-12-02 17:06:19 +00:00
|
|
|
bool editingDiveLocation;
|
2013-05-17 19:12:55 +00:00
|
|
|
|
2013-06-19 17:20:16 +00:00
|
|
|
public slots:
|
2013-05-17 19:12:55 +00:00
|
|
|
void changeDiveGeoPosition(qreal lon,qreal lat,GeoDataCoordinates::Unit);
|
2013-06-05 05:44:12 +00:00
|
|
|
void mouseClicked(qreal lon, qreal lat, GeoDataCoordinates::Unit);
|
2013-10-17 21:53:12 +00:00
|
|
|
void fixZoom();
|
2013-12-02 17:06:19 +00:00
|
|
|
void prepareForGetDiveCoordinates();
|
|
|
|
|
2013-05-17 11:14:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|