ui/wpf/container.c

changeset 85
91f45354d1e2
parent 84
a56c2baa9429
child 88
04c81be1c5a0
equal deleted inserted replaced
84:a56c2baa9429 85:91f45354d1e2
26 uic_obj_add(obj, newobj); 26 uic_obj_add(obj, newobj);
27 27
28 return hbox; 28 return hbox;
29 } 29 }
30 30
31
32 /*
33 * -------------------- Layout Functions --------------------
34 *
35 * functions for setting layout attributes for the current container
36 *
37 */
38
39 void ui_layout_fill(UiObject *obj, UiBool fill) {
40 UiContainer *ct = uic_get_current_container(obj);
41 UIlayout_fill(ct, fill);
42 }
43
44 void ui_newline(UiObject *obj) {
45 UiContainer *ct = uic_get_current_container(obj);
46
47 }

mercurial