hello,

I'm trying to catch the drag event in QGraphicsScene so I can draw when dragging the mouse. There is such a function in the API so it should be possible:
http://doc.trolltech.com/4.4/qgraphi...dragEnterEvent

But I can't seem to trigger this event. I can catch mouse move, click, and release, but not drag enter or drag move.

There seems to be a lot of confusion on this topic because there are many threads about it with conflicting information.
In this thread wysota says the event can be overloaded but aamer4yu says it can't (and they are both experts).
In this thread some suggest that qgraphicsitem needs to be subclassed instead.
In this thread subclassing the event seems to have worked and it was suggested setting the drag mode property in qgraphicsview.

So, how would you suggest I catch mouse drag events so I can draw in the scene?

thanks,
Richard