I'm still something of a PyQt newbee - I've got a QGraphicsView that displays 3 different QGraphicScenes - they are switched using a dictionary.
class MyScenes:
def _initScenes(self):
self._viewer=QGraphicsView()
self._sinScene=QGraphicScene()
self._cosScene=QGraphicScene()
self._tanScene=GraphicScene()
self._scenes={'sin':self._sinScene,'cos':self._cosScene,'tan':self._tanScene}
def _showScene(self,ID):
self._viewer.setScene(self.scenes[ID])
I want to implement an option that will show the 3 scenes superimposed on one another - not one at a time - how do I do this? Do I need 3 views? Can the view display multiple transparent scenes? Looked around a bit, couldn't find the answer.
You can answer with Python or C++ - as long as it works in PyQt4.
TIA