summaryrefslogtreecommitdiff
path: root/new/ui.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-07 18:53:09 -0400
committerPietro Gagliardi <[email protected]>2015-04-07 18:53:09 -0400
commit03d94db0fd80f1d293dbf727b6e9a2466546c2c3 (patch)
tree9f8bf10b9c45ee4cba6c511843494a4d7a713602 /new/ui.h
parentd9de0c186c34479fdeca7b30535058124e337887 (diff)
Added uiStack. Not yet tested; need to do a few things first.
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 b698c85..6d2a33f 100644
--- a/new/ui.h
+++ b/new/ui.h
@@ -32,4 +32,8 @@ uiControl *uiNewButton(const char *);
// TODO text
void uiButtonOnClicked(uiControl *, void (*)(uiControl *, void *), void *);
+uiControl *uiNewHorizontalStack(void);
+uiControl *uiNewVerticalStack(void);
+void uiStackAdd(uiControl *, uiControl *, int);
+
#endif