More work on doxygen module structure
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user