Namespaces
Variants
Actions
(Difference between revisions)

Archived:Changing QWidget background colour

Jump to: navigation, search
m
m (S60 to Symbian)
Line 14: Line 14:
 
This code snippets shows how to change the QWidget background colour.
 
This code snippets shows how to change the QWidget background colour.
  
'''Note''': In order to use this code, you need to have Qt for S60 installed on your platform.
+
'''Note''': In order to use this code, you need to have Qt for Symbian installed on your platform.
  
  
 
==Preconditions==
 
==Preconditions==
  
* Install latest Qt for S60 see [http://wiki.forum.nokia.com/index.php/Qt_for_S60_-_Installation_packages Qt for S60 - Installation packages]
+
* Install latest Qt for Symbian see [[Qt_for_Symbian_-_Installation_packages|Qt for Symbian - Installation packages]]
 
* Check this link for installation guide: [http://pepper.troll.no/s60prereleases/doc/install-s60.html How to install the package].
 
* Check this link for installation guide: [http://pepper.troll.no/s60prereleases/doc/install-s60.html How to install the package].
* Go through this article: [[Getting started with Qt for S60]]
+
* Go through this article: [[Getting started with Qt for Symbian]]
 
+
  
 
== Main function ==
 
== Main function ==

Revision as of 16:47, 5 May 2010

Template:KBCS

Article Metadata

Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition

Article
Keywords: QPalette
Created: (29 Apr 2009)
Last edited: kiran10182 (05 May 2010)

Contents

Overview

This code snippets shows how to change the QWidget background colour.

Note: In order to use this code, you need to have Qt for Symbian installed on your platform.


Preconditions

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.

617 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved