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 } |