Hi,

I have a custom QGraphicsView, that has a QGraphicsScene (not custom), which has custom QGraphicsItems.
But the Items get no mouse evens.
Here is what I did:
- reimplemented QGraphicsView::mousePressEvent() (and the other events I need) - this gets called. (QGraphicsView::mousePressEvent() gets called in it as well)
- QGraphicsItems have setFlags(QGraphicsItem::ItemIsMovable|QGraphicsIte m::ItemIsSelectable | flags())
- reimplemented QGraphicsItems ::mousePressEvent() - not being called.

So basically events are not propagated from view to items on the scene.
I must be missing something but I can't see what - any suggestions?
Throw anything that comes up your mind, it is probably something silly I just forgot...

Thanks in advance.