diff --git a/doxy_gale.py b/doxy_gale.py new file mode 100644 index 0000000..8782618 --- /dev/null +++ b/doxy_gale.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +import os +import doxy.module as module +import doxy.debug as debug +import doxy.tools as tools + +def create(target, module_name): + my_module = module.Module(__file__, module_name) + my_module.set_version([0,5,"dev"]) + my_module.set_title("Gale: Graphic Abstraction Layer for Ewol") + my_module.set_website("http://atria-soft.github.io/" + module_name) + my_module.set_website_sources("http://github.com/atria-soft/" + module_name) + my_module.set_path(os.path.join(tools.get_current_path(__file__), module_name)) + my_module.add_module_depend([ + 'elog', + 'etk' + ]) + + return my_module \ No newline at end of file diff --git a/gale/Application.cpp b/gale/Application.cpp index ba4c799..289e0bf 100644 --- a/gale/Application.cpp +++ b/gale/Application.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/Application.h b/gale/Application.h index 66e5e71..229ce0e 100644 --- a/gale/Application.h +++ b/gale/Application.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/Dimension.cpp b/gale/Dimension.cpp index 09f32d8..3fe2024 100644 --- a/gale/Dimension.cpp +++ b/gale/Dimension.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/Dimension.h b/gale/Dimension.h index 2ed81c5..387bc29 100644 --- a/gale/Dimension.h +++ b/gale/Dimension.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/Thread.cpp b/gale/Thread.cpp index 600c360..6dcfdc5 100644 --- a/gale/Thread.cpp +++ b/gale/Thread.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/Thread.h b/gale/Thread.h index f73e131..834b754 100644 --- a/gale/Thread.h +++ b/gale/Thread.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/Android/Context.cpp b/gale/context/Android/Context.cpp index 408af06..249b72d 100644 --- a/gale/context/Android/Context.cpp +++ b/gale/context/Android/Context.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN, Kevin BILLONNEAU * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/Context.cpp b/gale/context/Context.cpp index 030b787..1d9c05e 100644 --- a/gale/context/Context.cpp +++ b/gale/context/Context.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/Context.h b/gale/context/Context.h index 20e929b..04bc2fb 100644 --- a/gale/context/Context.h +++ b/gale/context/Context.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/Fps.h b/gale/context/Fps.h index c5f442a..fdd274e 100644 --- a/gale/context/Fps.h +++ b/gale/context/Fps.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/IOs/AppDelegate.h b/gale/context/IOs/AppDelegate.h index 602aab4..fa9127d 100644 --- a/gale/context/IOs/AppDelegate.h +++ b/gale/context/IOs/AppDelegate.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/IOs/Context.cpp b/gale/context/IOs/Context.cpp index 28307a9..b22370e 100644 --- a/gale/context/IOs/Context.cpp +++ b/gale/context/IOs/Context.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/IOs/Context.h b/gale/context/IOs/Context.h index 84e2a5f..81170c7 100644 --- a/gale/context/IOs/Context.h +++ b/gale/context/IOs/Context.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/IOs/Interface.h b/gale/context/IOs/Interface.h index 7e8925a..52ef147 100644 --- a/gale/context/IOs/Interface.h +++ b/gale/context/IOs/Interface.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/InputManager.cpp b/gale/context/InputManager.cpp index b103241..cb4a41c 100644 --- a/gale/context/InputManager.cpp +++ b/gale/context/InputManager.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/InputManager.h b/gale/context/InputManager.h index efe463e..15ac521 100644 --- a/gale/context/InputManager.h +++ b/gale/context/InputManager.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/MacOs/AppDelegate.h b/gale/context/MacOs/AppDelegate.h index 2615f46..e7733d7 100644 --- a/gale/context/MacOs/AppDelegate.h +++ b/gale/context/MacOs/AppDelegate.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/MacOs/Context.h b/gale/context/MacOs/Context.h index d66e62d..d420126 100644 --- a/gale/context/MacOs/Context.h +++ b/gale/context/MacOs/Context.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/MacOs/Interface.h b/gale/context/MacOs/Interface.h index b5cccc9..aabe7ee 100644 --- a/gale/context/MacOs/Interface.h +++ b/gale/context/MacOs/Interface.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/MacOs/OpenglView.h b/gale/context/MacOs/OpenglView.h index 1154bf7..62f9db0 100644 --- a/gale/context/MacOs/OpenglView.h +++ b/gale/context/MacOs/OpenglView.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/MacOs/Windows.h b/gale/context/MacOs/Windows.h index 34890d8..04a34cf 100644 --- a/gale/context/MacOs/Windows.h +++ b/gale/context/MacOs/Windows.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/Windows/Context.cpp b/gale/context/Windows/Context.cpp index 440df68..ff8ba7a 100644 --- a/gale/context/Windows/Context.cpp +++ b/gale/context/Windows/Context.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/X11/Context.cpp b/gale/context/X11/Context.cpp index 30b56e6..66ca2a2 100644 --- a/gale/context/X11/Context.cpp +++ b/gale/context/X11/Context.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/clipBoard.cpp b/gale/context/clipBoard.cpp index 8edb30b..630ad9f 100644 --- a/gale/context/clipBoard.cpp +++ b/gale/context/clipBoard.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/clipBoard.h b/gale/context/clipBoard.h index a37ccfa..c0c8b0d 100644 --- a/gale/context/clipBoard.h +++ b/gale/context/clipBoard.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/commandLine.cpp b/gale/context/commandLine.cpp index 25a178c..897f424 100644 --- a/gale/context/commandLine.cpp +++ b/gale/context/commandLine.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/commandLine.h b/gale/context/commandLine.h index aa98ba6..b036a89 100644 --- a/gale/context/commandLine.h +++ b/gale/context/commandLine.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/cursor.cpp b/gale/context/cursor.cpp index ba6efb6..29e0d35 100644 --- a/gale/context/cursor.cpp +++ b/gale/context/cursor.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/cursor.h b/gale/context/cursor.h index 0f6d71a..82b6be0 100644 --- a/gale/context/cursor.h +++ b/gale/context/cursor.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/context/directFB/Context.cpp b/gale/context/directFB/Context.cpp index ad1e856..8ee42a1 100644 --- a/gale/context/directFB/Context.cpp +++ b/gale/context/directFB/Context.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/debug.cpp b/gale/debug.cpp index b1a9fa1..962ee2c 100644 --- a/gale/debug.cpp +++ b/gale/debug.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/debug.h b/gale/debug.h index 4a2d44b..199862f 100644 --- a/gale/debug.h +++ b/gale/debug.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/gale.cpp b/gale/gale.cpp index d838d98..941df4d 100644 --- a/gale/gale.cpp +++ b/gale/gale.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/gale.h b/gale/gale.h index 1db1cc8..0bbd3b1 100644 --- a/gale/gale.h +++ b/gale/gale.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/Special.cpp b/gale/key/Special.cpp index e49a1f0..c66312a 100644 --- a/gale/key/Special.cpp +++ b/gale/key/Special.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/Special.h b/gale/key/Special.h index a05e97d..95fcf95 100644 --- a/gale/key/Special.h +++ b/gale/key/Special.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/key.h b/gale/key/key.h index 2c387c4..f7d6555 100644 --- a/gale/key/key.h +++ b/gale/key/key.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/keyboard.cpp b/gale/key/keyboard.cpp index 54beb8b..7160849 100644 --- a/gale/key/keyboard.cpp +++ b/gale/key/keyboard.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/keyboard.h b/gale/key/keyboard.h index 94bca1c..123bdc3 100644 --- a/gale/key/keyboard.h +++ b/gale/key/keyboard.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/status.cpp b/gale/key/status.cpp index 2665123..79e9da4 100644 --- a/gale/key/status.cpp +++ b/gale/key/status.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/status.h b/gale/key/status.h index 460b148..47c1d16 100644 --- a/gale/key/status.h +++ b/gale/key/status.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/type.cpp b/gale/key/type.cpp index 618c734..89cebb8 100644 --- a/gale/key/type.cpp +++ b/gale/key/type.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/key/type.h b/gale/key/type.h index 8f9aa41..2d38cc9 100644 --- a/gale/key/type.h +++ b/gale/key/type.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/orientation.cpp b/gale/orientation.cpp index f350eef..aa85241 100644 --- a/gale/orientation.cpp +++ b/gale/orientation.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/orientation.h b/gale/orientation.h index 5de80c1..f1d2d82 100644 --- a/gale/orientation.h +++ b/gale/orientation.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/renderer/openGL/openGL-include.h b/gale/renderer/openGL/openGL-include.h index 5e8325b..4227da0 100644 --- a/gale/renderer/openGL/openGL-include.h +++ b/gale/renderer/openGL/openGL-include.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/renderer/openGL/openGL.cpp b/gale/renderer/openGL/openGL.cpp index 7f89b3a..125dc64 100644 --- a/gale/renderer/openGL/openGL.cpp +++ b/gale/renderer/openGL/openGL.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/renderer/openGL/openGL.h b/gale/renderer/openGL/openGL.h index 72585f6..0979877 100644 --- a/gale/renderer/openGL/openGL.h +++ b/gale/renderer/openGL/openGL.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Manager.cpp b/gale/resource/Manager.cpp index 114f6aa..8c5b6ea 100644 --- a/gale/resource/Manager.cpp +++ b/gale/resource/Manager.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Manager.h b/gale/resource/Manager.h index 3340c83..ea9e497 100644 --- a/gale/resource/Manager.h +++ b/gale/resource/Manager.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Program.cpp b/gale/resource/Program.cpp index 9c90024..1103464 100644 --- a/gale/resource/Program.cpp +++ b/gale/resource/Program.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Program.h b/gale/resource/Program.h index 1672958..ea2c33b 100644 --- a/gale/resource/Program.h +++ b/gale/resource/Program.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Resource.cpp b/gale/resource/Resource.cpp index ab925eb..2794b2c 100644 --- a/gale/resource/Resource.cpp +++ b/gale/resource/Resource.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Resource.h b/gale/resource/Resource.h index 1423efa..a7d5489 100644 --- a/gale/resource/Resource.h +++ b/gale/resource/Resource.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Shader.cpp b/gale/resource/Shader.cpp index b9afbf3..0d21bbc 100644 --- a/gale/resource/Shader.cpp +++ b/gale/resource/Shader.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Shader.h b/gale/resource/Shader.h index 7b2eaa9..59c673e 100644 --- a/gale/resource/Shader.h +++ b/gale/resource/Shader.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Texture.cpp b/gale/resource/Texture.cpp index 1c4fd8c..34def3f 100644 --- a/gale/resource/Texture.cpp +++ b/gale/resource/Texture.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/Texture.h b/gale/resource/Texture.h index a73abfd..072c316 100644 --- a/gale/resource/Texture.h +++ b/gale/resource/Texture.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/VirtualBufferObject.cpp b/gale/resource/VirtualBufferObject.cpp index 0c87ef7..288e8a3 100644 --- a/gale/resource/VirtualBufferObject.cpp +++ b/gale/resource/VirtualBufferObject.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/gale/resource/VirtualBufferObject.h b/gale/resource/VirtualBufferObject.h index 64714a2..a00e29f 100644 --- a/gale/resource/VirtualBufferObject.h +++ b/gale/resource/VirtualBufferObject.h @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved diff --git a/sample/basic.cpp b/sample/basic.cpp index 756af27..d75530a 100644 --- a/sample/basic.cpp +++ b/sample/basic.cpp @@ -1,4 +1,4 @@ -/** +/** @file * @author Edouard DUPIN * * @copyright 2010, Edouard DUPIN, all right reserved