I want to display multiple QML Files on a QWidget. Because every Display should be an unique Object/Widget, I plan to use for every display an own QGraphicsView with an unique QGraphicsScene. These views can be added to a layout witch will be placed on a widget.
So I will have about 50-100 QGraphicsScenes and GraphicsViews.
I want to set a background for the Displays which will not be updated when you repaint the object. That is why I want to use an own scene for each display.
Is this recommended or should I use only one GraphicsScene in a project?