I have 1024x768 resolution window, when there is a click or mouse over, i want to find the x, y values. How can i do that?
import sys from PyQt4 import QtGui
The other way to get (x,y) coordinates:
def mouseReleaseEvent(self, QMouseEvent): print('(', QMouseEvent.x(), ', ', QMouseEvent.y(), ')')