Hi,

As I can read, to do the right thing with QT and GUI threading, we have to :
1. Create a new thread (I already have my MainWindow)
2. Compute inside this thread all the "heavy stuff"
3. Then sending a signal to main GUI thread (MainWindow) to do the all rendering/widget update.

Right, but I still don't understand how, in this same main thread, my main window will not freeze If I do important graphics updates

To give you an example :
In the Mandelbrot Qt sample, in the rendering function (updatePixMap()), if I insert a very time consuming code, all the main window still frozen !?
(eg I cannot move my window !?)

Is it possible to avoid this ?

Thanks.