/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtQuick 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$ ** ****************************************************************************/ #ifndef QQUICKTEXT_P_P_H #define QQUICKTEXT_P_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qquicktext_p.h" #include "qquickimplicitsizeitem_p_p.h" #include #include #include #include #include QT_BEGIN_NAMESPACE class QTextLayout; class QQuickTextDocumentWithImageResources; class Q_QUICK_PRIVATE_EXPORT QQuickTextPrivate : public QQuickImplicitSizeItemPrivate { Q_DECLARE_PUBLIC(QQuickText) public: QQuickTextPrivate(); ~QQuickTextPrivate(); void init(); void updateBaseline(qreal baseline, qreal dy); void updateSize(); void signalSizeChange(const QSizeF &previousSize); void updateLayout(); bool determineHorizontalAlignment(); bool setHAlign(QQuickText::HAlignment, bool forceAlign = false); void mirrorChange() override; bool isLineLaidOutConnected(); void setLineGeometry(QTextLine &line, qreal lineWidth, qreal &height); int lineHeightOffset() const; QString elidedText(qreal lineWidth, const QTextLine &line, QTextLine *nextLine = nullptr) const; void elideFormats(int start, int length, int offset, QVector *elidedFormats); void clearFormats(); void processHoverEvent(QHoverEvent *event); QRectF layedOutTextRect; QSizeF advance; struct ExtraData { ExtraData(); qreal padding; qreal topPadding; qreal leftPadding; qreal rightPadding; qreal bottomPadding; bool explicitTopPadding : 1; bool explicitLeftPadding : 1; bool explicitRightPadding : 1; bool explicitBottomPadding : 1; qreal lineHeight; QQuickTextDocumentWithImageResources *doc; QString activeLink; QString hoveredLink; int minimumPixelSize; int minimumPointSize; int nbActiveDownloads; int maximumLineCount; bool lineHeightValid : 1; QQuickText::LineHeightMode lineHeightMode; QQuickText::FontSizeMode fontSizeMode; QList imgTags; QList visibleImgTags; QUrl baseUrl; }; QLazilyAllocated extra; QString text; QFont font; QFont sourceFont; QFontInfo fontInfo; QTextLayout layout; QTextLayout *elideLayout; QQuickTextLine *textLine; qreal lineWidth; QRgb color; QRgb linkColor; QRgb styleColor; int lineCount; int multilengthEos; enum UpdateType { UpdateNone, UpdatePreprocess, UpdatePaintNode }; QQuickText::TextElideMode elideMode; QQuickText::HAlignment hAlign; QQuickText::VAlignment vAlign; QQuickText::TextFormat format; QQuickText::WrapMode wrapMode; QQuickText::TextStyle style; QQuickText::RenderType renderType; UpdateType updateType; QString assignedFont; bool maximumLineCountValid:1; bool updateOnComponentComplete:1; bool richText:1; bool styledText:1; bool widthExceeded:1; bool heightExceeded:1; bool internalWidthUpdate:1; bool requireImplicitSize:1; bool implicitWidthValid:1; bool implicitHeightValid:1; bool truncated:1; bool hAlignImplicit:1; bool rightToLeftText:1; bool layoutTextElided:1; bool textHasChanged:1; bool needToUpdateLayout:1; bool formatModifiesFontSize:1; bool polishSize:1; // Workaround for problem with polish called after updateSize (QTBUG-42636) bool updateSizeRecursionGuard:1; static const QChar elideChar; qreal getImplicitWidth() const override; qreal getImplicitHeight() const override; qreal availableWidth() const; qreal availableHeight() const; inline qreal padding() const { return extra.isAllocated() ? extra->padding : 0.0; } void setTopPadding(qreal value, bool reset = false); void setLeftPadding(qreal value, bool reset = false); void setRightPadding(qreal value, bool reset = false); void setBottomPadding(qreal value, bool reset = false); void ensureDoc(); QRectF setupTextLayout(qreal * const baseline); void setupCustomLineGeometry(QTextLine &line, qreal &height, int lineOffset = 0); bool isLinkActivatedConnected(); bool isLinkHoveredConnected(); static QString anchorAt(const QTextLayout *layout, const QPointF &mousePos); QString anchorAt(const QPointF &pos) const; inline qreal lineHeight() const { return extra.isAllocated() ? extra->lineHeight : 1.0; } inline int maximumLineCount() const { return extra.isAllocated() ? extra->maximumLineCount : INT_MAX; } inline QQuickText::LineHeightMode lineHeightMode() const { return extra.isAllocated() ? extra->lineHeightMode : QQuickText::ProportionalHeight; } inline QQuickText::FontSizeMode fontSizeMode() const { return extra.isAllocated() ? extra->fontSizeMode : QQuickText::FixedSize; } inline int minimumPixelSize() const { return extra.isAllocated() ? extra->minimumPixelSize : 12; } inline int minimumPointSize() const { return extra.isAllocated() ? extra->minimumPointSize : 12; } static inline QQuickTextPrivate *get(QQuickText *t) { return t->d_func(); } }; QT_END_NAMESPACE #endif // QQUICKTEXT_P_P_H