Hi,
I have a QGraphicsItem in which I want to monitor it to catch mouse press event. I could do it by reimplementing mouse press event. But I want to do it in a different way by using event filtering.

I first tried out eventFilter in my graphics item but the program didn't even enters the eventFilter() fucntion. First of all is that OK?

Secondly, should I use sceneEventFilter()? Could this method give what I wanna achieve?

Thanks in advance