subsurface/desktop-widgets/mapwidget.h
Lubomir I. Ivanov a1fbffc96c mapwidget: add placeholder centerOnDiveSite() public slot
This is WIP and would be developed futher, so that the new
map widget can center on a divesite location.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
2017-07-28 07:31:11 -07:00

31 lines
477 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();
public slots:
void centerOnDiveSite(struct dive_site *);
private:
static MapWidget *m_instance;
QQuickItem *m_rootItem;
};
#endif // MAPWIDGET_H