Easy question (I hope!). This is my first Qt app and I'm struggling with how to have groups of elements on my Gui.
I need about 8 standard QWidgets (labels, edits, buttons) for each File object, which can be added or removed dynamically.
So ultimately I need to put all the File objects inside a QVBoxLayout inside a QScrollArea.
But first I need to group them somehow. I realize I could draw them all on my main window with a lot of offsets, but it wouldn't be very elegant.
How can I make my File object extend some sort of canvas and each one maintains it's own set of widgets?
Thanks for any guidance.