PDA

View Full Version : forecolor of statusbar



sabeesh
17th August 2007, 06:31
Hi,
How can I change the forecolor of statusbar in QT? I need to display the messages in statusbar in white color.
Please help me
...............

maverick_pol
17th August 2007, 07:55
HI,

Have you tried any of this:

QWidget::setFont(QFont(..) ); // your font color
QWidget::setPalette(QPalette(Qt::white,Qt::white);

?