6#include "QskRichTextRenderer.h"
7#include "QskTextColors.h"
8#include "QskTextOptions.h"
9#include "QskInternalMacros.h"
11#include <qglobalstatic.h>
18#include <private/qquicktext_p.h>
19#include <private/qquicktext_p_p.h>
26 class TextItem final :
public QQuickText
36 setBottomPadding( 1 );
37 setBottomPadding( 0 );
42 setFontSizeMode( QQuickText::FixedSize );
45 setAntialiasing(
true );
46 setRenderType( QQuickText::QtRendering );
49 setMinimumPixelSize();
50 setMinimumPointSize();
53 setLineHeightMode( ... );
58 inline void setGeometry(
const QRectF& rect )
60 auto d = QQuickTextPrivate::get(
this );
62#if QT_VERSION >= QT_VERSION_CHECK( 6, 2, 0 )
63 d->heightValidFlag =
true;
64 d->widthValidFlag =
true;
66 d->heightValid =
true;
70 if ( ( d->x != rect.x() ) || ( d->y != rect.y() ) )
74 d->dirty( QQuickItemPrivate::Position );
77 if ( ( d->width != rect.width() ) || ( d->height != rect.height() ) )
79 d->height = rect.height();
80 d->width = rect.width();
81 d->dirty( QQuickItemPrivate::Size );
85 inline void setAlignment( Qt::Alignment alignment )
87 setHAlign(
static_cast< QQuickText::HAlignment
>(
int( alignment ) & 0x0f ) );
88 setVAlign(
static_cast< QQuickText::VAlignment
>(
int( alignment ) & 0xf0 ) );
94 setTextFormat(
static_cast< QQuickText::TextFormat
>( options.format() ) );
95 setElideMode(
static_cast< QQuickText::TextElideMode
>( options.elideMode() ) );
96 setMaximumLineCount( options.maximumLineCount() );
97 setWrapMode(
static_cast< QQuickText::WrapMode
>( options.wrapMode() ) );
103 QQuickTextPrivate::get(
this )->updateOnComponentComplete =
true;
113 setText( QString() );
116 inline QRectF layedOutTextRect()
const
118 auto that =
const_cast< TextItem*
>( this );
119 return QQuickTextPrivate::get( that )->layedOutTextRect;
122 void updateTextNode( QQuickWindow* window, QSGNode* parentNode )
124 QQuickItemPrivate::get(
this )->refWindow( window );
126 while ( parentNode->firstChild() )
127 delete parentNode->firstChild();
129 auto node = QQuickText::updatePaintNode(
nullptr,
nullptr );
130 node->reparentChildNodesTo( parentNode );
133 QQuickItemPrivate::get(
this )->derefWindow();
137 QSGNode* updatePaintNode( QSGNode*, UpdatePaintNodeData* )
override
149 qDeleteAll( m_hash );
152 inline TextItem* item()
154 const auto thread = QThread::currentThread();
156 QMutexLocker locker( &m_mutex );
158 auto it = m_hash.constFind( thread );
159 if ( it == m_hash.constEnd() )
161 auto textItem =
new TextItem();
162 QObject::connect( thread, &QThread::finished,
163 textItem, [
this, thread ] { removeItem( thread ); } );
165 m_hash.insert( thread, textItem );
173 void removeItem(
const QThread* thread )
175 auto textItem = m_hash.take( thread );
177 textItem->deleteLater();
181 QHash< const QThread*, TextItem* > m_hash;
190Q_GLOBAL_STATIC( TextItemMap, qskTextItemMap )
192QSizeF QskRichTextRenderer::textSize(
193 const QString& text,
const QFont& font,
const QskTextOptions& options )
195 auto& textItem = *qskTextItemMap->item();
199 textItem.setFont( font );
200 textItem.setOptions( options );
202 textItem.setWidth( -1 );
203 textItem.setText( text );
207 const QSizeF sz( textItem.implicitWidth(), textItem.implicitHeight() );
214QRectF QskRichTextRenderer::textRect(
215 const QString& text,
const QFont& font,
218 auto& textItem = *qskTextItemMap->item();
222 textItem.setFont( font );
223 textItem.setOptions( options );
224 textItem.setAlignment( Qt::Alignment() );
226 textItem.setWidth( size.width() );
227 textItem.setHeight( size.height() );
229 textItem.setText( text );
233 const auto rect = textItem.layedOutTextRect();
240void QskRichTextRenderer::updateNode(
241 const QString& text,
const QFont& font,
244 const QRectF& rect,
const QQuickItem* item, QSGTransformNode* node )
249 auto& textItem = *qskTextItemMap->item();
253 textItem.setGeometry( rect );
255 textItem.setBottomPadding( 0 );
256 textItem.setTopPadding( 0 );
257 textItem.setFont( font );
258 textItem.setOptions( options );
259 textItem.setAlignment( alignment );
261 textItem.setColor( colors.textColor() );
262 textItem.setStyle(
static_cast< QQuickText::TextStyle
>( style ) );
263 textItem.setStyleColor( colors.styleColor() );
264 textItem.setLinkColor( colors.linkColor() );
266 textItem.setText( text );
270 if ( alignment & Qt::AlignVCenter )
279 auto d = QQuickTextPrivate::get( &textItem );
281 const qreal h = d->layedOutTextRect.height() + d->lineHeightOffset();
283 if (
static_cast< int >( rect.height() - h ) % 2 )
285 if (
static_cast< int >( h ) % 2 )
286 d->extra->bottomPadding = 1;
288 d->extra->topPadding = 1;
292 textItem.updateTextNode( item->window(), node );