qfontmetrics.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QFONTMETRICS_H
  38. #define QFONTMETRICS_H
  39. #include <QtGui/qfont.h>
  40. #ifndef QT_INCLUDE_COMPAT
  41. #include <QtCore/qrect.h>
  42. #endif
  43. QT_BEGIN_HEADER
  44. QT_BEGIN_NAMESPACE
  45. QT_MODULE(Gui)
  46. #ifdef Q_WS_QWS
  47. class QFontEngine;
  48. #endif
  49. class QTextCodec;
  50. class QRect;
  51. class Q_GUI_EXPORT QFontMetrics
  52. {
  53. public:
  54.     QFontMetrics(const QFont &);
  55.     QFontMetrics(const QFont &, QPaintDevice *pd);
  56.     QFontMetrics(const QFontMetrics &);
  57.     ~QFontMetrics();
  58.     QFontMetrics &operator=(const QFontMetrics &);
  59.     int ascent() const;
  60.     int descent() const;
  61.     int height() const;
  62.     int leading() const;
  63.     int lineSpacing() const;
  64.     int minLeftBearing() const;
  65.     int minRightBearing() const;
  66.     int maxWidth() const;
  67.     int xHeight() const;
  68.     int averageCharWidth() const;
  69.     bool inFont(QChar) const;
  70.     int leftBearing(QChar) const;
  71.     int rightBearing(QChar) const;
  72.     int width(const QString &, int len = -1) const;
  73.     int width(QChar) const;
  74.     int charWidth(const QString &str, int pos) const;
  75.     QRect boundingRect(QChar) const;
  76.     QRect boundingRect(const QString &text) const;
  77.     QRect boundingRect(const QRect &r, int flags, const QString &text, int tabstops=0, int *tabarray=0) const;
  78.     inline QRect boundingRect(int x, int y, int w, int h, int flags, const QString &text,
  79.                               int tabstops=0, int *tabarray=0) const
  80.         { return boundingRect(QRect(x, y, w, h), flags, text, tabstops, tabarray); }
  81.     QSize size(int flags, const QString& str, int tabstops=0, int *tabarray=0) const;
  82.     QRect tightBoundingRect(const QString &text) const;
  83.     
  84.     QString elidedText(const QString &text, Qt::TextElideMode mode, int width, int flags = 0) const;
  85.     int underlinePos() const;
  86.     int overlinePos() const;
  87.     int strikeOutPos() const;
  88.     int lineWidth() const;
  89.     bool operator==(const QFontMetrics &other); // 5.0 - remove me
  90.     bool operator==(const QFontMetrics &other) const;
  91.     inline bool operator !=(const QFontMetrics &other) { return !operator==(other); } // 5.0 - remove me
  92.     inline bool operator !=(const QFontMetrics &other) const { return !operator==(other); }
  93. #ifdef QT3_SUPPORT
  94.     inline QRect boundingRect(const QString &text, int len) const
  95.         { return boundingRect(text.left(len)); }
  96.     inline QRect boundingRect(int x, int y, int w, int h, int flags, const QString& str, int len,
  97.                               int tabstops=0, int *tabarray=0) const
  98.         { return boundingRect(QRect(x, y, w, h), flags, str.left(len), tabstops, tabarray); }
  99.     inline QSize size(int flags, const QString& str, int len, int tabstops=0, int *tabarray=0) const
  100.         { return size(flags, str.left(len), tabstops, tabarray); }
  101. #endif
  102. private:
  103. #if defined(Q_WS_MAC)
  104.     friend class QFontPrivate;
  105. #endif
  106.     friend class QFontMetricsF;
  107.     friend class QStackTextEngine;
  108.     QFontPrivate *d;
  109. };
  110. class Q_GUI_EXPORT QFontMetricsF
  111. {
  112. public:
  113.     QFontMetricsF(const QFont &);
  114.     QFontMetricsF(const QFont &, QPaintDevice *pd);
  115.     QFontMetricsF(const QFontMetrics &);
  116.     QFontMetricsF(const QFontMetricsF &);
  117.     ~QFontMetricsF();
  118.     QFontMetricsF &operator=(const QFontMetricsF &);
  119.     QFontMetricsF &operator=(const QFontMetrics &);
  120.     qreal ascent() const;
  121.     qreal descent() const;
  122.     qreal height() const;
  123.     qreal leading() const;
  124.     qreal lineSpacing() const;
  125.     qreal minLeftBearing() const;
  126.     qreal minRightBearing() const;
  127.     qreal maxWidth() const;
  128.     qreal xHeight() const;
  129.     qreal averageCharWidth() const;
  130.     bool inFont(QChar) 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=0) const;
  138.     QSizeF size(int flags, const QString& str, int tabstops=0, int *tabarray=0) 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); // 5.0 - remove me
  146.     bool operator==(const QFontMetricsF &other) const;
  147.     inline bool operator !=(const QFontMetricsF &other) { return !operator==(other); } // 5.0 - remove me
  148.     inline bool operator !=(const QFontMetricsF &other) const { return !operator==(other); }
  149. private:
  150.     QFontPrivate *d;
  151. };
  152. QT_END_NAMESPACE
  153. QT_END_HEADER
  154. #endif // QFONTMETRICS_H