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!!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.