| 123456789101112131415161718192021222324252627 |
- #pragma once
- #include "BsEditorPrerequisites.h"
- #include "BsEditorWindowBase.h"
- namespace BansheeEditor
- {
- class EditorWindow : public EditorWindowBase
- {
- public:
- virtual ~EditorWindow();
- EditorWidgetContainer& widgets() const { return *mWidgets; }
- static EditorWindow* create();
- protected:
- friend class EditorWindowManager;
- EditorWindow();
- virtual void movedOrResized();
- private:
- EditorWidgetContainer* mWidgets;
- void widgetRemoved();
- };
- }
|