QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
qgsfontutils.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsfontutils.h
3  ---------------------
4  begin : June 5, 2013
5  copyright : (C) 2013 by Larry Shaffer
6  email : larrys at dakotacarto dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSFONTUTILS_H
17 #define QGSFONTUTILS_H
18 
19 #include <QFont>
20 #include <QString>
21 #include <QDomElement>
22 
23 #include "qgis_core.h"
24 #include "qgis_sip.h"
25 
26 class QMimeData;
27 
32 class CORE_EXPORT QgsFontUtils
33 {
34  public:
35 
40  static bool fontMatchOnSystem( const QFont &f );
41 
48  static bool fontFamilyOnSystem( const QString &family );
49 
57  static bool fontFamilyHasStyle( const QString &family, const QString &style );
58 
70  static QString resolveFontStyleName( const QFont &font );
71 
79  static bool fontFamilyMatchOnSystem( const QString &family, QString *chosen = nullptr, bool *match = nullptr );
80 
89  static bool updateFontViaStyle( QFont &f, const QString &fontstyle, bool fallback = false );
90 
95  static QString standardTestFontFamily();
96 
104  static bool loadStandardTestFonts( const QStringList &loadstyles );
105 
113  static QFont getStandardTestFont( const QString &style = "Roman", int pointsize = 12 );
114 
124  static QDomElement toXmlElement( const QFont &font, QDomDocument &document, const QString &elementName );
125 
136  static bool setFromXmlElement( QFont &font, const QDomElement &element );
137 
149  static bool setFromXmlChildNode( QFont &font, const QDomElement &element, const QString &childNode );
150 
157  static QMimeData *toMimeData( const QFont &font ) SIP_FACTORY;
158 
165  static QFont fromMimeData( const QMimeData *data, bool *ok SIP_OUT = nullptr );
166 
174  static QString translateNamedStyle( const QString &namedStyle );
175 
183  static QString untranslateNamedStyle( const QString &namedStyle );
184 
195  static QString asCSS( const QFont &font, double pointToPixelMultiplier = 1.0 );
196 
202  static void addRecentFontFamily( const QString &family );
203 
209  static QStringList recentFontFamilies();
210 };
211 
212 // clazy:excludeall=qstring-allocations
213 
214 #endif // QGSFONTUTILS_H
SIP_OUT
#define SIP_OUT
Definition: qgis_sip.h:58
SIP_FACTORY
#define SIP_FACTORY
Definition: qgis_sip.h:76
QgsFontUtils
Definition: qgsfontutils.h:32
qgis_sip.h