aboutsummaryrefslogtreecommitdiffstats
path: root/include/gwin
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-10-24 04:13:07 +0200
committerinmarket <andrewh@inmarket.com.au>2013-10-24 10:22:48 +1000
commit248335c513fe92d1629f2c34c5777ef9b628d09e (patch)
tree43dc5885f74bc6fd708a450d77cbe7892cdac97b /include/gwin
parentd41109a6c7e11002b00d4b8c4d65ce3ee1f9d254 (diff)
downloaduGFX-248335c513fe92d1629f2c34c5777ef9b628d09e.tar.gz
uGFX-248335c513fe92d1629f2c34c5777ef9b628d09e.tar.bz2
uGFX-248335c513fe92d1629f2c34c5777ef9b628d09e.zip
Added gwinLabelSetBorder()
Diffstat (limited to 'include/gwin')
-rw-r--r--include/gwin/label.h14
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