I need to check if a mouse button is clicked or released. I'm using pyqt - any way to check the mouse button release state in qt or directly in python?

I know of pygame module but would prefer not to have to install it.

link|improve this question
feedback

1 Answer

Check you doc at PyQt4/doc/html/qt.html#MouseButton-enum

Constant    Value
Qt.NoButton 0x00000000
Qt.LeftButton   0x00000001
Qt.RightButton  0x00000002
Qt.MidButton    0x00000004
Qt.MiddleButton MidButton
Qt.XButton1 0x00000008
Qt.XButton2 0x00000010

A simple example:

>>> from PyQt4 import QtCore, QtGui
>>> app=QtGui.QApplication([])
>>> mouse_state=app.mouseButtons()
>>> mouse_state==QtCore.Qt.NoButton
True
>>> int(mouse_state)
0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.