| 232 | } |
| 233 | |
| 234 | bool Box::IsChildInteresting( Widget* child ) const { |
| 235 | return |
| 236 | child->IsLocallyVisible() && |
| 237 | (child->GetRequisition().x > 0.f || child->GetAllocation().size.x > 0.0f) && |
| 238 | (child->GetRequisition().y > 0.f || child->GetAllocation().size.y > 0.0f) |
| 239 | ; |
| 240 | } |
| 241 | |
| 242 | void Box::HandleRequisitionChange() { |
| 243 | AllocateChildren(); |
nothing calls this directly
no test coverage detected