I have a C ++ application using Qt for UI, and I am currently implementing python bindings so that the application is more convenient for scripts for its users. I also want people to be able to write their own custom widgets in PyQt and have access to the main functions using boost :: python bindings.
To do this, I want to allow the signals from the PyQt widget to be connected to Qt widgets or vice versa, so I need to set PyQt in Qt somehow. I heard that this can be done, but after a short search there are no examples.
Does anyone have any links for this kind of thing?
source share