blob: a633e5da11ee27754d9b28d853d329445142c90f [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2019 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qtextdocument.h"
#include <qtextformat.h>
#include "qtextcursor_p.h"
#include "qtextdocumentlayout_p.h"
#include "qtextdocumentfragment.h"
#include "qtextdocumentfragment_p.h"
#include "qtexttable.h"
#include "qtextlist.h"
#include <qdebug.h>
#include <qregexp.h>
#if QT_CONFIG(regularexpression)
#include <qregularexpression.h>
#endif
#include <qvarlengtharray.h>
#if QT_CONFIG(textcodec)
#include <qtextcodec.h>
#endif
#include <qthread.h>
#include <qcoreapplication.h>
#include <qmetaobject.h>
#include "qtexthtmlparser_p.h"
#include "qpainter.h"
#include <qfile.h>
#include <qfileinfo.h>
#include <qdir.h>
#include "qfont_p.h"
#include "private/qdataurl_p.h"
#include "qtextdocument_p.h"
#include <private/qabstracttextdocumentlayout_p.h>
#include "qpagedpaintdevice.h"
#include "private/qpagedpaintdevice_p.h"
#if QT_CONFIG(textmarkdownreader)
#include <private/qtextmarkdownimporter_p.h>
#endif
#if QT_CONFIG(textmarkdownwriter)
#include <private/qtextmarkdownwriter_p.h>
#endif
#include <limits.h>
QT_BEGIN_NAMESPACE
Q_CORE_EXPORT Q_DECL_CONST_FUNCTION unsigned int qt_int_sqrt(unsigned int n);
/*!
Returns \c true if the string \a text is likely to be rich text;
otherwise returns \c false.
This function uses a fast and therefore simple heuristic. It
mainly checks whether there is something that looks like a tag
before the first line break. Although the result may be correct
for common cases, there is no guarantee.
This function is defined in the \c <QTextDocument> header file.
*/
bool Qt::mightBeRichText(const QString& text)
{
if (text.isEmpty())
return false;
int start = 0;
while (start < text.length() && text.at(start).isSpace())
++start;
// skip a leading <?xml ... ?> as for example with xhtml
if (text.midRef(start, 5).compare(QLatin1String("<?xml")) == 0) {
while (start < text.length()) {
if (text.at(start) == QLatin1Char('?')
&& start + 2 < text.length()
&& text.at(start + 1) == QLatin1Char('>')) {
start += 2;
break;
}
++start;
}
while (start < text.length() && text.at(start).isSpace())
++start;
}
if (text.midRef(start, 5).compare(QLatin1String("<!doc"), Qt::CaseInsensitive) == 0)
return true;
int open = start;
while (open < text.length() && text.at(open) != QLatin1Char('<')
&& text.at(open) != QLatin1Char('\n')) {
if (text.at(open) == QLatin1Char('&') && text.midRef(open + 1, 3) == QLatin1String("lt;"))
return true; // support desperate attempt of user to see <...>
++open;
}
if (open < text.length() && text.at(open) == QLatin1Char('<')) {
const int close = text.indexOf(QLatin1Char('>'), open);
if (close > -1) {
QString tag;
for (int i = open+1; i < close; ++i) {
if (text[i].isDigit() || text[i].isLetter())
tag += text[i];
else if (!tag.isEmpty() && text[i].isSpace())
break;
else if (!tag.isEmpty() && text[i] == QLatin1Char('/') && i + 1 == close)
break;
else if (!text[i].isSpace() && (!tag.isEmpty() || text[i] != QLatin1Char('!')))
return false; // that's not a tag
}
#ifndef QT_NO_TEXTHTMLPARSER
return QTextHtmlParser::lookupElement(std::move(tag).toLower()) != -1;
#else
return false;
#endif // QT_NO_TEXTHTMLPARSER
}
}
return false;
}
/*!
Converts the plain text string \a plain to an HTML-formatted
paragraph while preserving most of its look.
\a mode defines how whitespace is handled.
This function is defined in the \c <QTextDocument> header file.
\sa QString::toHtmlEscaped(), mightBeRichText()
*/
QString Qt::convertFromPlainText(const QString &plain, Qt::WhiteSpaceMode mode)
{
int col = 0;
QString rich;
rich += QLatin1String("<p>");
for (int i = 0; i < plain.length(); ++i) {
if (plain[i] == QLatin1Char('\n')){
int c = 1;
while (i+1 < plain.length() && plain[i+1] == QLatin1Char('\n')) {
i++;
c++;
}
if (c == 1)
rich += QLatin1String("<br>\n");
else {
rich += QLatin1String("</p>\n");
while (--c > 1)
rich += QLatin1String("<br>\n");
rich += QLatin1String("<p>");
}
col = 0;
} else {
if (mode == Qt::WhiteSpacePre && plain[i] == QLatin1Char('\t')){
rich += QChar(0x00a0U);
++col;
while (col % 8) {
rich += QChar(0x00a0U);
++col;
}
}
else if (mode == Qt::WhiteSpacePre && plain[i].isSpace())
rich += QChar(0x00a0U);
else if (plain[i] == QLatin1Char('<'))
rich += QLatin1String("&lt;");
else if (plain[i] == QLatin1Char('>'))
rich += QLatin1String("&gt;");
else if (plain[i] == QLatin1Char('&'))
rich += QLatin1String("&amp;");
else
rich += plain[i];
++col;
}
}
if (col != 0)
rich += QLatin1String("</p>");
return rich;
}
/*!
\fn QTextCodec *Qt::codecForHtml(const QByteArray &ba)
\internal
This function is defined in the \c <QTextDocument> header file.
*/
#if QT_CONFIG(textcodec)
QTextCodec *Qt::codecForHtml(const QByteArray &ba)
{
return QTextCodec::codecForHtml(ba);
}
#endif
/*!
\class QTextDocument
\reentrant
\inmodule QtGui
\brief The QTextDocument class holds formatted text.
\ingroup richtext-processing
QTextDocument is a container for structured rich text documents, providing
support for styled text and various types of document elements, such as
lists, tables, frames, and images.
They can be created for use in a QTextEdit, or used independently.
Each document element is described by an associated format object. Each
format object is treated as a unique object by QTextDocuments, and can be
passed to objectForFormat() to obtain the document element that it is
applied to.
A QTextDocument can be edited programmatically using a QTextCursor, and
its contents can be examined by traversing the document structure. The
entire document structure is stored as a hierarchy of document elements
beneath the root frame, found with the rootFrame() function. Alternatively,
if you just want to iterate over the textual contents of the document you
can use begin(), end(), and findBlock() to retrieve text blocks that you
can examine and iterate over.
The layout of a document is determined by the documentLayout();
you can create your own QAbstractTextDocumentLayout subclass and
set it using setDocumentLayout() if you want to use your own
layout logic. The document's title and other meta-information can be
obtained by calling the metaInformation() function. For documents that
are exposed to users through the QTextEdit class, the document title
is also available via the QTextEdit::documentTitle() function.
The toPlainText() and toHtml() convenience functions allow you to retrieve the
contents of the document as plain text and HTML.
The document's text can be searched using the find() functions.
Undo/redo of operations performed on the document can be controlled using
the setUndoRedoEnabled() function. The undo/redo system can be controlled
by an editor widget through the undo() and redo() slots; the document also
provides contentsChanged(), undoAvailable(), and redoAvailable() signals
that inform connected editor widgets about the state of the undo/redo
system. The following are the undo/redo operations of a QTextDocument:
\list
\li Insertion or removal of characters. A sequence of insertions or removals
within the same text block are regarded as a single undo/redo operation.
\li Insertion or removal of text blocks. Sequences of insertion or removals
in a single operation (e.g., by selecting and then deleting text) are
regarded as a single undo/redo operation.
\li Text character format changes.
\li Text block format changes.
\li Text block group format changes.
\endlist
\sa QTextCursor, QTextEdit, {Rich Text Processing}, {Text Object Example}
*/
/*!
\property QTextDocument::defaultFont
\brief the default font used to display the document's text
*/
/*!
\property QTextDocument::defaultTextOption
\brief the default text option will be set on all \l{QTextLayout}s in the document.
When \l{QTextBlock}s are created, the defaultTextOption is set on their
QTextLayout. This allows setting global properties for the document such as the
default word wrap mode.
*/
/*!
Constructs an empty QTextDocument with the given \a parent.
*/
QTextDocument::QTextDocument(QObject *parent)
: QObject(*new QTextDocumentPrivate, parent)
{
Q_D(QTextDocument);
d->init();
}
/*!
Constructs a QTextDocument containing the plain (unformatted) \a text
specified, and with the given \a parent.
*/
QTextDocument::QTextDocument(const QString &text, QObject *parent)
: QObject(*new QTextDocumentPrivate, parent)
{
Q_D(QTextDocument);
d->init();
QTextCursor(this).insertText(text);
}
/*!
\internal
*/
QTextDocument::QTextDocument(QTextDocumentPrivate &dd, QObject *parent)
: QObject(dd, parent)
{
Q_D(QTextDocument);
d->init();
}
/*!
Destroys the document.
*/
QTextDocument::~QTextDocument()
{
}
/*!
Creates a new QTextDocument that is a copy of this text document. \a
parent is the parent of the returned text document.
*/
QTextDocument *QTextDocument::clone(QObject *parent) const
{
Q_D(const QTextDocument);
QTextDocument *doc = new QTextDocument(parent);
if (isEmpty()) {
const QTextCursor thisCursor(const_cast<QTextDocument *>(this));
const auto blockFormat = thisCursor.blockFormat();
if (blockFormat.isValid() && !blockFormat.isEmpty())
QTextCursor(doc).setBlockFormat(blockFormat);
const auto blockCharFormat = thisCursor.blockCharFormat();
if (blockCharFormat.isValid() && !blockCharFormat.isEmpty())
QTextCursor(doc).setBlockCharFormat(blockCharFormat);
} else {
QTextCursor(doc).insertFragment(QTextDocumentFragment(this));
}
doc->rootFrame()->setFrameFormat(rootFrame()->frameFormat());
QTextDocumentPrivate *priv = doc->d_func();
priv->title = d->title;
priv->url = d->url;
priv->pageSize = d->pageSize;
priv->indentWidth = d->indentWidth;
priv->defaultTextOption = d->defaultTextOption;
priv->setDefaultFont(d->defaultFont());
priv->resources = d->resources;
priv->cachedResources.clear();
#ifndef QT_NO_CSSPARSER
priv->defaultStyleSheet = d->defaultStyleSheet;
priv->parsedDefaultStyleSheet = d->parsedDefaultStyleSheet;
#endif
return doc;
}
/*!
Returns \c true if the document is empty; otherwise returns \c false.
*/
bool QTextDocument::isEmpty() const
{
Q_D(const QTextDocument);
/* because if we're empty we still have one single paragraph as
* one single fragment */
return d->length() <= 1;
}
/*!
Clears the document.
*/
void QTextDocument::clear()
{
Q_D(QTextDocument);
d->clear();
d->resources.clear();
}
/*!
\since 4.2
Undoes the last editing operation on the document if undo is
available. The provided \a cursor is positioned at the end of the
location where the edition operation was undone.
See the \l {Overview of Qt's Undo Framework}{Qt Undo Framework}
documentation for details.
\sa undoAvailable(), isUndoRedoEnabled()
*/
void QTextDocument::undo(QTextCursor *cursor)
{
Q_D(QTextDocument);
const int pos = d->undoRedo(true);
if (cursor && pos >= 0) {
*cursor = QTextCursor(this);
cursor->setPosition(pos);
}
}
/*!
\since 4.2
Redoes the last editing operation on the document if \l{QTextDocument::isRedoAvailable()}{redo is available}.
The provided \a cursor is positioned at the end of the location where
the edition operation was redone.
*/
void QTextDocument::redo(QTextCursor *cursor)
{
Q_D(QTextDocument);
const int pos = d->undoRedo(false);
if (cursor && pos >= 0) {
*cursor = QTextCursor(this);
cursor->setPosition(pos);
}
}
/*! \enum QTextDocument::Stacks
\value UndoStack The undo stack.
\value RedoStack The redo stack.
\value UndoAndRedoStacks Both the undo and redo stacks.
*/
/*!
\since 4.7
Clears the stacks specified by \a stacksToClear.
This method clears any commands on the undo stack, the redo stack,
or both (the default). If commands are cleared, the appropriate
signals are emitted, QTextDocument::undoAvailable() or
QTextDocument::redoAvailable().
\sa QTextDocument::undoAvailable(), QTextDocument::redoAvailable()
*/
void QTextDocument::clearUndoRedoStacks(Stacks stacksToClear)
{
Q_D(QTextDocument);
d->clearUndoRedoStacks(stacksToClear, true);
}
/*!
\overload
*/
void QTextDocument::undo()
{
Q_D(QTextDocument);
d->undoRedo(true);
}
/*!
\overload
Redoes the last editing operation on the document if \l{QTextDocument::isRedoAvailable()}{redo is available}.
*/
void QTextDocument::redo()
{
Q_D(QTextDocument);
d->undoRedo(false);
}
/*!
\internal
Appends a custom undo \a item to the undo stack.
*/
void QTextDocument::appendUndoItem(QAbstractUndoItem *item)
{
Q_D(QTextDocument);
d->appendUndoItem(item);
}
/*!
\property QTextDocument::undoRedoEnabled
\brief whether undo/redo are enabled for this document
This defaults to true. If disabled, the undo stack is cleared and
no items will be added to it.
*/
void QTextDocument::setUndoRedoEnabled(bool enable)
{
Q_D(QTextDocument);
d->enableUndoRedo(enable);
}
bool QTextDocument::isUndoRedoEnabled() const
{
Q_D(const QTextDocument);
return d->isUndoRedoEnabled();
}
/*!
\property QTextDocument::maximumBlockCount
\since 4.2
\brief Specifies the limit for blocks in the document.
Specifies the maximum number of blocks the document may have. If there are
more blocks in the document that specified with this property blocks are removed
from the beginning of the document.
A negative or zero value specifies that the document may contain an unlimited
amount of blocks.
The default value is 0.
Note that setting this property will apply the limit immediately to the document
contents.
Setting this property also disables the undo redo history.
This property is undefined in documents with tables or frames.
*/
int QTextDocument::maximumBlockCount() const
{
Q_D(const QTextDocument);
return d->maximumBlockCount;
}
void QTextDocument::setMaximumBlockCount(int maximum)
{
Q_D(QTextDocument);
d->maximumBlockCount = maximum;
d->ensureMaximumBlockCount();
setUndoRedoEnabled(false);
}
/*!
\since 4.3
The default text option is used on all QTextLayout objects in the document.
This allows setting global properties for the document such as the default
word wrap mode.
*/
QTextOption QTextDocument::defaultTextOption() const
{
Q_D(const QTextDocument);
return d->defaultTextOption;
}
/*!
\since 4.3
Sets the default text option to \a option.
*/
void QTextDocument::setDefaultTextOption(const QTextOption &option)
{
Q_D(QTextDocument);
d->defaultTextOption = option;
if (d->lout)
d->lout->documentChanged(0, 0, d->length());
}
/*!
\property QTextDocument::baseUrl
\since 5.3
\brief the base URL used to resolve relative resource URLs within the document.
Resource URLs are resolved to be within the same directory as the target of the base
URL meaning any portion of the path after the last '/' will be ignored.
\table
\header \li Base URL \li Relative URL \li Resolved URL
\row \li file:///path/to/content \li images/logo.png \li file:///path/to/images/logo.png
\row \li file:///path/to/content/ \li images/logo.png \li file:///path/to/content/images/logo.png
\row \li file:///path/to/content/index.html \li images/logo.png \li file:///path/to/content/images/logo.png
\row \li file:///path/to/content/images/ \li ../images/logo.png \li file:///path/to/content/images/logo.png
\endtable
*/
QUrl QTextDocument::baseUrl() const
{
Q_D(const QTextDocument);
return d->baseUrl;
}
void QTextDocument::setBaseUrl(const QUrl &url)
{
Q_D(QTextDocument);
if (d->baseUrl != url) {
d->baseUrl = url;
if (d->lout)
d->lout->documentChanged(0, 0, d->length());
emit baseUrlChanged(url);
}
}
/*!
\since 4.8
The default cursor movement style is used by all QTextCursor objects
created from the document. The default is Qt::LogicalMoveStyle.
*/
Qt::CursorMoveStyle QTextDocument::defaultCursorMoveStyle() const
{
Q_D(const QTextDocument);
return d->defaultCursorMoveStyle;
}
/*!
\since 4.8
Sets the default cursor movement style to the given \a style.
*/
void QTextDocument::setDefaultCursorMoveStyle(Qt::CursorMoveStyle style)
{
Q_D(QTextDocument);
d->defaultCursorMoveStyle = style;
}
/*!
\fn void QTextDocument::markContentsDirty(int position, int length)
Marks the contents specified by the given \a position and \a length
as "dirty", informing the document that it needs to be laid out
again.
*/
void QTextDocument::markContentsDirty(int from, int length)
{
Q_D(QTextDocument);
d->documentChange(from, length);
if (!d->inContentsChange) {
if (d->lout) {
d->lout->documentChanged(d->docChangeFrom, d->docChangeOldLength, d->docChangeLength);
d->docChangeFrom = -1;
}
}
}
/*!
\property QTextDocument::useDesignMetrics
\since 4.1
\brief whether the document uses design metrics of fonts to improve the accuracy of text layout
If this property is set to true, the layout will use design metrics.
Otherwise, the metrics of the paint device as set on
QAbstractTextDocumentLayout::setPaintDevice() will be used.
Using design metrics makes a layout have a width that is no longer dependent on hinting
and pixel-rounding. This means that WYSIWYG text layout becomes possible because the width
scales much more linearly based on paintdevice metrics than it would otherwise.
By default, this property is \c false.
*/
void QTextDocument::setUseDesignMetrics(bool b)
{
Q_D(QTextDocument);
if (b == d->defaultTextOption.useDesignMetrics())
return;
d->defaultTextOption.setUseDesignMetrics(b);
if (d->lout)
d->lout->documentChanged(0, 0, d->length());
}
bool QTextDocument::useDesignMetrics() const
{
Q_D(const QTextDocument);
return d->defaultTextOption.useDesignMetrics();
}
/*!
\since 4.2
Draws the content of the document with painter \a p, clipped to \a rect.
If \a rect is a null rectangle (default) then the document is painted unclipped.
*/
void QTextDocument::drawContents(QPainter *p, const QRectF &rect)
{
p->save();
QAbstractTextDocumentLayout::PaintContext ctx;
if (rect.isValid()) {
p->setClipRect(rect);
ctx.clip = rect;
}
documentLayout()->draw(p, ctx);
p->restore();
}
/*!
\property QTextDocument::textWidth
\since 4.2
The text width specifies the preferred width for text in the document. If
the text (or content in general) is wider than the specified with it is broken
into multiple lines and grows vertically. If the text cannot be broken into multiple
lines to fit into the specified text width it will be larger and the size() and the
idealWidth() property will reflect that.
If the text width is set to -1 then the text will not be broken into multiple lines
unless it is enforced through an explicit line break or a new paragraph.
The default value is -1.
Setting the text width will also set the page height to -1, causing the document to
grow or shrink vertically in a continuous way. If you want the document layout to break
the text into multiple pages then you have to set the pageSize property instead.
\sa size(), idealWidth(), pageSize()
*/
void QTextDocument::setTextWidth(qreal width)
{
Q_D(QTextDocument);
QSizeF sz = d->pageSize;
sz.setWidth(width);
sz.setHeight(-1);
setPageSize(sz);
}
qreal QTextDocument::textWidth() const
{
Q_D(const QTextDocument);
return d->pageSize.width();
}
/*!
\since 4.2
Returns the ideal width of the text document. The ideal width is the actually used width
of the document without optional alignments taken into account. It is always <= size().width().
\sa adjustSize(), textWidth
*/
qreal QTextDocument::idealWidth() const
{
if (QTextDocumentLayout *lout = qobject_cast<QTextDocumentLayout *>(documentLayout()))
return lout->idealWidth();
return textWidth();
}
/*!
\property QTextDocument::documentMargin
\since 4.5
The margin around the document. The default is 4.
*/
qreal QTextDocument::documentMargin() const
{
Q_D(const QTextDocument);
return d->documentMargin;
}
void QTextDocument::setDocumentMargin(qreal margin)
{
Q_D(QTextDocument);
if (d->documentMargin != margin) {
d->documentMargin = margin;
QTextFrame* root = rootFrame();
QTextFrameFormat format = root->frameFormat();
format.setMargin(margin);
root->setFrameFormat(format);
if (d->lout)
d->lout->documentChanged(0, 0, d->length());
}
}
/*!
\property QTextDocument::indentWidth
\since 4.4
Returns the width used for text list and text block indenting.
The indent properties of QTextListFormat and QTextBlockFormat specify
multiples of this value. The default indent width is 40.
*/
qreal QTextDocument::indentWidth() const
{
Q_D(const QTextDocument);
return d->indentWidth;
}
/*!
\since 4.4
Sets the \a width used for text list and text block indenting.
The indent properties of QTextListFormat and QTextBlockFormat specify
multiples of this value. The default indent width is 40 .
\sa indentWidth()
*/
void QTextDocument::setIndentWidth(qreal width)
{
Q_D(QTextDocument);
if (d->indentWidth != width) {
d->indentWidth = width;
if (d->lout)
d->lout->documentChanged(0, 0, d->length());
}
}
/*!
\since 4.2
Adjusts the document to a reasonable size.
\sa idealWidth(), textWidth, size
*/
void QTextDocument::adjustSize()
{
// Pull this private function in from qglobal.cpp
QFont f = defaultFont();
QFontMetrics fm(f);
int mw = fm.horizontalAdvance(QLatin1Char('x')) * 80;
int w = mw;
setTextWidth(w);
QSizeF size = documentLayout()->documentSize();
if (size.width() != 0) {
w = qt_int_sqrt((uint)(5 * size.height() * size.width() / 3));
setTextWidth(qMin(w, mw));
size = documentLayout()->documentSize();
if (w*3 < 5*size.height()) {
w = qt_int_sqrt((uint)(2 * size.height() * size.width()));
setTextWidth(qMin(w, mw));
}
}
setTextWidth(idealWidth());
}
/*!
\property QTextDocument::size
\since 4.2
Returns the actual size of the document.
This is equivalent to documentLayout()->documentSize();
The size of the document can be changed either by setting
a text width or setting an entire page size.
Note that the width is always >= pageSize().width().
By default, for a newly-created, empty document, this property contains
a configuration-dependent size.
\sa setTextWidth(), setPageSize(), idealWidth()
*/
QSizeF QTextDocument::size() const
{
return documentLayout()->documentSize();
}
/*!
\property QTextDocument::blockCount
\since 4.2
Returns the number of text blocks in the document.
The value of this property is undefined in documents with tables or frames.
By default, if defined, this property contains a value of 1.
\sa lineCount(), characterCount()
*/
int QTextDocument::blockCount() const
{
Q_D(const QTextDocument);
return d->blockMap().numNodes();
}
/*!
\since 4.5
Returns the number of lines of this document (if the layout supports
this). Otherwise, this is identical to the number of blocks.
\sa blockCount(), characterCount()
*/
int QTextDocument::lineCount() const
{
Q_D(const QTextDocument);
return d->blockMap().length(2);
}
/*!
\since 4.5
Returns the number of characters of this document.
\note As a QTextDocument always contains at least one
QChar::ParagraphSeparator, this method will return at least 1.
\sa blockCount(), characterAt()
*/
int QTextDocument::characterCount() const
{
Q_D(const QTextDocument);
return d->length();
}
/*!
\since 4.5
Returns the character at position \a pos, or a null character if the
position is out of range.
\sa characterCount()
*/
QChar QTextDocument::characterAt(int pos) const
{
Q_D(const QTextDocument);
if (pos < 0 || pos >= d->length())
return QChar();
QTextDocumentPrivate::FragmentIterator fragIt = d->find(pos);
const QTextFragmentData * const frag = fragIt.value();
const int offsetInFragment = qMax(0, pos - fragIt.position());
return d->text.at(frag->stringPosition + offsetInFragment);
}
/*!
\property QTextDocument::defaultStyleSheet
\since 4.2
The default style sheet is applied to all newly HTML formatted text that is
inserted into the document, for example using setHtml() or QTextCursor::insertHtml().
The style sheet needs to be compliant to CSS 2.1 syntax.
\b{Note:} Changing the default style sheet does not have any effect to the existing content
of the document.
\sa {Supported HTML Subset}
*/
#ifndef QT_NO_CSSPARSER
void QTextDocument::setDefaultStyleSheet(const QString &sheet)
{
Q_D(QTextDocument);
d->defaultStyleSheet = sheet;
QCss::Parser parser(sheet);
d->parsedDefaultStyleSheet = QCss::StyleSheet();
d->parsedDefaultStyleSheet.origin = QCss::StyleSheetOrigin_UserAgent;
parser.parse(&d->parsedDefaultStyleSheet);
}
QString QTextDocument::defaultStyleSheet() const
{
Q_D(const QTextDocument);
return d->defaultStyleSheet;
}
#endif // QT_NO_CSSPARSER
/*!
\fn void QTextDocument::contentsChanged()
This signal is emitted whenever the document's content changes; for
example, when text is inserted or deleted, or when formatting is applied.
\sa contentsChange()
*/
/*!
\fn void QTextDocument::contentsChange(int position, int charsRemoved, int charsAdded)
This signal is emitted whenever the document's content changes; for
example, when text is inserted or deleted, or when formatting is applied.
Information is provided about the \a position of the character in the
document where the change occurred, the number of characters removed
(\a charsRemoved), and the number of characters added (\a charsAdded).
The signal is emitted before the document's layout manager is notified
about the change. This hook allows you to implement syntax highlighting
for the document.
\sa QAbstractTextDocumentLayout::documentChanged(), contentsChanged()
*/
/*!
\fn void QTextDocument::undoAvailable(bool available);
This signal is emitted whenever undo operations become available
(\a available is true) or unavailable (\a available is false).
See the \l {Overview of Qt's Undo Framework}{Qt Undo Framework}
documentation for details.
\sa undo(), isUndoRedoEnabled()
*/
/*!
\fn void QTextDocument::redoAvailable(bool available);
This signal is emitted whenever redo operations become available
(\a available is true) or unavailable (\a available is false).
*/
/*!
\fn void QTextDocument::cursorPositionChanged(const QTextCursor &cursor);
This signal is emitted whenever the position of a cursor changed
due to an editing operation. The cursor that changed is passed in
\a cursor. If the document is used with the QTextEdit class and you need a signal when the
cursor is moved with the arrow keys you can use the \l{QTextEdit::}{cursorPositionChanged()}
signal in QTextEdit.
*/
/*!
\fn void QTextDocument::blockCountChanged(int newBlockCount);
\since 4.3
This signal is emitted when the total number of text blocks in the
document changes. The value passed in \a newBlockCount is the new
total.
*/
/*!
\fn void QTextDocument::documentLayoutChanged();
\since 4.4
This signal is emitted when a new document layout is set.
\sa setDocumentLayout()
*/
/*!
Returns \c true if undo is available; otherwise returns \c false.
\sa isRedoAvailable(), availableUndoSteps()
*/
bool QTextDocument::isUndoAvailable() const
{
Q_D(const QTextDocument);
return d->isUndoAvailable();
}
/*!
Returns \c true if redo is available; otherwise returns \c false.
\sa isUndoAvailable(), availableRedoSteps()
*/
bool QTextDocument::isRedoAvailable() const
{
Q_D(const QTextDocument);
return d->isRedoAvailable();
}
/*! \since 4.6
Returns the number of available undo steps.
\sa isUndoAvailable()
*/
int QTextDocument::availableUndoSteps() const
{
Q_D(const QTextDocument);
return d->availableUndoSteps();
}
/*! \since 4.6
Returns the number of available redo steps.
\sa isRedoAvailable()
*/
int QTextDocument::availableRedoSteps() const
{
Q_D(const QTextDocument);
return d->availableRedoSteps();
}
/*! \since 4.4
Returns the document's revision (if undo is enabled).
The revision is guaranteed to increase when a document that is not
modified is edited.
\sa QTextBlock::revision(), isModified()
*/
int QTextDocument::revision() const
{
Q_D(const QTextDocument);
return d->revision;
}
/*!
Sets the document to use the given \a layout. The previous layout
is deleted.
\sa documentLayoutChanged()
*/
void QTextDocument::setDocumentLayout(QAbstractTextDocumentLayout *layout)
{
Q_D(QTextDocument);
d->setLayout(layout);
}
/*!
Returns the document layout for this document.
*/
QAbstractTextDocumentLayout *QTextDocument::documentLayout() const
{
Q_D(const QTextDocument);
if (!d->lout) {
QTextDocument *that = const_cast<QTextDocument *>(this);
that->d_func()->setLayout(new QTextDocumentLayout(that));
}
return d->lout;
}
/*!
Returns meta information about the document of the type specified by
\a info.
\sa setMetaInformation()
*/
QString QTextDocument::metaInformation(MetaInformation info) const
{
Q_D(const QTextDocument);
switch (info) {
case DocumentTitle:
return d->title;
case DocumentUrl:
return d->url;
}
return QString();
}
/*!
Sets the document's meta information of the type specified by \a info
to the given \a string.
\sa metaInformation()
*/
void QTextDocument::setMetaInformation(MetaInformation info, const QString &string)
{
Q_D(QTextDocument);
switch (info) {
case DocumentTitle:
d->title = string;
break;
case DocumentUrl:
d->url = string;
break;
}
}
/*!
Returns the raw text contained in the document without any
formatting information. If you want formatting information
use a QTextCursor instead.
\since 5.9
\sa toPlainText()
*/
QString QTextDocument::toRawText() const
{
Q_D(const QTextDocument);
return d->plainText();
}
/*!
Returns the plain text contained in the document. If you want
formatting information use a QTextCursor instead.
This function returns the same as toRawText(), but will replace
some unicode characters with ASCII alternatives.
In particular, no-break space (U+00A0) is replaced by a regular
space (U+0020), and both paragraph (U+2029) and line (U+2028)
separators are replaced by line feed (U+000A).
If you need the precise contents of the document, use toRawText()
instead.
\note Embedded objects, such as images, are represented by a
Unicode value U+FFFC (OBJECT REPLACEMENT CHARACTER).
\sa toHtml()
*/
QString QTextDocument::toPlainText() const
{
Q_D(const QTextDocument);
QString txt = d->plainText();
QChar *uc = txt.data();
QChar *e = uc + txt.size();
for (; uc != e; ++uc) {
switch (uc->unicode()) {
case 0xfdd0: // QTextBeginningOfFrame
case 0xfdd1: // QTextEndOfFrame
case QChar::ParagraphSeparator:
case QChar::LineSeparator:
*uc = QLatin1Char('\n');
break;
case QChar::Nbsp:
*uc = QLatin1Char(' ');
break;
default:
;
}
}
return txt;
}
/*!
Replaces the entire contents of the document with the given plain
\a text. The undo/redo history is reset when this function is called.
\sa setHtml()
*/
void QTextDocument::setPlainText(const QString &text)
{
Q_D(QTextDocument);
bool previousState = d->isUndoRedoEnabled();
d->enableUndoRedo(false);
d->beginEditBlock();
d->clear();
QTextCursor(this).insertText(text);
d->endEditBlock();
d->enableUndoRedo(previousState);
}
/*!
Replaces the entire contents of the document with the given
HTML-formatted text in the \a html string. The undo/redo history
is reset when this function is called.
The HTML formatting is respected as much as possible; for example,
"<b>bold</b> text" will produce text where the first word has a font
weight that gives it a bold appearance: "\b{bold} text".
\note It is the responsibility of the caller to make sure that the
text is correctly decoded when a QString containing HTML is created
and passed to setHtml().
\sa setPlainText(), {Supported HTML Subset}
*/
#ifndef QT_NO_TEXTHTMLPARSER
void QTextDocument::setHtml(const QString &html)
{
Q_D(QTextDocument);
bool previousState = d->isUndoRedoEnabled();
d->enableUndoRedo(false);
d->beginEditBlock();
d->clear();
QTextHtmlImporter(this, html, QTextHtmlImporter::ImportToDocument).import();
d->endEditBlock();
d->enableUndoRedo(previousState);
}
#endif // QT_NO_TEXTHTMLPARSER
/*!
\enum QTextDocument::FindFlag
This enum describes the options available to QTextDocument's find function. The options
can be OR-ed together from the following list:
\value FindBackward Search backwards instead of forwards.
\value FindCaseSensitively By default find works case insensitive. Specifying this option
changes the behaviour to a case sensitive find operation.
\value FindWholeWords Makes find match only complete words.
*/
/*!
\enum QTextDocument::MetaInformation
This enum describes the different types of meta information that can be
added to a document.
\value DocumentTitle The title of the document.
\value DocumentUrl The url of the document. The loadResource() function uses
this url as the base when loading relative resources.
\sa metaInformation(), setMetaInformation()
*/
static bool findInBlock(const QTextBlock &block, const QString &expression, int offset,
QTextDocument::FindFlags options, QTextCursor *cursor)
{
QString text = block.text();
text.replace(QChar::Nbsp, QLatin1Char(' '));
Qt::CaseSensitivity sensitivity = options & QTextDocument::FindCaseSensitively ? Qt::CaseSensitive : Qt::CaseInsensitive;
int idx = -1;
while (offset >= 0 && offset <= text.length()) {
idx = (options & QTextDocument::FindBackward) ?
text.lastIndexOf(expression, offset, sensitivity) : text.indexOf(expression, offset, sensitivity);
if (idx == -1)
return false;
if (options & QTextDocument::FindWholeWords) {
const int start = idx;
const int end = start + expression.length();
if ((start != 0 && text.at(start - 1).isLetterOrNumber())
|| (end != text.length() && text.at(end).isLetterOrNumber())) {
//if this is not a whole word, continue the search in the string
offset = (options & QTextDocument::FindBackward) ? idx-1 : end+1;
idx = -1;
continue;
}
}
//we have a hit, return the cursor for that.
*cursor = QTextCursorPrivate::fromPosition(block.docHandle(), block.position() + idx);
cursor->setPosition(cursor->position() + expression.length(), QTextCursor::KeepAnchor);
return true;
}
return false;
}
/*!
\fn QTextCursor QTextDocument::find(const QString &subString, int position, FindFlags options) const
\overload
Finds the next occurrence of the string, \a subString, in the document.
The search starts at the given \a position, and proceeds forwards
through the document unless specified otherwise in the search options.
The \a options control the type of search performed.
Returns a cursor with the match selected if \a subString
was found; otherwise returns a null cursor.
If the \a position is 0 (the default) the search begins from the beginning
of the document; otherwise it begins at the specified position.
*/
QTextCursor QTextDocument::find(const QString &subString, int from, FindFlags options) const
{
Q_D(const QTextDocument);
if (subString.isEmpty())
return QTextCursor();
int pos = from;
//the cursor is positioned between characters, so for a backward search
//do not include the character given in the position.
if (options & FindBackward) {
--pos ;
if (pos < 0)
return QTextCursor();
}
QTextCursor cursor;
QTextBlock block = d->blocksFind(pos);
int blockOffset = pos - block.position();
if (!(options & FindBackward)) {
while (block.isValid()) {
if (findInBlock(block, subString, blockOffset, options, &cursor))
return cursor;
block = block.next();
blockOffset = 0;
}
} else {
if (blockOffset == block.length() - 1)
--blockOffset; // make sure to skip end-of-paragraph character
while (block.isValid()) {
if (findInBlock(block, subString, blockOffset, options, &cursor))
return cursor;
block = block.previous();
blockOffset = block.length() - 2;
}
}
return QTextCursor();
}
/*!
Finds the next occurrence of the string, \a subString, in the document.
The search starts at the position of the given \a cursor, and proceeds
forwards through the document unless specified otherwise in the search
options. The \a options control the type of search performed.
Returns a cursor with the match selected if \a subString was found; otherwise
returns a null cursor.
If the given \a cursor has a selection, the search begins after the
selection; otherwise it begins at the cursor's position.
By default the search is case insensitive, and can match text anywhere in the
document.
*/
QTextCursor QTextDocument::find(const QString &subString, const QTextCursor &cursor, FindFlags options) const
{
int pos = 0;
if (!cursor.isNull()) {
if (options & QTextDocument::FindBackward)
pos = cursor.selectionStart();
else
pos = cursor.selectionEnd();
}
return find(subString, pos, options);
}
#ifndef QT_NO_REGEXP
static bool findInBlock(const QTextBlock &block, const QRegExp &expression, int offset,
QTextDocument::FindFlags options, QTextCursor *cursor)
{
QRegExp expr(expression);
QString text = block.text();
text.replace(QChar::Nbsp, QLatin1Char(' '));
int idx = -1;
while (offset >=0 && offset <= text.length()) {
idx = (options & QTextDocument::FindBackward) ?
expr.lastIndexIn(text, offset) : expr.indexIn(text, offset);
if (idx == -1)
return false;
if (options & QTextDocument::FindWholeWords) {
const int start = idx;
const int end = start + expr.matchedLength();
if ((start != 0 && text.at(start - 1).isLetterOrNumber())
|| (end != text.length() && text.at(end).isLetterOrNumber())) {
//if this is not a whole word, continue the search in the string
offset = (options & QTextDocument::FindBackward) ? idx-1 : end+1;
idx = -1;
continue;
}
}
//we have a hit, return the cursor for that.
*cursor = QTextCursorPrivate::fromPosition(block.docHandle(), block.position() + idx);
cursor->setPosition(cursor->position() + expr.matchedLength(), QTextCursor::KeepAnchor);
return true;
}
return false;
}
/*!
\overload
Finds the next occurrence that matches the given regular expression,
\a expr, within the same paragraph in the document.
The search starts at the given \a from position, and proceeds forwards
through the document unless specified otherwise in the search options.
The \a options control the type of search performed. The FindCaseSensitively
option is ignored for this overload, use QRegExp::caseSensitivity instead.
Returns a cursor with the match selected if a match was found; otherwise
returns a null cursor.
If the \a from position is 0 (the default) the search begins from the beginning
of the document; otherwise it begins at the specified position.
*/
QTextCursor QTextDocument::find(const QRegExp & expr, int from, FindFlags options) const
{
Q_D(const QTextDocument);
if (expr.isEmpty())
return QTextCursor();
int pos = from;
//the cursor is positioned between characters, so for a backward search
//do not include the character given in the position.
if (options & FindBackward) {
--pos ;
if(pos < 0)
return QTextCursor();
}
QTextCursor cursor;
QTextBlock block = d->blocksFind(pos);
int blockOffset = pos - block.position();
if (!(options & FindBackward)) {
while (block.isValid()) {
if (findInBlock(block, expr, blockOffset, options, &cursor))
return cursor;
block = block.next();
blockOffset = 0;
}
} else {
while (block.isValid()) {
if (findInBlock(block, expr, blockOffset, options, &cursor))
return cursor;
block = block.previous();
blockOffset = block.length() - 1;
}
}
return QTextCursor();
}
/*!
\overload
Finds the next occurrence that matches the given regular expression,
\a expr, within the same paragraph in the document.
The search starts at the position of the given from \a cursor, and proceeds
forwards through the document unless specified otherwise in the search
options. The \a options control the type of search performed. The FindCaseSensitively
option is ignored for this overload, use QRegExp::caseSensitivity instead.
Returns a cursor with the match selected if a match was found; otherwise
returns a null cursor.
If the given \a cursor has a selection, the search begins after the
selection; otherwise it begins at the cursor's position.
By default the search is case insensitive, and can match text anywhere in the
document.
*/
QTextCursor QTextDocument::find(const QRegExp &expr, const QTextCursor &cursor, FindFlags options) const
{
int pos = 0;
if (!cursor.isNull()) {
if (options & QTextDocument::FindBackward)
pos = cursor.selectionStart();
else
pos = cursor.selectionEnd();
}
return find(expr, pos, options);
}
#endif // QT_REGEXP
#if QT_CONFIG(regularexpression)
static bool findInBlock(const QTextBlock &block, const QRegularExpression &expr, int offset,
QTextDocument::FindFlags options, QTextCursor *cursor)
{
QString text = block.text();
text.replace(QChar::Nbsp, QLatin1Char(' '));
QRegularExpressionMatch match;
int idx = -1;
while (offset >= 0 && offset <= text.length()) {
idx = (options & QTextDocument::FindBackward) ?
text.lastIndexOf(expr, offset, &match) : text.indexOf(expr, offset, &match);
if (idx == -1)
return false;
if (options & QTextDocument::FindWholeWords) {
const int start = idx;
const int end = start + match.capturedLength();
if ((start != 0 && text.at(start - 1).isLetterOrNumber())
|| (end != text.length() && text.at(end).isLetterOrNumber())) {
//if this is not a whole word, continue the search in the string
offset = (options & QTextDocument::FindBackward) ? idx-1 : end+1;
idx = -1;
continue;
}
}
//we have a hit, return the cursor for that.
*cursor = QTextCursorPrivate::fromPosition(block.docHandle(), block.position() + idx);
cursor->setPosition(cursor->position() + match.capturedLength(), QTextCursor::KeepAnchor);
return true;
}
return false;
}
/*!
\since 5.5
Finds the next occurrence that matches the given regular expression,
\a expr, within the same paragraph in the document.
The search starts at the given \a from position, and proceeds forwards
through the document unless specified otherwise in the search options.
The \a options control the type of search performed.
Returns a cursor with the match selected if a match was found; otherwise
returns a null cursor.
If the \a from position is 0 (the default) the search begins from the beginning
of the document; otherwise it begins at the specified position.
*/
QTextCursor QTextDocument::find(const QRegularExpression &expr, int from, FindFlags options) const
{
Q_D(const QTextDocument);
if (!expr.isValid())
return QTextCursor();
int pos = from;
//the cursor is positioned between characters, so for a backward search
//do not include the character given in the position.
if (options & FindBackward) {
--pos ;
if (pos < 0)
return QTextCursor();
}
QTextCursor cursor;
QTextBlock block = d->blocksFind(pos);
int blockOffset = pos - block.position();
QRegularExpression expression(expr);
if (!(options & QTextDocument::FindCaseSensitively))
expression.setPatternOptions(expr.patternOptions() | QRegularExpression::CaseInsensitiveOption);
else
expression.setPatternOptions(expr.patternOptions() & ~QRegularExpression::CaseInsensitiveOption);
if (!(options & FindBackward)) {
while (block.isValid()) {
if (findInBlock(block, expression, blockOffset, options, &cursor))
return cursor;
block = block.next();
blockOffset = 0;
}
} else {
while (block.isValid()) {
if (findInBlock(block, expression, blockOffset, options, &cursor))
return cursor;
block = block.previous();
blockOffset = block.length() - 1;
}
}
return QTextCursor();
}
/*!
\since 5.5
Finds the next occurrence that matches the given regular expression,
\a expr, within the same paragraph in the document.
The search starts at the position of the given \a cursor, and proceeds
forwards through the document unless specified otherwise in the search
options. The \a options control the type of search performed.
Returns a cursor with the match selected if a match was found; otherwise
returns a null cursor.
If the given \a cursor has a selection, the search begins after the
selection; otherwise it begins at the cursor's position.
By default the search is case insensitive, and can match text anywhere in the
document.
*/
QTextCursor QTextDocument::find(const QRegularExpression &expr, const QTextCursor &cursor, FindFlags options) const
{
int pos = 0;
if (!cursor.isNull()) {
if (options & QTextDocument::FindBackward)
pos = cursor.selectionStart();
else
pos = cursor.selectionEnd();
}
return find(expr, pos, options);
}
#endif // QT_CONFIG(regularexpression)
/*!
\fn QTextObject *QTextDocument::createObject(const QTextFormat &format)
Creates and returns a new document object (a QTextObject), based
on the given \a format.
QTextObjects will always get created through this method, so you
must reimplement it if you use custom text objects inside your document.
*/
QTextObject *QTextDocument::createObject(const QTextFormat &f)
{
QTextObject *obj = nullptr;
if (f.isListFormat())
obj = new QTextList(this);
else if (f.isTableFormat())
obj = new QTextTable(this);
else if (f.isFrameFormat())
obj = new QTextFrame(this);
return obj;
}
/*!
\internal
Returns the frame that contains the text cursor position \a pos.
*/
QTextFrame *QTextDocument::frameAt(int pos) const
{
Q_D(const QTextDocument);
return d->frameAt(pos);
}
/*!
Returns the document's root frame.
*/
QTextFrame *QTextDocument::rootFrame() const
{
Q_D(const QTextDocument);
return d->rootFrame();
}
/*!
Returns the text object associated with the given \a objectIndex.
*/
QTextObject *QTextDocument::object(int objectIndex) const
{
Q_D(const QTextDocument);
return d->objectForIndex(objectIndex);
}
/*!
Returns the text object associated with the format \a f.
*/
QTextObject *QTextDocument::objectForFormat(const QTextFormat &f) const
{
Q_D(const QTextDocument);
return d->objectForFormat(f);
}
/*!
Returns the text block that contains the \a{pos}-th character.
*/
QTextBlock QTextDocument::findBlock(int pos) const
{
Q_D(const QTextDocument);
return QTextBlock(docHandle(), d->blockMap().findNode(pos));
}
/*!
\since 4.4
Returns the text block with the specified \a blockNumber.
\sa QTextBlock::blockNumber()
*/
QTextBlock QTextDocument::findBlockByNumber(int blockNumber) const
{
Q_D(const QTextDocument);
return QTextBlock(docHandle(), d->blockMap().findNode(blockNumber, 1));
}
/*!
\since 4.5
Returns the text block that contains the specified \a lineNumber.
\sa QTextBlock::firstLineNumber()
*/
QTextBlock QTextDocument::findBlockByLineNumber(int lineNumber) const
{
Q_D(const QTextDocument);
return QTextBlock(docHandle(), d->blockMap().findNode(lineNumber, 2));
}
/*!
Returns the document's first text block.
\sa firstBlock()
*/
QTextBlock QTextDocument::begin() const
{
Q_D(const QTextDocument);
return QTextBlock(docHandle(), d->blockMap().begin().n);
}
/*!
This function returns a block to test for the end of the document
while iterating over it.
\snippet textdocumentendsnippet.cpp 0
The block returned is invalid and represents the block after the
last block in the document. You can use lastBlock() to retrieve the
last valid block of the document.
\sa lastBlock()
*/
QTextBlock QTextDocument::end() const
{
return QTextBlock(docHandle(), 0);
}
/*!
\since 4.4
Returns the document's first text block.
*/
QTextBlock QTextDocument::firstBlock() const
{
Q_D(const QTextDocument);
return QTextBlock(docHandle(), d->blockMap().begin().n);
}
/*!
\since 4.4
Returns the document's last (valid) text block.
*/
QTextBlock QTextDocument::lastBlock() const
{
Q_D(const QTextDocument);
return QTextBlock(docHandle(), d->blockMap().last().n);
}
/*!
\property QTextDocument::pageSize
\brief the page size that should be used for laying out the document
The units are determined by the underlying paint device. The size is
measured in logical pixels when painting to the screen, and in points
(1/72 inch) when painting to a printer.
By default, for a newly-created, empty document, this property contains
an undefined size.
\sa modificationChanged()
*/
void QTextDocument::setPageSize(const QSizeF &size)
{
Q_D(QTextDocument);
d->pageSize = size;
if (d->lout)
d->lout->documentChanged(0, 0, d->length());
}
QSizeF QTextDocument::pageSize() const
{
Q_D(const QTextDocument);
return d->pageSize;
}
/*!
returns the number of pages in this document.
*/
int QTextDocument::pageCount() const
{
return documentLayout()->pageCount();
}
/*!
Sets the default \a font to use in the document layout.
*/
void QTextDocument::setDefaultFont(const QFont &font)
{
Q_D(QTextDocument);
d->setDefaultFont(font);
if (d->lout)
d->lout->documentChanged(0, 0, d->length());
}
/*!
Returns the default font to be used in the document layout.
*/
QFont QTextDocument::defaultFont() const
{
Q_D(const QTextDocument);
return d->defaultFont();
}
/*!
\fn void QTextDocument::modificationChanged(bool changed)
This signal is emitted whenever the content of the document
changes in a way that affects the modification state. If \a
changed is true, the document has been modified; otherwise it is
false.
For example, calling setModified(false) on a document and then
inserting text causes the signal to get emitted. If you undo that
operation, causing the document to return to its original
unmodified state, the signal will get emitted again.
*/
/*!
\property QTextDocument::modified
\brief whether the document has been modified by the user
By default, this property is \c false.
\sa modificationChanged()
*/
bool QTextDocument::isModified() const
{
return docHandle()->isModified();
}
void QTextDocument::setModified(bool m)
{
docHandle()->setModified(m);
}
#ifndef QT_NO_PRINTER
static void printPage(int index, QPainter *painter, const QTextDocument *doc, const QRectF &body, const QPointF &pageNumberPos)
{
painter->save();
painter->translate(body.left(), body.top() - (index - 1) * body.height());
QRectF view(0, (index - 1) * body.height(), body.width(), body.height());
QAbstractTextDocumentLayout *layout = doc->documentLayout();
QAbstractTextDocumentLayout::PaintContext ctx;
painter->setClipRect(view);
ctx.clip = view;
// don't use the system palette text as default text color, on HP/UX
// for example that's white, and white text on white paper doesn't
// look that nice
ctx.palette.setColor(QPalette::Text, Qt::black);
layout->draw(painter, ctx);
if (!pageNumberPos.isNull()) {
painter->setClipping(false);
painter->setFont(QFont(doc->defaultFont()));
const QString pageString = QString::number(index);
painter->drawText(qRound(pageNumberPos.x() - painter->fontMetrics().horizontalAdvance(pageString)),
qRound(pageNumberPos.y() + view.top()),
pageString);
}
painter->restore();
}
/*!
Prints the document to the given \a printer. The QPagedPaintDevice must be
set up before being used with this function.
This is only a convenience method to print the whole document to the printer.
If the document is already paginated through a specified height in the pageSize()
property it is printed as-is.
If the document is not paginated, like for example a document used in a QTextEdit,
then a temporary copy of the document is created and the copy is broken into
multiple pages according to the size of the paint device's paperRect(). By default
a 2 cm margin is set around the document contents. In addition the current page
number is printed at the bottom of each page.
\sa QTextEdit::print()
*/
void QTextDocument::print(QPagedPaintDevice *printer) const
{
Q_D(const QTextDocument);
if (!printer)
return;
bool documentPaginated = d->pageSize.isValid() && !d->pageSize.isNull()
&& d->pageSize.height() != INT_MAX;
QPagedPaintDevicePrivate *pd = QPagedPaintDevicePrivate::get(printer);
// ### set page size to paginated size?
QPagedPaintDevice::Margins m = printer->margins();
if (!documentPaginated && m.left == 0. && m.right == 0. && m.top == 0. && m.bottom == 0.) {
m.left = m.right = m.top = m.bottom = 2.;
printer->setMargins(m);
}
// ### use the margins correctly
QPainter p(printer);
// Check that there is a valid device to print to.
if (!p.isActive())
return;
const QTextDocument *doc = this;
QScopedPointer<QTextDocument> clonedDoc;
(void)doc->documentLayout(); // make sure that there is a layout
QRectF body = QRectF(QPointF(0, 0), d->pageSize);
QPointF pageNumberPos;
qreal sourceDpiX = qt_defaultDpiX();
qreal sourceDpiY = qt_defaultDpiY();
const qreal dpiScaleX = qreal(printer->logicalDpiX()) / sourceDpiX;
const qreal dpiScaleY = qreal(printer->logicalDpiY()) / sourceDpiY;
if (documentPaginated) {
QPaintDevice *dev = doc->documentLayout()->paintDevice();
if (dev) {
sourceDpiX = dev->logicalDpiX();
sourceDpiY = dev->logicalDpiY();
}
// scale to dpi
p.scale(dpiScaleX, dpiScaleY);
QSizeF scaledPageSize = d->pageSize;
scaledPageSize.rwidth() *= dpiScaleX;
scaledPageSize.rheight() *= dpiScaleY;
const QSizeF printerPageSize(printer->width(), printer->height());
// scale to page
p.scale(printerPageSize.width() / scaledPageSize.width(),
printerPageSize.height() / scaledPageSize.height());
} else {
doc = clone(const_cast<QTextDocument *>(this));
clonedDoc.reset(const_cast<QTextDocument *>(doc));
for (QTextBlock srcBlock = firstBlock(), dstBlock = clonedDoc->firstBlock();
srcBlock.isValid() && dstBlock.isValid();
srcBlock = srcBlock.next(), dstBlock = dstBlock.next()) {
dstBlock.layout()->setFormats(srcBlock.layout()->formats());
}
QAbstractTextDocumentLayout *layout = doc->documentLayout();
layout->setPaintDevice(p.device());
// copy the custom object handlers
layout->d_func()->handlers = documentLayout()->d_func()->handlers;
// 2 cm margins, scaled to device in QTextDocumentLayoutPrivate::layoutFrame
const int horizontalMargin = int((2/2.54)*sourceDpiX);
const int verticalMargin = int((2/2.54)*sourceDpiY);
QTextFrameFormat fmt = doc->rootFrame()->frameFormat();
fmt.setLeftMargin(horizontalMargin);
fmt.setRightMargin(horizontalMargin);
fmt.setTopMargin(verticalMargin);
fmt.setBottomMargin(verticalMargin);
doc->rootFrame()->setFrameFormat(fmt);
// pageNumberPos must be in device coordinates, so scale to device here
const int dpiy = p.device()->logicalDpiY();
body = QRectF(0, 0, printer->width(), printer->height());
pageNumberPos = QPointF(body.width() - horizontalMargin * dpiScaleX,
body.height() - verticalMargin * dpiScaleY
+ QFontMetrics(doc->defaultFont(), p.device()).ascent()
+ 5 * dpiy / 72.0);
clonedDoc->setPageSize(body.size());
}
int fromPage = pd->fromPage;
int toPage = pd->toPage;
if (fromPage == 0 && toPage == 0) {
fromPage = 1;
toPage = doc->pageCount();
}
// paranoia check
fromPage = qMax(1, fromPage);
toPage = qMin(doc->pageCount(), toPage);
if (toPage < fromPage) {
// if the user entered a page range outside the actual number
// of printable pages, just return
return;
}
// bool ascending = true;
// if (printer->pageOrder() == QPrinter::LastPageFirst) {
// int tmp = fromPage;
// fromPage = toPage;
// toPage = tmp;
// ascending = false;
// }
int page = fromPage;
while (true) {
printPage(page, &p, doc, body, pageNumberPos);
if (page == toPage)
break;
++page;
if (!printer->newPage())
return;
}
}
#endif
/*!
\enum QTextDocument::ResourceType
This enum describes the types of resources that can be loaded by
QTextDocument's loadResource() function or by QTextBrowser::setSource().
\value UnknownResource No resource is loaded, or the resource type is not known.
\value HtmlResource The resource contains HTML.
\value ImageResource The resource contains image data.
Currently supported data types are QVariant::Pixmap and
QVariant::Image. If the corresponding variant is of type
QVariant::ByteArray then Qt attempts to load the image using
QImage::loadFromData. QVariant::Icon is currently not supported.
The icon needs to be converted to one of the supported types first,
for example using QIcon::pixmap.
\value StyleSheetResource The resource contains CSS.
\value MarkdownResource The resource contains Markdown.
\value UserResource The first available value for user defined
resource types.
\sa loadResource(), QTextBrowser::sourceType()
*/
/*!
Returns data of the specified \a type from the resource with the
given \a name.
This function is called by the rich text engine to request data that isn't
directly stored by QTextDocument, but still associated with it. For example,
images are referenced indirectly by the name attribute of a QTextImageFormat
object.
Resources are cached internally in the document. If a resource can
not be found in the cache, loadResource is called to try to load
the resource. loadResource should then use addResource to add the
resource to the cache.
\sa QTextDocument::ResourceType
*/
QVariant QTextDocument::resource(int type, const QUrl &name) const
{
Q_D(const QTextDocument);
const QUrl url = d->baseUrl.resolved(name);
QVariant r = d->resources.value(url);
if (!r.isValid()) {
r = d->cachedResources.value(url);
if (!r.isValid())
r = const_cast<QTextDocument *>(this)->loadResource(type, url);
}
return r;
}
/*!
Adds the resource \a resource to the resource cache, using \a
type and \a name as identifiers. \a type should be a value from
QTextDocument::ResourceType.
For example, you can add an image as a resource in order to reference it
from within the document:
\snippet textdocument-resources/main.cpp Adding a resource
The image can be inserted into the document using the QTextCursor API:
\snippet textdocument-resources/main.cpp Inserting an image with a cursor
Alternatively, you can insert images using the HTML \c img tag:
\snippet textdocument-resources/main.cpp Inserting an image using HTML
*/
void QTextDocument::addResource(int type, const QUrl &name, const QVariant &resource)
{
Q_UNUSED(type);
Q_D(QTextDocument);
d->resources.insert(name, resource);
}
/*!
Loads data of the specified \a type from the resource with the
given \a name.
This function is called by the rich text engine to request data that isn't
directly stored by QTextDocument, but still associated with it. For example,
images are referenced indirectly by the name attribute of a QTextImageFormat
object.
When called by Qt, \a type is one of the values of
QTextDocument::ResourceType.
If the QTextDocument is a child object of a QObject that has an invokable
loadResource method such as QTextEdit, QTextBrowser
or a QTextDocument itself then the default implementation tries
to retrieve the data from the parent.
*/
QVariant QTextDocument::loadResource(int type, const QUrl &name)
{
Q_D(QTextDocument);
QVariant r;
QObject *p = parent();
if (p) {
const QMetaObject *me = p->metaObject();
int index = me->indexOfMethod("loadResource(int,QUrl)");
if (index >= 0) {
QMetaMethod loader = me->method(index);
loader.invoke(p, Q_RETURN_ARG(QVariant, r), Q_ARG(int, type), Q_ARG(QUrl, name));
}
}
// handle data: URLs
if (r.isNull() && name.scheme().compare(QLatin1String("data"), Qt::CaseInsensitive) == 0) {
QString mimetype;
QByteArray payload;
if (qDecodeDataUrl(name, mimetype, payload))
r = payload;
}
// if resource was not loaded try to load it here
if (!qobject_cast<QTextDocument *>(p) && r.isNull()) {
QUrl resourceUrl = name;
if (name.isRelative()) {
QUrl currentURL = d->url;
// For the second case QUrl can merge "#someanchor" with "foo.html"
// correctly to "foo.html#someanchor"
if (!(currentURL.isRelative()
|| (currentURL.scheme() == QLatin1String("file")
&& !QFileInfo(currentURL.toLocalFile()).isAbsolute()))
|| (name.hasFragment() && name.path().isEmpty())) {
resourceUrl = currentURL.resolved(name);
} else {
// this is our last resort when current url and new url are both relative
// we try to resolve against the current working directory in the local
// file system.
QFileInfo fi(currentURL.toLocalFile());
if (fi.exists()) {
resourceUrl =
QUrl::fromLocalFile(fi.absolutePath() + QDir::separator()).resolved(name);
} else if (currentURL.isEmpty()) {
resourceUrl.setScheme(QLatin1String("file"));
}
}
}
QString s = resourceUrl.toLocalFile();
QFile f(s);
if (!s.isEmpty() && f.open(QFile::ReadOnly)) {
r = f.readAll();
f.close();
}
}
if (!r.isNull()) {
if (type == ImageResource && r.userType() == QMetaType::QByteArray) {
if (qApp->thread() != QThread::currentThread()) {
// must use images in non-GUI threads
QImage image;
image.loadFromData(r.toByteArray());
if (!image.isNull())
r = image;
} else {
QPixmap pm;
pm.loadFromData(r.toByteArray());
if (!pm.isNull())
r = pm;
}
}
d->cachedResources.insert(name, r);
}
return r;
}
static QTextFormat formatDifference(const QTextFormat &from, const QTextFormat &to)
{
QTextFormat diff = to;
const QMap<int, QVariant> props = to.properties();
for (QMap<int, QVariant>::ConstIterator it = props.begin(), end = props.end();
it != end; ++it)
if (it.value() == from.property(it.key()))
diff.clearProperty(it.key());
return diff;
}
static QString colorValue(QColor color)
{
QString result;
if (color.alpha() == 255) {
result = color.name();
} else if (color.alpha()) {
QString alphaValue = QString::number(color.alphaF(), 'f', 6).remove(QRegExp(QLatin1String("\\.?0*$")));
result = QString::fromLatin1("rgba(%1,%2,%3,%4)").arg(color.red())
.arg(color.green())
.arg(color.blue())
.arg(alphaValue);
} else {
result = QLatin1String("transparent");
}
return result;
}
QTextHtmlExporter::QTextHtmlExporter(const QTextDocument *_doc)
: doc(_doc), fragmentMarkers(false)
{
const QFont defaultFont = doc->defaultFont();
defaultCharFormat.setFont(defaultFont);
// don't export those for the default font since we cannot turn them off with CSS
defaultCharFormat.clearProperty(QTextFormat::FontUnderline);
defaultCharFormat.clearProperty(QTextFormat::FontOverline);
defaultCharFormat.clearProperty(QTextFormat::FontStrikeOut);
defaultCharFormat.clearProperty(QTextFormat::TextUnderlineStyle);
}
static QStringList resolvedFontFamilies(const QTextCharFormat &format)
{
QStringList fontFamilies = format.fontFamilies().toStringList();
const QString mainFontFamily = format.fontFamily();
if (!mainFontFamily.isEmpty() && !fontFamilies.contains(mainFontFamily))
fontFamilies.append(mainFontFamily);
return fontFamilies;
}
/*!
Returns the document in HTML format. The conversion may not be
perfect, especially for complex documents, due to the limitations
of HTML.
*/
QString QTextHtmlExporter::toHtml(const QByteArray &encoding, ExportMode mode)
{
html = QLatin1String("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" "
"\"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" />");
html.reserve(doc->docHandle()->length());
fragmentMarkers = (mode == ExportFragment);
if (!encoding.isEmpty())
html += QString::fromLatin1("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=%1\" />").arg(QString::fromLatin1(encoding));
QString title = doc->metaInformation(QTextDocument::DocumentTitle);
if (!title.isEmpty())
html += QString::fromLatin1("<title>") + title + QString::fromLatin1("</title>");
html += QLatin1String("<style type=\"text/css\">\n");
html += QLatin1String("p, li { white-space: pre-wrap; }\n");
html += QLatin1String("</style>");
html += QLatin1String("</head><body");
if (mode == ExportEntireDocument) {
html += QLatin1String(" style=\"");
emitFontFamily(resolvedFontFamilies(defaultCharFormat));
if (defaultCharFormat.hasProperty(QTextFormat::FontPointSize)) {
html += QLatin1String(" font-size:");
html += QString::number(defaultCharFormat.fontPointSize());
html += QLatin1String("pt;");
} else if (defaultCharFormat.hasProperty(QTextFormat::FontPixelSize)) {
html += QLatin1String(" font-size:");
html += QString::number(defaultCharFormat.intProperty(QTextFormat::FontPixelSize));
html += QLatin1String("px;");
}
html += QLatin1String(" font-weight:");
html += QString::number(defaultCharFormat.fontWeight() * 8);
html += QLatin1Char(';');
html += QLatin1String(" font-style:");
html += (defaultCharFormat.fontItalic() ? QLatin1String("italic") : QLatin1String("normal"));
html += QLatin1Char(';');
const bool percentSpacing = (defaultCharFormat.fontLetterSpacingType() == QFont::PercentageSpacing);
if (defaultCharFormat.hasProperty(QTextFormat::FontLetterSpacing) &&
(!percentSpacing || defaultCharFormat.fontLetterSpacing() != 0.0)) {
html += QLatin1String(" letter-spacing:");
qreal value = defaultCharFormat.fontLetterSpacing();
if (percentSpacing) // Map to em (100% == 0em)
value = (value / 100) - 1;
html += QString::number(value);
html += percentSpacing ? QLatin1String("em;") : QLatin1String("px;");
}
if (defaultCharFormat.hasProperty(QTextFormat::FontWordSpacing) &&
defaultCharFormat.fontWordSpacing() != 0.0) {
html += QLatin1String(" word-spacing:");
html += QString::number(defaultCharFormat.fontWordSpacing());
html += QLatin1String("px;");
}
// do not set text-decoration on the default font since those values are /always/ propagated
// and cannot be turned off with CSS
html += QLatin1Char('\"');
const QTextFrameFormat fmt = doc->rootFrame()->frameFormat();
emitBackgroundAttribute(fmt);
} else {
defaultCharFormat = QTextCharFormat();
}
html += QLatin1Char('>');
QTextFrameFormat rootFmt = doc->rootFrame()->frameFormat();
rootFmt.clearProperty(QTextFormat::BackgroundBrush);
QTextFrameFormat defaultFmt;
defaultFmt.setMargin(doc->documentMargin());
if (rootFmt == defaultFmt)
emitFrame(doc->rootFrame()->begin());
else
emitTextFrame(doc->rootFrame());
html += QLatin1String("</body></html>");
return html;
}
void QTextHtmlExporter::emitAttribute(const char *attribute, const QString &value)
{
html += QLatin1Char(' ');
html += QLatin1String(attribute);
html += QLatin1String("=\"");
html += value.toHtmlEscaped();
html += QLatin1Char('"');
}
bool QTextHtmlExporter::emitCharFormatStyle(const QTextCharFormat &format)
{
bool attributesEmitted = false;
{
const QStringList families = resolvedFontFamilies(format);
if (!families.isEmpty() && families != resolvedFontFamilies(defaultCharFormat)) {
emitFontFamily(families);
attributesEmitted = true;
}
}
if (format.hasProperty(QTextFormat::FontPointSize)
&& format.fontPointSize() != defaultCharFormat.fontPointSize()) {
html += QLatin1String(" font-size:");
html += QString::number(format.fontPointSize());
html += QLatin1String("pt;");
attributesEmitted = true;
} else if (format.hasProperty(QTextFormat::FontSizeAdjustment)) {
static const char sizeNameData[] =
"small" "\0"
"medium" "\0"
"xx-large" ;
static const quint8 sizeNameOffsets[] = {
0, // "small"
sizeof("small"), // "medium"
sizeof("small") + sizeof("medium") + 3, // "large" )
sizeof("small") + sizeof("medium") + 1, // "x-large" )> compressed into "xx-large"
sizeof("small") + sizeof("medium"), // "xx-large" )
};
const char *name = nullptr;
const int idx = format.intProperty(QTextFormat::FontSizeAdjustment) + 1;
if (idx >= 0 && idx <= 4) {
name = sizeNameData + sizeNameOffsets[idx];
}
if (name) {
html += QLatin1String(" font-size:");
html += QLatin1String(name);
html += QLatin1Char(';');
attributesEmitted = true;
}
} else if (format.hasProperty(QTextFormat::FontPixelSize)) {
html += QLatin1String(" font-size:");
html += QString::number(format.intProperty(QTextFormat::FontPixelSize));
html += QLatin1String("px;");
attributesEmitted = true;
}
if (format.hasProperty(QTextFormat::FontWeight)
&& format.fontWeight() != defaultCharFormat.fontWeight()) {
html += QLatin1String(" font-weight:");
html += QString::number(format.fontWeight() * 8);
html += QLatin1Char(';');
attributesEmitted = true;
}
if (format.hasProperty(QTextFormat::FontItalic)
&& format.fontItalic() != defaultCharFormat.fontItalic()) {
html += QLatin1String(" font-style:");
html += (format.fontItalic() ? QLatin1String("italic") : QLatin1String("normal"));
html += QLatin1Char(';');
attributesEmitted = true;
}
QLatin1String decorationTag(" text-decoration:");
html += decorationTag;
bool hasDecoration = false;
bool atLeastOneDecorationSet = false;
if ((format.hasProperty(QTextFormat::FontUnderline) || format.hasProperty(QTextFormat::TextUnderlineStyle))
&& format.fontUnderline() != defaultCharFormat.fontUnderline()) {
hasDecoration = true;
if (format.fontUnderline()) {
html += QLatin1String(" underline");
atLeastOneDecorationSet = true;
}
}
if (format.hasProperty(QTextFormat::FontOverline)
&& format.fontOverline() != defaultCharFormat.fontOverline()) {
hasDecoration = true;
if (format.fontOverline()) {
html += QLatin1String(" overline");
atLeastOneDecorationSet = true;
}
}
if (format.hasProperty(QTextFormat::FontStrikeOut)
&& format.fontStrikeOut() != defaultCharFormat.fontStrikeOut()) {
hasDecoration = true;
if (format.fontStrikeOut()) {
html += QLatin1String(" line-through");
atLeastOneDecorationSet = true;
}
}
if (hasDecoration) {
if (!atLeastOneDecorationSet)
html += QLatin1String("none");
html += QLatin1Char(';');
attributesEmitted = true;
} else {
html.chop(decorationTag.size());
}
if (format.foreground() != defaultCharFormat.foreground()
&& format.foreground().style() != Qt::NoBrush) {
QBrush brush = format.foreground();
if (brush.style() == Qt::TexturePattern) {
const bool isPixmap = qHasPixmapTexture(brush);
const qint64 cacheKey = isPixmap ? brush.texture().cacheKey() : brush.textureImage().cacheKey();
html += QLatin1String(" -qt-fg-texture-cachekey:");
html += QString::number(cacheKey);
html += QLatin1String(";");
} else {
html += QLatin1String(" color:");
html += colorValue(brush.color());
html += QLatin1Char(';');
}
attributesEmitted = true;
}
if (format.background() != defaultCharFormat.background()
&& format.background().style() == Qt::SolidPattern) {
html += QLatin1String(" background-color:");
html += colorValue(format.background().color());
html += QLatin1Char(';');
attributesEmitted = true;
}
if (format.verticalAlignment() != defaultCharFormat.verticalAlignment()
&& format.verticalAlignment() != QTextCharFormat::AlignNormal)
{
html += QLatin1String(" vertical-align:");
QTextCharFormat::VerticalAlignment valign = format.verticalAlignment();
if (valign == QTextCharFormat::AlignSubScript)
html += QLatin1String("sub");
else if (valign == QTextCharFormat::AlignSuperScript)
html += QLatin1String("super");
else if (valign == QTextCharFormat::AlignMiddle)
html += QLatin1String("middle");
else if (valign == QTextCharFormat::AlignTop)
html += QLatin1String("top");
else if (valign == QTextCharFormat::AlignBottom)
html += QLatin1String("bottom");
html += QLatin1Char(';');
attributesEmitted = true;
}
if (format.fontCapitalization() != QFont::MixedCase) {
const QFont::Capitalization caps = format.fontCapitalization();
if (caps == QFont::AllUppercase)
html += QLatin1String(" text-transform:uppercase;");
else if (caps == QFont::AllLowercase)
html += QLatin1String(" text-transform:lowercase;");
else if (caps == QFont::SmallCaps)
html += QLatin1String(" font-variant:small-caps;");
attributesEmitted = true;
}
if (format.fontWordSpacing() != 0.0) {
html += QLatin1String(" word-spacing:");
html += QString::number(format.fontWordSpacing());
html += QLatin1String("px;");
attributesEmitted = true;
}
return attributesEmitted;
}
void QTextHtmlExporter::emitTextLength(const char *attribute, const QTextLength &length)
{
if (length.type() == QTextLength::VariableLength) // default
return;
html += QLatin1Char(' ');
html += QLatin1String(attribute);
html += QLatin1String("=\"");
html += QString::number(length.rawValue());
if (length.type() == QTextLength::PercentageLength)
html += QLatin1String("%\"");
else
html += QLatin1Char('\"');
}
void QTextHtmlExporter::emitAlignment(Qt::Alignment align)
{
if (align & Qt::AlignLeft)
return;
else if (align & Qt::AlignRight)
html += QLatin1String(" align=\"right\"");
else if (align & Qt::AlignHCenter)
html += QLatin1String(" align=\"center\"");
else if (align & Qt::AlignJustify)
html += QLatin1String(" align=\"justify\"");
}
void QTextHtmlExporter::emitFloatStyle(QTextFrameFormat::Position pos, StyleMode mode)
{
if (pos == QTextFrameFormat::InFlow)
return;
if (mode == EmitStyleTag)
html += QLatin1String(" style=\"float:");
else
html += QLatin1String(" float:");
if (pos == QTextFrameFormat::FloatLeft)
html += QLatin1String(" left;");
else if (pos == QTextFrameFormat::FloatRight)
html += QLatin1String(" right;");
else
Q_ASSERT_X(0, "QTextHtmlExporter::emitFloatStyle()", "pos should be a valid enum type");
if (mode == EmitStyleTag)
html += QLatin1Char('\"');
}
static QLatin1String richtextBorderStyleToHtmlBorderStyle(QTextFrameFormat::BorderStyle style)
{
switch (style) {
case QTextFrameFormat::BorderStyle_None:
return QLatin1String("none");
case QTextFrameFormat::BorderStyle_Dotted:
return QLatin1String("dotted");
case QTextFrameFormat::BorderStyle_Dashed:
return QLatin1String("dashed");
case QTextFrameFormat::BorderStyle_Solid:
return QLatin1String("solid");
case QTextFrameFormat::BorderStyle_Double:
return QLatin1String("double");
case QTextFrameFormat::BorderStyle_DotDash:
return QLatin1String("dot-dash");
case QTextFrameFormat::BorderStyle_DotDotDash:
return QLatin1String("dot-dot-dash");
case QTextFrameFormat::BorderStyle_Groove:
return QLatin1String("groove");
case QTextFrameFormat::BorderStyle_Ridge:
return QLatin1String("ridge");
case QTextFrameFormat::BorderStyle_Inset:
return QLatin1String("inset");
case QTextFrameFormat::BorderStyle_Outset:
return QLatin1String("outset");
default:
Q_UNREACHABLE();
};
return QLatin1String("");
}
void QTextHtmlExporter::emitBorderStyle(QTextFrameFormat::BorderStyle style)
{
Q_ASSERT(style <= QTextFrameFormat::BorderStyle_Outset);
html += QLatin1String(" border-style:");
html += richtextBorderStyleToHtmlBorderStyle(style);
html += QLatin1Char(';');
}
void QTextHtmlExporter::emitPageBreakPolicy(QTextFormat::PageBreakFlags policy)
{
if (policy & QTextFormat::PageBreak_AlwaysBefore)
html += QLatin1String(" page-break-before:always;");
if (policy & QTextFormat::PageBreak_AlwaysAfter)
html += QLatin1String(" page-break-after:always;");
}
void QTextHtmlExporter::emitFontFamily(const QStringList &families)
{
html += QLatin1String(" font-family:");
bool first = true;
for (const QString &family : families) {
QLatin1String quote("\'");
if (family.contains(QLatin1Char('\'')))
quote = QLatin1String("&quot;");
if (!first)
html += QLatin1String(",");
else
first = false;
html += quote;
html += family.toHtmlEscaped();
html += quote;
}
html += QLatin1Char(';');
}
void QTextHtmlExporter::emitMargins(const QString &top, const QString &bottom, const QString &left, const QString &right)
{
html += QLatin1String(" margin-top:");
html += top;
html += QLatin1String("px;");
html += QLatin1String(" margin-bottom:");
html += bottom;
html += QLatin1String("px;");
html += QLatin1String(" margin-left:");
html += left;
html += QLatin1String("px;");
html += QLatin1String(" margin-right:");
html += right;
html += QLatin1String("px;");
}
void QTextHtmlExporter::emitFragment(const QTextFragment &fragment)
{
const QTextCharFormat format = fragment.charFormat();
bool closeAnchor = false;
if (format.isAnchor()) {
const auto names = format.anchorNames();
if (!names.isEmpty()) {
html += QLatin1String("<a name=\"");
html += names.constFirst().toHtmlEscaped();
html += QLatin1String("\"></a>");
}
const QString href = format.anchorHref();
if (!href.isEmpty()) {
html += QLatin1String("<a href=\"");
html += href.toHtmlEscaped();
html += QLatin1String("\">");
closeAnchor = true;
}
}
QString txt = fragment.text();
const bool isObject = txt.contains(QChar::ObjectReplacementCharacter);
const bool isImage = isObject && format.isImageFormat();
QLatin1String styleTag("<span style=\"");
html += styleTag;
bool attributesEmitted = false;
if (!isImage)
attributesEmitted = emitCharFormatStyle(format);
if (attributesEmitted)
html += QLatin1String("\">");
else
html.chop(styleTag.size());
if (isObject) {
for (int i = 0; isImage && i < txt.length(); ++i) {
QTextImageFormat imgFmt = format.toImageFormat();
html += QLatin1String("<img");
if (imgFmt.hasProperty(QTextFormat::ImageName))
emitAttribute("src", imgFmt.name());
if (imgFmt.hasProperty(QTextFormat::ImageAltText))
emitAttribute("alt", imgFmt.stringProperty(QTextFormat::ImageAltText));
if (imgFmt.hasProperty(QTextFormat::ImageTitle))
emitAttribute("title", imgFmt.stringProperty(QTextFormat::ImageTitle));
if (imgFmt.hasProperty(QTextFormat::ImageWidth))
emitAttribute("width", QString::number(imgFmt.width()));
if (imgFmt.hasProperty(QTextFormat::ImageHeight))
emitAttribute("height", QString::number(imgFmt.height()));
if (imgFmt.verticalAlignment() == QTextCharFormat::AlignMiddle)
html += QLatin1String(" style=\"vertical-align: middle;\"");
else if (imgFmt.verticalAlignment() == QTextCharFormat::AlignTop)
html += QLatin1String(" style=\"vertical-align: top;\"");
if (QTextFrame *imageFrame = qobject_cast<QTextFrame *>(doc->objectForFormat(imgFmt)))
emitFloatStyle(imageFrame->frameFormat().position());
html += QLatin1String(" />");
}
} else {
Q_ASSERT(!txt.contains(QChar::ObjectReplacementCharacter));
txt = txt.toHtmlEscaped();
// split for [\n{LineSeparator}]
QString forcedLineBreakRegExp = QString::fromLatin1("[\\na]");
forcedLineBreakRegExp[3] = QChar::LineSeparator;
// space in BR on purpose for compatibility with old-fashioned browsers
html += txt.replace(QRegExp(forcedLineBreakRegExp), QLatin1String("<br />"));
}
if (attributesEmitted)
html += QLatin1String("</span>");
if (closeAnchor)
html += QLatin1String("</a>");
}
static bool isOrderedList(int style)
{
return style == QTextListFormat::ListDecimal || style == QTextListFormat::ListLowerAlpha
|| style == QTextListFormat::ListUpperAlpha
|| style == QTextListFormat::ListUpperRoman
|| style == QTextListFormat::ListLowerRoman
;
}
void QTextHtmlExporter::emitBlockAttributes(const QTextBlock &block)
{
QTextBlockFormat format = block.blockFormat();
emitAlignment(format.alignment());
// assume default to not bloat the html too much
// html += QLatin1String(" dir='ltr'");
if (block.textDirection() == Qt::RightToLeft)
html += QLatin1String(" dir='rtl'");
QLatin1String style(" style=\"");
html += style;
const bool emptyBlock = block.begin().atEnd();
if (emptyBlock) {
html += QLatin1String("-qt-paragraph-type:empty;");
}
emitMargins(QString::number(format.topMargin()),
QString::number(format.bottomMargin()),
QString::number(format.leftMargin()),
QString::number(format.rightMargin()));
html += QLatin1String(" -qt-block-indent:");
html += QString::number(format.indent());
html += QLatin1Char(';');
html += QLatin1String(" text-indent:");
html += QString::number(format.textIndent());
html += QLatin1String("px;");
if (block.userState() != -1) {
html += QLatin1String(" -qt-user-state:");
html += QString::number(block.userState());
html += QLatin1Char(';');
}
if (format.lineHeightType() != QTextBlockFormat::SingleHeight) {
html += QLatin1String(" line-height:")
+ QString::number(format.lineHeight());
switch (format.lineHeightType()) {
case QTextBlockFormat::ProportionalHeight:
html += QLatin1String("%;");
break;
case QTextBlockFormat::FixedHeight:
html += QLatin1String("; -qt-line-height-type: fixed;");
break;
case QTextBlockFormat::MinimumHeight:
html += QLatin1String("px;");
break;
case QTextBlockFormat::LineDistanceHeight:
html += QLatin1String("; -qt-line-height-type: line-distance;");
break;
default:
html += QLatin1String(";");
break; // Should never reach here
}
}
emitPageBreakPolicy(format.pageBreakPolicy());
QTextCharFormat diff;
if (emptyBlock) { // only print character properties when we don't expect them to be repeated by actual text in the parag
const QTextCharFormat blockCharFmt = block.charFormat();
diff = formatDifference(defaultCharFormat, blockCharFmt).toCharFormat();
}
diff.clearProperty(QTextFormat::BackgroundBrush);
if (format.hasProperty(QTextFormat::BackgroundBrush)) {
QBrush bg = format.background();
if (bg.style() != Qt::NoBrush)
diff.setProperty(QTextFormat::BackgroundBrush, format.property(QTextFormat::BackgroundBrush));
}
if (!diff.properties().isEmpty())
emitCharFormatStyle(diff);
html += QLatin1Char('"');
}
void QTextHtmlExporter::emitBlock(const QTextBlock &block)
{
if (block.begin().atEnd()) {
// ### HACK, remove once QTextFrame::Iterator is fixed
int p = block.position();
if (p > 0)
--p;
QTextDocumentPrivate::FragmentIterator frag = doc->docHandle()->find(p);
QChar ch = doc->docHandle()->buffer().at(frag->stringPosition);
if (ch == QTextBeginningOfFrame
|| ch == QTextEndOfFrame)
return;
}
html += QLatin1Char('\n');
// save and later restore, in case we 'change' the default format by
// emitting block char format information
QTextCharFormat oldDefaultCharFormat = defaultCharFormat;
QTextList *list = block.textList();
if (list) {
if (list->itemNumber(block) == 0) { // first item? emit <ul> or appropriate
const QTextListFormat format = list->format();
const int style = format.style();
switch (style) {
case QTextListFormat::ListDecimal: html += QLatin1String("<ol"); break;
case QTextListFormat::ListDisc: html += QLatin1String("<ul"); break;
case QTextListFormat::ListCircle: html += QLatin1String("<ul type=\"circle\""); break;
case QTextListFormat::ListSquare: html += QLatin1String("<ul type=\"square\""); break;
case QTextListFormat::ListLowerAlpha: html += QLatin1String("<ol type=\"a\""); break;
case QTextListFormat::ListUpperAlpha: html += QLatin1String("<ol type=\"A\""); break;
case QTextListFormat::ListLowerRoman: html += QLatin1String("<ol type=\"i\""); break;
case QTextListFormat::ListUpperRoman: html += QLatin1String("<ol type=\"I\""); break;
default: html += QLatin1String("<ul"); // ### should not happen
}
QString styleString = QString::fromLatin1("margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px;");
if (format.hasProperty(QTextFormat::ListIndent)) {
styleString += QLatin1String(" -qt-list-indent: ");
styleString += QString::number(format.indent());
styleString += QLatin1Char(';');
}
if (format.hasProperty(QTextFormat::ListNumberPrefix)) {
QString numberPrefix = format.numberPrefix();
numberPrefix.replace(QLatin1Char('"'), QLatin1String("\\22"));
numberPrefix.replace(QLatin1Char('\''), QLatin1String("\\27")); // FIXME: There's a problem in the CSS parser the prevents this from being correctly restored
styleString += QLatin1String(" -qt-list-number-prefix: ");
styleString += QLatin1Char('\'');
styleString += numberPrefix;
styleString += QLatin1Char('\'');
styleString += QLatin1Char(';');
}
if (format.hasProperty(QTextFormat::ListNumberSuffix)) {
if (format.numberSuffix() != QLatin1String(".")) { // this is our default
QString numberSuffix = format.numberSuffix();
numberSuffix.replace(QLatin1Char('"'), QLatin1String("\\22"));
numberSuffix.replace(QLatin1Char('\''), QLatin1String("\\27")); // see above
styleString += QLatin1String(" -qt-list-number-suffix: ");
styleString += QLatin1Char('\'');
styleString += numberSuffix;
styleString += QLatin1Char('\'');
styleString += QLatin1Char(';');
}
}
html += QLatin1String(" style=\"");
html += styleString;
html += QLatin1String("\">");
}
html += QLatin1String("<li");
const QTextCharFormat blockFmt = formatDifference(defaultCharFormat, block.charFormat()).toCharFormat();
if (!blockFmt.properties().isEmpty()) {
html += QLatin1String(" style=\"");
emitCharFormatStyle(blockFmt);
html += QLatin1Char('\"');
defaultCharFormat.merge(block.charFormat());
}
}
const QTextBlockFormat blockFormat = block.blockFormat();
if (blockFormat.hasProperty(QTextFormat::BlockTrailingHorizontalRulerWidth)) {
html += QLatin1String("<hr");
QTextLength width = blockFormat.lengthProperty(QTextFormat::BlockTrailingHorizontalRulerWidth);
if (width.type() != QTextLength::VariableLength)
emitTextLength("width", width);
else
html += QLatin1Char(' ');
html += QLatin1String("/>");
return;
}
const bool pre = blockFormat.nonBreakableLines();
if (pre) {
if (list)
html += QLatin1Char('>');
html += QLatin1String("<pre");
} else if (!list) {
int headingLevel = blockFormat.headingLevel();
if (headingLevel > 0 && headingLevel <= 6)
html += QLatin1String("<h") + QString::number(headingLevel);
else
html += QLatin1String("<p");
}
emitBlockAttributes(block);
html += QLatin1Char('>');
if (block.begin().atEnd())
html += QLatin1String("<br />");
QTextBlock::Iterator it = block.begin();
if (fragmentMarkers && !it.atEnd() && block == doc->begin())
html += QLatin1String("<!--StartFragment-->");
for (; !it.atEnd(); ++it)
emitFragment(it.fragment());
if (fragmentMarkers && block.position() + block.length() == doc->docHandle()->length())
html += QLatin1String("<!--EndFragment-->");
if (pre)
html += QLatin1String("</pre>");
else if (list)
html += QLatin1String("</li>");
else {
int headingLevel = blockFormat.headingLevel();
if (headingLevel > 0 && headingLevel <= 6)
html += QLatin1String("</h") + QString::number(headingLevel) + QLatin1Char('>');
else
html += QLatin1String("</p>");
}
if (list) {
if (list->itemNumber(block) == list->count() - 1) { // last item? close list
if (isOrderedList(list->format().style()))
html += QLatin1String("</ol>");
else
html += QLatin1String("</ul>");
}
}
defaultCharFormat = oldDefaultCharFormat;
}
extern bool qHasPixmapTexture(const QBrush& brush);
QString QTextHtmlExporter::findUrlForImage(const QTextDocument *doc, qint64 cacheKey, bool isPixmap)
{
QString url;
if (!doc)
return url;
if (QTextDocument *parent = qobject_cast<QTextDocument *>(doc->parent()))
return findUrlForImage(parent, cacheKey, isPixmap);
if (doc && doc->docHandle()) {
QTextDocumentPrivate *priv = doc->docHandle();
QMap<QUrl, QVariant>::const_iterator it = priv->cachedResources.constBegin();
for (; it != priv->cachedResources.constEnd(); ++it) {
const QVariant &v = it.value();
if (v.userType() == QMetaType::QImage && !isPixmap) {
if (qvariant_cast<QImage>(v).cacheKey() == cacheKey)
break;
}
if (v.userType() == QMetaType::QPixmap && isPixmap) {
if (qvariant_cast<QPixmap>(v).cacheKey() == cacheKey)
break;
}
}
if (it != priv->cachedResources.constEnd())
url = it.key().toString();
}
return url;
}
void QTextDocumentPrivate::mergeCachedResources(const QTextDocumentPrivate *priv)
{
if (!priv)
return;
cachedResources.insert(priv->cachedResources);
}
void QTextHtmlExporter::emitBackgroundAttribute(const QTextFormat &format)
{
if (format.hasProperty(QTextFormat::BackgroundImageUrl)) {
QString url = format.property(QTextFormat::BackgroundImageUrl).toString();
emitAttribute("background", url);
} else {
const QBrush &brush = format.background();
if (brush.style() == Qt::SolidPattern) {
emitAttribute("bgcolor", colorValue(brush.color()));
} else if (brush.style() == Qt::TexturePattern) {
const bool isPixmap = qHasPixmapTexture(brush);
const qint64 cacheKey = isPixmap ? brush.texture().cacheKey() : brush.textureImage().cacheKey();
const QString url = findUrlForImage(doc, cacheKey, isPixmap);
if (!url.isEmpty())
emitAttribute("background", url);
}
}
}
void QTextHtmlExporter::emitTable(const QTextTable *table)
{
QTextTableFormat format = table->format();
html += QLatin1String("\n<table");
if (format.hasProperty(QTextFormat::FrameBorder))
emitAttribute("border", QString::number(format.border()));
emitFrameStyle(format, TableFrame);
emitAlignment(format.alignment());
emitTextLength("width", format.width());
if (format.hasProperty(QTextFormat::TableCellSpacing))
emitAttribute("cellspacing", QString::number(format.cellSpacing()));
if (format.hasProperty(QTextFormat::TableCellPadding))
emitAttribute("cellpadding", QString::number(format.cellPadding()));
emitBackgroundAttribute(format);
html += QLatin1Char('>');
const int rows = table->rows();
const int columns = table->columns();
QVector<QTextLength> columnWidths = format.columnWidthConstraints();
if (columnWidths.isEmpty()) {
columnWidths.resize(columns);
columnWidths.fill(QTextLength());
}
Q_ASSERT(columnWidths.count() == columns);
QVarLengthArray<bool> widthEmittedForColumn(columns);
for (int i = 0; i < columns; ++i)
widthEmittedForColumn[i] = false;
const int headerRowCount = qMin(format.headerRowCount(), rows);
if (headerRowCount > 0)
html += QLatin1String("<thead>");
for (int row = 0; row < rows; ++row) {
html += QLatin1String("\n<tr>");
for (int col = 0; col < columns; ++col) {
const QTextTableCell cell = table->cellAt(row, col);
// for col/rowspans
if (cell.row() != row)
continue;
if (cell.column() != col)
continue;
html += QLatin1String("\n<td");
if (!widthEmittedForColumn[col] && cell.columnSpan() == 1) {
emitTextLength("width", columnWidths.at(col));
widthEmittedForColumn[col] = true;
}
if (cell.columnSpan() > 1)
emitAttribute("colspan", QString::number(cell.columnSpan()));
if (cell.rowSpan() > 1)
emitAttribute("rowspan", QString::number(cell.rowSpan()));
const QTextTableCellFormat cellFormat = cell.format().toTableCellFormat();
emitBackgroundAttribute(cellFormat);
QTextCharFormat oldDefaultCharFormat = defaultCharFormat;
QTextCharFormat::VerticalAlignment valign = cellFormat.verticalAlignment();
QString styleString;
if (valign >= QTextCharFormat::AlignMiddle && valign <= QTextCharFormat::AlignBottom) {
styleString += QLatin1String(" vertical-align:");
switch (valign) {
case QTextCharFormat::AlignMiddle:
styleString += QLatin1String("middle");
break;
case QTextCharFormat::AlignTop:
styleString += QLatin1String("top");
break;
case QTextCharFormat::AlignBottom:
styleString += QLatin1String("bottom");
break;
default:
break;
}
styleString += QLatin1Char(';');
QTextCharFormat temp;
temp.setVerticalAlignment(valign);
defaultCharFormat.merge(temp);
}
if (cellFormat.hasProperty(QTextFormat::TableCellLeftPadding))
styleString += QLatin1String(" padding-left:") + QString::number(cellFormat.leftPadding()) + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellRightPadding))
styleString += QLatin1String(" padding-right:") + QString::number(cellFormat.rightPadding()) + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellTopPadding))
styleString += QLatin1String(" padding-top:") + QString::number(cellFormat.topPadding()) + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellBottomPadding))
styleString += QLatin1String(" padding-bottom:") + QString::number(cellFormat.bottomPadding()) + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellTopBorder))
styleString += QLatin1String(" border-top:") + QString::number(cellFormat.topBorder()) + QLatin1String("px;");
if (cellFormat.hasProperty(QTextFormat::TableCellRightBorder))
styleString += QLatin1String(" border-right:") + QString::number(cellFormat.rightBorder()) + QLatin1String("px;");
if (cellFormat.hasProperty(QTextFormat::TableCellBottomBorder))
styleString += QLatin1String(" border-bottom:") + QString::number(cellFormat.bottomBorder()) + QLatin1String("px;");
if (cellFormat.hasProperty(QTextFormat::TableCellLeftBorder))
styleString += QLatin1String(" border-left:") + QString::number(cellFormat.leftBorder()) + QLatin1String("px;");
if (cellFormat.hasProperty(QTextFormat::TableCellTopBorderBrush))
styleString += QLatin1String(" border-top-color:") + cellFormat.topBorderBrush().color().name() + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellRightBorderBrush))
styleString += QLatin1String(" border-right-color:") + cellFormat.rightBorderBrush().color().name() + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellBottomBorderBrush))
styleString += QLatin1String(" border-bottom-color:") + cellFormat.bottomBorderBrush().color().name() + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellLeftBorderBrush))
styleString += QLatin1String(" border-left-color:") + cellFormat.leftBorderBrush().color().name() + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellTopBorderStyle))
styleString += QLatin1String(" border-top-style:") + richtextBorderStyleToHtmlBorderStyle(cellFormat.topBorderStyle()) + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellRightBorderStyle))
styleString += QLatin1String(" border-right-style:") + richtextBorderStyleToHtmlBorderStyle(cellFormat.rightBorderStyle()) + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellBottomBorderStyle))
styleString += QLatin1String(" border-bottom-style:") + richtextBorderStyleToHtmlBorderStyle(cellFormat.bottomBorderStyle()) + QLatin1Char(';');
if (cellFormat.hasProperty(QTextFormat::TableCellLeftBorderStyle))
styleString += QLatin1String(" border-left-style:") + richtextBorderStyleToHtmlBorderStyle(cellFormat.leftBorderStyle()) + QLatin1Char(';');
if (!styleString.isEmpty())
html += QLatin1String(" style=\"") + styleString + QLatin1Char('\"');
html += QLatin1Char('>');
emitFrame(cell.begin());
html += QLatin1String("</td>");
defaultCharFormat = oldDefaultCharFormat;
}
html += QLatin1String("</tr>");
if (headerRowCount > 0 && row == headerRowCount - 1)
html += QLatin1String("</thead>");
}
html += QLatin1String("</table>");
}
void QTextHtmlExporter::emitFrame(const QTextFrame::Iterator &frameIt)
{
if (!frameIt.atEnd()) {
QTextFrame::Iterator next = frameIt;
++next;
if (next.atEnd()
&& frameIt.currentFrame() == nullptr
&& frameIt.parentFrame() != doc->rootFrame()
&& frameIt.currentBlock().begin().atEnd())
return;
}
for (QTextFrame::Iterator it = frameIt;
!it.atEnd(); ++it) {
if (QTextFrame *f = it.currentFrame()) {
if (QTextTable *table = qobject_cast<QTextTable *>(f)) {
emitTable(table);
} else {
emitTextFrame(f);
}
} else if (it.currentBlock().isValid()) {
emitBlock(it.currentBlock());
}
}
}
void QTextHtmlExporter::emitTextFrame(const QTextFrame *f)
{
FrameType frameType = f->parentFrame() ? TextFrame : RootFrame;
html += QLatin1String("\n<table");
QTextFrameFormat format = f->frameFormat();
if (format.hasProperty(QTextFormat::FrameBorder))
emitAttribute("border", QString::number(format.border()));
emitFrameStyle(format, frameType);
emitTextLength("width", format.width());
emitTextLength("height", format.height());
// root frame's bcolor goes in the <body> tag
if (frameType != RootFrame)
emitBackgroundAttribute(format);
html += QLatin1Char('>');
html += QLatin1String("\n<tr>\n<td style=\"border: none;\">");
emitFrame(f->begin());
html += QLatin1String("</td></tr></table>");
}
void QTextHtmlExporter::emitFrameStyle(const QTextFrameFormat &format, FrameType frameType)
{
QLatin1String styleAttribute(" style=\"");
html += styleAttribute;
const int originalHtmlLength = html.length();
if (frameType == TextFrame)
html += QLatin1String("-qt-table-type: frame;");
else if (frameType == RootFrame)
html += QLatin1String("-qt-table-type: root;");
const QTextFrameFormat defaultFormat;
emitFloatStyle(format.position(), OmitStyleTag);
emitPageBreakPolicy(format.pageBreakPolicy());
if (format.borderBrush() != defaultFormat.borderBrush()) {
html += QLatin1String(" border-color:");
html += colorValue(format.borderBrush().color());
html += QLatin1Char(';');
}
if (format.borderStyle() != defaultFormat.borderStyle())
emitBorderStyle(format.borderStyle());
if (format.hasProperty(QTextFormat::FrameMargin)
|| format.hasProperty(QTextFormat::FrameLeftMargin)
|| format.hasProperty(QTextFormat::FrameRightMargin)
|| format.hasProperty(QTextFormat::FrameTopMargin)
|| format.hasProperty(QTextFormat::FrameBottomMargin))
emitMargins(QString::number(format.topMargin()),
QString::number(format.bottomMargin()),
QString::number(format.leftMargin()),
QString::number(format.rightMargin()));
if (format.property(QTextFormat::TableBorderCollapse).toBool())
html += QLatin1String(" border-collapse:collapse;");
if (html.length() == originalHtmlLength) // nothing emitted?
html.chop(styleAttribute.size());
else
html += QLatin1Char('\"');
}
/*!
Returns a string containing an HTML representation of the document.
The \a encoding parameter specifies the value for the charset attribute
in the html header. For example if 'utf-8' is specified then the
beginning of the generated html will look like this:
\snippet code/src_gui_text_qtextdocument.cpp 0
If no encoding is specified then no such meta information is generated.
If you later on convert the returned html string into a byte array for
transmission over a network or when saving to disk you should specify
the encoding you're going to use for the conversion to a byte array here.
\sa {Supported HTML Subset}
*/
#ifndef QT_NO_TEXTHTMLPARSER
QString QTextDocument::toHtml(const QByteArray &encoding) const
{
return QTextHtmlExporter(this).toHtml(encoding);
}
#endif // QT_NO_TEXTHTMLPARSER
/*!
\since 5.14
Returns a string containing a Markdown representation of the document with
the given \a features, or an empty string if writing fails for any reason.
\sa setMarkdown
*/
#if QT_CONFIG(textmarkdownwriter)
QString QTextDocument::toMarkdown(QTextDocument::MarkdownFeatures features) const
{
QString ret;
QTextStream s(&ret);
QTextMarkdownWriter w(s, features);
if (w.writeAll(this))
return ret;
return QString();
}
#endif
/*!
\since 5.14
Replaces the entire contents of the document with the given
Markdown-formatted text in the \a markdown string, with the given
\a features supported. By default, all supported GitHub-style
Markdown features are included; pass \c MarkdownDialectCommonMark
for a more basic parse.
The Markdown formatting is respected as much as possible; for example,
"*bold* text" will produce text where the first word has a font weight that
gives it an emphasized appearance.
Parsing of HTML included in the \a markdown string is handled in the same
way as in \l setHtml; however, Markdown formatting inside HTML blocks is
not supported.
Some features of the parser can be enabled or disabled via the \a features
argument:
\value MarkdownNoHTML
Any HTML tags in the Markdown text will be discarded
\value MarkdownDialectCommonMark
The parser supports only the features standardized by CommonMark
\value MarkdownDialectGitHub
The parser supports the GitHub dialect
The default is \c MarkdownDialectGitHub.
The undo/redo history is reset when this function is called.
*/
#if QT_CONFIG(textmarkdownreader)
void QTextDocument::setMarkdown(const QString &markdown, QTextDocument::MarkdownFeatures features)
{
QTextMarkdownImporter(features).import(this, markdown);
}
#endif
/*!
Returns a vector of text formats for all the formats used in the document.
*/
QVector<QTextFormat> QTextDocument::allFormats() const
{
Q_D(const QTextDocument);
return d->formatCollection()->formats;
}
/*!
\internal
So that not all classes have to be friends of each other...
*/
QTextDocumentPrivate *QTextDocument::docHandle() const
{
Q_D(const QTextDocument);
return const_cast<QTextDocumentPrivate *>(d);
}
/*!
\since 4.4
\fn QTextDocument::undoCommandAdded()
This signal is emitted every time a new level of undo is added to the QTextDocument.
*/
QT_END_NAMESPACE