tools/drawMapTest/drawmapscene.h
author koda
Wed, 01 Dec 2010 00:58:03 +0100
changeset 4437 05192cdbce9b
parent 4434 34c305fbc63c
child 4439 27a896207aae
permissions -rw-r--r--
un-break build (wrong merge in uConsole) and update project file with the new sources

#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();
    void simplify();

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