What are you trying to do with drag and drop ?
If you simply want to move the item in the scene, you dont need to implement drag drop yourself... you just need to set the flags,,QGraphicsItem::setFlags , QGraphicsItem::ItemIsMovable
But if your requirement is implementing drag drop yourself, have a look at -
QGraphicsItem::dragEnterEvent
QGraphicsItem::dragLeaveEvent
QGraphicsItem::dragMoveEvent
QGraphicsItem::dropEvent
Hope this helps
Bookmarks