qrawfont.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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 QRAWFONT_H
  40. #define QRAWFONT_H
  41. #include <QtCore/qstring.h>
  42. #include <QtCore/qiodevice.h>
  43. #include <QtCore/qglobal.h>
  44. #include <QtCore/qobject.h>
  45. #include <QtCore/qpoint.h>
  46. #include <QtGui/qfont.h>
  47. #include <QtGui/qtransform.h>
  48. #include <QtGui/qfontdatabase.h>
  49. #if !defined(QT_NO_RAWFONT)
  50. QT_BEGIN_NAMESPACE
  51. class QRawFontPrivate;
  52. class Q_GUI_EXPORT QRawFont
  53. {
  54. public:
  55. enum AntialiasingType {
  56. PixelAntialiasing,
  57. SubPixelAntialiasing
  58. };
  59. enum LayoutFlag {
  60. SeparateAdvances = 0,
  61. KernedAdvances = 1,
  62. UseDesignMetrics = 2
  63. };
  64. Q_DECLARE_FLAGS(LayoutFlags, LayoutFlag)
  65. QRawFont();
  66. QRawFont(const QString &fileName,
  67. qreal pixelSize,
  68. QFont::HintingPreference hintingPreference = QFont::PreferDefaultHinting);
  69. QRawFont(const QByteArray &fontData,
  70. qreal pixelSize,
  71. QFont::HintingPreference hintingPreference = QFont::PreferDefaultHinting);
  72. QRawFont(const QRawFont &other);
  73. #ifdef Q_COMPILER_RVALUE_REFS
  74. QRawFont &operator=(QRawFont &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  75. #endif
  76. QRawFont &operator=(const QRawFont &other);
  77. ~QRawFont();
  78. void swap(QRawFont &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  79. bool isValid() const;
  80. bool operator==(const QRawFont &other) const;
  81. inline bool operator!=(const QRawFont &other) const
  82. { return !operator==(other); }
  83. QString familyName() const;
  84. QString styleName() const;
  85. QFont::Style style() const;
  86. int weight() const;
  87. QVector<quint32> glyphIndexesForString(const QString &text) const;
  88. inline QVector<QPointF> advancesForGlyphIndexes(const QVector<quint32> &glyphIndexes) const;
  89. inline QVector<QPointF> advancesForGlyphIndexes(const QVector<quint32> &glyphIndexes, LayoutFlags layoutFlags) const;
  90. bool glyphIndexesForChars(const QChar *chars, int numChars, quint32 *glyphIndexes, int *numGlyphs) const;
  91. bool advancesForGlyphIndexes(const quint32 *glyphIndexes, QPointF *advances, int numGlyphs) const;
  92. bool advancesForGlyphIndexes(const quint32 *glyphIndexes, QPointF *advances, int numGlyphs, LayoutFlags layoutFlags) const;
  93. QImage alphaMapForGlyph(quint32 glyphIndex,
  94. AntialiasingType antialiasingType = SubPixelAntialiasing,
  95. const QTransform &transform = QTransform()) const;
  96. QPainterPath pathForGlyph(quint32 glyphIndex) const;
  97. QRectF boundingRect(quint32 glyphIndex) const;
  98. void setPixelSize(qreal pixelSize);
  99. qreal pixelSize() const;
  100. QFont::HintingPreference hintingPreference() const;
  101. qreal ascent() const;
  102. qreal descent() const;
  103. qreal leading() const;
  104. qreal xHeight() const;
  105. qreal averageCharWidth() const;
  106. qreal maxCharWidth() const;
  107. qreal lineThickness() const;
  108. qreal underlinePosition() const;
  109. qreal unitsPerEm() const;
  110. void loadFromFile(const QString &fileName,
  111. qreal pixelSize,
  112. QFont::HintingPreference hintingPreference);
  113. void loadFromData(const QByteArray &fontData,
  114. qreal pixelSize,
  115. QFont::HintingPreference hintingPreference);
  116. bool supportsCharacter(uint ucs4) const;
  117. bool supportsCharacter(QChar character) const;
  118. QList<QFontDatabase::WritingSystem> supportedWritingSystems() const;
  119. QByteArray fontTable(const char *tagName) const;
  120. static QRawFont fromFont(const QFont &font,
  121. QFontDatabase::WritingSystem writingSystem = QFontDatabase::Any);
  122. private:
  123. friend class QRawFontPrivate;
  124. friend class QTextLayout;
  125. friend class QTextEngine;
  126. QExplicitlySharedDataPointer<QRawFontPrivate> d;
  127. };
  128. Q_DECLARE_SHARED(QRawFont)
  129. Q_DECLARE_OPERATORS_FOR_FLAGS(QRawFont::LayoutFlags)
  130. inline QVector<QPointF> QRawFont::advancesForGlyphIndexes(const QVector<quint32> &glyphIndexes, QRawFont::LayoutFlags layoutFlags) const
  131. {
  132. QVector<QPointF> advances(glyphIndexes.size());
  133. if (advancesForGlyphIndexes(glyphIndexes.constData(), advances.data(), glyphIndexes.size(), layoutFlags))
  134. return advances;
  135. return QVector<QPointF>();
  136. }
  137. inline QVector<QPointF> QRawFont::advancesForGlyphIndexes(const QVector<quint32> &glyphIndexes) const
  138. {
  139. return advancesForGlyphIndexes(glyphIndexes, QRawFont::SeparateAdvances);
  140. }
  141. QT_END_NAMESPACE
  142. #endif // QT_NO_RAWFONT
  143. #endif // QRAWFONT_H