| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #pragma once
- #include "BsEditorPrerequisites.h"
- #include "BsModule.h"
- #include "BsEvent.h"
- namespace BansheeEngine
- {
- /**
- * @brief Manages that handles creation, destruction and updates of editor windows.
- *
- * @note Internal class.
- */
- class BS_ED_EXPORT EditorWindowManager : public Module<EditorWindowManager>
- {
- public:
- EditorWindowManager();
- ~EditorWindowManager();
- /**
- * @brief Creates the main editor window using a previously created render window.
- * If a main window already exists, this will return the existing instance.
- */
- MainEditorWindow* createMain(const RenderWindowPtr& parentRenderWindow);
- /**
- * @brief Creates a new editor window. There is no limit on the number of editor windows.
- */
- EditorWindow* create();
- /**
- * @brief Notifies the manager that a new editor window was created.
- */
- void registerWindow(EditorWindowBase* window);
- /**
- * @brief Schedules the window for destruction. Actual destruction will happen on next update.
- */
- void destroy(EditorWindowBase* window);
- /**
- * @brief Returns the main editor window, or null if one doesn't exist.
- */
- MainEditorWindow* getMainWindow() const { return mMainWindow; }
- /**
- * @brief Update to be called once per frame. Calls update on all active editor windows.
- */
- void update();
- protected:
- MainEditorWindow* mMainWindow;
- Vector<EditorWindowBase*> mEditorWindows;
- Vector<EditorWindowBase*> mScheduledForDestruction;
- Vector<EditorWindowBase*> mEditorWindowsSnapshot;
- };
- }
|