Accessing Stacked GraphicsItems
-
My own derived GraphicsView/GraphicsItem system. But sometimes one item 'hides' (actually it's transparent so I can see) an item below in a stack. Clicking on item only gives the one at the top. How to access the one below? There surely is a tried and tested method. Presumably it involves the view's MousePressEvent and items(QPoint()) but I'm stuck on a simple method.
Brian
-
QGraphicsScene::items or QGraphicsView::items (the overloads taking a QPointF), perhaps?