Resizing a compound screen
-
I have a window with a TabWidget on it. In the TabWidget I have mutliple grid, horz and vert layouts. However, I can not get them to resize in real time as I change the size of the window. When I increase/descrease the size of the window(while the program is running), the elements just stay where they are and do not adjust (expand/shrink). Is the a good primer I could read on what is needed to make this work?
Ken
-
This is about the "Qt layout system":http://developer.qt.nokia.com/doc/qt-4.7/layout.html#id-0fc13a1c-5bba-4687-9d05-258ff33ab357. There is a good explanation from the docs.
Normally when you use for instance a qgridlauout with 3x3 buttons in it they will spread evenly when the window resizes.
So in your case there must be something else going on.
without the code or the ui we can only guess. Did you put all those layouts you mentioned in a layout also?