hi

My code for mouse over event
Qt Code:
  1. bool mouseover()
  2. {
  3. if(QPoint(10,10)
  4. {
  5. return TRUE; QPixmap pixmap("image.png");
  6. QPixmap icon("test.png");
  7.  
  8. QPainter painter(&pixmap);
  9. painter.drawPixmap(QPoint(10, 10), icon);
  10.  
  11. QLabel label;
  12. label.setPixmap(pixmap);
  13. label.show();
  14. }
  15. else
  16. {
  17. return FALSE;
  18. }
  19. }
To copy to clipboard, switch view to plain text mode 

But it is not working , i think my problem is in condition....

I have another doubt...

if mouse satisfied the position of image ,how do display the icons on image,

Is it using the push button, tool button. I need that icons should in event...

please suggest me

Thanks

Yuvaraj R