comparison: ui/cocoa/GridLayout.h
ui/cocoa/GridLayout.h
- changeset 799
- f8ff8df41713
- parent 785
- b943e3d618f0
- child 811
- 1391ba7e533f
equal
deleted
inserted
replaced
| 32 |
32 |
| 33 #import <cx/array_list.h> |
33 #import <cx/array_list.h> |
| 34 |
34 |
| 35 typedef struct GridElm { |
35 typedef struct GridElm { |
| 36 NSView *view; |
36 NSView *view; |
| 37 int margin; |
37 NSEdgeInsets margin; |
| 38 int x; |
38 int x; |
| 39 int y; |
39 int y; |
| 40 int colspan; |
40 int colspan; |
| 41 int rowspan; |
41 int rowspan; |
| 42 int preferred_width; |
42 int preferred_width; |