Archived:Changing QWidget background colour
Article Metadata
Tested with
Devices(s): 5800 XpressMusic
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2, S60 5th Edition
Article
Keywords: QPalette
Created: (27 Mar 2009)
Last edited: seppo_fn
(28 Apr 2009)
Contents |
Overview
This code snippets shows how to change QWidget background color.
Note: In order to use this code, you need to have Qt for S60 installed on your platform.
Preconditions
- Install Qt for S60 Garden release from here: Qt for S60 "Garden" pre-release
- Check this link for installation guide: How to install the package
Main Function
- Used to set the widget color
p.setColor(QPalette::Background, Qt::black);
Source
Change background color of the QWidget.
#include <QPalette>
QMyWidget::QMyWidget(QWidget *parent)
: QWidget(parent)
{
QPalette p(palette());
// Set background color to black
p.setColor(QPalette::Background, Qt::black);
setPalette(p);
}
See also
More about QPalette
Postconditions
QWidget background color is black.

