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

系统编程

开发平台:

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 QABSTRACTTEXTDOCUMENTLAYOUT_H
  38. #define QABSTRACTTEXTDOCUMENTLAYOUT_H
  39. #include <QtCore/qobject.h>
  40. #include <QtGui/qtextlayout.h>
  41. #include <QtGui/qtextdocument.h>
  42. #include <QtGui/qtextcursor.h>
  43. #include <QtGui/qpalette.h>
  44. QT_BEGIN_HEADER
  45. QT_BEGIN_NAMESPACE
  46. QT_MODULE(Gui)
  47. class QAbstractTextDocumentLayoutPrivate;
  48. class QTextBlock;
  49. class QTextObjectInterface;
  50. class QTextFrame;
  51. class Q_GUI_EXPORT QAbstractTextDocumentLayout : public QObject
  52. {
  53.     Q_OBJECT
  54.     Q_DECLARE_PRIVATE(QAbstractTextDocumentLayout)
  55. public:
  56.     explicit QAbstractTextDocumentLayout(QTextDocument *doc);
  57.     ~QAbstractTextDocumentLayout();
  58.     struct Selection
  59.     {
  60.         QTextCursor cursor;
  61.         QTextCharFormat format;
  62.     };
  63.     struct PaintContext
  64.     {
  65.         PaintContext()
  66.             : cursorPosition(-1)
  67.             {}
  68.         int cursorPosition;
  69.         QPalette palette;
  70.         QRectF clip;
  71.         QVector<Selection> selections;
  72.     };
  73.     virtual void draw(QPainter *painter, const PaintContext &context) = 0;
  74.     virtual int hitTest(const QPointF &point, Qt::HitTestAccuracy accuracy) const = 0;
  75.     QString anchorAt(const QPointF& pos) const;
  76.     virtual int pageCount() const = 0;
  77.     virtual QSizeF documentSize() const = 0;
  78.     virtual QRectF frameBoundingRect(QTextFrame *frame) const = 0;
  79.     virtual QRectF blockBoundingRect(const QTextBlock &block) const = 0;
  80.     void setPaintDevice(QPaintDevice *device);
  81.     QPaintDevice *paintDevice() const;
  82.     QTextDocument *document() const;
  83.     void registerHandler(int objectType, QObject *component);
  84.     QTextObjectInterface *handlerForObject(int objectType) const;
  85. Q_SIGNALS:
  86.     void update(const QRectF & = QRectF(0., 0., 1000000000., 1000000000.));
  87.     void updateBlock(const QTextBlock &block);
  88.     void documentSizeChanged(const QSizeF &newSize);
  89.     void pageCountChanged(int newPages);
  90. protected:
  91.     QAbstractTextDocumentLayout(QAbstractTextDocumentLayoutPrivate &, QTextDocument *);
  92.     virtual void documentChanged(int from, int charsRemoved, int charsAdded) = 0;
  93.     virtual void resizeInlineObject(QTextInlineObject item, int posInDocument, const QTextFormat &format);
  94.     virtual void positionInlineObject(QTextInlineObject item, int posInDocument, const QTextFormat &format);
  95.     virtual void drawInlineObject(QPainter *painter, const QRectF &rect, QTextInlineObject object, int posInDocument, const QTextFormat &format);
  96.     int formatIndex(int pos);
  97.     QTextCharFormat format(int pos);
  98. private:
  99.     friend class QTextDocument;
  100.     friend class QTextDocumentPrivate;
  101.     friend class QTextEngine;
  102.     friend class QTextLayout;
  103.     friend class QTextLine;
  104.     Q_PRIVATE_SLOT(d_func(), void _q_handlerDestroyed(QObject *obj))
  105.     Q_PRIVATE_SLOT(d_func(), int _q_dynamicPageCountSlot())
  106.     Q_PRIVATE_SLOT(d_func(), QSizeF _q_dynamicDocumentSizeSlot())
  107. };
  108. class Q_GUI_EXPORT QTextObjectInterface
  109. {
  110. public:
  111.     virtual ~QTextObjectInterface() {}
  112.     virtual QSizeF intrinsicSize(QTextDocument *doc, int posInDocument, const QTextFormat &format) = 0;
  113.     virtual void drawObject(QPainter *painter, const QRectF &rect, QTextDocument *doc, int posInDocument, const QTextFormat &format) = 0;
  114. };
  115. Q_DECLARE_INTERFACE(QTextObjectInterface, "com.trolltech.Qt.QTextObjectInterface")
  116. QT_END_NAMESPACE
  117. QT_END_HEADER
  118. #endif // QABSTRACTTEXTDOCUMENTLAYOUT_H