I'm using the Qt Designer.

I want to create a QVBoxLayout which will automatically expand to fill the whole window.

The layout of the QVBoxLayout remains fixed.

How can I cause the QVBoxLayout to expand and fill the entire window through the designer?

link|improve this question

feedback

4 Answers

up vote 31 down vote accepted

After creating your QVBoxLayout in Qt Designer, right-click on the background of your widget/dialog/window (not the QVBoxLayout, but the parent widget) and select Lay Out -> Lay Out in a Grid from the bottom of the context-menu. The QVBoxLayout should now stretch to fit the window and will resize automatically when the entire window is resized.

link|improve this answer
Yeah I figured that out. But that's a bad default. What exactly happens when you drag the QVBoxLayout to the main window widget? – Elazar Leibovich Aug 16 '10 at 15:02
1  
Thank you, I've been looking for a solution to this problem as well. – Simon H. Sep 17 '10 at 11:43
5  
Actually, you do not need to create the Grid layout at all. Instead of creating a QVBoxLayout yourself, deselect all items and click on the background of the widget. Then select Lay Out -> Lay Out Vertically. – Michal Kottman Jan 12 '11 at 20:57
feedback

Once you have add your layout with at least one widget in it, select your window and click the "Update" button of QtDesigner. The interface will be resized at the most optimized size and your layout will fit the whole window. Then when resizing the window, the layout will be resized in the same way.

link|improve this answer
I ment that when the user resizes the entire window, the vertical layout (and thus its content) will stretch to fit it. I don't care how it looks in the Qt Designer. – Elazar Leibovich Aug 16 '10 at 13:37
feedback

I've tried to find a "fit to screen" property but there is no such.

But setting widget's "maximumSize" to a "some big number" ( like 2000 x 2000 ) will automatically fit the widget to the parent widget space.

link|improve this answer
1  
What happens when you try the accepted solution? – Elazar Leibovich Jan 10 '11 at 6:01
feedback

This video has a very useful description about resizing layouts and widgets inside a main window.

I'm new on Qt and it helped me a lot.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.