qtextdocument.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  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 QTEXTDOCUMENT_H
  40. #define QTEXTDOCUMENT_H
  41. #include <QtCore/qobject.h>
  42. #include <QtCore/qsize.h>
  43. #include <QtCore/qrect.h>
  44. #include <QtCore/qvariant.h>
  45. #include <QtGui/qfont.h>
  46. #include <QtCore/qurl.h>
  47. QT_BEGIN_NAMESPACE
  48. class QTextFormatCollection;
  49. class QTextListFormat;
  50. class QRect;
  51. class QPainter;
  52. class QPagedPaintDevice;
  53. class QAbstractTextDocumentLayout;
  54. class QPoint;
  55. class QTextObject;
  56. class QTextFormat;
  57. class QTextFrame;
  58. class QTextBlock;
  59. class QTextCodec;
  60. class QVariant;
  61. class QRectF;
  62. class QTextOption;
  63. class QTextCursor;
  64. template<typename T> class QVector;
  65. namespace Qt
  66. {
  67. Q_GUI_EXPORT bool mightBeRichText(const QString&);
  68. Q_GUI_EXPORT QString convertFromPlainText(const QString &plain, WhiteSpaceMode mode = WhiteSpacePre);
  69. #ifndef QT_NO_TEXTCODEC
  70. Q_GUI_EXPORT QTextCodec *codecForHtml(const QByteArray &ba);
  71. #endif
  72. }
  73. class Q_GUI_EXPORT QAbstractUndoItem
  74. {
  75. public:
  76. virtual ~QAbstractUndoItem() = 0;
  77. virtual void undo() = 0;
  78. virtual void redo() = 0;
  79. };
  80. inline QAbstractUndoItem::~QAbstractUndoItem()
  81. {
  82. }
  83. class QTextDocumentPrivate;
  84. class Q_GUI_EXPORT QTextDocument : public QObject
  85. {
  86. Q_OBJECT
  87. Q_PROPERTY(bool undoRedoEnabled READ isUndoRedoEnabled WRITE setUndoRedoEnabled)
  88. Q_PROPERTY(bool modified READ isModified WRITE setModified DESIGNABLE false)
  89. Q_PROPERTY(QSizeF pageSize READ pageSize WRITE setPageSize)
  90. Q_PROPERTY(QFont defaultFont READ defaultFont WRITE setDefaultFont)
  91. Q_PROPERTY(bool useDesignMetrics READ useDesignMetrics WRITE setUseDesignMetrics)
  92. Q_PROPERTY(QSizeF size READ size)
  93. Q_PROPERTY(qreal textWidth READ textWidth WRITE setTextWidth)
  94. Q_PROPERTY(int blockCount READ blockCount)
  95. Q_PROPERTY(qreal indentWidth READ indentWidth WRITE setIndentWidth)
  96. #ifndef QT_NO_CSSPARSER
  97. Q_PROPERTY(QString defaultStyleSheet READ defaultStyleSheet WRITE setDefaultStyleSheet)
  98. #endif
  99. Q_PROPERTY(int maximumBlockCount READ maximumBlockCount WRITE setMaximumBlockCount)
  100. Q_PROPERTY(qreal documentMargin READ documentMargin WRITE setDocumentMargin)
  101. QDOC_PROPERTY(QTextOption defaultTextOption READ defaultTextOption WRITE setDefaultTextOption)
  102. Q_PROPERTY(QUrl baseUrl READ baseUrl WRITE setBaseUrl NOTIFY baseUrlChanged)
  103. public:
  104. explicit QTextDocument(QObject *parent = Q_NULLPTR);
  105. explicit QTextDocument(const QString &text, QObject *parent = Q_NULLPTR);
  106. ~QTextDocument();
  107. QTextDocument *clone(QObject *parent = Q_NULLPTR) const;
  108. bool isEmpty() const;
  109. virtual void clear();
  110. void setUndoRedoEnabled(bool enable);
  111. bool isUndoRedoEnabled() const;
  112. bool isUndoAvailable() const;
  113. bool isRedoAvailable() const;
  114. int availableUndoSteps() const;
  115. int availableRedoSteps() const;
  116. int revision() const;
  117. void setDocumentLayout(QAbstractTextDocumentLayout *layout);
  118. QAbstractTextDocumentLayout *documentLayout() const;
  119. enum MetaInformation {
  120. DocumentTitle,
  121. DocumentUrl
  122. };
  123. void setMetaInformation(MetaInformation info, const QString &);
  124. QString metaInformation(MetaInformation info) const;
  125. #ifndef QT_NO_TEXTHTMLPARSER
  126. QString toHtml(const QByteArray &encoding = QByteArray()) const;
  127. void setHtml(const QString &html);
  128. #endif
  129. QString toPlainText() const;
  130. void setPlainText(const QString &text);
  131. QChar characterAt(int pos) const;
  132. enum FindFlag
  133. {
  134. FindBackward = 0x00001,
  135. FindCaseSensitively = 0x00002,
  136. FindWholeWords = 0x00004
  137. };
  138. Q_DECLARE_FLAGS(FindFlags, FindFlag)
  139. QTextCursor find(const QString &subString, int from = 0, FindFlags options = FindFlags()) const;
  140. QTextCursor find(const QString &subString, const QTextCursor &cursor, FindFlags options = FindFlags()) const;
  141. #ifndef QT_NO_REGEXP
  142. QTextCursor find(const QRegExp &expr, int from = 0, FindFlags options = FindFlags()) const;
  143. QTextCursor find(const QRegExp &expr, const QTextCursor &cursor, FindFlags options = FindFlags()) const;
  144. #endif
  145. #ifndef QT_NO_REGULAREXPRESSION
  146. QTextCursor find(const QRegularExpression &expr, int from = 0, FindFlags options = FindFlags()) const;
  147. QTextCursor find(const QRegularExpression &expr, const QTextCursor &cursor, FindFlags options = FindFlags()) const;
  148. #endif
  149. QTextFrame *frameAt(int pos) const;
  150. QTextFrame *rootFrame() const;
  151. QTextObject *object(int objectIndex) const;
  152. QTextObject *objectForFormat(const QTextFormat &) const;
  153. QTextBlock findBlock(int pos) const;
  154. QTextBlock findBlockByNumber(int blockNumber) const;
  155. QTextBlock findBlockByLineNumber(int blockNumber) const;
  156. QTextBlock begin() const;
  157. QTextBlock end() const;
  158. QTextBlock firstBlock() const;
  159. QTextBlock lastBlock() const;
  160. void setPageSize(const QSizeF &size);
  161. QSizeF pageSize() const;
  162. void setDefaultFont(const QFont &font);
  163. QFont defaultFont() const;
  164. int pageCount() const;
  165. bool isModified() const;
  166. void print(QPagedPaintDevice *printer) const;
  167. enum ResourceType {
  168. HtmlResource = 1,
  169. ImageResource = 2,
  170. StyleSheetResource = 3,
  171. UserResource = 100
  172. };
  173. QVariant resource(int type, const QUrl &name) const;
  174. void addResource(int type, const QUrl &name, const QVariant &resource);
  175. QVector<QTextFormat> allFormats() const;
  176. void markContentsDirty(int from, int length);
  177. void setUseDesignMetrics(bool b);
  178. bool useDesignMetrics() const;
  179. void drawContents(QPainter *painter, const QRectF &rect = QRectF());
  180. void setTextWidth(qreal width);
  181. qreal textWidth() const;
  182. qreal idealWidth() const;
  183. qreal indentWidth() const;
  184. void setIndentWidth(qreal width);
  185. qreal documentMargin() const;
  186. void setDocumentMargin(qreal margin);
  187. void adjustSize();
  188. QSizeF size() const;
  189. int blockCount() const;
  190. int lineCount() const;
  191. int characterCount() const;
  192. #ifndef QT_NO_CSSPARSER
  193. void setDefaultStyleSheet(const QString &sheet);
  194. QString defaultStyleSheet() const;
  195. #endif
  196. void undo(QTextCursor *cursor);
  197. void redo(QTextCursor *cursor);
  198. enum Stacks {
  199. UndoStack = 0x01,
  200. RedoStack = 0x02,
  201. UndoAndRedoStacks = UndoStack | RedoStack
  202. };
  203. void clearUndoRedoStacks(Stacks historyToClear = UndoAndRedoStacks);
  204. int maximumBlockCount() const;
  205. void setMaximumBlockCount(int maximum);
  206. QTextOption defaultTextOption() const;
  207. void setDefaultTextOption(const QTextOption &option);
  208. QUrl baseUrl() const;
  209. void setBaseUrl(const QUrl &url);
  210. Qt::CursorMoveStyle defaultCursorMoveStyle() const;
  211. void setDefaultCursorMoveStyle(Qt::CursorMoveStyle style);
  212. Q_SIGNALS:
  213. void contentsChange(int from, int charsRemoved, int charsAdded);
  214. void contentsChanged();
  215. void undoAvailable(bool);
  216. void redoAvailable(bool);
  217. void undoCommandAdded();
  218. void modificationChanged(bool m);
  219. void cursorPositionChanged(const QTextCursor &cursor);
  220. void blockCountChanged(int newBlockCount);
  221. void baseUrlChanged(const QUrl &url);
  222. void documentLayoutChanged();
  223. public Q_SLOTS:
  224. void undo();
  225. void redo();
  226. void appendUndoItem(QAbstractUndoItem *);
  227. void setModified(bool m = true);
  228. protected:
  229. virtual QTextObject *createObject(const QTextFormat &f);
  230. Q_INVOKABLE virtual QVariant loadResource(int type, const QUrl &name);
  231. QTextDocument(QTextDocumentPrivate &dd, QObject *parent);
  232. public:
  233. QTextDocumentPrivate *docHandle() const;
  234. private:
  235. Q_DISABLE_COPY(QTextDocument)
  236. Q_DECLARE_PRIVATE(QTextDocument)
  237. friend class QTextObjectPrivate;
  238. };
  239. Q_DECLARE_OPERATORS_FOR_FLAGS(QTextDocument::FindFlags)
  240. QT_END_NAMESPACE
  241. #endif // QTEXTDOCUMENT_H