I am looking to create a warehouse shelf interface on which the user can click on individual storage places. The shelf layout is a QLabel with a pixmap inside a scrollarea. Since I have multiple shelves, that scrollarea is inside a stacked widget. My issue is that the QLabel with the image is too big to fit on the screen (that's intentional) and therefore needs to be scrolled to the right or left to view the right storage places. In order to click on storage places I placed QToolButtons on top of the image. Therefore I can't use a layout inside the scrollarea ant it won't scroll.
So far I designed this in the Designer and converting it using pyuic5 before loading it into the main application.
The basic question is: How can I use a scrollarea without a layout?