Hi all, I am trying to user the QApplication.winEventFilter(msg) to get some windows events. The docs say this function is there
http://www.pyside.org/docs/pyside/PySide/QtGui/QApplication.html ------- search for winEventFilter However it seems that it is not there. At least my IDE doesn't show it and I also can not get it to find any event. What I tried is: class myQApplication(QApplication): def __init__( self, argv ): QApplication.__init__(self, argv) def winEventFilter(self, msg): print "Windows Event !" return QApplication.winEventFilter(msg) Tried this with PySide 1.0.3. Is this not supported yet, or am I doing something wrong? -Dieter
_______________________________________________ PySide mailing list [email protected] http://lists.pyside.org/listinfo/pyside
