[DEV] add documentation generation

This commit is contained in:
Edouard DUPIN 2013-12-04 23:47:06 +01:00
parent b76e5b1d30
commit 2ab8690def
9 changed files with 16 additions and 12 deletions

2
build

@ -1 +1 @@
Subproject commit 02525c784360c3e1a268be0901cfc03b0022454c Subproject commit 8659f3f133ba19630a6ca66f1ed48b9f8c677881

2
external/egami vendored

@ -1 +1 @@
Subproject commit 80e3d4b47dbf3dc97eb2469b15ad6d9169b19986 Subproject commit 633ea44770209deaa66587a14bf72a024fe71153

2
external/ege vendored

@ -1 +1 @@
Subproject commit b616a99bfac3e293ffe1d78b7ac5aa58c7113fa6 Subproject commit a3e1f35dcfe9b4756c3f94ff98183305f61a4b28

2
external/ejson vendored

@ -1 +1 @@
Subproject commit 7593b52dd9657301370c31d7a97465fa7b450ae0 Subproject commit 0fd1f415c19ab7e639b4fd6fa667803237a9eacc

2
external/esvg vendored

@ -1 +1 @@
Subproject commit 03efb063226894138e097b8456a194b9cf2fb13b Subproject commit 9fee33207a41aca5657575b2f45dacefd0cd5639

2
external/etk vendored

@ -1 +1 @@
Subproject commit 4d1a39adcbf9e12677f5357eefc1e9499a5d41a3 Subproject commit 5a2362c137e34807044d508589d88ae7f66571ec

2
external/exml vendored

@ -1 +1 @@
Subproject commit 0cfb9c2130d5fadeb46c2b08d28dde609a6736af Subproject commit d137a7a9e4e18de406c5b4eac8ab63d317b1a4e8

View File

@ -63,9 +63,11 @@ namespace ewol {
void limit(const vec2& _origin, const vec2& _size); void limit(const vec2& _origin, const vec2& _size);
}; };
etk::CCout& operator <<(etk::CCout& _os, const ewol::DrawProperty& _obj); etk::CCout& operator <<(etk::CCout& _os, const ewol::DrawProperty& _obj);
/**
* @brief Gravity of the widget property
*/
enum gravity { enum gravity {
gravityCenter=0x00, gravityCenter=0x00, //!< gravity is in certer
gravityTopLeft=0x05, gravityTopLeft=0x05,
gravityTop=0x01, gravityTop=0x01,
gravityTopRight=0x03, gravityTopRight=0x03,
@ -343,18 +345,18 @@ namespace ewol {
}; };
protected: protected:
enum gravity m_gravity; //!< Gravity of the widget enum ewol::gravity m_gravity; //!< Gravity of the widget
public: public:
/** /**
* @brief set the widget gravity * @brief set the widget gravity
* @param[in] _gravity New gravity of the widget * @param[in] _gravity New gravity of the widget
*/ */
virtual void setGravity(enum gravity _gravity); virtual void setGravity(enum ewol::gravity _gravity);
/** /**
* @brief get the widget gravity * @brief get the widget gravity
* @return the gravity type * @return the gravity type
*/ */
virtual enum gravity getGravity(void) { virtual enum ewol::gravity getGravity(void) {
return m_gravity; return m_gravity;
}; };
// ---------------------------------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------------------------------

View File

@ -10,6 +10,8 @@ def Create(target):
# module name is 'edn' and type binary. # module name is 'edn' and type binary.
myModule = lutinModule.module(__file__, 'ewol', 'LIBRARY') myModule = lutinModule.module(__file__, 'ewol', 'LIBRARY')
# enable doculentation :
myModule.doc_enable()
# add extra compilation flags : # add extra compilation flags :
#myModule.add_extra_compile_flags() #myModule.add_extra_compile_flags()
# add the file to compile: # add the file to compile: