Dear All , I have created a CustomLabel class which is based QLabel, then I added this label to QGraphicsView via QGraphicsProxyWidget.
Qt Code:
  1. CustomLabel *imageItem = new CustomLabel();
  2. imageItem->setSelectionStatus(true);
  3. imageItem->setImagePath("/home/can/workspace/DenemeGraphic/media/home.png");
  4.  
  5. QGraphicsProxyWidget *pCImageProxyWidgetInstance = new QGraphicsProxyWidget(0, Qt::Window);
  6. pCImageProxyWidgetInstance->setWidget(imageItem);
  7. pCImageProxyWidgetInstance->setCacheMode ( QGraphicsItem::NoCache );
  8. pCImageProxyWidgetInstance->setPos(100,100);
  9. scene->addItem(pCImageProxyWidgetInstance);
To copy to clipboard, switch view to plain text mode 

In CustomLabel I writed a paintEvent(QPaintEvent *pe) function, the problem is , always it is refreshing , There is a printf() in painEvent and it is continiously printing string.