Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
The QFontInfo class provides general information about fonts. More...
#include <qfontinfo.h>
The QFontInfo class provides general information about fonts.
The QFontInfo class provides the same access functions as QFont, e.g. family(), pointSize(), italic(), weight(), fixedPitch(), styleHint() etc. But whilst the QFont access functions return the values that were set, a QFontInfo object returns the values that apply to the font that will actually be used to draw the text.
For example, when the program asks for a 25pt Courier font on a machine that has a non-scalable 24pt Courier font, QFont will (normally) use the 24pt Courier for rendering. In this case, QFont::pointSize() returns 25 and QFontInfo::pointSize() returns 24.
There are three ways to create a QFontInfo object.
* If you use a printer font the values returned will almost certainly be inaccurate. Printer fonts are not always accessible so the nearest screen font is used if a printer font is supplied.
See also QFont, QFontMetrics, QFontDatabase, Graphics Classes and Implicitly and Explicitly Shared Classes.
The font must be screen-compatible, i.e. a font you use when drawing text in widgets or pixmaps, not QPicture or QPrinter.
The font info object holds the information for the font that is passed in the constructor at the time it is created, and is not updated if the font's attributes are changed later.
Use the QPainter::fontInfo() function to get the font info when painting. This is a little slower than using this constructor, but it always gives correct results because the font info data is updated.
Returns TRUE if weight() would return a value greater than QFont::Normal; otherwise returns FALSE.
See also weight() and QFont::bold().
See also QFont::exactMatch().
See also QFont::family().
Example: fonts/simple-qfont-demo/viewer.cpp.
See also QFont::fixedPitch().
See also QFont::italic().
See also QFont::pointSize().
See also QFont::pointSize().
Example: fonts/simple-qfont-demo/viewer.cpp.
If it is a raw mode font, all other functions in QFontInfo will return the same values set in the QFont, regardless of the font actually used.
See also QFont::rawMode().
Currently only returns the style hint set in QFont.
See also QFont::styleHint() and QFont::StyleHint.
See also QFont::weight() and bold().
This file is part of the Qt toolkit. Copyright © 1995-2002 Trolltech. All Rights Reserved.
Copyright © 2002 Trolltech | Trademarks | Qt version 3.0.5
|