qfontdatabase.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QFONTDATABASE_H
  40. #define QFONTDATABASE_H
  41. #include <QtGui/qwindowdefs.h>
  42. #include <QtCore/qstring.h>
  43. #include <QtGui/qfont.h>
  44. QT_BEGIN_NAMESPACE
  45. class QStringList;
  46. template <class T> class QList;
  47. struct QFontDef;
  48. class QFontEngine;
  49. class QFontDatabasePrivate;
  50. class Q_GUI_EXPORT QFontDatabase
  51. {
  52. Q_GADGET
  53. public:
  54. // do not re-order or delete entries from this enum without updating the
  55. // QPF2 format and makeqpf!!
  56. enum WritingSystem {
  57. Any,
  58. Latin,
  59. Greek,
  60. Cyrillic,
  61. Armenian,
  62. Hebrew,
  63. Arabic,
  64. Syriac,
  65. Thaana,
  66. Devanagari,
  67. Bengali,
  68. Gurmukhi,
  69. Gujarati,
  70. Oriya,
  71. Tamil,
  72. Telugu,
  73. Kannada,
  74. Malayalam,
  75. Sinhala,
  76. Thai,
  77. Lao,
  78. Tibetan,
  79. Myanmar,
  80. Georgian,
  81. Khmer,
  82. SimplifiedChinese,
  83. TraditionalChinese,
  84. Japanese,
  85. Korean,
  86. Vietnamese,
  87. Symbol,
  88. Other = Symbol,
  89. Ogham,
  90. Runic,
  91. Nko,
  92. WritingSystemsCount
  93. };
  94. Q_ENUM(WritingSystem)
  95. enum SystemFont {
  96. GeneralFont,
  97. FixedFont,
  98. TitleFont,
  99. SmallestReadableFont
  100. };
  101. Q_ENUM(SystemFont)
  102. static QList<int> standardSizes();
  103. QFontDatabase();
  104. QList<WritingSystem> writingSystems() const;
  105. QList<WritingSystem> writingSystems(const QString &family) const;
  106. QStringList families(WritingSystem writingSystem = Any) const;
  107. QStringList styles(const QString &family) const;
  108. QList<int> pointSizes(const QString &family, const QString &style = QString());
  109. QList<int> smoothSizes(const QString &family, const QString &style);
  110. QString styleString(const QFont &font);
  111. QString styleString(const QFontInfo &fontInfo);
  112. QFont font(const QString &family, const QString &style, int pointSize) const;
  113. bool isBitmapScalable(const QString &family, const QString &style = QString()) const;
  114. bool isSmoothlyScalable(const QString &family, const QString &style = QString()) const;
  115. bool isScalable(const QString &family, const QString &style = QString()) const;
  116. bool isFixedPitch(const QString &family, const QString &style = QString()) const;
  117. bool italic(const QString &family, const QString &style) const;
  118. bool bold(const QString &family, const QString &style) const;
  119. int weight(const QString &family, const QString &style) const;
  120. bool hasFamily(const QString &family) const;
  121. bool isPrivateFamily(const QString &family) const;
  122. static QString writingSystemName(WritingSystem writingSystem);
  123. static QString writingSystemSample(WritingSystem writingSystem);
  124. static int addApplicationFont(const QString &fileName);
  125. static int addApplicationFontFromData(const QByteArray &fontData);
  126. static QStringList applicationFontFamilies(int id);
  127. static bool removeApplicationFont(int id);
  128. static bool removeAllApplicationFonts();
  129. #if QT_DEPRECATED_SINCE(5, 2)
  130. QT_DEPRECATED static bool supportsThreadedFontRendering();
  131. #endif
  132. static QFont systemFont(SystemFont type);
  133. private:
  134. static void createDatabase();
  135. static void parseFontName(const QString &name, QString &foundry, QString &family);
  136. static QString resolveFontFamilyAlias(const QString &family);
  137. static QFontEngine *findFont(const QFontDef &request, int script);
  138. static void load(const QFontPrivate *d, int script);
  139. friend struct QFontDef;
  140. friend class QFontPrivate;
  141. friend class QFontDialog;
  142. friend class QFontDialogPrivate;
  143. friend class QFontEngineMulti;
  144. friend class QRawFont;
  145. QFontDatabasePrivate *d;
  146. };
  147. QT_END_NAMESPACE
  148. #endif // QFONTDATABASE_H