PDA

View Full Version : Need help in QProgressDialog



santhoshv84
9th September 2008, 14:10
Hi Friends,

I need to re size the Progressbar and i need to place one spinner in the QProgressDialog. Is it posible to do.

Thanks in Advance...

wysota
9th September 2008, 17:42
It's easier to create your own dialog from scratch using an instance of QProgressBar.

santhoshv84
10th September 2008, 05:37
Hi,

Thanks for your reply..

Now i am creating a dialog inherited from QProgressDialog. I will convey if i have any doubts..

Thanks and regards,
Santhosh

jpn
12th September 2008, 19:24
Subclassing QProgressDialog still won't give you full access to its internal layout and stuff. Subclass QDialog instead, create a layout and place the progress bar, cancel button, and your custom stuff there.