Hello.
I need to process script in separate, non-gui thread since script calls C++ function that can take very long time to process (seconds). Is it possible to connect QScriptEngineDebugger to my QScriptEngine in non-gui thread? The problem is - if i put QScriptEngineDebugger in same thread as QScriptEngine (non-gui) than debugger will crash on debug - the code shows that it wants to create it's debug window and such window can be created only in gui thread. And if i place QScriptEngineDebugger in GUI thread application will crash since QScriptEngine is not multithread safe. Any insights?
Bookmarks