Archived:Changing QWidget background colour
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot change of template (Template:CodeSnippet) - now using Template:ArticleMetaData) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Addition to article of: Category:MeeGo Category:Symbian. (Add platform categories)) |
||
| Line 50: | Line 50: | ||
| − | [[Category:Code Examples]][[Category:Code Snippet]] | + | [[Category:Code Examples]][[Category:Code Snippet]][[Category:MeeGo]] [[Category:Symbian]] |
Revision as of 09:50, 15 February 2012
Article Metadata
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition
S60 5th Edition
Platform Security
Capabilities: )
Article
Keywords: QPalette
Created: tepaa
(29 Apr 2009)
Last edited: hamishwillee
(15 Feb 2012)
Contents |
Overview
This code snippets shows how to change the QWidget background colour.
Main function
This function is used to set the widget colour.
p.setColor(QPalette::Background, Qt::black);
Source
Change the background colour of the QWidget.
#include <QPalette>
QMyWidget::QMyWidget(QWidget *parent)
: QWidget(parent)
{
QPalette p(palette());
// Set background colour to black
p.setColor(QPalette::Background, Qt::black);
setPalette(p);
}
See also
For more information, see QPalette.
Postconditions
The background colour QWidget is black.

