()
| 235 | } |
| 236 | |
| 237 | func (li *boxLayoutItem) PerformLayout() []LayoutResultItem { |
| 238 | cb := Rectangle{Width: li.geometry.ClientSize.Width, Height: li.geometry.ClientSize.Height} |
| 239 | return boxLayoutItems(li, itemsToLayout(li.children), li.orientation, li.alignment, cb, li.margins96dpi, li.spacing96dpi, li.hwnd2StretchFactor) |
| 240 | } |
| 241 | |
| 242 | func boxLayoutFlags(orientation Orientation, children []LayoutItem) LayoutFlags { |
| 243 | if len(children) == 0 { |
nothing calls this directly
no test coverage detected