| 54 int colspan; |
54 int colspan; |
| 55 int rowspan; |
55 int rowspan; |
| 56 }; |
56 }; |
| 57 |
57 |
| 58 #define UI_INIT_LAYOUT(args) (UiLayout) {\ |
58 #define UI_INIT_LAYOUT(args) (UiLayout) {\ |
| 59 .fill = args.fill, \ |
59 .fill = args->fill, \ |
| 60 .hexpand = args.hexpand, \ |
60 .hexpand = args->hexpand, \ |
| 61 .vexpand = args.vexpand, \ |
61 .vexpand = args->vexpand, \ |
| 62 .hfill = args.hfill, \ |
62 .hfill = args->hfill, \ |
| 63 .vfill = args.vfill, \ |
63 .vfill = args->vfill, \ |
| 64 .colspan = args.colspan, \ |
64 .colspan = args->colspan, \ |
| 65 .rowspan = args.rowspan } |
65 .rowspan = args->rowspan } |
| 66 |
66 |
| 67 |
67 |
| 68 @protocol Container |
68 @protocol Container |
| 69 |
69 |
| 70 @property UiLayout uilayout; |
70 @property UiLayout uilayout; |