Looking for a comprehensive listing of the various SIGNALS emitted by the built in QT4 widgets. Have looked around - can't seem to find one. (Using PyQT 4.x and Python 3.2)
TIA
The following code lists all signals for all QObject subclasses in QtGui:
from PyQt4 import QtGui, QtCore
import inspect
for name in dir(QtGui):
obj = getattr(QtGui, name)
if inspect.isclass(obj) and issubclass(obj, QtCore.QObject):
for name2 in dir(obj):
obj2 = getattr(obj, name2)
if isinstance(obj2, QtCore.pyqtSignal):
print name, name2
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With