Qt 4.3.2, MS VS 2005+integration
I derived my MyGraphicsScene from QGraphicsScene and reimplemented:
Qt Code:
  1. void MyGraphicsScene::dragEnterEvent(QGraphicsSceneDragDropEvent* event)
  2. {
  3. QApplication::setOverrideCursor(Qt::ClosedHandCursor);
  4. QGraphicsScene::dragEnterEvent(event);
  5. }
  6. void MyGraphicsScene::dragLeaveEvent(QGraphicsSceneDragDropEvent* event)
  7. {
  8. QApplication::restoreOverrideCursor();
  9. QGraphicsScene::dragLeaveEvent(event);
  10. }
To copy to clipboard, switch view to plain text mode 
also my QGraphicsView has DragMode RubberBandDrag enabled.
But while dragging the mouse cursor doesn't changes the dragging itself runs OK.
then I put breakpoints into both functions and realized that the application even doesn't enters them.
I searched this forum and google but didn't find an answer...
Thanks in advance