<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
<br>
  With wxPython I used a combination of horizontal and vertical boxes to<br>
layout widgets and saved the grid for multirow displays like a spreadsheet;<br></blockquote><div><br></div><div>You can do the same thing in Qt with QHBoxLayout and QVBoxLayout (these are like wx's BoxSizer). QGridLayout is very commonly used for myself.  Are these what you mean by container widgets or are you asking about something else? </div><div><br></div><div><a href="http://doc.qt.io/qt-5/examples-layouts.html">http://doc.qt.io/qt-5/examples-layouts.html</a></div><div><br></div><div><br></div><div>A QMainWindow can be used as your base window in Qt, it comes with options for a menubar, toolbar, status bar, docked windows (similar to AUI), etc. QMainWindow is a subclass of a QWidget. All QWidget subclasses can use layouts to manage their child widgets.</div><div><br></div><div><br></div></div></div></div>