Understanding PythonQt Architecture
Dynamic Python binding for Qt Applications
Brought to you by:
florianlink,
marcusbarann
I wana understand PythonQt Architecture and mechanism of how it wraps C++ and Qt classes to python.
Is there any document that can help me clearly how pythonQt works?
Last edit: Edvard 2018-08-26
There is just the code and the examples. The main design idea is to do as much as possible with the metaobject model and dynamic calls vs generated code. And the generated code reuses the moc by using slots for the wrapped functions.