Hi everyone.
There is a qgraphicsView and I made zooming enable with scroll ball. Now I want get coordinates when I click on it. However on zooming coordinates should change and I want it to return coordinates from image. Is it possible? Here my code:

Qt Code:
  1. def display(self, FilePath, displayDevice):
  2. if os.path.isfile(FilePath):
  3. scene = QtGui.QGraphicsScene()
  4. scene.addPixmap(QtGui.QPixmap(FilePath))
  5. displayDevice.setScene(scene)
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. def zoom(self, display, val):
  2. display.scale(val, val)
To copy to clipboard, switch view to plain text mode