tools/drawMapTest/drawmapscene.h
author unc0rr
Sun, 28 Nov 2010 19:03:28 +0300
changeset 4427 c5193713055f
parent 4426 969e411c72aa
child 4434 34c305fbc63c
permissions -rw-r--r--
Basic encoding of drawn map

#ifndef DRAWMAPSCENE_H
#define DRAWMAPSCENE_H

#include <QGraphicsScene>

class QGraphicsPathItem;

typedef QList<QList<QPoint> > Paths;

class DrawMapScene : public QGraphicsScene
{
Q_OBJECT
public:
    explicit DrawMapScene(QObject *parent = 0);

    QByteArray encode();

signals:
    void pathChanged();

public slots:
    void undo();

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);
};

#endif // DRAWMAPSCENE_H