When you create a QFont object you specify various attributes that you want the font to have. TQt will use the font with the specified attributes, or if no matching font exists, TQt will use the closest matching installed font. The attributes of the font that is actually used are retrievable from a QFontInfo object. If the window system provides an exact match exactMatch() returns TRUE. Use QFontMetrics to get measurements, e.g. the pixel length of a string using QFontMetrics::width().
Use QApplication::setFont() to set the application's default font.
.PP
If a choosen X11 font does not include all the characters that need to be displayed, QFont will try to find the characters in the nearest equivalent fonts. When a QPainter draws a character from a font the QFont will report whether or not it has the character; if it does not, QPainter will draw an unfilled square.
.PP
Create QFonts like this:
.PP
.nf
.br
QFont serifFont( "Times", 10, Bold );
.br
QFont sansFont( "Helvetica [Cronyx]", 12 );
.br
.fi
.PP
The attributes set in the constructor can also be set later, e.g. setFamily(), setPointSize(), setPointSizeFloat(), setWeight() and setItalic(). The remaining attributes must be set after contstruction, e.g. setBold(), setUnderline(), setOverline(), setStrikeOut() and setFixedPitch(). QFontInfo objects should be created \fIafter\fR the font's attributes have been set. A QFontInfo object will not change, even if you change the font's attributes. The corresponding "get" functions, e.g. family(), pointSize(), etc., return the values that were set, even though the values used may differ. The actual values are available from a QFontInfo object.
.PP
If the requested font family is unavailable you can influence the font matching algorithm by choosing a particular QFont::StyleHint and QFont::StyleStrategy with setStyleHint(). The default family (corresponding to the current style hint) is returned by defaultFamily().
.PP
The font-matching algorithm has a lastResortFamily() and lastResortFont() in cases where a suitable match cannot be found. You can provide substitutions for font family names using insertSubstitution() and insertSubstitutions(). Substitutions can be removed with removeSubstitution(). Use substitute() to retrieve a family's first substitute, or the family name itself if it has no substitutes. Use substitutes() to retrieve a list of a family's substitutes (which may be empty).
.PP
Every QFont has a key() which you can use, for example, as the key in a cache or dictionary. If you want to store a user's font preferences you could use QSettings, writing the font information with toString() and reading it back with fromString(). The operator<<() and operator>>() functions are also available, but they work on a data stream.
.PP
It is possible to set the height of characters shown on the screen to a specified number of pixels with setPixelSize(); however using setPointSize() has a similar effect and provides device independence.
.PP
Under the X Window System you can set a font using its system specific name with setRawName().
.PP
Loading fonts can be expensive, especially on X11. QFont contains extensive optimizations to make the copying of QFont objects fast, and to cache the results of the slow window system functions it depends upon.
.PP
The font matching algorithm works as follows: <ol type=1>
.IP 1
The specified font family is searched for.
.IP 2
If not found, the styleHint() is used to select a replacement family.
.IP 3
Each replacement font family is searched for.
.IP 4
If none of these are found or there was no styleHint(), "helvetica" will be searched for.
Once a font is found, the remaining attributes are matched in order of priority: <ol type=1>
.IP 7
fixedPitch()
.IP 8
pointSize() (see below)
.IP 9
weight()
.IP 10
italic()
.PP
If you have a font which matches on family, even if none of the other attributes match, this font will be chosen in preference to a font which doesn't match on family but which does match on the other attributes. This is because font family is the dominant search criteria.
.PP
The point size is defined to match if it is within 20% of the requested point size. When several fonts match and are only distinguished by point size, the font with the closest point size to the one requested will be chosen.
.PP
The actual family, font size, weight and other font attributes used for drawing text will depend on what's available for the chosen family under the window system. A QFontInfo object can be used to determine the actual values used for drawing the text.
.PP
Examples:
.)l
.PP
.nf
.br
QFont f("Helvetica");
.br
.fi
If you had both an Adobe and a Cronyx Helvetica, you might get either.
You can specify the foundry you want in the family name. Both fonts, f1 and f2, in the above example will be set to "Helvetica [Cronyx]".
.PP
To determine the attributes of the font actually used in the window system, use a QFontInfo object, e.g.
.PP
.nf
.br
QFontInfo info( f1 );
.br
QString family = info.family();
.br
.fi
.PP
To find out font metrics use a QFontMetrics object, e.g.
.PP
.nf
.br
QFontMetrics fm( f1 );
.br
int pixelWidth = fm.width( "How many pixels wide is this text?" );
.br
int pixelHeight = fm.height();
.br
.fi
.PP
For more general information on fonts, see the comp.fonts FAQ. Information on encodings can be found from Roman Czyborra's page.
.PP
See also QFontMetrics, QFontInfo, QFontDatabase, QApplication::setFont(), QWidget::font, QPainter::setFont(), QFont::StyleHint, QFont::Weight, Widget Appearance and Style, Graphics Classes, and Implicitly and Explicitly Shared Classes.
.SS "Member Type Documentation"
.SH "QFont::Script"
This enum represents Unicode allocated scripts. For exhaustive coverage see The Unicode Standard Version 3.0. The following scripts are supported:
.PP
Modern European alphabetic scripts (left to right):
.TP
\fCQFont::Latin\fR - consists of most alphabets based on the original Latin alphabet.
.TP
\fCQFont::Greek\fR - covers ancient and modern Greek and Coptic.
.TP
\fCQFont::Cyrillic\fR - covers the Slavic and non-Slavic languages using cyrillic alphabets.
.TP
\fCQFont::Armenian\fR - contains the Armenian alphabet used with the Armenian language.
.TP
\fCQFont::Georgian\fR - covers at least the language Georgian.
.TP
\fCQFont::Runic\fR - covers the known constituents of the Runic alphabets used by the early and medieval societies in the Germanic, Scandinavian, and Anglo-Saxon areas.
.TP
\fCQFont::Ogham\fR - is an alphabetical script used to write a very early form of Irish.
.TP
\fCQFont::SpacingModifiers\fR - are small signs indicating modifications to the preceeding letter.
.TP
\fCQFont::CombiningMarks\fR - consist of diacritical marks not specific to a particular alphabet, diacritical marks used in combination with mathematical and technical symbols, and glyph encodings applied to multiple letterforms.
.PP
Middle Eastern scripts (right to left):
.TP
\fCQFont::Hebrew\fR - is used for writing Hebrew, Yiddish, and some other languages.
.TP
\fCQFont::Arabic\fR - covers the Arabic language as well as Persian, Urdu, Kurdish and some others.
.TP
\fCQFont::Syriac\fR - is used to write the active liturgical languages and dialects of several Middle Eastern and Southeast Indian communities.
.TP
\fCQFont::Thaana\fR - is used to write the Maledivian Dhivehi language.
.PP
South and Southeast Asian scripts (left to right with few historical exceptions):
.TP
\fCQFont::Devanagari\fR - covers classical Sanskrit and modern Hindi as well as several other languages.
.TP
\fCQFont::Bengali\fR - is a relative to Devanagari employed to write the Bengali language used in West Bengal/India and Bangladesh as well as several minority languages.
.TP
\fCQFont::Gurmukhi\fR - is another Devanagari relative used to write Punjabi.
.TP
\fCQFont::Gujarati\fR - is closely related to Devanagari and used to write the Gujarati language of the Gujarat state in India.
.TP
\fCQFont::Oriya\fR - is used to write the Oriya language of Orissa state/India.
.TP
\fCQFont::Tamil\fR - is used to write the Tamil language of Tamil Nadu state/India, Sri Lanka, Singapore and parts of Malaysia as well as some minority languages.
.TP
\fCQFont::Telugu\fR - is used to write the Telugu language of Andhra Pradesh state/India and some minority languages.
.TP
\fCQFont::Kannada\fR - is another South Indian script used to write the Kannada language of Karnataka state/India and some minority languages.
.TP
\fCQFont::Malayalam\fR - is used to write the Malayalam language of Kerala state/India.
.TP
\fCQFont::Sinhala\fR - is used for Sri Lanka's majority language Sinhala and is also employed to write Pali, Sanskrit, and Tamil.
.TP
\fCQFont::Thai\fR - is used to write Thai and other Southeast Asian languages.
\fCQFont::Tibetan\fR - is the script used to write Tibetan in several countries like Tibet, the bordering Indian regions and Nepal. It is also used in the Buddist philosophy and liturgy of the Mongolian cultural area.
.TP
\fCQFont::Myanmar\fR - is mainly used to write the Burmese language of Myanmar (former Burma).
.TP
\fCQFont::Khmer\fR - is the official language of Kampuchea.
.PP
East Asian scripts (traditionally top-down, right to left, modern often horizontal left to right):
.TP
\fCQFont::Han\fR - consists of the CJK (Chinese, Japanese, Korean) idiographic characters.
.TP
\fCQFont::Hiragana\fR - is a cursive syllabary used to indicate phonetics and pronounciation of Japanese words.
.TP
\fCQFont::Katakana\fR - is a non-cursive syllabic script used to write Japanese words with visual emphasis and non-Japanese words in a phonetical manner.
.TP
\fCQFont::Hangul\fR - is a Korean script consisting of alphabetic components.
.TP
\fCQFont::Bopomofo\fR - is a phonetic alphabet for Chinese (mainly Mandarin).
.TP
\fCQFont::Yi\fR - (also called Cuan or Wei) is a syllabary used to write the Yi language of Southwestern China, Myanmar, Laos, and Vietnam.
.PP
Additional scripts that do not fit well into the script categories above:
.TP
\fCQFont::Ethiopic\fR - is a syllabary used by several Central East African languages.
.TP
\fCQFont::Cherokee\fR - is a left-to-right syllabic script used to write the Cherokee language.
.TP
\fCQFont::CanadianAboriginal\fR - consists of the syllabics used by some Canadian aboriginal societies.
.TP
\fCQFont::Mongolian\fR - is the traditional (and recently reintroduced) script used to write Mongolian.
.PP
Symbols:
.TP
\fCQFont::CurrencySymbols\fR - contains currency symbols not encoded in other scripts.
.TP
\fCQFont::LetterlikeSymbols\fR - consists of symbols derived from ordinary letters of an alphabetical script.
.TP
\fCQFont::NumberForms\fR - are provided for compatibility with other existing character sets.
.TP
\fCQFont::MathematicalOperators\fR - consists of encodings for operators, relations and other symbols like arrows used in a mathematical context.
.TP
\fCQFont::TechnicalSymbols\fR - contains representations for control codes, the space symbol, APL symbols and other symbols mainly used in the context of electronic data processing.
.TP
\fCQFont::GeometricSymbols\fR - covers block elements and geometric shapes.
.TP
\fCQFont::MiscellaneousSymbols\fR - consists of a heterogeneous collection of symbols that do not fit any other Unicode character block, e.g. Dingbats.
.TP
\fCQFont::EnclosedAndSquare\fR - is provided for compatibility with some East Asian standards.
.TP
\fCQFont::Braille\fR - is an international writing system used by blind people. This script encodes the 256 eight-dot patterns with the 64 six-dot patterns as a subset.
.TP
\fCQFont::Tagalog\fR
.TP
\fCQFont::Hanunoo\fR
.TP
\fCQFont::Buhid\fR
.TP
\fCQFont::Tagbanwa\fR
.TP
\fCQFont::KatakanaHalfWidth\fR
.TP
\fCQFont::Limbu\fR - (Unicode 4.0)
.TP
\fCQFont::TaiLe\fR - (Unicode 4.0)
.TP
\fCQFont::Unicode\fR - includes all the above scripts.
.SH "QFont::Stretch"
Predefined stretch values that follow the CSS naming convention.
.TP
\fCQFont::UltraCondensed\fR - 50
.TP
\fCQFont::ExtraCondensed\fR - 62
.TP
\fCQFont::Condensed\fR - 75
.TP
\fCQFont::SemiCondensed\fR - 87
.TP
\fCQFont::Unstretched\fR - 100
.TP
\fCQFont::SemiExpanded\fR - 112
.TP
\fCQFont::Expanded\fR - 125
.TP
\fCQFont::ExtraExpanded\fR - 150
.TP
\fCQFont::UltraExpanded\fR - 200
.PP
See also setStretch() and stretch().
.SH "QFont::StyleHint"
Style hints are used by the font matching algorithm to find an appropriate default family if a selected font family is not available.
.TP
\fCQFont::AnyStyle\fR - leaves the font matching algorithm to choose the family. This is the default.
.TP
\fCQFont::SansSerif\fR - the font matcher prefer sans serif fonts.
.TP
\fCQFont::Helvetica\fR - is a synonym for SansSerif.
.TP
\fCQFont::Serif\fR - the font matcher prefers serif fonts.
.TP
\fCQFont::Times\fR - is a synonym for Serif.
.TP
\fCQFont::TypeWriter\fR - the font matcher prefers fixed pitch fonts.
.TP
\fCQFont::Courier\fR - a synonym for TypeWriter.
.TP
\fCQFont::OldEnglish\fR - the font matcher prefers decorative fonts.
.TP
\fCQFont::Decorative\fR - is a synonym for OldEnglish.
.TP
\fCQFont::System\fR - the font matcher prefers system fonts.
.SH "QFont::StyleStrategy"
The style strategy tells the font matching algorithm what type of fonts should be used to find an appropriate default family.
.PP
The following strategies are available:
.TP
\fCQFont::PreferDefault\fR - the default style strategy. It does not prefer any type of font.
.TP
\fCQFont::PreferBitmap\fR - prefers bitmap fonts (as opposed to outline fonts).
.TP
\fCQFont::PreferDevice\fR - prefers device fonts.
.TP
\fCQFont::PreferOutline\fR - prefers outline fonts (as opposed to bitmap fonts).
.TP
\fCQFont::ForceOutline\fR - forces the use of outline fonts.
.TP
\fCQFont::NoAntialias\fR - don't antialias the fonts.
.TP
\fCQFont::PreferAntialias\fR - antialias if possible.
.TP
\fCQFont::OpenGLCompatible\fR - forces the use of OpenGL compatible fonts.
.PP
Any of these may be OR-ed with one of these flags:
.TP
\fCQFont::PreferMatch\fR - prefer an exact match. The font matcher will try to use the exact font size that has been specified.
.TP
\fCQFont::PreferQuality\fR - prefer the best quality font. The font matcher will use the nearest standard point size that the font supports.
.SH "QFont::Weight"
Qt uses a weighting scale from 0 to 99 similar to, but not the same as, the scales used in Windows or CSS. A weight of 0 is ultralight, whilst 99 will be an extremely black.
.PP
This enum contains the predefined font weights:
.TP
\fCQFont::Light\fR - 25
.TP
\fCQFont::Normal\fR - 50
.TP
\fCQFont::DemiBold\fR - 63
.TP
\fCQFont::Bold\fR - 75
.TP
\fCQFont::Black\fR - 87
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QFont::QFont ()"
Constructs a font object that uses the application's default font.
.PP
See also QApplication::setFont() and QApplication::font().
.SH "QFont::QFont ( const QString & family, int pointSize = 12, int weight = Normal, bool italic = FALSE )"
Constructs a font object with the specified \fIfamily\fR, \fIpointSize\fR, \fIweight\fR and \fIitalic\fR settings.
The \fIfamily\fR name may optionally also include a foundry name, e.g. "Helvetica [Cronyx]". (The TQt 2.x syntax, i.e." Cronyx-Helvetica", is also supported.) If the \fIfamily\fR is available from more than one foundry and the foundry isn't specified, an arbitrary foundry is chosen. If the family isn't available a family will be set using the font matching algorithm.
Inserts the list of families \fIsubstituteNames\fR into the substitution list for \fIfamilyName\fR.
.PP
See also insertSubstitution(), removeSubstitution(), substitutions(), and substitute().
.PP
Example: fonts/simple-qfont-demo/viewer.cpp.
.SH "bool QFont::isCopyOf ( const QFont & f ) const"
Returns TRUE if this font and \fIf\fR are copies of each other, i.e. one of them was created as a copy of the other and neither has been modified since. This is much stricter than equality.
.PP
See also operator=() and operator==().
.SH "bool QFont::italic () const"
Returns TRUE if italic has been set; otherwise returns FALSE.
.PP
See also setItalic().
.PP
Example: chart/optionsform.cpp.
.SH "QString QFont::key () const"
Returns the font's key, a textual representation of a font. It is typically used as the key for a cache or dictionary of fonts.
.PP
See also QMap.
.SH "QString QFont::lastResortFamily () const"
Returns the "last resort" font family name.
.PP
The current implementation tries a wide variety of common fonts, returning the first one it finds. Is is possible that no family is found in which case a null string is returned.
.PP
See also lastResortFont().
.SH "QString QFont::lastResortFont () const"
Returns a "last resort" font name for the font matching algorithm. This is used if the last resort family is not available. It will always return a name, if necessary returning something like" fixed" or "system".
.PP
The current implementation tries a wide variety of common fonts, returning the first one it finds. The implementation may change at any time, but this function will always return a string containing something.
It is theoretically possible that there really isn't a lastResortFont() in which case TQt will abort with an error message. We have not been able to identify a case where this happens. Please report it as a bug if it does, preferably with a list of the fonts you have installed.
.SH "bool QFont::operator!= ( const QFont & f ) const"
Returns TRUE if this font is different from \fIf\fR; otherwise returns FALSE.
.PP
Two QFonts are considered to be different if their font attributes are different. If rawMode() is enabled for both fonts, only the family fields are compared.
.PP
See also operator==().
.SH "QFont & QFont::operator= ( const QFont & font )"
Assigns \fIfont\fR to this font and returns a reference to it.
.SH "bool QFont::operator== ( const QFont & f ) const"
Returns TRUE if this font is equal to \fIf\fR; otherwise returns FALSE.
.PP
Two QFonts are considered equal if their font attributes are equal. If rawMode() is enabled for both fonts, only the family fields are compared.
.PP
See also operator!=() and isCopyOf().
.SH "bool QFont::overline () const"
Returns TRUE if overline has been set; otherwise returns FALSE.
.PP
See also setOverline().
.SH "int QFont::pixelSize () const"
Returns the pixel size of the font if it was set with setPixelSize(). Returns -1 if the size was set with setPointSize() or setPointSizeFloat().
.PP
See also setPixelSize(), pointSize(), QFontInfo::pointSize(), and QFontInfo::pixelSize().
.SH "int QFont::pointSize () const"
Returns the point size of the font. Returns -1 if the font size was specified in pixels.
.PP
See also setPointSize(), deciPointSize(), and pointSizeFloat().
.PP
Examples:
.)l chart/optionsform.cpp and fonts/simple-qfont-demo/viewer.cpp.
.SH "float QFont::pointSizeFloat () const"
Returns the point size of the font. Returns -1 if the font size was specified in pixels.
.PP
See also pointSize(), setPointSizeFloat(), pixelSize(), QFontInfo::pointSize(), and QFontInfo::pixelSize().
.SH "void QFont::qwsRenderToDisk ( bool all = TRUE )"
Saves the glyphs in the font that have previously been accessed as a QPF file. If \fIall\fR is TRUE (the default), then before saving, all glyphs are marked as used.
If the font is large and you are sure that only a subset of characters will ever be required on the target device, passing FALSE for the \fIall\fR parameter can save a significant amount of disk space.
The \fIfamily\fR name may optionally also include a foundry name, e.g. "Helvetica [Cronyx]". (The TQt 2.x syntax, i.e." Cronyx-Helvetica", is also supported.) If the \fIfamily\fR is available from more than one foundry and the foundry isn't specified, an arbitrary foundry is chosen. If the family isn't available a family will be set using the font matching algorithm.
If \fIenable\fR is TRUE, sets fixed pitch on; otherwise sets fixed pitch off.
.PP
See also fixedPitch() and QFontInfo.
.SH "void QFont::setItalic ( bool enable )"
If \fIenable\fR is TRUE, italic is set on; otherwise italic is set off.
.PP
See also italic() and QFontInfo.
.PP
Examples:
.)l fileiconview/qfileiconview.cpp, fonts/simple-qfont-demo/viewer.cpp, and themes/metal.cpp.
.SH "void QFont::setOverline ( bool enable )"
If \fIenable\fR is TRUE, sets overline on; otherwise sets overline off.
.PP
See also overline() and QFontInfo.
.SH "void QFont::setPixelSize ( int pixelSize )"
Sets the font size to \fIpixelSize\fR pixels.
.PP
Using this function makes the font device dependent. Use setPointSize() or setPointSizeFloat() to set the size of the font in a device independent manner.
If raw mode is enabled, TQt will search for an X font with a complete font name matching the family name, ignoring all other values set for the QFont. If the font name matches several fonts, TQt will use the first font returned by X. QFontInfo \fIcannot\fR be used to fetch information about a QFont using raw mode (it will return the values set in the QFont for all parameters, including the family name).
\fBWarning:\fR Do not use raw mode unless you really, really need it! In most (if not all) cases, setRawName() is a much better choice.
.PP
See also rawMode() and setRawName().
.SH "void QFont::setRawName ( const QString & name )"
Sets a font by its system specific name. The function is particularly useful under X, where system font settings (for example X resources) are usually available in XLFD (X Logical Font Description) form only. You can pass an XLFD as \fIname\fR to this function.
.PP
A font set with setRawName() is still a full-featured QFont. It can be queried (for example with italic()) or modified (for example with setItalic()) and is therefore also suitable for rendering rich text.
.PP
If Qt's internal font database cannot resolve the raw name, the font becomes a raw font with \fIname\fR as its family.
.PP
Note that the present implementation does not handle wildcards in XLFDs well, and that font aliases (file \fCfonts.alias\fR in the font directory on X11) are not supported.
.PP
See also rawName(), setRawMode(), and setFamily().
.SH "void QFont::setStretch ( int factor )"
Sets the stretch factor for the font.
.PP
The stretch factor changes the width of all characters in the font by \fIfactor\fR percent. For example, setting \fIfactor\fR to 150 results in all characters in the font being 1.5 times ( ie. 150% ) wider. The default stretch factor is 100. The minimum stretch factor is 1, and the maximum stretch factor is 4000.
.PP
The stretch factor is only applied to outline fonts. The stretch factor is ignored for bitmap fonts.
.PP
NOTE: QFont cannot stretch XLFD fonts. When loading XLFD fonts on X11, the stretch factor is matched against a predefined set of values for the SETWIDTH_NAME field of the XLFD.
.PP
See also stretch() and QFont::StyleStrategy.
.SH "void QFont::setStrikeOut ( bool enable )"
If \fIenable\fR is TRUE, sets strikeout on; otherwise sets strikeout off.