tools/drawMapTest/drawmapscene.h
author unc0rr
Sat, 27 Nov 2010 22:40:29 +0300
changeset 4423 4391526e436e
child 4424 3225ea34e415
permissions -rw-r--r--
Initial commit of the Draw Map Scene

#ifndef DRAWMAPSCENE_H
#define DRAWMAPSCENE_H

#include <QGraphicsScene>

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

signals:

public slots:

private:
    virtual void mouseMoveEvent(QGraphicsSceneMouseEvent * mouseEvent);
    virtual void mousePressEvent(QGraphicsSceneMouseEvent * mouseEvent);
    virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * mouseEvent);
};

#endif // DRAWMAPSCENE_H