ui/cocoa/container.h

changeset 605
488a2caebc0c
parent 603
8d2b7b934230
child 670
d676b2c5e93b
equal deleted inserted replaced
604:0afad58e3078 605:488a2caebc0c
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