I'm looking at QtDesigner part of QtCreator 2.5. We have the following size related fields list on the right for a widget. No "sizeHint" is listed. Which if any corresponds to QWidget::sizeHint()?

  • geometry
  • sizePolicy
  • minimumSize
  • maximumSize
  • sizeIncrement
  • baseSize


A corollary question. I notice QWidget::sizeHint() is a constant method. How do I affect its return value from the outside? Is that possible?

Thanks.