/* editorwindow.h This file is part of the Project::OSiRiON world 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); public slots: bool loadFile(const QString &filename); bool saveFile(const QString &filename); protected: virtual void resizeEvent (QResizeEvent *event); private: MapWidget *editorwindow_mapwidget; SideBar *editorwindow_sidebar; }; } #endif // __INCLUDED_EDITOR_EDITORWINDOW__