filtering sported slots/signals
Dynamic Python binding for Qt Applications
Brought to you by:
florianlink,
marcusbarann
Hi, sorry for asking a noob question, but is there any way to filter out some of the slots/signals in the class to avoid them being exported to py? i.e. I would like to remove the QObject slots for clarity.
thanks in advance!!
No, that is currently not implemented. You could expose non-QObject C++ objects and write wrappers/decorator classes for them. Or you could modify PythonQtClassInfo to stop inheritance traversal before QObject.