<div dir="ltr"><div>Hi Rich,</div><div><br></div><div>You can follow the same ideas for placing that layout with buttons in a tab. You can just replace<br></div><div></div><div><pre style="background-color:rgb(255,255,255);color:rgb(8,8,8);font-family:"JetBrains Mono",monospace;font-size:9.8pt"><span style="color:rgb(148,85,141)">self</span>.setCentralWidget(container)<br></pre><pre style="background-color:rgb(255,255,255);color:rgb(8,8,8);font-family:"JetBrains Mono",monospace;font-size:9.8pt">by
<br>tabwidget = QTabWidget(<span style="color:rgb(148,85,141)">self</span>)<br>tabwidget.addTab(container, <span style="color:rgb(0,128,128);font-weight:bold">"My tab"</span>)<br><span style="color:rgb(148,85,141)">self</span>.setCentralWidget(tabwidget)<br></pre>It's true that eventually you will have a QMainWindow, but that should be ok, because your application will eventually need to use a window, right? And of course a QMainWindow is not required to have a status bar or menu, etc.<br></div><div><br></div><div>Hope that helps.</div><div><br></div><div>Rodrigo<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Apr 22, 2021 at 2:48 PM Rich Shepard <<a href="mailto:rshepard@appl-ecosys.com">rshepard@appl-ecosys.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Thu, 22 Apr 2021, Rodrigo de Salvo Braz wrote:<br>
<br>
> PS: I thought you wanted just the container to show completely. If you<br>
> want the window to really have a fixed size, you can use<br>
> self.setFixedSize(800, 600)<br>
<br>
Rodrigo,<br>
<br>
That's one of the things I'm slowly learning. Yes, the application main<br>
window should be 800x600 and the content of each tab in the main windows'<br>
container (a QTabWidget) should fill it.<br>
<br>
During development I want to see each tab's content so I can tweak it for<br>
appearance and positioning.<br>
<br>
Thanks again,<br>
<br>
Rich<br>
</blockquote></div>