Archived:Applying a Qt style sheet to an application via QApplication
copyeditor
(Talk | contribs) |
copyeditor
(Talk | contribs) m (Protected "CS001502 - Applying a Qt style sheet to an application via QApplication" ([edit=sysop] (indefinite) [move=sysop] (indefinite))) |
Revision as of 16:37, 24 November 2009
Article Metadata
Tested with
Devices(s): Nokia N97
Compatibility
Platform(s): Qt
Article
Keywords: Qt, UI, style sheet
Created: (24 Nov 2009)
Last edited: copyeditor
(24 Nov 2009)
Contents |
Overview
This example shows you how to apply a style sheet application-wide.
Preconditions
- Qt is installed on your platform.
- S60:
- Download Qt for S60 release from here: Qt for S60 pre-release
- Install Qt for S60: Installing Qt on S60
- Check this link for installation guide: How to install the package
- Maemo:
- More information about Qt on Maemo can be found here: Qt4 Maemo port
- S60:
- You know how to use resources in your Qt application.
Applying a Qt style sheet to an application via QApplication
#include "yourwindow.h"
#include <QtGui>
#include <QApplication>
#include <QFile>
#include <QString>
#include <QTextStream>
void loadStyleSheet() {
/* Let's use QFile and point to a resource... */
QFile data(":/style.qss");
QString style;
/* ...to open the file */
if(data.open(QFile::ReadOnly)) {
/* QTextStream... */
QTextStream styleIn(&data);
/* ...read file to a string. */
style = styleIn.readAll();
data.close();
/* We'll use qApp macro to get the QApplication pointer
* and set the style sheet application wide. */
qApp->setStyleSheet(style);
}
}
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
YourWindow* w = new YourWindow();
/* Load style sheet */
loadStyleSheet();
w->showMaximized();
int returnValue = a.exec();
w->deleteLater();
return returnValue;
}
Postconditions
Now you can style your application with Qt style sheets.

