PDA

View Full Version : How to display progress bar?



qutron
17th May 2011, 15:28
In my application I use MVC pattern. Some function is executed in Model class (its CUDA function). I want to display progress of this function in View class. Classes communicate through signals and slots.
Is there any way to do it?

wysota
17th May 2011, 15:56
What exactly are you having problems with?

qutron
17th May 2011, 15:57
I don't know how to do it :)

wysota
17th May 2011, 16:10
Do you have any general concept of how it should work? First implement your progress indicator as a number showing percentage of work done and then substitute drawing the number with drawing the progress bar.