Archived:Changing QWidget background colour
hamishwillee
(Talk | contribs) m (Added category Category:Symbian. (Preparing for ontology change)) |
hamishwillee
(Talk | contribs) m (Remove platform specifier categories (only need specifier for Qt if there is some platform specific behaviour)) |
||
| Line 1: | Line 1: | ||
| + | [[Category:Qt]][[Category:UI]] | ||
{{KBCS}} | {{KBCS}} | ||
{{CodeSnippet | {{CodeSnippet | ||
| Line 4: | Line 5: | ||
|platform=S60 3rd Edition, FP1, FP2<br>S60 5th Edition | |platform=S60 3rd Edition, FP1, FP2<br>S60 5th Edition | ||
|devices=Nokia 5800 XpressMusic | |devices=Nokia 5800 XpressMusic | ||
| − | |category=Qt | + | |category=Qt |
|subcategory=UI, Graphics | |subcategory=UI, Graphics | ||
|creationdate=April 29, 2009 | |creationdate=April 29, 2009 | ||
| Line 13: | Line 14: | ||
This code snippets shows how to change the QWidget background colour. | This code snippets shows how to change the QWidget background colour. | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
== Main function == | == Main function == | ||
| Line 44: | Line 36: | ||
==See also== | ==See also== | ||
| − | For more information, see [http:// | + | For more information, see [http://doc.qt.nokia.com/latest/qpalette.html QPalette]. |
==Postconditions== | ==Postconditions== | ||
| Line 50: | Line 42: | ||
| − | + | [[Category:Code Examples]][[Category:Code Snippet]] | |
Revision as of 10:14, 4 April 2011
Article Metadata
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition
S60 5th Edition
Article
Keywords: QPalette
Created: (29 Apr 2009)
Last edited: hamishwillee
(04 Apr 2011)
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.

