
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQFontInfo class provides general information about fonts.More...
| Header: | #include <QFontInfo> |
Note: All functions in this class arereentrant.
| QFontInfo(const QFont & font) | |
| QFontInfo(const QFontInfo & fi) | |
| ~QFontInfo() | |
| bool | bold() const |
| bool | exactMatch() const |
| QString | family() const |
| bool | fixedPitch() const |
| bool | italic() const |
| int | pixelSize() const |
| int | pointSize() const |
| qreal | pointSizeF() const |
| bool | rawMode() const |
| QFont::Style | style() const |
| QFont::StyleHint | styleHint() const |
| QString | styleName() const |
| int | weight() const |
| QFontInfo & | operator=(const QFontInfo & fi) |
TheQFontInfo class provides general information about fonts.
TheQFontInfo class provides the same access functions asQFont, e.g.family(),pointSize(),italic(),weight(),fixedPitch(),styleHint() etc. But whilst theQFont access functions return the values that were set, aQFontInfo 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 andQFontInfo::pointSize() returns 24.
There are three ways to create aQFontInfo object.
(Note: If you use a printer font the values returned may be inaccurate. Printer fonts are not always accessible so the nearest screen font is used if a printer font is supplied.)
See alsoQFont,QFontMetrics, andQFontDatabase.
Constructs a font info object forfont.
The font must be screen-compatible, i.e. a font you use when drawing text inwidgets orpixmaps, notQPicture orQPrinter.
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.
UseQPainter::fontInfo() to get the font info when painting. This will give correct results also when painting on paint device that is not screen-compatible.
Constructs a copy offi.
Destroys the font info object.
Returns true ifweight() would return a value greater thanQFont::Normal; otherwise returns false.
See alsoweight() andQFont::bold().
Returns true if the matched window system font is exactly the same as the one specified by the font; otherwise returns false.
See alsoQFont::exactMatch().
Returns the family name of the matched window system font.
See alsoQFont::family().
Returns the fixed pitch value of the matched window system font.
See alsoQFont::fixedPitch().
Returns the italic value of the matched window system font.
See alsoQFont::italic().
Returns the pixel size of the matched window system font.
See alsoQFont::pointSize().
Returns the point size of the matched window system font.
See alsopointSizeF() andQFont::pointSize().
Returns the point size of the matched window system font.
See alsoQFont::pointSizeF().
Returns true if the font is a raw mode font; otherwise returns false.
If it is a raw mode font, all other functions inQFontInfo will return the same values set in theQFont, regardless of the font actually used.
See alsoQFont::rawMode().
Returns the style value of the matched window system font.
See alsoQFont::style().
Returns the style of the matched window system font.
Currently only returns the style hint set inQFont.
See alsoQFont::styleHint() andQFont::StyleHint.
Returns the style name of the matched window system font on system that supports it.
This function was introduced in Qt 4.8.
See alsoQFont::styleName().
Returns the weight of the matched window system font.
See alsoQFont::weight() andbold().
Assigns the font info infi.
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.