PDA

View Full Version : QTabWidget maximize



Arend
29th November 2012, 10:52
Hello,

In Qt Creator I want to maximize the tabs from QTabWiget.
Somebody an idea.

Regards,
Arend

steadi
1st December 2012, 20:59
perhaps using setGeometry on the tab will provide you with the results you are looking for pal?

sedi
1st December 2012, 22:28
Set the minimumWidth and -height and as a policy: minimumExpanding. Then the tab should expand to the available space in the layout area it's in. You find those settings in the properties tab in the QDesigner. If you are not using QDesigner you can set them manually, too. HTH.