diff -r 5e8cfef25ccb -r 4391526e436e tools/drawMapTest/drawmapscene.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/drawMapTest/drawmapscene.h Sat Nov 27 22:40:29 2010 +0300 @@ -0,0 +1,22 @@ +#ifndef DRAWMAPSCENE_H +#define DRAWMAPSCENE_H + +#include + +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