![]() |
µGFX
2.9
version 2.9
|
Built-in rendering functions for the radiobutton widget.
These function may be passed to gwinSetCustomDraw() to get different radiobutton drawing styles.
Functions | |
| void | gwinRadioDraw_Radio (GWidgetObject *gw, void *param) |
| The default rendering function for the radiobutton widget. More... | |
| void | gwinRadioDraw_Button (GWidgetObject *gw, void *param) |
| Renders the radiobutton in form of a regular rectangular button. More... | |
| void | gwinRadioDraw_Tab (GWidgetObject *gw, void *param) |
| Used to render tabbed menus. More... | |
| void gwinRadioDraw_Button | ( | GWidgetObject * | gw, |
| void * | param | ||
| ) |
Renders the radiobutton in form of a regular rectangular button.
| [in] | gw | The widget object (must be a button radioobject) |
| [in] | param | A parameter passed in from the user. Ignored by this function. |
| void gwinRadioDraw_Radio | ( | GWidgetObject * | gw, |
| void * | param | ||
| ) |
The default rendering function for the radiobutton widget.
| [in] | gw | The widget object (must be a button radioobject) |
| [in] | param | A parameter passed in from the user. Ignored by this function. |
| void gwinRadioDraw_Tab | ( | GWidgetObject * | gw, |
| void * | param | ||
| ) |
Used to render tabbed menus.
Multiple radiobutton widgets can be placed right next to each other and be used to implement a tabbed menu using this rendering function.
Tabset widget instead.| [in] | gw | The widget object (must be a button radioobject) |
| [in] | param | A parameter passed in from the user. Ignored by this function. |