More work on doxygen module structure

This commit is contained in:
t-moe
2015-05-11 20:44:56 +02:00
parent a175a2f6b0
commit 08d9fe0c3c
9 changed files with 119 additions and 16 deletions

View File

@@ -1,3 +1,17 @@
#ifndef CHECKBOX_H
#define CHECKBOX_H
/**
* @addtogroup gui
*/
/*@{*/
/**
* @defgroup checkbox Checkbox
* The Checkbox Gui-Element
*/
/*@{*/
typedef void (*CHECKBOX_CALLBACK)(void *checkbox, bool checked); //!< Function pointer used...
typedef struct {
@@ -13,3 +27,7 @@ void gui_checkbox_remove(CHECKBOX_STRUCT* checkbox);
void gui_checkbox_update(CHECKBOX_STRUCT* checkbox);
void gui_checkbox_redraw(CHECKBOX_STRUCT* checkbox);
#define CHECKBOX_WIN_FG_COLOR RGB(32,161,34)
/*@}@}*/
#endif /* CHECKBOX_H */