Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QT widget signals - comprehensive list?

Tags:

widget

qt4

pyqt

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

like image 816
Vector Avatar asked Dec 21 '22 11:12

Vector


1 Answers

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
like image 72
Luke Avatar answered Dec 28 '22 08:12

Luke