PyQt and resizing windows when widgets shrink - minimal example included
-
Hi Qt forum experts - I'm very new to development in PyQt and am coming across what is probably a very simple widget/layout sizing issue that I just can't wrap my head around. I'm doing this all in code to better understand what's going on behind the scenes before trying to dip into PyQt Designer. (I'm using version 6.8.1)
So far my application (basic CRUD with SQLite backend) uses a QMainWindow subclass, two "sections" subclassing QWidget, and several QAbstractTableModel implementations. I've put a minimal reproducible example in the link at the bottom of my post. Some widgets are replaced with dummy items to keep better parity with the actual layout of my application, but virtually all details / functionality are removed.
In the example, my bottom section includes a QComboBox that is present in my actual application, but here I've repurposed it to simulating driving state changes. Also in the bottom section of my layout, there is a QTableView() associated to a QAbstractTableModel. However, the catch is that I want the QTableView() to never have any "empty rows" and resize its height to fit its data for a cleaner look.
In this example code, changing the state (by changing the QComboBox index) shifts the table model from 2 rows to 10 rows, which expands the main window. (The size of the table is capped at 6 rows high to avoid the table expanding indefinitely, with others visible via scrolling.) Changing the state again reduces the model, and table, to two rows - but the window stays at its expanded size and other widgets expand to take up the size. The desired behavior is to shrink back to only the size needed for 2 rows in the table.
I have tried what feels like endless combinations of setting sizing policies and stretch factors on widgets, setting constraints on layouts, calling .update() and .updateGeometry(), etc. to let the layout manager processes handle this automatically to no avail. Instead, I generally get the behavior as shown in the sample code: the table reduces in size, but other widgets expand to take up the space. I assume I could bludgeon the layout into obeying by manually setting its size parameters in some way, but this feels like it should be doable with layout native tools. (I also don't understand the sizing methods well enough to guess at how to do that.)
Two questions for you experts:
- How should I implement the desired behavior?
- Can anyone recommend a more visual, comprehensive guide to understanding layout management (e.g. something that's not https://doc.qt.io/qtforpython-6/overviews/qtwidgets-layout.html#layout-management)? Ideally something that dumbs it down for people like me: "Here's the attributes that you can change / methods you can call on a widget that affects its placement and sizing, and how they work (with pictures). Here's what you can use on a layout that affects placement of its child widgets, and how that works (with pictures)." (At this point I've gotten lost in the official documentation as all the various layout methods and attributes are distributed across the class pages, and it's just abstract enough that it's a little over my head.)