diff options
Diffstat (limited to 'Editor/GUI')
-rw-r--r-- | Editor/GUI/Dock.cpp | 0 | ||||
-rw-r--r-- | Editor/GUI/Dock.h | 0 | ||||
-rw-r--r-- | Editor/GUI/EditorWindows.cpp | 0 | ||||
-rw-r--r-- | Editor/GUI/EditorWindows.h | 28 | ||||
-rw-r--r-- | Editor/GUI/MenuController.cpp | 0 | ||||
-rw-r--r-- | Editor/GUI/MenuController.h | 11 |
6 files changed, 39 insertions, 0 deletions
diff --git a/Editor/GUI/Dock.cpp b/Editor/GUI/Dock.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Editor/GUI/Dock.cpp diff --git a/Editor/GUI/Dock.h b/Editor/GUI/Dock.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Editor/GUI/Dock.h diff --git a/Editor/GUI/EditorWindows.cpp b/Editor/GUI/EditorWindows.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Editor/GUI/EditorWindows.cpp diff --git a/Editor/GUI/EditorWindows.h b/Editor/GUI/EditorWindows.h new file mode 100644 index 0000000..90e71a4 --- /dev/null +++ b/Editor/GUI/EditorWindows.h @@ -0,0 +1,28 @@ +#ifndef EDITOR_WINDOW_H +#define EDITOR_WINDOW_H + +#include <windows.h> + +// 一个containner window中有多个viewport +class ContainnerWindow +{ +public: + +private: + HWND m_Window; + POINT m_Size; + +}; + + +// 窗口内的单个viewport +class Viewport +{ +public: + +private: + HWND m_View; + +}; + +#endif
\ No newline at end of file diff --git a/Editor/GUI/MenuController.cpp b/Editor/GUI/MenuController.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Editor/GUI/MenuController.cpp diff --git a/Editor/GUI/MenuController.h b/Editor/GUI/MenuController.h new file mode 100644 index 0000000..9abe9e5 --- /dev/null +++ b/Editor/GUI/MenuController.h @@ -0,0 +1,11 @@ +#ifndef MENU_CONTROLLER_H +#define MENU_CONTROLLER_H + +// 管理menu item + +class MenuController { + +}; + + +#endif
\ No newline at end of file |