Hi,
I'm trying to load all the images in the "images/" directory into a QScrollArea but I'm not sure how to add images into a QScrollArea. Or perhaps should I use QGraphicsView?

I have a QStringList with all the images.

I probably need to create a QLabel for every image in the dir and setPixmap for all of them.
I'm just not sure on how to create the loop that iterates through QStringList and how to embed every QLabel into the QScrollArea (I only see setWidget but would that only embed one widget into it? )

Thanks a lot in advance for any help you can provide.