Quick tips to adjust font size

From Qt Wiki
Revision as of 10:00, 8 April 2015 by Henri Vikki (talk | contribs) (Links & formatting)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


4 Quick tips to adjust Font Size.

Use QFont Class

When you know font size in terms of Integer ,

void QFont::setPointSize ( int pointSize )

Sometimes , it is required that we need font size other than the prescribed sizes.

void QFont::setPointSizeF ( qreal pointSize )

is really useful in that manner.

Stylesheet

Using style sheet must be the simplest way.

void setStyleSheet ( const QString & sheet )
label->setStyleSheet ("Font : 12pt");

We can use HTML tags as well, when applicable.