diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-10-24 04:13:07 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-10-24 04:13:07 +0200 |
commit | 8f3d2eff1e360f9973a654b163dd225de8f48570 (patch) | |
tree | 0a602d147c5ec6979340bb94032f0a365331a15e /include/gwin | |
parent | 20a10b15ec4bbccf1c5680b10c2101ae9202f2c7 (diff) | |
download | uGFX-8f3d2eff1e360f9973a654b163dd225de8f48570.tar.gz uGFX-8f3d2eff1e360f9973a654b163dd225de8f48570.tar.bz2 uGFX-8f3d2eff1e360f9973a654b163dd225de8f48570.zip |
Added gwinLabelSetBorder()
Diffstat (limited to 'include/gwin')
-rw-r--r-- | include/gwin/label.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/include/gwin/label.h b/include/gwin/label.h index c11b5c72..3156ca71 100644 --- a/include/gwin/label.h +++ b/include/gwin/label.h @@ -39,8 +39,8 @@ extern "C" { #endif /** - * @brief Create a label widget. - * @details A label widget is a simple window which has a static text. + * @brief Create a label widget. + * @details A label widget is a simple window which has a static text. * * @param[in] widget The label structure to initialise. If this is NULL, the structure is dynamically allocated. * @param[in] pInit The initialisation parameters to use. @@ -51,6 +51,16 @@ extern "C" { */ GHandle gwinLabelCreate(GLabelObject *widget, GWidgetInit *pInit); +/** + * @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 |