I started a drag with image.

Qt Code:
  1. QDrag* drag = new(QDrag)(this);
  2. drag->setPixmap(*pixmap);
  3. drag->exec(Qt::CopyAction | Qt::MoveAction);
To copy to clipboard, switch view to plain text mode 

I want to change the image display when my drag reach certain point in the widget. Is there anyway to retrieve the drag object so that I could change the image?