aboutsummaryrefslogtreecommitdiff
path: root/mapman/src/painter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mapman/src/painter.hpp')
-rw-r--r--mapman/src/painter.hpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/mapman/src/painter.hpp b/mapman/src/painter.hpp
new file mode 100644
index 0000000..489a87b
--- /dev/null
+++ b/mapman/src/painter.hpp
@@ -0,0 +1,34 @@
+#ifndef MAPPAINTER_HPP
+#define MAPPAINTER_HPP
+
+#include <vector>
+#include <QObject>
+
+class QGraphicsScene;
+class QGraphicsView;
+class QGraphicsItem;
+class map_library;
+
+class map_painter : public QObject
+{
+ Q_OBJECT
+public:
+ map_painter();
+ ~map_painter();
+ void set_dimension(int h, int v);
+ void set_map_library(map_library *lib);
+ void set_map_id(int pos, bool populated, int id, bool user_input = false);
+
+ QGraphicsView* view() { return v; }
+signals:
+ void map_id_changed(int pos, bool populated, int id);
+private:
+ QGraphicsView *v;
+ QGraphicsScene *s;
+ map_library *l;
+ int hc;
+ int vc;
+ std::vector<QGraphicsItem*> slices;
+};
+
+#endif