static int totalMinimumHeight(L<Component> l) {
  int h = 0;
  for (Component c : unnull(l))
    h += c.getMinimumSize().height;
  ret h;
}