I have a QGraphicsScene where the order of the items is very important. I'd like to add items at a certain index in the items list (i.e. the list that's returned when items()
is called).
I know QList has the removeAt()
and insert()
functions but does QGraphicsScene have something similar, like addItemAt()
or something all these lines? If not, does anyone know of a good way to go about this?