tools/drawMapTest/drawmapscene.h
branchui-scaling
changeset 15283 c4fd2813b127
parent 13390 0135e64c6c66
parent 15279 7ab5cf405686
child 15663 d92eeb468dad
--- a/tools/drawMapTest/drawmapscene.h	Wed May 16 18:22:28 2018 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,40 +0,0 @@
-#ifndef DRAWMAPSCENE_H
-#define DRAWMAPSCENE_H
-
-#include <QGraphicsScene>
-#include <QPainterPath>
-
-class QGraphicsPathItem;
-
-typedef QList<QList<QPoint> > Paths;
-
-class DrawMapScene : public QGraphicsScene
-{
-Q_OBJECT
-public:
-    explicit DrawMapScene(QObject *parent = 0);
-
-    QByteArray encode();
-    void decode(QByteArray data);
-
-signals:
-    void pathChanged();
-
-public slots:
-    void undo();
-    void simplifyLast();
-
-private:
-    QPen m_pen;
-    QBrush m_brush;
-    QGraphicsPathItem  * m_currPath;
-    Paths paths;
-
-    virtual void mouseMoveEvent(QGraphicsSceneMouseEvent * mouseEvent);
-    virtual void mousePressEvent(QGraphicsSceneMouseEvent * mouseEvent);
-    virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * mouseEvent);
-
-    QPainterPath pointsToPath(const QList<QPoint> points);
-};
-
-#endif // DRAWMAPSCENE_H