mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +00:00
24 lines
353 B
C
24 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
|