Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

TQFontInfo Class Reference

The TQFontInfo class provides general information about fonts. More...

#include <ntqfontinfo.h>

List of all member functions.

Public Members


Detailed Description

The TQFontInfo class provides general information about fonts.

The TQFontInfo class provides the same access functions as TQFont, e.g. family(), pointSize(), italic(), weight(), fixedPitch(), styleHint() etc. But whilst the TQFont access functions return the values that were set, a TQFontInfo 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, TQFont will (normally) use the 24pt Courier for rendering. In this case, TQFont::pointSize() returns 25 and TQFontInfo::pointSize() returns 24.

There are three ways to create a TQFontInfo object.

  1. Calling the TQFontInfo constructor with a TQFont creates a font info object for a screen-compatible font, i.e. the font cannot be a printer font*. If the font is changed later, the font info object is not updated.

  2. TQWidget::fontInfo() returns the font info for a widget's font. This is equivalent to calling TQFontInfo(widget->font()). If the widget's font is changed later, the font info object is not updated.

  3. TQPainter::fontInfo() returns the font info for a painter's current font. If the painter's font is changed later, the font info object is not updated.

* 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 also TQFont, TQFontMetrics, TQFontDatabase, Graphics Classes, and Implicitly and Explicitly Shared Classes.


Member Function Documentation

TQFontInfo::TQFontInfo ( const TQFont & font )

Constructs a font info object for font.

The font must be screen-compatible, i.e. a font you use when drawing text in widgets or pixmaps, not TQPicture or TQPrinter.

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 TQPainter::fontInfo() to get the font info when painting. This will give correct results also when painting on paint device that is not screen-compatible.

TQFontInfo::TQFontInfo ( const TQFont & font, TQFont::Script script )

Constructs a font info object for font using the specified script.

TQFontInfo::TQFontInfo ( const TQFontInfo & fi )

Constructs a copy of fi.

TQFontInfo::~TQFontInfo ()

Destroys the font info object.

bool TQFontInfo::bold () const

Returns TRUE if weight() would return a value greater than TQFont::Normal; otherwise returns FALSE.

See also weight() and TQFont::bold().

Example: qfd/fontdisplayer.cpp.

bool TQFontInfo::exactMatch () const

Returns TRUE if the matched window system font is exactly the same as the one specified by the font; otherwise returns FALSE.

See also TQFont::exactMatch().

TQString TQFontInfo::family () const

Returns the family name of the matched window system font.

See also TQFont::family().

Examples: fonts/simple-qfont-demo/viewer.cpp and qfd/fontdisplayer.cpp.

bool TQFontInfo::fixedPitch () const

Returns the fixed pitch value of the matched window system font.

See also TQFont::fixedPitch().

bool TQFontInfo::italic () const

Returns the italic value of the matched window system font.

See also TQFont::italic().

Example: qfd/fontdisplayer.cpp.

TQFontInfo & TQFontInfo::operator= ( const TQFontInfo & fi )

Assigns the font info in fi.

int TQFontInfo::pixelSize () const

Returns the pixel size of the matched window system font.

See also TQFont::pointSize().

int TQFontInfo::pointSize () const

Returns the point size of the matched window system font.

See also TQFont::pointSize().

Examples: fonts/simple-qfont-demo/viewer.cpp and qfd/fontdisplayer.cpp.

bool TQFontInfo::rawMode () const

Returns TRUE if the font is a raw mode font; otherwise returns FALSE.

If it is a raw mode font, all other functions in TQFontInfo will return the same values set in the TQFont, regardless of the font actually used.

See also TQFont::rawMode().

TQFont::StyleHint TQFontInfo::styleHint () const

Returns the style of the matched window system font.

Currently only returns the style hint set in TQFont.

See also TQFont::styleHint() and TQFont::StyleHint.

int TQFontInfo::weight () const

Returns the weight of the matched window system font.

See also TQFont::weight() and bold().


This file is part of the TQt toolkit. Copyright © 1995-2007 Trolltech. All Rights Reserved.


Copyright © 2007 TrolltechTrademarks
TQt 3.3.8