diff options
author | chai <chaifix@163.com> | 2020-10-19 09:13:58 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2020-10-19 09:13:58 +0800 |
commit | f0807fc44dde14531759306317611bab87c8fccf (patch) | |
tree | 6e78fed61c16a70cda5fa732635f89f9faac9720 /Editor/GUI | |
parent | 639b34294ffc20721c66db46e59e07d9100ac4b8 (diff) |
+gamelab proj
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 |