subsurface/desktop-widgets/mapwidget.h
Lubomir I. Ivanov b083795233 map: add placeholder .cpp and .h files for the new map widget
The files are WIP and located in desktop-widgets, as these
would only be used by the desktop version.

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

23 lines
353 B
C++

#ifndef MAPWIDGET_H
#define MAPWIDGET_H
#include <QQuickWidget>
class QResizeEvent;
class QQuickItem;
class MapWidget : public QQuickWidget {
public:
MapWidget(QWidget *parent = NULL);
~MapWidget();
static MapWidget *instance();
private:
static MapWidget *m_instance;
QQuickItem *m_rootItem;
};
#endif // MAPWIDGET_H