How can one obtain the following effect for text in a QProgressBar from Qt? :

The ideea is that I must have a brighter color in the left part of the progress bar.
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.
I would do the custom drawing as follows:
Derive your own progress bar class from QLabel.
Overwrite the paintEvent() function.
In paintEvent(), start drawing with a QPainter:
You should end up with what you want to achieve. Due to Qt’s default double buffering you should observe no flicker.