In C# you can do the following whenever you need to update the gui from another thread:
control.Invoke(delegate()
{
// Do whatever you want in the gui thread here
});
Is there something similar and as simple for Qt4? (PyQt4 specifically)
I would rather not get into signals, slots, and use native threads instead of QThreads if possible.
What's the simplest way to update a Qt4 gui from a non-qt (native) thread?