diff options
Diffstat (limited to 'source/Asura.Editor')
-rw-r--r-- | source/Asura.Editor/dui_module.cpp (renamed from source/Asura.Editor/widgets/rbutton.cpp) | 0 | ||||
-rw-r--r-- | source/Asura.Editor/dui_module.h | 6 | ||||
-rw-r--r-- | source/Asura.Editor/editor.cpp | 1 | ||||
-rw-r--r-- | source/Asura.Editor/editor.h | 17 | ||||
-rw-r--r-- | source/Asura.Editor/layout/horizontal_layout.cpp (renamed from source/Asura.Editor/widgets/rbutton.h) | 0 | ||||
-rw-r--r-- | source/Asura.Editor/layout/horizontal_layout.h | 0 | ||||
-rw-r--r-- | source/Asura.Editor/layout/vertical_layout.cpp | 0 | ||||
-rw-r--r-- | source/Asura.Editor/layout/vertical_layout.h | 0 | ||||
-rw-r--r-- | source/Asura.Editor/main.cpp | 10 | ||||
-rw-r--r-- | source/Asura.Editor/widgets/progress.cpp | 0 | ||||
-rw-r--r-- | source/Asura.Editor/widgets/progress.h | 0 | ||||
-rw-r--r-- | source/Asura.Editor/widgets/radio_button.cpp | 0 | ||||
-rw-r--r-- | source/Asura.Editor/widgets/radio_button.h | 0 | ||||
-rw-r--r-- | source/Asura.Editor/widgets/widget.h | 4 |
14 files changed, 35 insertions, 3 deletions
diff --git a/source/Asura.Editor/widgets/rbutton.cpp b/source/Asura.Editor/dui_module.cpp index e69de29..e69de29 100644 --- a/source/Asura.Editor/widgets/rbutton.cpp +++ b/source/Asura.Editor/dui_module.cpp diff --git a/source/Asura.Editor/dui_module.h b/source/Asura.Editor/dui_module.h new file mode 100644 index 0000000..abcaca5 --- /dev/null +++ b/source/Asura.Editor/dui_module.h @@ -0,0 +1,6 @@ +#ifndef __ASRUA_EDITOR_DIRECTUI_MODULE_H__ +#define __ASRUA_EDITOR_DIRECTUI_MODULE_H__ + + + +#endif
\ No newline at end of file diff --git a/source/Asura.Editor/editor.cpp b/source/Asura.Editor/editor.cpp index 29fb76d..38e7c26 100644 --- a/source/Asura.Editor/editor.cpp +++ b/source/Asura.Editor/editor.cpp @@ -1,5 +1,4 @@ - int main(int argc, char *argv[]) { diff --git a/source/Asura.Editor/editor.h b/source/Asura.Editor/editor.h new file mode 100644 index 0000000..6555c81 --- /dev/null +++ b/source/Asura.Editor/editor.h @@ -0,0 +1,17 @@ +#ifndef __ASURA_EDITOR_H__ +#define __ASURA_EDITOR_H__ + +namespace AsuraEditor +{ + + /// + /// + /// + class Editor + { + + }; + +} + +#endif
\ No newline at end of file diff --git a/source/Asura.Editor/widgets/rbutton.h b/source/Asura.Editor/layout/horizontal_layout.cpp index e69de29..e69de29 100644 --- a/source/Asura.Editor/widgets/rbutton.h +++ b/source/Asura.Editor/layout/horizontal_layout.cpp diff --git a/source/Asura.Editor/layout/horizontal_layout.h b/source/Asura.Editor/layout/horizontal_layout.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/Asura.Editor/layout/horizontal_layout.h diff --git a/source/Asura.Editor/layout/vertical_layout.cpp b/source/Asura.Editor/layout/vertical_layout.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/Asura.Editor/layout/vertical_layout.cpp diff --git a/source/Asura.Editor/layout/vertical_layout.h b/source/Asura.Editor/layout/vertical_layout.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/Asura.Editor/layout/vertical_layout.h diff --git a/source/Asura.Editor/main.cpp b/source/Asura.Editor/main.cpp index e69de29..cfe59ac 100644 --- a/source/Asura.Editor/main.cpp +++ b/source/Asura.Editor/main.cpp @@ -0,0 +1,10 @@ +/// +/// ༭ĽͨdirectUIʵ֣Ⱦasura-libϣ¼Ӧͨwin32APIʵ֡ +/// + +int main(int argn, char* args[]) +{ + + + +}
\ No newline at end of file diff --git a/source/Asura.Editor/widgets/progress.cpp b/source/Asura.Editor/widgets/progress.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/Asura.Editor/widgets/progress.cpp diff --git a/source/Asura.Editor/widgets/progress.h b/source/Asura.Editor/widgets/progress.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/Asura.Editor/widgets/progress.h diff --git a/source/Asura.Editor/widgets/radio_button.cpp b/source/Asura.Editor/widgets/radio_button.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/Asura.Editor/widgets/radio_button.cpp diff --git a/source/Asura.Editor/widgets/radio_button.h b/source/Asura.Editor/widgets/radio_button.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/Asura.Editor/widgets/radio_button.h diff --git a/source/Asura.Editor/widgets/widget.h b/source/Asura.Editor/widgets/widget.h index 437e2bf..5fb18f1 100644 --- a/source/Asura.Editor/widgets/widget.h +++ b/source/Asura.Editor/widgets/widget.h @@ -1,7 +1,7 @@ #ifndef __ASURA_EDITOR_WIDGET_H__ #define __ASURA_EDITOR_WIDGET_H__ -#include <Object.h> +#include <asura-lib-utils/type.h> namespace AusraEditor { @@ -9,7 +9,7 @@ namespace AusraEditor /// /// Asura EditorĿؼȾں¼ѯֻ¼Ӧӿڡ /// - class Widget : virtual public Object + ASURA_ABSTRACT class Widget { public: |