pythonqt
pythonqt copied to clipboard
Dynamic Python binding for Qt Applications
The following change adds support for building PythonQt with Qt5.15 using the latest generated headers in `generated_cpp_511`
The following fix removes the spaces from the environment variable setting because it only works without spaces and people copy pasting the code will have some trouble without this fix.
### environment python3.7.9 qt 5.13 win10 ### issue when i release my app i can't run my app.so i delete my code .when i delete ``` PythonQt::init(PythonQt::IgnoreSiteModule | PythonQt::RedirectStdOut); PythonQt::init();...
https://github.com/MeVisLab/pythonqt/blob/58ccd5393922d88fd320628aa2db787df1f1233b/src/PythonQtConversion.h#L272-L275 https://github.com/MeVisLab/pythonqt/blob/58ccd5393922d88fd320628aa2db787df1f1233b/src/PythonQtConversion.h#L292-L295 This code checks the "innerType" pointer for null and then, if null, is dereferencing the pointer in the cerr prints.
Dear PythonQt community, I recent upgraded from the old trunk r502 (sourceforge) to latest code on GitHub master branch, committish 9ea0fcf of 2 December 2020. I did this in order...
This change avoids a warning message "__package__ != __spec__.parent" (in Python 3.9) on relative imports from modules which have the import paths set with PythonQt::self()->setModuleImportPath(). Since __spec__ is meant to...
Hello, We are currently working on integrating pythonqt in our Simcenter System Architect product which is a Qt based application. This integration will allow us to pilot our GUI in...
I tried to generate the wrapper with the generator with Qt5.15, but I encountered the following message: ``` PS D:\dev-ext\src\pythonqt-mevislab_fork\generator\release> .\pythonqt_generator.exe Please wait while source files are being generated... Parsing...
#### toolsTep.py ```python def HelloWord(): print('hello word') ``` #### testpythran.py ```python from calaTools.toolsTep import * #pythran export callOtherPyFiles() def callOtherPyFiles(): HelloWord() ``` #### complie pythran testpythran.py - **CRITICAL** : I...
I found that when I enable multithreading support, I have to apply macro ‘**PYTHONQT_GIL_SCOPE**’ to the whole message loop to make class ‘_PythonQtScriptingConsole_’ work well. In general, this seems OK,...