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

系统编程

开发平台:

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 QTEXTLAYOUT_H
  38. #define QTEXTLAYOUT_H
  39. #include <QtCore/qstring.h>
  40. #include <QtCore/qnamespace.h>
  41. #include <QtCore/qrect.h>
  42. #include <QtCore/qvector.h>
  43. #include <QtGui/qcolor.h>
  44. #include <QtCore/qobject.h>
  45. #include <QtGui/qevent.h>
  46. #include <QtGui/qtextformat.h>
  47. QT_BEGIN_HEADER
  48. QT_BEGIN_NAMESPACE
  49. QT_MODULE(Gui)
  50. class QTextEngine;
  51. class QFont;
  52. class QRect;
  53. class QRegion;
  54. class QTextFormat;
  55. class QPalette;
  56. class QPainter;
  57. class Q_GUI_EXPORT QTextInlineObject
  58. {
  59. public:
  60.     QTextInlineObject(int i, QTextEngine *e) : itm(i), eng(e) {}
  61.     inline QTextInlineObject() : itm(0), eng(0) {}
  62.     inline bool isValid() const { return eng; }
  63.     QRectF rect() const;
  64.     qreal width() const;
  65.     qreal ascent() const;
  66.     qreal descent() const;
  67.     qreal height() const;
  68.     Qt::LayoutDirection textDirection() const;
  69.     void setWidth(qreal w);
  70.     void setAscent(qreal a);
  71.     void setDescent(qreal d);
  72.     int textPosition() const;
  73.     int formatIndex() const;
  74.     QTextFormat format() const;
  75. private:
  76.     friend class QTextLayout;
  77.     int itm;
  78.     QTextEngine *eng;
  79. };
  80. class QPaintDevice;
  81. class QTextFormat;
  82. class QTextLine;
  83. class QTextBlock;
  84. class QTextOption;
  85. class Q_GUI_EXPORT QTextLayout
  86. {
  87. public:
  88.     // does itemization
  89.     QTextLayout();
  90.     QTextLayout(const QString& text);
  91.     QTextLayout(const QString& text, const QFont &font, QPaintDevice *paintdevice = 0);
  92.     QTextLayout(const QTextBlock &b);
  93.     ~QTextLayout();
  94.     void setFont(const QFont &f);
  95.     QFont font() const;
  96.     void setText(const QString& string);
  97.     QString text() const;
  98.     void setTextOption(const QTextOption &option);
  99.     QTextOption textOption() const;
  100.     void setPreeditArea(int position, const QString &text);
  101.     int preeditAreaPosition() const;
  102.     QString preeditAreaText() const;
  103.     struct FormatRange {
  104.         int start;
  105.         int length;
  106.         QTextCharFormat format;
  107.     };
  108.     void setAdditionalFormats(const QList<FormatRange> &overrides);
  109.     QList<FormatRange> additionalFormats() const;
  110.     void clearAdditionalFormats();
  111.     void setCacheEnabled(bool enable);
  112.     bool cacheEnabled() const;
  113.     void beginLayout();
  114.     void endLayout();
  115.     void clearLayout();
  116.     QTextLine createLine();
  117.     int lineCount() const;
  118.     QTextLine lineAt(int i) const;
  119.     QTextLine lineForTextPosition(int pos) const;
  120.     enum CursorMode {
  121.         SkipCharacters,
  122.         SkipWords
  123.     };
  124.     bool isValidCursorPosition(int pos) const;
  125.     int nextCursorPosition(int oldPos, CursorMode mode = SkipCharacters) const;
  126.     int previousCursorPosition(int oldPos, CursorMode mode = SkipCharacters) const;
  127.     void draw(QPainter *p, const QPointF &pos, const QVector<FormatRange> &selections = QVector<FormatRange>(),
  128.               const QRectF &clip = QRectF()) const;
  129.     void drawCursor(QPainter *p, const QPointF &pos, int cursorPosition) const;
  130.     void drawCursor(QPainter *p, const QPointF &pos, int cursorPosition, int width) const;
  131.     QPointF position() const;
  132.     void setPosition(const QPointF &p);
  133.     QRectF boundingRect() const;
  134.     qreal minimumWidth() const;
  135.     qreal maximumWidth() const;
  136.     QTextEngine *engine() const { return d; }
  137.     void setFlags(int flags);
  138. private:
  139.     QTextLayout(QTextEngine *e) : d(e) {}
  140.     Q_DISABLE_COPY(QTextLayout)
  141.     friend class QPainter;
  142.     friend class QPSPrinter;
  143.     friend class QGraphicsSimpleTextItemPrivate;
  144.     friend class QGraphicsSimpleTextItem;
  145.     friend void qt_format_text(const QFont &font, const QRectF &_r, int tf, const QTextOption *, const QString& str,
  146.                                QRectF *brect, int tabstops, int* tabarray, int tabarraylen,
  147.                                QPainter *painter);
  148.     QTextEngine *d;
  149. };
  150. class Q_GUI_EXPORT QTextLine
  151. {
  152. public:
  153.     inline QTextLine() : i(0), eng(0) {}
  154.     inline bool isValid() const { return eng; }
  155.     QRectF rect() const;
  156.     qreal x() const;
  157.     qreal y() const;
  158.     qreal width() const;
  159.     qreal ascent() const;
  160.     qreal descent() const;
  161.     qreal height() const;
  162.     qreal naturalTextWidth() const;
  163.     QRectF naturalTextRect() const;
  164.     enum Edge {
  165.         Leading,
  166.         Trailing
  167.     };
  168.     enum CursorPosition {
  169.         CursorBetweenCharacters,
  170.         CursorOnCharacter
  171.     };
  172.     /* cursorPos gets set to the valid position */
  173.     qreal cursorToX(int *cursorPos, Edge edge = Leading) const;
  174.     inline qreal cursorToX(int cursorPos, Edge edge = Leading) const { return cursorToX(&cursorPos, edge); }
  175.     int xToCursor(qreal x, CursorPosition = CursorBetweenCharacters) const;
  176.     void setLineWidth(qreal width);
  177.     void setNumColumns(int columns);
  178.     void setNumColumns(int columns, qreal alignmentWidth);
  179.     void setPosition(const QPointF &pos);
  180.     QPointF position() const;
  181.     int textStart() const;
  182.     int textLength() const;
  183.     int lineNumber() const { return i; }
  184.     void draw(QPainter *p, const QPointF &point, const QTextLayout::FormatRange *selection = 0) const;
  185. private:
  186.     QTextLine(int line, QTextEngine *e) : i(line), eng(e) {}
  187.     void layout_helper(int numGlyphs);
  188.     friend class QTextLayout;
  189.     int i;
  190.     QTextEngine *eng;
  191. };
  192. QT_END_NAMESPACE
  193. QT_END_HEADER
  194. #endif // QTEXTLAYOUT_H