15

解像度が 1024x768 のウィンドウがあります。クリックまたはマウスオーバーしたときに、x、y の値を見つけたいと思います。どうやってやるの?

import sys
from PyQt4 import QtGui, QtCore


class Example(QtGui.QWidget):

    def __init__(self):
        super(Example, self).__init__()

        self.initUI()

    def initUI(self):               

        qbtn = QtGui.QPushButton('Quit', self)
        #qbtn.clicked.connect(QtCore.QCoreApplication.instance().quit)
        qbtn.clicked.connect(self.test)
        qbtn.resize(qbtn.sizeHint())
        qbtn.move(50, 50)       

        self.setGeometry(0, 0, 1024, 768)
        self.setWindowTitle('Quit button')    
        self.setWindowFlags(self.windowFlags() | QtCore.Qt.FramelessWindowHint)
        self.show()

    def test(self):
      print "show the position of mouse cursor in screen resolution: x is ?? , y is ??"

def main():

    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()
4

2 に答える 2

1

(x,y) 座標を取得する別の方法:

def mouseReleaseEvent(self, QMouseEvent):
    print('(', QMouseEvent.x(), ', ', QMouseEvent.y(), ')')
于 2017-06-06T03:24:20.990 に答える