/**
  * Sets the font of the form. This font will be used to render the title text. It will not affect
  * the body.
  */
 @Override
 public void setFont(Font font) {
   super.setFont(font);
   if (getContent() != null) getContent().setFont(font);
 }