static JPanel withLeftRightAndBottomMargin(int w, Component c) {
  ret withMargins(0, w, w, w, c);
}

static JPanel withLeftRightAndBottomMargin(Component c) {
  ret withLeftRightAndBottomMargin(defaultMargin(), c);
}