diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gwin/label.h | 10 | ||||
-rw-r--r-- | include/gwin/list.h | 12 |
2 files changed, 22 insertions, 0 deletions
diff --git a/include/gwin/label.h b/include/gwin/label.h index 3fe0f3d7..caa4c1d1 100644 --- a/include/gwin/label.h +++ b/include/gwin/label.h @@ -63,6 +63,16 @@ GHandle gwinGLabelCreate(GDisplay *g, GLabelObject *widget, GWidgetInit *pInit); */ void gwinLabelSetBorder(GHandle gh, bool_t border); +/** + * @brief Border settings for the default rendering routine + * + * @param[in] gh The widget handle (must be a list handle) + * @param[in] border Shall a border be rendered? + * + * @api + */ +void gwinLabelSetBorder(GHandle gh, bool_t border); + #ifdef __cplusplus } #endif diff --git a/include/gwin/list.h b/include/gwin/list.h index 4052f53f..11815d05 100644 --- a/include/gwin/list.h +++ b/include/gwin/list.h @@ -107,6 +107,18 @@ GHandle gwinGListCreate(GDisplay *g, GListObject *widget, GWidgetInit *pInit, bo void gwinListSetScroll(GHandle gh, scroll_t flag); /** + * @brief Change the behaviour of the scroll bar + * + * @note Current possible values: @p scrollAlways and @p scrollAuto + * + * @param[in] gh The widget handle (must be a list handle) + * @param[in] flag The behaviour to be set + * + * @api + */ +void gwinListSetScroll(GHandle gh, scroll_t flag); + +/** * @brief Add an item to the list * * @note The ID you get returned is not static. If items get removed from the list, the list items get |