Hello All,

I have a QGraphicsItem in a QGraphicsScene shown in a QGraphicsView.

Sometimes I want to catch drops with nothing underneath.

Sometimes I want to catch drops within items under the mouse.

Sometimes I want to catch drops within the children items of items under the mouse.

I created my own dropEvent() method in the view, using QDropEvent with this I
can add a new item to the scene.

However, I've got a dropEvent() in my item which uses QGraphicsSceneDragDropEvent
so I cant just call the item's dropEvent method from the view method. I get a type
mis match error.

So far, my hacky work round, is to make my own method myDropEvent in the item
and call this from the view. I'm sure there is a neater way to do this, any
advice?

thanks!

DB