qtextobject.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  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 QTEXTOBJECT_H
  40. #define QTEXTOBJECT_H
  41. #include <QtCore/qobject.h>
  42. #include <QtGui/qtextformat.h>
  43. #include <QtGui/qtextlayout.h>
  44. #include <QtGui/qglyphrun.h>
  45. QT_BEGIN_NAMESPACE
  46. class QTextObjectPrivate;
  47. class QTextDocument;
  48. class QTextDocumentPrivate;
  49. class QTextCursor;
  50. class QTextBlock;
  51. class QTextFragment;
  52. class QTextList;
  53. class Q_GUI_EXPORT QTextObject : public QObject
  54. {
  55. Q_OBJECT
  56. protected:
  57. explicit QTextObject(QTextDocument *doc);
  58. ~QTextObject();
  59. void setFormat(const QTextFormat &format);
  60. public:
  61. QTextFormat format() const;
  62. int formatIndex() const;
  63. QTextDocument *document() const;
  64. int objectIndex() const;
  65. QTextDocumentPrivate *docHandle() const;
  66. protected:
  67. QTextObject(QTextObjectPrivate &p, QTextDocument *doc);
  68. private:
  69. Q_DECLARE_PRIVATE(QTextObject)
  70. Q_DISABLE_COPY(QTextObject)
  71. friend class QTextDocumentPrivate;
  72. };
  73. class QTextBlockGroupPrivate;
  74. class Q_GUI_EXPORT QTextBlockGroup : public QTextObject
  75. {
  76. Q_OBJECT
  77. protected:
  78. explicit QTextBlockGroup(QTextDocument *doc);
  79. ~QTextBlockGroup();
  80. virtual void blockInserted(const QTextBlock &block);
  81. virtual void blockRemoved(const QTextBlock &block);
  82. virtual void blockFormatChanged(const QTextBlock &block);
  83. QList<QTextBlock> blockList() const;
  84. protected:
  85. QTextBlockGroup(QTextBlockGroupPrivate &p, QTextDocument *doc);
  86. private:
  87. Q_DECLARE_PRIVATE(QTextBlockGroup)
  88. Q_DISABLE_COPY(QTextBlockGroup)
  89. friend class QTextDocumentPrivate;
  90. };
  91. class Q_GUI_EXPORT QTextFrameLayoutData {
  92. public:
  93. virtual ~QTextFrameLayoutData();
  94. };
  95. class QTextFramePrivate;
  96. class Q_GUI_EXPORT QTextFrame : public QTextObject
  97. {
  98. Q_OBJECT
  99. public:
  100. explicit QTextFrame(QTextDocument *doc);
  101. ~QTextFrame();
  102. inline void setFrameFormat(const QTextFrameFormat &format);
  103. QTextFrameFormat frameFormat() const { return QTextObject::format().toFrameFormat(); }
  104. QTextCursor firstCursorPosition() const;
  105. QTextCursor lastCursorPosition() const;
  106. int firstPosition() const;
  107. int lastPosition() const;
  108. QTextFrameLayoutData *layoutData() const;
  109. void setLayoutData(QTextFrameLayoutData *data);
  110. QList<QTextFrame *> childFrames() const;
  111. QTextFrame *parentFrame() const;
  112. class Q_GUI_EXPORT iterator {
  113. QTextFrame *f;
  114. int b;
  115. int e;
  116. QTextFrame *cf;
  117. int cb;
  118. friend class QTextFrame;
  119. friend class QTextTableCell;
  120. friend class QTextDocumentLayoutPrivate;
  121. iterator(QTextFrame *frame, int block, int begin, int end);
  122. public:
  123. iterator(); // ### Qt 6: inline
  124. #if QT_VERSION < QT_VERSION_CHECK(6,0,0)
  125. iterator(const iterator &o) Q_DECL_NOTHROW; // = default
  126. iterator &operator=(const iterator &o) Q_DECL_NOTHROW; // = default
  127. iterator(iterator &&other) Q_DECL_NOTHROW // = default
  128. { memcpy(this, &other, sizeof(iterator)); }
  129. iterator &operator=(iterator &&other) Q_DECL_NOTHROW // = default
  130. { memcpy(this, &other, sizeof(iterator)); return *this; }
  131. #endif
  132. QTextFrame *parentFrame() const { return f; }
  133. QTextFrame *currentFrame() const;
  134. QTextBlock currentBlock() const;
  135. bool atEnd() const { return !cf && cb == e; }
  136. inline bool operator==(const iterator &o) const { return f == o.f && cf == o.cf && cb == o.cb; }
  137. inline bool operator!=(const iterator &o) const { return f != o.f || cf != o.cf || cb != o.cb; }
  138. iterator &operator++();
  139. inline iterator operator++(int) { iterator tmp = *this; operator++(); return tmp; }
  140. iterator &operator--();
  141. inline iterator operator--(int) { iterator tmp = *this; operator--(); return tmp; }
  142. };
  143. friend class iterator;
  144. // more Qt
  145. typedef iterator Iterator;
  146. iterator begin() const;
  147. iterator end() const;
  148. protected:
  149. QTextFrame(QTextFramePrivate &p, QTextDocument *doc);
  150. private:
  151. friend class QTextDocumentPrivate;
  152. Q_DECLARE_PRIVATE(QTextFrame)
  153. Q_DISABLE_COPY(QTextFrame)
  154. };
  155. Q_DECLARE_TYPEINFO(QTextFrame::iterator, Q_MOVABLE_TYPE);
  156. inline void QTextFrame::setFrameFormat(const QTextFrameFormat &aformat)
  157. { QTextObject::setFormat(aformat); }
  158. class Q_GUI_EXPORT QTextBlockUserData {
  159. public:
  160. virtual ~QTextBlockUserData();
  161. };
  162. class Q_GUI_EXPORT QTextBlock
  163. {
  164. friend class QSyntaxHighlighter;
  165. public:
  166. inline QTextBlock(QTextDocumentPrivate *priv, int b) : p(priv), n(b) {}
  167. inline QTextBlock() : p(Q_NULLPTR), n(0) {}
  168. inline QTextBlock(const QTextBlock &o) : p(o.p), n(o.n) {}
  169. inline QTextBlock &operator=(const QTextBlock &o) { p = o.p; n = o.n; return *this; }
  170. bool isValid() const;
  171. inline bool operator==(const QTextBlock &o) const { return p == o.p && n == o.n; }
  172. inline bool operator!=(const QTextBlock &o) const { return p != o.p || n != o.n; }
  173. inline bool operator<(const QTextBlock &o) const { return position() < o.position(); }
  174. int position() const;
  175. int length() const;
  176. bool contains(int position) const;
  177. QTextLayout *layout() const;
  178. void clearLayout();
  179. QTextBlockFormat blockFormat() const;
  180. int blockFormatIndex() const;
  181. QTextCharFormat charFormat() const;
  182. int charFormatIndex() const;
  183. Qt::LayoutDirection textDirection() const;
  184. QString text() const;
  185. QVector<QTextLayout::FormatRange> textFormats() const;
  186. const QTextDocument *document() const;
  187. QTextList *textList() const;
  188. QTextBlockUserData *userData() const;
  189. void setUserData(QTextBlockUserData *data);
  190. int userState() const;
  191. void setUserState(int state);
  192. int revision() const;
  193. void setRevision(int rev);
  194. bool isVisible() const;
  195. void setVisible(bool visible);
  196. int blockNumber() const;
  197. int firstLineNumber() const;
  198. void setLineCount(int count);
  199. int lineCount() const;
  200. class Q_GUI_EXPORT iterator {
  201. const QTextDocumentPrivate *p;
  202. int b;
  203. int e;
  204. int n;
  205. friend class QTextBlock;
  206. iterator(const QTextDocumentPrivate *priv, int begin, int end, int f) : p(priv), b(begin), e(end), n(f) {}
  207. public:
  208. iterator() : p(Q_NULLPTR), b(0), e(0), n(0) {}
  209. #if QT_VERSION < QT_VERSION_CHECK(6,0,0)
  210. iterator(const iterator &o) : p(o.p), b(o.b), e(o.e), n(o.n) {}
  211. #endif
  212. QTextFragment fragment() const;
  213. bool atEnd() const { return n == e; }
  214. inline bool operator==(const iterator &o) const { return p == o.p && n == o.n; }
  215. inline bool operator!=(const iterator &o) const { return p != o.p || n != o.n; }
  216. iterator &operator++();
  217. inline iterator operator++(int) { iterator tmp = *this; operator++(); return tmp; }
  218. iterator &operator--();
  219. inline iterator operator--(int) { iterator tmp = *this; operator--(); return tmp; }
  220. };
  221. // more Qt
  222. typedef iterator Iterator;
  223. iterator begin() const;
  224. iterator end() const;
  225. QTextBlock next() const;
  226. QTextBlock previous() const;
  227. inline QTextDocumentPrivate *docHandle() const { return p; }
  228. inline int fragmentIndex() const { return n; }
  229. private:
  230. QTextDocumentPrivate *p;
  231. int n;
  232. friend class QTextDocumentPrivate;
  233. friend class QTextLayout;
  234. };
  235. Q_DECLARE_TYPEINFO(QTextBlock, Q_MOVABLE_TYPE);
  236. Q_DECLARE_TYPEINFO(QTextBlock::iterator, Q_MOVABLE_TYPE);
  237. class Q_GUI_EXPORT QTextFragment
  238. {
  239. public:
  240. inline QTextFragment(const QTextDocumentPrivate *priv, int f, int fe) : p(priv), n(f), ne(fe) {}
  241. inline QTextFragment() : p(Q_NULLPTR), n(0), ne(0) {}
  242. inline QTextFragment(const QTextFragment &o) : p(o.p), n(o.n), ne(o.ne) {}
  243. inline QTextFragment &operator=(const QTextFragment &o) { p = o.p; n = o.n; ne = o.ne; return *this; }
  244. inline bool isValid() const { return p && n; }
  245. inline bool operator==(const QTextFragment &o) const { return p == o.p && n == o.n; }
  246. inline bool operator!=(const QTextFragment &o) const { return p != o.p || n != o.n; }
  247. inline bool operator<(const QTextFragment &o) const { return position() < o.position(); }
  248. int position() const;
  249. int length() const;
  250. bool contains(int position) const;
  251. QTextCharFormat charFormat() const;
  252. int charFormatIndex() const;
  253. QString text() const;
  254. #if !defined(QT_NO_RAWFONT)
  255. QList<QGlyphRun> glyphRuns(int from = -1, int length = -1) const;
  256. #endif
  257. private:
  258. const QTextDocumentPrivate *p;
  259. int n;
  260. int ne;
  261. };
  262. Q_DECLARE_TYPEINFO(QTextFragment, Q_MOVABLE_TYPE);
  263. QT_END_NAMESPACE
  264. #endif // QTEXTOBJECT_H