Flexible Qt and PyQt Application

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?

+5
source share
1 answer

Here is a tutorial that discusses it . Here can be found here . In addition, I assume that most of them can be crossed out with the help of numerous ways the python and C / C ++ files interact.

0
source

Source: https://habr.com/ru/post/1200664/


All Articles