On 1/7/2013 8:30 AM, William Hallatt wrote: > Good day everyone, > > *What I'm trying to do:* > > Display some sort of "Loading" or "Busy" message while executing a recursive > function of unknown depth (GUI app front end). > > * > What I've tried:* > > Various attempts at using QMovie, QProgressBar, QDialog, QProgressDialog, > etc. No luck to date.
I'm only guessing, but it seems your main thread is probably being consumed by the recursive calls, so the redraw of the widget cannot complete. I'd suggest running your recursive code in its own thread, leaving the main thread to be responsive to GUI needs. You then need to watch for the thread completion and then dismiss the informative window. If you arrange it like that, then your QProgressBar will probably function as you expect.
_______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest