mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
86021b24d9
Borrowed the code from KMessageWidget from Aurelian Gateau, Kdelibs, to better show passive information and notifications. instead of a popup blowing in the user's face, a nice, animated and well designed widget will gracefully fade-in, show the notes, and fade out when not needed anymore. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
37 lines
769 B
C++
37 lines
769 B
C++
#ifndef GLOBE_H
|
|
#define GLOBE_H
|
|
|
|
#include <marble/MarbleWidget.h>
|
|
#include <marble/GeoDataCoordinates.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);
|
|
|
|
protected:
|
|
virtual void mousePressEvent(QMouseEvent* event);
|
|
|
|
private:
|
|
GeoDataDocument *loadedDives;
|
|
QStringList diveLocations;
|
|
struct dive* editingDiveCoords;
|
|
KMessageWidget* messageWidget;
|
|
|
|
public Q_SLOTS:
|
|
void changeDiveGeoPosition(qreal lon,qreal lat,GeoDataCoordinates::Unit);
|
|
void setMessageWidget(KMessageWidget* globeMessage);
|
|
|
|
};
|
|
|
|
#endif
|