ui/cocoa/container.h

changeset 603
8d2b7b934230
parent 404
384f6d1f5784
child 670
d676b2c5e93b
equal deleted inserted replaced
602:9f3ff50da302 603:8d2b7b934230
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;

mercurial