summaryrefslogtreecommitdiff
path: root/textscreen/txt_label.h
diff options
context:
space:
mode:
authorSimon Howard2009-07-13 00:52:26 +0000
committerSimon Howard2009-07-13 00:52:26 +0000
commit480a31094b7621dd7d65ec05a6e36964dca99b66 (patch)
tree11b218d674e828c12981d819b8f2396b680436df /textscreen/txt_label.h
parent37db69b86bc5052901e250578e9c3920886d79ff (diff)
parente66653a8a67f3613344ae4ea30b37403d6ff17cf (diff)
downloadchocolate-doom-480a31094b7621dd7d65ec05a6e36964dca99b66.tar.gz
chocolate-doom-480a31094b7621dd7d65ec05a6e36964dca99b66.tar.bz2
chocolate-doom-480a31094b7621dd7d65ec05a6e36964dca99b66.zip
Merge from trunk.
Subversion-branch: /branches/opl-branch Subversion-revision: 1624
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 */