I'm new to Qt and have a problem that I haven't been able to solve.
What I have is a scroll area that I add widgets to (what the widgets are doesn't matter). Each of the widgets has a static size and they all have the same width (this might be important). What I'm trying to do is to have a layout/setup such that all these widgets are displayed on the scroll area horizontally until there is not enough room for another widget, at which point it starts putting the widgets on a new row, continuing until there are none left.
I've thought about ways to implement this manually, but I feel like this is something that Qt already supports and I just haven't been able to find the documentation on it.