QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
#include <qgsfontutils.h>
Static Public Member Functions | |
static void | addRecentFontFamily (const QString &family) |
Adds a font family to the list of recently used font families. More... | |
static QString | asCSS (const QFont &font, double pointToPixelMultiplier=1.0) |
Returns a CSS string representing the specified font as closely as possible. More... | |
static bool | fontFamilyHasStyle (const QString &family, const QString &style) |
Check whether font family on system has specific style. More... | |
static bool | fontFamilyMatchOnSystem (const QString &family, QString *chosen=nullptr, bool *match=nullptr) |
Check whether font family is on system. More... | |
static bool | fontFamilyOnSystem (const QString &family) |
Check whether font family is on system in a quick manner, which does not compare [foundry]. More... | |
static bool | fontMatchOnSystem (const QFont &f) |
Check whether exact font is on system. More... | |
static QFont | fromMimeData (const QMimeData *data, bool *ok=nullptr) |
Attempts to parse the provided mime data as a QFont. More... | |
static QFont | getStandardTestFont (const QString &style="Roman", int pointsize=12) |
Gets standard test font with specific style. More... | |
static bool | loadStandardTestFonts (const QStringList &loadstyles) |
Loads standard test fonts from filesystem or qrc resource. More... | |
static QStringList | recentFontFamilies () |
Returns a list of recently used font families. More... | |
static bool | setFromXmlChildNode (QFont &font, const QDomElement &element, const QString &childNode) |
Sets the properties of a font to match the properties stored in an XML child node. More... | |
static bool | setFromXmlElement (QFont &font, const QDomElement &element) |
Sets the properties of a font to match the properties stored in an XML element. More... | |
static QString | standardTestFontFamily () |
Gets standard test font family. More... | |
static QMimeData * | toMimeData (const QFont &font) |
Returns new mime data representing the specified font settings. More... | |
static QDomElement | toXmlElement (const QFont &font, QDomDocument &document, const QString &elementName) |
Returns a DOM element containing the properties of the font. More... | |
static QString | translateNamedStyle (const QString &namedStyle) |
Returns the localized named style of a font, if such a translation is available. More... | |
static QString | untranslateNamedStyle (const QString &namedStyle) |
Returns the english named style of a font, if possible. More... | |
static bool | updateFontViaStyle (QFont &f, const QString &fontstyle, bool fallback=false) |
Updates font with named style and retain all font properties. More... | |
Definition at line 32 of file qgsfontutils.h.
|
static |
Adds a font family to the list of recently used font families.
Definition at line 521 of file qgsfontutils.cpp.
|
static |
Returns a CSS string representing the specified font as closely as possible.
font | QFont to convert |
pointToPixelMultiplier | scaling factor to apply to convert point sizes to pixel font sizes. The CSS returned by this function will always use pixels for font sizes, so this parameter should be set to a suitable value to convert point sizes to pixels (e.g., taking into account destination DPI) |
Definition at line 461 of file qgsfontutils.cpp.
|
static |
Check whether font family on system has specific style.
family | The family to test |
style | The style to test for |
Definition at line 45 of file qgsfontutils.cpp.
|
static |
Check whether font family is on system.
family | The family to test |
chosen | The actual family (possibly from different foundry) returned by system |
match | Whether the family [foundry] returned by system is a match |
Definition at line 69 of file qgsfontutils.cpp.
|
static |
Check whether font family is on system in a quick manner, which does not compare [foundry].
family | The family to test |
Definition at line 38 of file qgsfontutils.cpp.
|
static |
Check whether exact font is on system.
f | The font to test for match |
Definition at line 32 of file qgsfontutils.cpp.
|
static |
Attempts to parse the provided mime data as a QFont.
If data can be parsed as a QFont, ok will be set to true
.
Definition at line 380 of file qgsfontutils.cpp.
|
static |
Gets standard test font with specific style.
style | Style to load, e.g. Roman, Oblique, Bold, Bold Oblique |
pointsize | Font point size to set |
Definition at line 288 of file qgsfontutils.cpp.
|
static |
Loads standard test fonts from filesystem or qrc resource.
loadstyles | List of styles to load, e.g. All, Roman, Oblique, Bold, Bold Oblique |
Definition at line 226 of file qgsfontutils.cpp.
|
static |
Returns a list of recently used font families.
Definition at line 543 of file qgsfontutils.cpp.
|
static |
Sets the properties of a font to match the properties stored in an XML child node.
Calling this will overwrite the current properties of the font.
font | font to update |
element | DOM element |
childNode | name of child node |
true
if child node exists and properties were successfully read from node Definition at line 349 of file qgsfontutils.cpp.
|
static |
Sets the properties of a font to match the properties stored in an XML element.
Calling this will overwrite the current properties of the font.
font | font to update |
element | DOM element |
true
if properties were successfully read from element Definition at line 333 of file qgsfontutils.cpp.
|
static |
|
static |
Returns new mime data representing the specified font settings.
Caller takes responsibility for deleting the returned object.
Definition at line 368 of file qgsfontutils.cpp.
|
static |
Returns a DOM element containing the properties of the font.
font | font |
document | DOM document |
elementName | name for DOM element |
Definition at line 325 of file qgsfontutils.cpp.
|
static |
Returns the localized named style of a font, if such a translation is available.
namedStyle | a named style, i.e. "Bold", "Italic", etc |
Definition at line 433 of file qgsfontutils.cpp.
|
static |
Returns the english named style of a font, if possible.
namedStyle | a localized named style, i.e. "Fett", "Kursiv", etc |
Definition at line 443 of file qgsfontutils.cpp.
|
static |
Updates font with named style and retain all font properties.
f | The font to update |
fontstyle | The style to try and switch the font to |
fallback | If no matching fontstyle found for font, assign most similar or first style found to font |
true
if the requested style matches font's current style) Definition at line 122 of file qgsfontutils.cpp.