![]() |
µGFX
2.9
version 2.9
|
Built-in rendering functions for the tabset widget.
These function may be passed to gwinSetCustomDraw()
to get different tabset drawing styles.
Functions | |
void | gwinTabsetDraw_Std (GWidgetObject *gw, void *param) |
The default rendering function for the tabset widget. More... | |
void | gwinTabsetDraw_Transparent (GWidgetObject *gw, void *param) |
Renders the tabset but leaves the client area transparent. More... | |
void | gwinTabsetDraw_Image (GWidgetObject *gw, void *param) |
Renders the tabset and uses the specified image for the client area. More... | |
void gwinTabsetDraw_Image | ( | GWidgetObject * | gw, |
void * | param | ||
) |
Renders the tabset and uses the specified image for the client area.
The image will be tiled throghout the client area. Therefore, to archive the best looking result the supplied image needs to be of the same size as the client area size of the tabset widget (inner size).
[in] | gw | The widget object (must be a tabset object). |
[in] | param | A parameter passed in from the user. Must be an image handle. See note below. |
gwinSetCustomDraw()
. The handle is passed as the parameter to this function.void gwinTabsetDraw_Std | ( | GWidgetObject * | gw, |
void * | param | ||
) |
The default rendering function for the tabset widget.
Fills the client area with the background color.
[in] | gw | The widget object (must be a container object). |
[in] | param | A parameter passed in from the user. Ignored by this function. |
void gwinTabsetDraw_Transparent | ( | GWidgetObject * | gw, |
void * | param | ||
) |
Renders the tabset but leaves the client area transparent.
Will not fill the client area at all.
[in] | gw | The widget object (must be a container object). |
[in] | param | A parameter passed in from the user. Ignored by this function. |