I am working on a PyQt4 application which uses QGraphicsScene in the core.
Items are dynamically added onto the scene at irregular intervals by the program, and can also be manually added by the user. User has some control over the most recent item (which is manually added) i.e dragging, resizing etc.
I would like to know if the various items on the scene can be efficiently drawn onto an image as they are added, this image itself being displayed on the scene.
One reason why I want this is, only the recent item need to stay as a separate item on the scene (for user manipulation). So I don't want other items to slow down the scene unnecessarily. All of them drawn inside a single QGraphicsPixmapItem should be much less information!
And a more essential reason is, I would like to provide the user with a floodfill function (for which the scene must be represented as a QImage).
So what would be the best way to do this image representation of the scene items (except the most recent item). Do consider the fact that items are being added by the program and user simultaneously!