Guys any one can please help me in doing this -> I need to place a progress bar (QProgressbar) in a QSplashScreen . How can i do this in design?..can i really implement it?
Using pyqt3
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the Qt docs of Qt4.4:
I suppose this would also work in Qt 3 (or PyQt3); just subclass QSplashScreen and re-implement drawContents() by putting a progress bar on it, and extending the interface with some progress methods.
If you look at the changes between Qt3 and Qt4 you can see how the Trolltech people did that (albeit in C++).