Hi,

I have QGraphicsScene with big image and smaller QGraphicsView, so I need to
scroll scene in view, so I enabled:
graphicsView->setDragMode(QGraphicsView::ScrollHandDrag);
but on this big image there are some smaller images (subclassed from
QGraphicsPixmapItem) for which I need mouse press/move/release event.
The problem is:
When child image receives press event I accept it in order to receive further
move/release events (which works fine), but then event is not propagated to scene and
ScrollHandDrag doesn't work.
I need the scene to be scrolled always, even when I press object that grabs
mouse events, how to achieve it?
I suppose I should mess around with eventFilter but I need some hint on how
this whole idea should work. Please help

best regards
Marek