aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_label.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwin/gwin_label.h')
-rw-r--r--src/gwin/gwin_label.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gwin/gwin_label.h b/src/gwin/gwin_label.h
index 9308efae..a3ba7a0d 100644
--- a/src/gwin/gwin_label.h
+++ b/src/gwin/gwin_label.h
@@ -112,7 +112,6 @@ void gwinLabelSetBorder(GHandle gh, gBool border);
*
* @note In your custom label drawing function you may optionally call these
* standard functions and then draw your extra details on top.
- * @note The built-in functions below ignore the param parameter.
* @note These custom drawing routines don't have to worry about setting clipping as the framework
* sets clipping to the object window prior to calling these routines.
*
@@ -120,6 +119,16 @@ void gwinLabelSetBorder(GHandle gh, gBool border);
*/
/**
+ * @brief Renders a label with the text justified based on the parameter.
+ *
+ * @param[in] gw The widget object (must be a label object)
+ * @param[in] param A parameter passed in from the user. Must be of type gJustify.
+ *
+ * @api
+ */
+void gwinLabelDrawJustified(GWidgetObject *gw, void *param);
+
+/**
* @brief Renders a label with the text left jestified.
*
* @note This is the default rendering function.