summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/mapwidget.h
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2017-07-15 00:54:13 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-28 07:31:11 -0700
commitb083795233db702e7cb45b2fe5d6673e7c56e604 (patch)
treec7c8e0abc213bd4adb03d3281ac85353b9308a2c /desktop-widgets/mapwidget.h
parent762a9d2ec2aecfa5e6caa7ea5f56ba8c49c3731a (diff)
downloadsubsurface-b083795233db702e7cb45b2fe5d6673e7c56e604.tar.gz
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>
Diffstat (limited to 'desktop-widgets/mapwidget.h')
-rw-r--r--desktop-widgets/mapwidget.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/desktop-widgets/mapwidget.h b/desktop-widgets/mapwidget.h
new file mode 100644
index 000000000..c1d55ae91
--- /dev/null
+++ b/desktop-widgets/mapwidget.h
@@ -0,0 +1,23 @@
+#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