summaryrefslogtreecommitdiff
path: root/new/ui.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-11 21:53:49 -0400
committerPietro Gagliardi <[email protected]>2015-04-11 21:53:49 -0400
commitbdfa1828bb4d8b3c28a9bb4ca2c45747349139b6 (patch)
treed249a3e78702640c623948f235429de87d05902e /new/ui.h
parent7d6f31351dd95bcc31b5947bcbf281d4439ccd42 (diff)
Set up the foundation for uiLabel.
Diffstat (limited to 'new/ui.h')
-rw-r--r--new/ui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/new/ui.h b/new/ui.h
index fb803c4..d856a65 100644
--- a/new/ui.h
+++ b/new/ui.h
@@ -103,4 +103,8 @@ void uiCheckboxOnToggled(uiControl *, void (*)(uiControl *, void *), void *);
int uiCheckboxChecked(uiControl *);
void uiCheckboxSetChecked(uiControl *, int);
+uiControl *uiNewLabel(const char *);
+char *uiLabelText(uiControl *);
+void uiLabelSetText(uiControl *, const char *);
+
#endif