mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
0d3d9c01eb
Later this has to be replaced / renamed if needed. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
33 lines
526 B
C++
33 lines
526 B
C++
#ifndef MAPWIDGET_H
|
|
#define MAPWIDGET_H
|
|
|
|
#include <QQuickWidget>
|
|
|
|
#include "core/divesite.h"
|
|
|
|
class QResizeEvent;
|
|
class QQuickItem;
|
|
struct dive_site;
|
|
|
|
class MapWidget : public QQuickWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MapWidget(QWidget *parent = NULL);
|
|
~MapWidget();
|
|
|
|
static MapWidget *instance();
|
|
void reload();
|
|
|
|
public slots:
|
|
void centerOnDiveSite(struct dive_site *);
|
|
void endGetDiveCoordinates();
|
|
|
|
private:
|
|
static MapWidget *m_instance;
|
|
QQuickItem *m_rootItem;
|
|
|
|
};
|
|
|
|
#endif // MAPWIDGET_H
|