summaryrefslogtreecommitdiff
path: root/textscreen
diff options
context:
space:
mode:
authorSimon Howard2011-03-22 21:33:17 +0000
committerSimon Howard2011-03-22 21:33:17 +0000
commite339efa45fb54e794d1dd26f7a716a383cc3dc6d (patch)
treee56b2314c6682211e7c7dcf701f9c100605beb8c /textscreen
parentbc087b49e2e5a9c00b5b1620b4bd289ebee5ee73 (diff)
downloadchocolate-doom-e339efa45fb54e794d1dd26f7a716a383cc3dc6d.tar.gz
chocolate-doom-e339efa45fb54e794d1dd26f7a716a383cc3dc6d.tar.bz2
chocolate-doom-e339efa45fb54e794d1dd26f7a716a383cc3dc6d.zip
Switch separator to show "screen mode" or "window size" depending on
whether fullscreen is turned on or not. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2308
Diffstat (limited to 'textscreen')
-rw-r--r--textscreen/txt_separator.c24
-rw-r--r--textscreen/txt_separator.h10
2 files changed, 25 insertions, 9 deletions
diff --git a/textscreen/txt_separator.c b/textscreen/txt_separator.c
index 6b779626..563d0c62 100644
--- a/textscreen/txt_separator.c
+++ b/textscreen/txt_separator.c
@@ -80,6 +80,20 @@ static void TXT_SeparatorDestructor(TXT_UNCAST_ARG(separator))
free(separator->label);
}
+void TXT_SetSeparatorLabel(txt_separator_t *separator, char *label)
+{
+ free(separator->label);
+
+ if (label != NULL)
+ {
+ separator->label = strdup(label);
+ }
+ else
+ {
+ separator->label = NULL;
+ }
+}
+
txt_widget_class_t txt_separator_class =
{
TXT_NeverSelectable,
@@ -99,14 +113,8 @@ txt_separator_t *TXT_NewSeparator(char *label)
TXT_InitWidget(separator, &txt_separator_class);
- if (label != NULL)
- {
- separator->label = strdup(label);
- }
- else
- {
- separator->label = NULL;
- }
+ separator->label = NULL;
+ TXT_SetSeparatorLabel(separator, label);
return separator;
}
diff --git a/textscreen/txt_separator.h b/textscreen/txt_separator.h
index 2f2331da..f693d70e 100644
--- a/textscreen/txt_separator.h
+++ b/textscreen/txt_separator.h
@@ -59,6 +59,14 @@ extern txt_widget_class_t txt_separator_class;
txt_separator_t *TXT_NewSeparator(char *label);
-#endif /* #ifndef TXT_SEPARATOR_H */
+/**
+ * Change the label on a separator.
+ *
+ * @param separator The separator.
+ * @param label The new label.
+ */
+
+void TXT_SetSeparatorLabel(txt_separator_t *separator, char *label);
+#endif /* #ifndef TXT_SEPARATOR_H */