/* editorwindow.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_EDITORWINDOW__ #define __INCLUDED_EDITOR_EDITORWINDOW__ #include namespace editor { class MapWidget; class SideBar; /** * @brief EditorWindow is the main zone editor window * */ class EditorWindow : public QWidget { Q_OBJECT public: EditorWindow(QWidget *parent = 0); protected: virtual void resizeEvent (QResizeEvent *event); private: MapWidget *editorwindow_mapwidget; SideBar *editorwindow_sidebar; }; } #endif // __INCLUDED_EDITOR_EDITORWINDOW__