![]() |
µGFX
2.9
version 2.9
|
Built-in rendering functions for the checkbox widget.
These function may be passed to gwinSetCustomDraw()
to get different checkbox drawing styles.
Functions | |
void | gwinCheckboxDraw_CheckOnLeft (GWidgetObject *gw, void *param) |
Renders a square checkbox where the text is on the right side of the checkbox. More... | |
void | gwinCheckboxDraw_CheckOnRight (GWidgetObject *gw, void *param) |
Renders a square checkbox where the text is on the left side of the checkbox. More... | |
void | gwinCheckboxDraw_Button (GWidgetObject *gw, void *param) |
Renders a checkbox in form of a rectangular button with the text inside of it. More... | |
void gwinCheckboxDraw_Button | ( | GWidgetObject * | gw, |
void * | param | ||
) |
Renders a checkbox in form of a rectangular button with the text inside of it.
This behaves like a button that can be toggled.
[in] | gw | The widget (must be a checkbox) |
[in] | param | A parameter passed in from the user. Ignored by this function. |
Definition at line 253 of file gwin_checkbox.c.
References GWidgetObject::g, and GWindowObject::vmt.
void gwinCheckboxDraw_CheckOnLeft | ( | GWidgetObject * | gw, |
void * | param | ||
) |
Renders a square checkbox where the text is on the right side of the checkbox.
[in] | gw | The widget (must be a checkbox) |
[in] | param | A parameter passed in from the user. Ignored by this function. |
Definition at line 174 of file gwin_checkbox.c.
References GWidgetObject::g, and GWindowObject::vmt.
void gwinCheckboxDraw_CheckOnRight | ( | GWidgetObject * | gw, |
void * | param | ||
) |
Renders a square checkbox where the text is on the left side of the checkbox.
[in] | gw | The widget (must be a checkbox) |
[in] | param | A parameter passed in from the user. Ignored by this function. |
Definition at line 203 of file gwin_checkbox.c.
References GWidgetObject::g, and GWindowObject::vmt.