/* mapwidget.h This file is part of the Project::OSiRiON zone editor and is distributed under the terms and conditions of the GNU General Public License version 2 */ #ifndef __INCLUDED_EDITOR_MAPWIDGET__ #define __INCLUDED_EDITOR_MAPWIDGET__ #include namespace editor { class MapWidget : public QWidget { Q_OBJECT public: MapWidget(QWidget *parent = 0); protected: virtual void paintEvent(QPaintEvent *event); virtual void wheelEvent(QWheelEvent *event); private: int mapwidget_zoom; }; } #endif // __INCLUDED_EDITOR_MAPWIDGET__