I have a bunch of QGraphicsRectItem and i want to manage them on a QGraphicsScene like what QGridLayout does to widgets.

I looked at QGraphicsGridLayout but this would like to reside on a QGraphicsWidget somehow. I want a layout kinda things that will reside on the scene.

What are my other options? All i want is to arrange a QGraphicsItems( RectItem) in grids ..

baray98