0
我有延伸QGraphicsScene一個基類...
在C++從QGraphicsScene傳遞事件的QGraphicsItem使用Qt
class BaseScene : public QGraphicsScene
在類是受保護的事件...
void BaseScene::mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent)
有是我需要將事件傳遞給QGraphicsScene
內的QGraphicsItem的某些用戶點擊,因爲QGraphicsItem
還包含'mousePressEvent
'。
我該如何將我選擇的事件從QGprahicsScene
降至特定的QGraphicsItem
?
謝謝。