1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsfontutils.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsFontUtils
{
%Docstring(signature="appended")
Contains utility functions for working with fonts.
%End
%TypeHeaderCode
#include "qgsfontutils.h"
%End
public:
static bool fontMatchOnSystem( const QFont &f );
%Docstring
Check whether exact font is on system
:param f: The font to test for match
%End
static bool fontFamilyOnSystem( const QString &family );
%Docstring
Check whether font family is on system in a quick manner, which does not
compare [foundry]
:param family: The family to test
:return: Whether family was found on system
.. note::
This is good for use in loops of large lists, e.g. registering many features for labeling
%End
static bool fontFamilyHasStyle( const QString &family, const QString &style );
%Docstring
Check whether font family on system has specific style
:param family: The family to test
:param style: The style to test for
:return: Whether family has style
%End
static QString resolveFontStyleName( const QFont &font );
%Docstring
Attempts to resolve the style name corresponding to the specified
``font`` object.
If a font has been modified by calling QFont.setBold or QFont.setItalic,
then its QFont.styleName may return an empty string. This method
attempts to determine the correct style name which corresponds to the
font's bold and italic settings.
Returns an empty string if a matching style name could not be found.
.. versionadded:: 3.26
%End
static bool fontFamilyMatchOnSystem( const QString &family, QString *chosen = 0, bool *match = 0 );
%Docstring
Check whether font family is on system
:param family: The family to test
:param chosen: The actual family (possibly from different foundry)
returned by system
:param match: Whether the family [foundry] returned by system is a match
:return: Whether family was found on system
%End
static bool updateFontViaStyle( QFont &f, const QString &fontstyle, bool fallback = false );
%Docstring
Updates font with named style and retain all font properties
:param f: The font to update
:param fontstyle: The style to try and switch the font to
:param fallback: If no matching fontstyle found for font, assign most
similar or first style found to font
:return: Whether the font was updated (also returns ``True`` if the
requested style matches font's current style)
.. note::
This is a more featured replacement for a Qt 4.8+ function: void QFont.setStyleName ( const QString & styleName )
%End
static QString standardTestFontFamily();
%Docstring
Gets standard test font family
%End
static bool loadStandardTestFonts( const QStringList &loadstyles );
%Docstring
Loads standard test fonts from filesystem or qrc resource
:param loadstyles: List of styles to load, e.g. All, Roman, Oblique,
Bold, Bold Oblique
:return: Whether any font was loaded
.. note::
Done by default on debug app/server startup to ensure fonts available for unit tests (Roman and Bold)
%End
static QFont getStandardTestFont( const QString &style = "Roman", int pointsize = 12 );
%Docstring
Gets standard test font with specific style
:param style: Style to load, e.g. Roman, Oblique, Bold, Bold Oblique
:param pointsize: Font point size to set
:return: QFont
%End
static QDomElement toXmlElement( const QFont &font, QDomDocument &document, const QString &elementName );
%Docstring
Returns a DOM element containing the properties of the font.
:param font: font
:param document: DOM document
:param elementName: name for DOM element
:return: DOM element containing font settings
.. seealso:: :py:func:`setFromXmlElement`
%End
static bool setFromXmlElement( QFont &font, const QDomElement &element );
%Docstring
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.
:param font: font to update
:param element: DOM element
:return: ``True`` if properties were successfully read from element
.. seealso:: :py:func:`toXmlElement`
.. seealso:: :py:func:`setFromXmlChildNode`
%End
static bool setFromXmlChildNode( QFont &font, const QDomElement &element, const QString &childNode );
%Docstring
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.
:param font: font to update
:param element: DOM element
:param childNode: name of child node
:return: ``True`` if child node exists and properties were successfully
read from node
.. seealso:: :py:func:`setFromXmlElement`
.. seealso:: :py:func:`toXmlElement`
%End
static QMimeData *toMimeData( const QFont &font ) /Factory/;
%Docstring
Returns new mime data representing the specified ``font`` settings.
Caller takes responsibility for deleting the returned object.
.. seealso:: :py:func:`fromMimeData`
%End
static QFont fromMimeData( const QMimeData *data, bool *ok /Out/ = 0 );
%Docstring
Attempts to parse the provided mime ``data`` as a QFont. If data can be
parsed as a QFont, ``ok`` will be set to ``True``.
.. seealso:: :py:func:`toMimeData`
%End
static QString translateNamedStyle( const QString &namedStyle );
%Docstring
Returns the localized named style of a font, if such a translation is
available.
:param namedStyle: a named style, i.e. "Bold", "Italic", etc
:return: The localized named style
.. seealso:: :py:func:`untranslateNamedStyle`
%End
static QString untranslateNamedStyle( const QString &namedStyle );
%Docstring
Returns the english named style of a font, if possible.
:param namedStyle: a localized named style, i.e. "Fett", "Kursiv", etc
:return: The english named style
.. seealso:: :py:func:`translateNamedStyle`
%End
static QString asCSS( const QFont &font, double pointToPixelMultiplier = 1.0 );
%Docstring
Returns a CSS string representing the specified font as closely as
possible.
:param font: QFont to convert
:param 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)
:return: partial CSS string, e.g., "font-family: Comic Sans; font-size:
12px;"
%End
static void addRecentFontFamily( const QString &family );
%Docstring
Adds a font ``family`` to the list of recently used font families.
.. seealso:: :py:func:`recentFontFamilies`
%End
static QStringList recentFontFamilies();
%Docstring
Returns a list of recently used font families.
.. seealso:: :py:func:`addRecentFontFamily`
%End
static void setFontFamily( QFont &font, const QString &family );
%Docstring
Sets the ``family`` for a ``font`` object.
Applies some workarounds for specific font quirks.
.. versionadded:: 3.34
%End
static QFont createFont( const QString &family, int pointSize = -1, int weight = -1, bool italic = false );
%Docstring
Creates a font with the specified ``family``.
Applies some workarounds for specific font quirks.
.. versionadded:: 3.34
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsfontutils.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|