checkbox cleanup
This commit is contained in:
parent
f1a974e83e
commit
eebecad9f7
2 changed files with 2 additions and 6 deletions
|
@ -12,7 +12,7 @@
|
||||||
* @defgroup Checkbox Checkbox
|
* @defgroup Checkbox Checkbox
|
||||||
* @ingroup GWIN
|
* @ingroup GWIN
|
||||||
*
|
*
|
||||||
* @details GWIN allows it to easily create a group of checkbox buttons.
|
* @details GWIN allows it to easily create checkboxes.
|
||||||
*
|
*
|
||||||
* @pre GFX_USE_GWIN must be set to TRUE in your gfxconf.h
|
* @pre GFX_USE_GWIN must be set to TRUE in your gfxconf.h
|
||||||
* @pre GWIN_NEED_CHECKBOX must be set to TRUE in your gfxconf.h
|
* @pre GWIN_NEED_CHECKBOX must be set to TRUE in your gfxconf.h
|
||||||
|
@ -41,10 +41,6 @@ typedef struct GEventGWinCheckbox_t {
|
||||||
bool_t isChecked; // Is the checkbox currently checked or unchecked?
|
bool_t isChecked; // Is the checkbox currently checked or unchecked?
|
||||||
} GEventGWinCheckbox;
|
} GEventGWinCheckbox;
|
||||||
|
|
||||||
typedef enum GCheckboxShape_e {
|
|
||||||
GCHBX_NORMAL, GCKBX_CUSTOM
|
|
||||||
} GCheckboxShape;
|
|
||||||
|
|
||||||
typedef enum GCheckboxState_e {
|
typedef enum GCheckboxState_e {
|
||||||
GCHBX_UNCHECKED, GCHBX_CHECKED
|
GCHBX_UNCHECKED, GCHBX_CHECKED
|
||||||
} GCheckboxState;
|
} GCheckboxState;
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file src/gwin/checkbox.c
|
* @file src/gwin/checkbox.c
|
||||||
* @brief GWIN sub-system button code.
|
* @brief GWIN sub-system checkbox code.
|
||||||
*
|
*
|
||||||
* @defgroup Checkbox Checkbox
|
* @defgroup Checkbox Checkbox
|
||||||
* @ingroup GWIN
|
* @ingroup GWIN
|
||||||
|
|
Loading…
Add table
Reference in a new issue