summaryrefslogtreecommitdiff
path: root/textscreen/txt_label.h
diff options
context:
space:
mode:
authorSimon Howard2009-03-12 22:20:07 +0000
committerSimon Howard2009-03-12 22:20:07 +0000
commit6e2c404f64f39e059848bc66b707dfe979f044ff (patch)
treecd0aba502696ceef12bd311d4576fd46c4dd5c02 /textscreen/txt_label.h
parent20cb00076d39bcb8a5c2e82912af8200c97034cb (diff)
parent535c64b336ce59b4e18819544cd2a1129ae97c61 (diff)
downloadchocolate-doom-6e2c404f64f39e059848bc66b707dfe979f044ff.tar.gz
chocolate-doom-6e2c404f64f39e059848bc66b707dfe979f044ff.tar.bz2
chocolate-doom-6e2c404f64f39e059848bc66b707dfe979f044ff.zip
Update from trunk.
Subversion-branch: /branches/raven-branch Subversion-revision: 1467
Diffstat (limited to 'textscreen/txt_label.h')
-rw-r--r--textscreen/txt_label.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/textscreen/txt_label.h b/textscreen/txt_label.h
index c8e002e0..16395c93 100644
--- a/textscreen/txt_label.h
+++ b/textscreen/txt_label.h
@@ -22,6 +22,18 @@
#ifndef TXT_LABEL_H
#define TXT_LABEL_H
+/**
+ * @file txt_label.h
+ *
+ * Text label widget.
+ */
+
+/**
+ * Label widget.
+ *
+ * A label widget does nothing except show a text label.
+ */
+
typedef struct txt_label_s txt_label_t;
#include "txt_main.h"
@@ -37,9 +49,40 @@ struct txt_label_s
txt_color_t bgcolor;
};
+/**
+ * Create a new label widget.
+ *
+ * @param label String to display in the widget.
+ * @return Pointer to the new label widget.
+ */
+
txt_label_t *TXT_NewLabel(char *label);
+
+/**
+ * Set the string displayed in a label widget.
+ *
+ * @param label The widget.
+ * @param value The string to display.
+ */
+
void TXT_SetLabel(txt_label_t *label, char *value);
+
+/**
+ * Set the background color of a label widget.
+ *
+ * @param label The widget.
+ * @param color The background color to use.
+ */
+
void TXT_SetBGColor(txt_label_t *label, txt_color_t color);
+
+/**
+ * Set the foreground color of a label widget.
+ *
+ * @param label The widget.
+ * @param color The foreground color to use.
+ */
+
void TXT_SetFGColor(txt_label_t *label, txt_color_t color);
#endif /* #ifndef TXT_LABEL_H */