CopperSpice API
1.9.2
|
Specifies a font used for drawing text. More...
Public Types | |
enum | Capitalization |
enum | HintingPreference |
enum | SpacingType |
enum | Stretch |
enum | Style |
enum | StyleHint |
enum | StyleStrategy |
enum | Weight |
Public Methods | |
QFont () | |
QFont (const QFont &font, QPaintDevice *pd) | |
QFont (const QFont &other) | |
QFont (const QString &family, int pointSize=-1, int weight=-1, bool italic=false) | |
~QFont () | |
bool | bold () const |
Capitalization | capitalization () const |
QString | defaultFamily () const |
bool | exactMatch () const |
QString | family () const |
bool | fixedPitch () const |
bool | fromString (const QString &description) |
HintingPreference | hintingPreference () const |
bool | isCopyOf (const QFont &font) const |
bool | italic () const |
bool | kerning () const |
QString | key () const |
QString | lastResortFamily () const |
QString | lastResortFont () const |
qreal | letterSpacing () const |
SpacingType | letterSpacingType () const |
operator QVariant () const | |
bool | operator!= (const QFont &other) const |
bool | operator< (const QFont &other) const |
QFont & | operator= (const QFont &other) |
QFont & | operator= (QFont &&other) |
bool | operator== (const QFont &other) const |
bool | overline () const |
int | pixelSize () const |
int | pointSize () const |
qreal | pointSizeF () const |
QFont | resolve (const QFont &other) const |
void | setBold (bool bold) |
void | setCapitalization (Capitalization caps) |
void | setFamily (const QString &family) |
void | setFixedPitch (bool fixedPitch) |
void | setHintingPreference (HintingPreference hintingPreference) |
void | setItalic (bool italic) |
void | setKerning (bool kerning) |
void | setLetterSpacing (SpacingType type, qreal spacing) |
void | setOverline (bool overline) |
void | setPixelSize (int size) |
void | setPointSize (int size) |
void | setPointSizeF (qreal size) |
void | setStretch (int factor) |
void | setStrikeOut (bool strikeout) |
void | setStyle (Style style) |
void | setStyleHint (StyleHint hint, StyleStrategy strategy=PreferDefault) |
void | setStyleName (const QString &styleName) |
void | setStyleStrategy (StyleStrategy strategy) |
void | setUnderline (bool underline) |
void | setWeight (int weight) |
void | setWordSpacing (qreal spacing) |
int | stretch () const |
bool | strikeOut () const |
Style | style () const |
StyleHint | styleHint () const |
QString | styleName () const |
StyleStrategy | styleStrategy () const |
void | swap (QFont &other) |
QString | toString () const |
bool | underline () const |
int | weight () const |
qreal | wordSpacing () const |
Static Public Methods | |
static void | insertSubstitution (const QString &familyName, const QString &newName) |
static void | insertSubstitutions (const QString &familyName, const QStringList &newNameList) |
static void | removeSubstitutions (const QString &familyName) |
static QString | substitute (const QString &familyName) |
static QStringList | substitutes (const QString &familyName) |
static QStringList | substitutions () |
Friends | |
QDataStream & | operator<< (QDataStream &stream, const QFont &font) |
QDataStream & | operator>> (QDataStream &stream, QFont &font) |
class | QApplication |
class | QFontInfo |
class | QFontMetrics |
class | QFontMetricsF |
class | QOpenGLContext |
class | QPainter |
class | QPainterPath |
class | QTextLayout |
class | QTextLine |
class | QWidget |
The QFont class specifies a font used for drawing text. When creating a QFont object you can specify various attributes. If no matching font exists, CopperSpice will use the closest matching installed font.
The attributes of the font are retrievable from a QFontInfo object. If the window system provides an exact match then exactMatch() returns true. Use QFontMetrics to get measurements. For example the pixel length of a string can be retrieved using QFontMetrics::width().
A QApplication instance must exist before a QFont can be used. The application's default font can be set using QApplication::setFont(). If the chosen font does not include all the characters, QFont will try to find these characters in the nearest equivalent font. When a QPainter draws a character using a font, QFont will report whether or not it has the character. If it does not then QPainter will draw an unfilled square.
The following example shows how to create a QFont object.
The attributes set in the constructor can also be set later using setFamily(), setPointSize(), setPointSizeFloat(), setWeight(), or setItalic(). The remaining attributes must be set after construction of a QFont. For example, 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" methods such as family() and pointSize() will return the values which 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 can not be found. You can provide substitutions for font family names using insertSubstitution() and insertSubstitutions(). Substitutions can be removed with removeSubstitutions(). 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(), Using setPointSize() has a similar effect and provides device independence.
The font matching algorithm used in this class varies by platform and 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.
The font matching algorithm works as follows.
In Windows a request for the "Courier" font is automatically changed to "Courier New". This is an improved version of Courier which allows for smooth scaling. The older "Courier" bitmap font can be selected by setting the PreferBitmap style strategy (see setStyleStrategy()).
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 does not 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.
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. The font f in the above example will be set to "Helvetica [Cronyx]". To determine the attributes of the font actually used in the window system, use a QFontInfo object.
To find out font metrics use a QFontMetrics object.
Rendering option for text this font applies to.
Constant | Value | Description |
---|---|---|
QFont::MixedCase | 0 | This is the normal text rendering option where no capitalization change is applied. |
QFont::AllUppercase | 1 | Alters the text to be rendered in all uppercase type. |
QFont::AllLowercase | 2 | Alters the text to be rendered in all lowercase type. |
QFont::SmallCaps | 3 | Alters the text to be rendered in small-caps type. |
QFont::Capitalize | 4 | This alters the text to be rendered with the first character of each word as an uppercase character. |
This enum describes the different levels of hinting that can be applied to glyphs to improve legibility on displays where it might be warranted by the density of pixels.
Constant | Value | Description |
---|---|---|
QFont::PreferDefaultHinting | 0 | Use the default hinting level for the target platform. |
QFont::PreferNoHinting | 1 | If possible, render text without hinting the outlines of the glyphs. The text layout will be typographically accurate and scalable, using the same metrics as are used e.g. when printing. |
QFont::PreferVerticalHinting | 2 | If possible, render text with no horizontal hinting, but align glyphs to the pixel grid in the vertical direction. The text will appear crisper on displays where the density is too low to give an accurate rendering of the glyphs. But since the horizontal metrics of the glyphs are unhinted, the text's layout will be scalable to higher density devices (such as printers) without impacting details such as line breaks. |
QFont::PreferFullHinting | 3 | If possible, render text with hinting in both horizontal and vertical directions. The text will be altered to optimize legibility on the target device, but since the metrics will depend on the target size of the text, the positions of glyphs, line breaks, and other typographical detail will not scale, meaning that a text layout may look different on devices with different pixel densities. |
This enum only describes a preference, as the full range of hinting levels are not supported on all of the CopperSpice supported platforms. The following table details the effect of a given hinting preference on a selected set of target platforms.
Platform | PreferDefaultHinting | PreferNoHinting | PreferVerticalHinting | PreferFullHinting |
---|---|---|---|---|
Windows with DirectWrite Enabled | Full hinting | Vertical hinting | Vertical hinting | Full hinting |
FreeType | Operating System setting | No hinting | Vertical hinting (light) | Full hinting |
Cocoa on Mac OS X | No hinting | No hinting | No hinting | No hinting |
enum QFont::SpacingType |
This enum specifies how the spacing between characters is interpreted.
Constant | Value | Description |
---|---|---|
QFont::PercentageSpacing | 0 | A value of 100 will keep the spacing unchanged; a value of 200 will enlarge the spacing after a character by the width of the character itself. |
QFont::AbsoluteSpacing | 1 | A positive value increases the letter spacing by the corresponding pixels; a negative value decreases the spacing. |
enum QFont::Stretch |
Predefined stretch values that follow the CSS naming convention. The higher the value, the more stretched the text is.
Constant | Value | Description |
---|---|---|
QFont::UltraCondensed | 50 | 50 |
QFont::ExtraCondensed | 62 | 62 |
QFont::Condensed | 75 | 75 |
QFont::SemiCondensed | 87 | 87 |
QFont::Unstretched | 100 | 100 |
QFont::SemiExpanded | 112 | 112 |
QFont::Expanded | 125 | 125 |
QFont::ExtraExpanded | 150 | 150 |
QFont::UltraExpanded | 200 | 200 |
enum QFont::Style |
This enum describes the different styles of glyphs that are used to display text.
Constant | Value | Description |
---|---|---|
QFont::StyleNormal | 0 | Normal glyphs used in unstyled text. |
QFont::StyleItalic | 1 | Italic glyphs that are specifically designed for the purpose of representing italicized text. |
QFont::StyleOblique | 2 | Glyphs with an italic appearance that are typically based on the unstyled glyphs, but are not fine-tuned for the purpose of representing italicized text. |
enum 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.
Constant | Value | Description |
---|---|---|
QFont::Helvetica | 0 | Synonym for SansSerif . |
QFont::SansSerif | Helvetica | Font matcher prefer sans serif fonts. |
QFont::Times | 1 | Synonym for Serif . |
QFont::Serif | Times | Font matcher prefers serif fonts. |
QFont::Courier | 2 | Synonym for TypeWriter . |
QFont::TypeWriter | Courier | Font matcher prefers fixed pitch fonts. |
QFont::OldEnglish | 3 | Font matcher prefers decorative fonts. |
QFont::Decorative | OldEnglish | Synonym for OldEnglish . |
QFont::System | 4 | Font matcher prefers system fonts. |
QFont::AnyStyle | 5 | Leaves the font matching algorithm to choose the family. This is the default. |
QFont::Cursive | 6 | Font matcher prefers fonts that map to the CSS generic font-family 'cursive'. |
QFont::Monospace | 7 | Font matcher prefers fonts that map to the CSS generic font-family 'monospace'. |
QFont::Fantasy | 8 | Font matcher prefers fonts that map to the CSS generic font-family 'fantasy'. |
enum QFont::StyleStrategy |
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.
Constant | Value | Description |
---|---|---|
QFont::PreferDefault | 0x0001 | the default style strategy. It does not prefer any type of font. |
QFont::PreferBitmap | 0x0002 | Prefers bitmap fonts (as opposed to outline fonts). |
QFont::PreferDevice | 0x0004 | Prefers device fonts. |
QFont::PreferOutline | 0x0008 | Pprefers outline fonts (as opposed to bitmap fonts). |
QFont::ForceOutline | 0x0010 | Forces the use of outline fonts. |
QFont::NoAntialias | 0x0100 | Do not antialias the fonts. |
QFont::PreferAntialias | 0x0080 | Antialias if possible. |
QFont::OpenGLCompatible | 0x0200 | Forces the use of OpenGL compatible fonts. |
QFont::NoFontMerging | 0x8000 | If the font selected for a certain writing system does not contain a character requested to draw, then CopperSpice automatically chooses a similar looking font that contains the character. The NoFontMerging flag disables this feature. Enabling this flag will not prevent CopperSpice from automatically picking a suitable font when the selected font does not support the writing system of the text. |
Any of these may be OR-ed with one of these flags.
Constant | Value | Description |
---|---|---|
QFont::PreferMatch | 0x0020 | Prefer an exact match. The font matcher will try to use the exact font size that has been specified. |
QFont::PreferQuality | 0x0040 | Prefer the best quality font. The font matcher will use the nearest standard point size that the font supports. |
QFont::ForceIntegerMetrics | 0x0400 | Forces the use of integer values in font engines that support fractional font metrics. |
enum QFont::Weight |
CopperSpice 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:
Constant | Value | Description |
---|---|---|
QFont::Thin | 0 | 0 |
QFont::ExtraLight | 12 | 12 |
QFont::Light | 25 | 25 |
QFont::Normal | 50 | 50 |
QFont::Medium | 57 | 57 |
QFont::DemiBold | 63 | 63 |
QFont::Bold | 75 | 75 |
QFont::ExtraBold | 81 | 81 |
QFont::Black | 87 | 87 |
QFont::QFont | ( | ) |
Constructs a font object that uses the application's default font.
QFont::QFont | ( | const QString & | family, |
int | pointSize = -1 , |
||
int | weight = -1 , |
||
bool | italic = false |
||
) |
Constructs a font object with the specified family, pointSize, weight and italic settings. If pointSize is zero or negative, the point size of the font is set to a system-dependent default value. Generally this is 12 points.
The family name may optionally also include a foundry name. If the family is available from more than one foundry and the foundry is not specified, an arbitrary foundry is chosen. If the family is not available a family will be set using the font matching algorithm.
QFont::QFont | ( | const QFont & | font, |
QPaintDevice * | pd | ||
) |
Constructs a font from font for use on the paint device pd.
QFont::QFont | ( | const QFont & | other | ) |
Copy constructs a new QFont from other.
QFont::~QFont | ( | ) |
Destroys the font object and frees all allocated resources.
|
inline |
Returns true if weight() is a value greater than QFont::Normal, otherwise returns false.
Capitalization QFont::capitalization | ( | ) | const |
Returns the current capitalization type of the font.
QString QFont::defaultFamily | ( | ) | const |
Returns the family name that corresponds to the current style hint.
bool QFont::exactMatch | ( | ) | const |
Returns true if a window system font exactly matching the settings of this font is available.
QString QFont::family | ( | ) | const |
Returns the requested font family name, i.e. the name set in the constructor or the last setFont() call.
bool QFont::fixedPitch | ( | ) | const |
Returns true if fixed pitch has been set, otherwise returns false.
bool QFont::fromString | ( | const QString & | description | ) |
Sets this font to match the given description. The description is a comma separated list of the font attributes as returned by toString().
HintingPreference QFont::hintingPreference | ( | ) | const |
Returns the currently preferred hinting level for glyphs rendered with this font.
Inserts newName into the substitution table for the family familyName.
|
static |
Inserts the list of families newNameList into the substitution list for familyName.
bool QFont::isCopyOf | ( | const QFont & | font | ) | const |
Returns true if the current QFont and font are copies of each other. For example, one of them was created as a copy of the other and neither has been modified since. This is much stricter than equality.
|
inline |
Returns true if the style() of the font is not QFont::StyleNormal
bool QFont::kerning | ( | ) | const |
Returns true if kerning should be used when drawing text with this font.
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.
QString QFont::lastResortFamily | ( | ) | const |
Returns the "last resort" font family name. The current implementation tries a wide variety of common fonts, returning the first one it finds. It is possible that no family is found in which case an empty string is returned.
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".
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 method will always return a string containing something. It is theoretically possible that there really is not a lastResortFont() in which case your application will abort with an error message.
qreal QFont::letterSpacing | ( | ) | const |
Returns the letter spacing for the font.
SpacingType QFont::letterSpacingType | ( | ) | const |
Returns the spacing type used for letter spacing.
bool QFont::operator!= | ( | const QFont & | other | ) | const |
Returns true if the current QFont is different from other, otherwise returns false.
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.
bool QFont::operator< | ( | const QFont & | other | ) | const |
Provides an arbitrary comparison of the current QFont and other. All that is guaranteed is that the operator returns false if both fonts are equal and that (f1 < f2) == !(f2 < f1) if the fonts are not equal.
This method is useful in some circumstances, for example if you want to use QFont objects as keys in a QMap.
QFont & QFont::operator= | ( | const QFont & | other | ) |
Copy assigns from other and returns a reference to this object.
|
inline |
Move assigns from other and returns a reference to this object.
bool QFont::operator== | ( | const QFont & | other | ) | const |
Returns true if the current QFont is equal to other, otherwise returns false. Two QFonts are considered equal if their font attributes are equal. If rawMode() is enabled for both fonts, only the family fields are compared.
bool QFont::overline | ( | ) | const |
Returns true if overline has been set, otherwise returns false.
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 setPointSizeF().
int QFont::pointSize | ( | ) | const |
Returns the point size of the font. Returns -1 if the font size was specified in pixels.
qreal QFont::pointSizeF | ( | ) | const |
Returns the point size of the font. Returns -1 if the font size was specified in pixels.
|
static |
Removes all the substitutions for the given familyName.
QFont QFont::resolve | ( | const QFont & | other | ) | const |
Returns a new QFont which has attributes copied from other, which have not been previously set on this font.
|
inline |
If bold is true sets the font's weight to QFont::Bold, otherwise sets the weight to QFont::Normal. For finer boldness control use setWeight().
void QFont::setCapitalization | ( | Capitalization | caps | ) |
Sets the capitalization of the text in this font to caps. A font's capitalization makes the text appear in the selected capitalization mode.
void QFont::setFamily | ( | const QString & | family | ) |
Sets the family name of the font. The name is case insensitive and may include a foundry name.
The given family name may optionally also include a foundry name such as "Helvetica [Cronyx]". If the family is available from more than one foundry and the foundry is not specified, an arbitrary foundry is chosen. If the family is not available a family will be set using the font matching algorithm.
void QFont::setFixedPitch | ( | bool | fixedPitch | ) |
If fixedPitch is true, sets fixed pitch on, otherwise sets fixed pitch off.
void QFont::setHintingPreference | ( | HintingPreference | hintingPreference | ) |
Set the preference for the hinting level of the glyphs to hintingPreference. This is a hint to the underlying font rendering system to use a certain level of hinting, and has varying support across platforms. Refer to the table in the documentation for QFont::HintingPreference for more details.
The default hinting preference is QFont::PreferDefaultHinting.
|
inline |
void QFont::setKerning | ( | bool | kerning | ) |
Enables kerning for this font if kerning is true, otherwise disables it. By default kerning is enabled.
When kerning is enabled, glyph metrics do not add up anymore, even for Latin text. In other words, the assumption that width('a') + width('b') is equal to width("ab") is not necessarily true.
void QFont::setLetterSpacing | ( | SpacingType | type, |
qreal | spacing | ||
) |
Sets the letter spacing for the font to spacing and the type of spacing to type. Letter spacing changes the default spacing between individual letters in the font. The spacing between the letters can be made smaller as well as larger.
void QFont::setOverline | ( | bool | overline | ) |
If overline is true, sets overline on, otherwise sets overline off.
void QFont::setPixelSize | ( | int | size | ) |
Sets the font size to size pixels. Using this method makes the font device dependent. Use setPointSize() or setPointSizeF() to set the size of the font in a device independent manner.
void QFont::setPointSize | ( | int | size | ) |
Sets the point size to size. The point size must be greater than zero.
void QFont::setPointSizeF | ( | qreal | size | ) |
Sets the point size to size. The point size must be greater than zero. The requested precision may not be achieved on all platforms.
void QFont::setStretch | ( | int | factor | ) |
Sets the stretch factor for the font. 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. QFont can not 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.
void QFont::setStrikeOut | ( | bool | strikeout | ) |
If strikeout is true, sets strikeout on, otherwise sets strikeout off.
void QFont::setStyle | ( | Style | style | ) |
void QFont::setStyleHint | ( | StyleHint | hint, |
StyleStrategy | strategy = PreferDefault |
||
) |
Sets the style hint and strategy to hint and strategy, respectively. If these are not set explicitly the style hint will default to AnyStyle
and the style strategy to PreferDefault
.
CopperSpice does not support style hints on X11 since this information is not provided by the window system.
void QFont::setStyleName | ( | const QString & | styleName | ) |
Sets the style name of the font to the given styleName. When set, other style properties like style() and weight() will be ignored for font matching.
void QFont::setStyleStrategy | ( | StyleStrategy | strategy | ) |
Sets the style strategy for the font to strategy.
void QFont::setUnderline | ( | bool | underline | ) |
If underline is true, sets underline on, otherwise sets underline off.
void QFont::setWeight | ( | int | weight | ) |
Sets the weight the font to weight, which should be a value from the QFont::Weight enumeration.
void QFont::setWordSpacing | ( | qreal | spacing | ) |
Sets the word spacing for the font to spacing.
Word spacing changes the default spacing between individual words. A positive value increases the word spacing by a corresponding amount of pixels, while a negative value decreases the inter-word spacing accordingly.
Word spacing will not apply to writing systems, where individual words are not separated by white space.
int QFont::stretch | ( | ) | const |
Returns the stretch factor for the font.
bool QFont::strikeOut | ( | ) | const |
Returns true if strikeout has been set, otherwise returns false.
Style QFont::style | ( | ) | const |
Returns the style of the font.
StyleHint QFont::styleHint | ( | ) | const |
Returns the StyleHint. The style hint affects the font matching algorithm. See QFont::StyleHint for the list of available hints.
QString QFont::styleName | ( | ) | const |
Returns the requested font style name, it will be used to match the font with irregular styles (that can not be normalized in other style properties). It depends on system font support, thus only works for Mac OS X and X11 so far. On Windows irregular styles will be added as separate font families so there is no need for this.
StyleStrategy QFont::styleStrategy | ( | ) | const |
Returns the StyleStrategy. The style strategy affects the font matching algorithm. Refer to QFont::StyleStrategy for the list of available strategies.
Returns the family name which should be used instead of the given familyName. The lookup is case insensitive. If there is no substitution registered then the original value for the given familyName is returned.
To obtain a list of substitutions use substitutes().
|
static |
Returns a list of family names which should be used instead of the given familyName. The lookup is case insensitive. If there is no substitution registered then an empty list is returned.
|
static |
Returns a sorted list of substituted family names.
|
inline |
Swaps the font other with this font. This operation is very fast and never fails.
QString QFont::toString | ( | ) | const |
Returns a description of the font. The description is a comma-separated list of the attributes, perfectly suited for use in QSettings.
bool QFont::underline | ( | ) | const |
Returns true if underline has been set, otherwise returns false.
int QFont::weight | ( | ) | const |
Returns the weight of the font which is one of the enumerated values from QFont::Weight.
qreal QFont::wordSpacing | ( | ) | const |
Returns the word spacing for the font.
|
friend |
Writes the font to the stream and returns a reference to the stream.
Refer to Serializing Data Types for additional information.
|
friend |
Reads the font from the stream and returns a reference to the stream.
Refer to Serializing Data Types for additional information.