QFont Class ReferenceThe QFont class specifies a font used for drawing text. More... #include <qfont.h> Public Members
Static Public Members
Protected Members
Related Functions
Detailed DescriptionThe QFont class specifies a font used for drawing text.
When you create a QFont object you specify various attributes that you want the font to have. Qt will use the font with the specified attributes, or if no matching font exists, Qt 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. 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. Create QFonts like this: QFont serifFont( "Times", 10, Bold ); QFont sansFont( "Helvetica [Cronyx]", 12 ); 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 after 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. 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(). 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). 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. 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. Under the X Window System you can set a font using its system specific name with setRawName(). 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. Once a font is found, the remaining attributes are matched in order of
priority:
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.
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.
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.
Examples:
To determine the attributes of the font actually used in the window
system, use a QFontInfo object, e.g.
To find out font metrics use a QFontMetrics object, e.g.
For more general information on fonts, see the
comp.fonts FAQ.
Information on encodings can be found from
Roman Czyborra's page.
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.
This enum represents Unicode allocated
scripts. For exhaustive coverage see The
Unicode Standard Version 3.0. The following scripts are
supported:
Modern European alphabetic scripts (left to right):
Middle Eastern scripts (right to left):
South and Southeast Asian scripts (left to right with few historical exceptions):
East Asian scripts (traditionally top-down, right to left, modern
often horizontal left to right):
Additional scripts that do not fit well into the script categories above:
Symbols:
Predefined stretch values that follow the CSS naming convention.
See also setStretch() and stretch().
Style hints are used by the font
matching algorithm to find an appropriate default family
if a selected font family is not available.
The style strategy tells the font
matching algorithm what type of fonts should be used to
find an appropriate default family.
The following strategies are available:
Any of these may be OR-ed with one of these flags:
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.
This enum contains the predefined font weights:
See also QApplication::setFont() and QApplication::font().
If pointSize is <= 0 it is set to 1.
The family name may optionally also include a foundry name,
e.g. "Helvetica [Cronyx]". (The Qt 2.x syntax, i.e.
"Cronyx-Helvetica", is also supported.) If the family 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.
See also Weight, setFamily(), setPointSize(), setWeight(), setItalic(), setStyleHint(), and QApplication::font().
Returns TRUE if weight() is a value greater than QFont::Normal; otherwise returns FALSE.
See also weight(), setBold(), and QFontInfo::bold().
Example: chart/optionsform.cpp.
The returned value will be -1 if the font size has been specified
in pixels.
See also pointSize() and pointSizeFloat().
See also StyleHint, styleHint(), and setStyleHint().
Please use QApplication::font() instead.
See also QFontInfo.
See also setFamily(), substitutes(), and substitute().
Examples: chart/optionsform.cpp and fonts/simple-qfont-demo/viewer.cpp.
See also setFixedPitch() and QFontInfo::fixedPitch().
See also toString() and operator>>().
See also insertSubstitutions(), removeSubstitution(), substitutions(), substitute(), and substitutes().
Example: fonts/simple-qfont-demo/viewer.cpp.
See also insertSubstitution(), removeSubstitution(), substitutions(), and substitute().
Example: fonts/simple-qfont-demo/viewer.cpp.
See also operator=() and operator==().
See also setItalic().
Example: chart/optionsform.cpp.
See also QMap.
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.
See also lastResortFont().
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 Qt 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.
See also lastResortFamily() and rawName().
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.
See also operator==().
Two QFonts are considered equal if their font attributes are
equal. If rawMode() is enabled for both fonts, only the family
fields are compared.
See also operator!=() and isCopyOf().
See also setOverline().
See also setPixelSize(), pointSize(), QFontInfo::pointSize(), and QFontInfo::pixelSize().
See also setPointSize(), deciPointSize(), and pointSizeFloat().
Examples: chart/optionsform.cpp and fonts/simple-qfont-demo/viewer.cpp.
See also pointSize(), setPointSizeFloat(), pixelSize(), QFontInfo::pointSize(), and QFontInfo::pixelSize().
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 all parameter can save a significant amount of
disk space.
Note that this function is only applicable on Qt/Embedded.
See also setRawMode() and rawName().
On Windows, this is usually just the family name of a TrueType
font.
On X11, it is an XLFD (X Logical Font Description). When Qt is
build with Xft support on X11, the return value can be an Xft
pattern or an XLFD.
Using the return value of this function is usually not portable.
See also setRawName().
See also insertSubstitutions(), insertSubstitution(), substitutions(), and substitute().
If enable is true sets the font's weight to QFont::Bold; otherwise sets the weight to QFont::Normal.
For finer boldness control use setWeight().
See also bold() and setWeight().
Examples: menu/menu.cpp and themes/metal.cpp.
Please use QApplication::setFont() instead.
The family name may optionally also include a foundry name,
e.g. "Helvetica [Cronyx]". (The Qt 2.x syntax, i.e.
"Cronyx-Helvetica", is also supported.) If the family 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.
See also family(), setStyleHint(), and QFontInfo.
See also fixedPitch() and QFontInfo.
See also italic() and QFontInfo.
Examples: fileiconview/qfileiconview.cpp, fonts/simple-qfont-demo/viewer.cpp, and themes/metal.cpp.
See also overline() and QFontInfo.
Using this function makes the font device dependent. Use
setPointSize() or setPointSizeFloat() to set the size of the font
in a device independent manner.
See also pixelSize().
Example: qwerty/qwerty.cpp.
Sets the logical pixel height of font characters when shown on
the screen to pixelSize.
See also pointSize() and setPointSizeFloat().
Example: fonts/simple-qfont-demo/viewer.cpp.
See also pointSizeFloat(), setPointSize(), and setPixelSize().
If raw mode is enabled, Qt 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,
Qt will use the first font returned by X. QFontInfo cannot 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).
Warning: Do not use raw mode unless you really, really need it! In
most (if not all) cases, setRawName() is a much better choice.
See also rawMode() and setRawName().
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.
If Qt's internal font database cannot resolve the raw name, the
font becomes a raw font with name as its family.
Note that the present implementation does not handle wildcards in
XLFDs well, and that font aliases (file fonts.alias in the font
directory on X11) are not supported.
See also rawName(), setRawMode(), and setFamily().
The stretch factor changes the width of all characters in the font
by factor percent. For example, setting factor 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.
The stretch factor is only applied to outline fonts. The stretch
factor is ignored for bitmap fonts.
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.
See also stretch() and QFont::StyleStrategy.
See also strikeOut() and QFontInfo.
If these aren't set explicitly the style hint will default to
AnyStyle and the style strategy to PreferDefault.
Qt does not support style hints on X11 since this information
is not provided by the window system.
See also StyleHint, styleHint(), StyleStrategy, styleStrategy(), and QFontInfo.
Examples: desktop/desktop.cpp and fonts/simple-qfont-demo/viewer.cpp.
See also QFont::StyleStrategy.
See also underline() and QFontInfo.
Examples: fonts/simple-qfont-demo/viewer.cpp and menu/menu.cpp.
See also weight() and QFontInfo.
Example: fonts/simple-qfont-demo/viewer.cpp.
See also setStretch().
See also setStrikeOut().
The style hint affects the font
matching algorithm. See QFont::StyleHint for the list
of strategies.
See also setStyleHint(), QFont::StyleStrategy, and QFontInfo::styleHint().
The style strategy affects the font
matching algorithm. See QFont::StyleStrategy for the
list of strategies.
See also setStyleHint() and QFont::StyleHint.
If there is no substitution for familyName, familyName is
returned.
To obtain a list of substitutions use substitutes().
See also setFamily(), insertSubstitutions(), insertSubstitution(), and removeSubstitution().
If there is no substitution for familyName, an empty list is
returned.
See also substitute(), insertSubstitutions(), insertSubstitution(), and removeSubstitution().
Example: fonts/simple-qfont-demo/viewer.cpp.
See also insertSubstitution(), removeSubstitution(), and substitute().
See also fromString() and operator<<().
See also setUnderline().
See also setWeight(), Weight, and QFontInfo.
Writes the font font to the data stream s. (toString()
writes to a text stream.)
See also Format of the QDataStream operators.
Reads the font font from the data stream s. (fromString()
reads from a text stream.)
See also Format of the QDataStream operators.
This file is part of the Qt toolkit.
Copyright © 1995-2005
Trolltech. All Rights Reserved. |
Publicité
Best OfActualités les plus luesSemaine
Mois
Année
Le Qt Developer Network au hasardCompiler l'add-in Qt de Visual StudioLe Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.
CommunautéRessources
Liens utilesContact
Qt dans le magazine |
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 3.3 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com