Namespaces
Variants
Actions
(Difference between revisions)

Change font in Qt application

Jump to: navigation, search
m (Hamishwillee - Bot change of template (Template:CodeSnippet) - now using Template:ArticleMetaData)
m (Text replace - "<code cpp>" to "<code cpp-qt>")
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Qt]][[Category:UI]]
+
[[Category:Qt]][[Category:UI]][[Category:Code Examples]][[Category:MeeGo Harmattan]][[Category:Symbian]][[Category:Qt C++ UI]]
{{ReviewerApproved|timestamp=20090921}}
+
{{Abstract|This code example shows how to change font of a Qt (C++) application. This is done by setting the desired font {{Qapiname|QFont}} using {{Qapiname|QApplication::setFont()}}.}}
  
{{ArticleMetaData
+
{{ArticleMetaData <!-- v1.2 -->
|id=...
+
|sourcecode= [[Media:QtChangeFont.zip]]
|platform=S60 3rd Edition, FP1, FP2<br>S60 5th Edition
+
|devices=Nokia 5800 XpressMusic
+
|category=Qt
+
|subcategory= UI
+
|creationdate=June 12, 2009
+
|keywords=Font
+
 
+
|sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) -->
+
 
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) -->
 
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) -->
|sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) -->
+
|devices= Nokia 5800 XpressMusic
|devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) -->
+
|sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) -->
|signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer -->
+
|platform= Symbian^1,Symbian^3, Meamo, MeeGo
|capabilities=<!-- Capabilities required (e.g. Location, NetworkServices.) -->
+
|devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) -->
|author=[[User:Savaj]]
+
|dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 -->
 +
|signing= Self-Signed
 +
|capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. -->
 +
|keywords= Font
 +
|language= <!-- Language category code for non-English topics - e.g. Lang-Chinese -->
 +
|translated-by= <!-- [[User:XXXX]] -->
 +
|translated-from-title= <!-- Title only -->
 +
|translated-from-id= <!-- Id of translated revision -->
 +
|review-by= <!-- After re-review: [[User:username]] -->
 +
|review-timestamp= <!-- After re-review: YYYYMMDD -->
 +
|update-by= <!-- After significant update: [[User:username]]-->
 +
|update-timestamp= <!-- After significant update: YYYYMMDD -->
 +
|creationdate= 20090612
 +
|author= [[User:Savaj]]
 
}}
 
}}
 
==Overview==
 
 
{{Abstract|This code example shows how to change font of application an in Qt. This is done by setting the desired font {{Qapiname|QFont}} using {{Qapiname|QApplication::setFont()}}.}}
 
 
This snippet can be '''self-signed'''.
 
 
==Preconditions==
 
 
* Install [[Nokia Qt SDK]]
 
  
 
==Headers required==
 
==Headers required==
<code cpp>
+
<code cpp-qt>
 
#include <QFont>
 
#include <QFont>
 
</code>
 
</code>
Line 37: Line 32:
 
==Source==
 
==Source==
  
<code cpp>
+
<code cpp-qt>
//specify a new font.
+
//specify a new font.
QFont newFont("Courier", 8, QFont::Bold, true);
+
QFont newFont("Courier", 8, QFont::Bold, true);
//set font of application
+
//set font of application
QApplication::setFont(newFont);
+
QApplication::setFont(newFont);
 
</code>
 
</code>
 
  
 
==Postconditions==
 
==Postconditions==
  
The code snippet is expected to show font "Courier" on application.<br><br>
+
The code snippet is expected to show font "Courier" on application.
'''Font Courier (Bold and Italic)'''
+
<br><br>
+
[[Image:Font1.JPG]]
+
<br><br>
+
'''After changing font to Times'''
+
<br>
+
[[Image:Font2.JPG]]
+
  
 +
<gallery widths="300px" heights="400px">
 +
File:Font1.JPG|Font Courier (Bold and Italic)
 +
File:Font2.JPG|After changing font to Times
 +
</gallery>
  
==External links==
+
==Further links==
* [http://doc.qt.nokia.com/stable/qfont.html QFont]
+
* {{Qapiname|QFont}}
 
+
==Internal Links==
+
 
* [[How to use QFontComboBox]]
 
* [[How to use QFontComboBox]]
  
Line 66: Line 55:
  
 
* [[File:QtChangeFont.zip]] shows how you can change text from font Courier to font Times from the menu. The example is tested on Nokia 5800 XpressMusic.
 
* [[File:QtChangeFont.zip]] shows how you can change text from font Courier to font Times from the menu. The example is tested on Nokia 5800 XpressMusic.
 
+
<!-- Translation --> [[pt:Archived:Como modificar a fonte de aplicações, em Qt]]
 
+
 
+
[[Category:Code Examples]]
+

Latest revision as of 04:13, 11 October 2012

This code example shows how to change font of a Qt (C++) application. This is done by setting the desired font QFont using QApplication::setFont().

Article Metadata

Code Example
Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): Symbian^1,Symbian^3, Meamo, MeeGo

Platform Security
Signing Required: Self-Signed

Article
Keywords: Font
Created: savaj (12 Jun 2009)
Last edited: hamishwillee (11 Oct 2012)

Contents

Headers required

#include <QFont>

Source

//specify a new font.
QFont newFont("Courier", 8, QFont::Bold, true);
//set font of application
QApplication::setFont(newFont);

Postconditions

The code snippet is expected to show font "Courier" on application.

Further links

Code Example

  • File:QtChangeFont.zip shows how you can change text from font Courier to font Times from the menu. The example is tested on Nokia 5800 XpressMusic.
This page was last modified on 11 October 2012, at 04:13.
863 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