3. You can't use one specific layout twice but you can use as many layouts and sub layouts, horizontal, vertical or grid, as you want. I think you may need child Widgets to apply the sub layouts in that way:
(This is NO Qt code!)
topWidget
-> topVerticallayout
-> rowWidget1
-> horizontalLayout1
-> columnwidget11
-> columnwidget12
-> rowWidget2
-> horizontalLayout2
-> columnwidget21
-> columnwidget22
-> rowWidget3
-> horizontalLayout3
-> columnwidget31
-> columnwidget32
topWidget
-> topVerticallayout
-> rowWidget1
-> horizontalLayout1
-> columnwidget11
-> columnwidget12
-> rowWidget2
-> horizontalLayout2
-> columnwidget21
-> columnwidget22
-> rowWidget3
-> horizontalLayout3
-> columnwidget31
-> columnwidget32
To copy to clipboard, switch view to plain text mode
This very symmetrical structure, though, is normally better done with one gridLayout, which is very flexible.
Bookmarks