how can i get the coordinates feedback if i click the left button on my qgraphicscene.
Qt Code:
  1. void MainWindow::mousePressEvent(QMouseEvent *event)
  2. {
  3. if(event->button() == Qt::LeftButton )
  4. {
  5. //im not sure what code i should put in here
  6. }
  7. }
To copy to clipboard, switch view to plain text mode