Hi all,
I draw a circle with a dot inside on the center using this code :
Qt Code:
  1. p.setBrush( Qt::NoBrush );
  2. p.setPen( Qt::white );
  3. p.drawEllipse( m_CursorPos, 5, 5 );
  4. p.drawPoint( m_CursorPos );
To copy to clipboard, switch view to plain text mode 
But I see the point is not centered, is it normal ?
Thanks for the help