ui/wpf/container.c

changeset 85
91f45354d1e2
parent 84
a56c2baa9429
child 88
04c81be1c5a0
--- a/ui/wpf/container.c	Sun Feb 01 10:35:07 2015 +0100
+++ b/ui/wpf/container.c	Sun Feb 01 12:37:31 2015 +0100
@@ -28,3 +28,20 @@
     return hbox;
 }
 
+
+/*
+ * -------------------- Layout Functions --------------------
+ * 
+ * functions for setting layout attributes for the current container
+ *
+ */
+
+void ui_layout_fill(UiObject *obj, UiBool fill) {
+    UiContainer *ct = uic_get_current_container(obj);
+    UIlayout_fill(ct, fill);
+}
+
+void ui_newline(UiObject *obj) {
+    UiContainer *ct = uic_get_current_container(obj);
+    
+}
\ No newline at end of file

mercurial