qfontmetrics.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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 QFONTMETRICS_H
  40. #define QFONTMETRICS_H
  41. #include <QtGui/qfont.h>
  42. #include <QtCore/qsharedpointer.h>
  43. #ifndef QT_INCLUDE_COMPAT
  44. #include <QtCore/qrect.h>
  45. #endif
  46. QT_BEGIN_NAMESPACE
  47. class QTextCodec;
  48. class QRect;
  49. class Q_GUI_EXPORT QFontMetrics
  50. {
  51. public:
  52. explicit QFontMetrics(const QFont &);
  53. QFontMetrics(const QFont &, QPaintDevice *pd);
  54. QFontMetrics(const QFontMetrics &);
  55. ~QFontMetrics();
  56. QFontMetrics &operator=(const QFontMetrics &);
  57. #ifdef Q_COMPILER_RVALUE_REFS
  58. inline QFontMetrics &operator=(QFontMetrics &&other) Q_DECL_NOEXCEPT
  59. { qSwap(d, other.d); return *this; }
  60. #endif
  61. void swap(QFontMetrics &other) Q_DECL_NOEXCEPT
  62. { qSwap(d, other.d); }
  63. int ascent() const;
  64. int descent() const;
  65. int height() const;
  66. int leading() const;
  67. int lineSpacing() const;
  68. int minLeftBearing() const;
  69. int minRightBearing() const;
  70. int maxWidth() const;
  71. int xHeight() const;
  72. int averageCharWidth() const;
  73. bool inFont(QChar) const;
  74. bool inFontUcs4(uint ucs4) const;
  75. int leftBearing(QChar) const;
  76. int rightBearing(QChar) const;
  77. int width(const QString &, int len = -1) const;
  78. int width(const QString &, int len, int flags) const;
  79. int width(QChar) const;
  80. #if QT_VERSION < QT_VERSION_CHECK(6,0,0)
  81. QT_DEPRECATED int charWidth(const QString &str, int pos) const;
  82. #endif
  83. QRect boundingRect(QChar) const;
  84. QRect boundingRect(const QString &text) const;
  85. QRect boundingRect(const QRect &r, int flags, const QString &text, int tabstops = 0, int *tabarray = Q_NULLPTR) const;
  86. inline QRect boundingRect(int x, int y, int w, int h, int flags, const QString &text,
  87. int tabstops = 0, int *tabarray = Q_NULLPTR) const
  88. { return boundingRect(QRect(x, y, w, h), flags, text, tabstops, tabarray); }
  89. QSize size(int flags, const QString& str, int tabstops = 0, int *tabarray = Q_NULLPTR) const;
  90. QRect tightBoundingRect(const QString &text) const;
  91. QString elidedText(const QString &text, Qt::TextElideMode mode, int width, int flags = 0) const;
  92. int underlinePos() const;
  93. int overlinePos() const;
  94. int strikeOutPos() const;
  95. int lineWidth() const;
  96. bool operator==(const QFontMetrics &other) const;
  97. inline bool operator !=(const QFontMetrics &other) const { return !operator==(other); }
  98. private:
  99. friend class QFontMetricsF;
  100. friend class QStackTextEngine;
  101. QExplicitlySharedDataPointer<QFontPrivate> d;
  102. };
  103. Q_DECLARE_SHARED(QFontMetrics)
  104. class Q_GUI_EXPORT QFontMetricsF
  105. {
  106. public:
  107. explicit QFontMetricsF(const QFont &);
  108. QFontMetricsF(const QFont &, QPaintDevice *pd);
  109. QFontMetricsF(const QFontMetrics &);
  110. QFontMetricsF(const QFontMetricsF &);
  111. ~QFontMetricsF();
  112. QFontMetricsF &operator=(const QFontMetricsF &);
  113. QFontMetricsF &operator=(const QFontMetrics &);
  114. #ifdef Q_COMPILER_RVALUE_REFS
  115. inline QFontMetricsF &operator=(QFontMetricsF &&other)
  116. { qSwap(d, other.d); return *this; }
  117. #endif
  118. void swap(QFontMetricsF &other) { qSwap(d, other.d); }
  119. qreal ascent() const;
  120. qreal descent() const;
  121. qreal height() const;
  122. qreal leading() const;
  123. qreal lineSpacing() const;
  124. qreal minLeftBearing() const;
  125. qreal minRightBearing() const;
  126. qreal maxWidth() const;
  127. qreal xHeight() const;
  128. qreal averageCharWidth() const;
  129. bool inFont(QChar) const;
  130. bool inFontUcs4(uint ucs4) const;
  131. qreal leftBearing(QChar) const;
  132. qreal rightBearing(QChar) const;
  133. qreal width(const QString &string) const;
  134. qreal width(QChar) const;
  135. QRectF boundingRect(const QString &string) const;
  136. QRectF boundingRect(QChar) const;
  137. QRectF boundingRect(const QRectF &r, int flags, const QString& string, int tabstops = 0, int *tabarray = Q_NULLPTR) const;
  138. QSizeF size(int flags, const QString& str, int tabstops = 0, int *tabarray = Q_NULLPTR) const;
  139. QRectF tightBoundingRect(const QString &text) const;
  140. QString elidedText(const QString &text, Qt::TextElideMode mode, qreal width, int flags = 0) const;
  141. qreal underlinePos() const;
  142. qreal overlinePos() const;
  143. qreal strikeOutPos() const;
  144. qreal lineWidth() const;
  145. bool operator==(const QFontMetricsF &other) const;
  146. inline bool operator !=(const QFontMetricsF &other) const { return !operator==(other); }
  147. private:
  148. QExplicitlySharedDataPointer<QFontPrivate> d;
  149. };
  150. Q_DECLARE_SHARED(QFontMetricsF)
  151. QT_END_NAMESPACE
  152. #endif // QFONTMETRICS_H