diff options
Diffstat (limited to 'include/gwin/gwin.h')
-rw-r--r-- | include/gwin/gwin.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h index c59a1bcf..465dcbb5 100644 --- a/include/gwin/gwin.h +++ b/include/gwin/gwin.h @@ -410,6 +410,18 @@ extern "C" { void gwinRemoveChild(GHandle child); /** + * @brief Redraw only the children of a parent but not the parent itself + * + * @details This routine does exactly the same as @p gwinRedraw() but does not + * issue a redraw of the passed widget but only of it's children. + * + * @param[in] gh The widget + * + * @api + */ + void gwinRedrawChildren(GHandle gh); + + /** * @brief Get first child of a widget * * @return The first child or NULL if the widget has no children |