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.
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.