qskinny/src/nodes/QskPlainTextRenderer.cpp

197 lines
6.7 KiB
C++
Raw Normal View History

2017-07-21 18:21:34 +02:00
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#include "QskPlainTextRenderer.h"
2017-10-20 20:26:39 +02:00
#include "QskTextColors.h"
2017-10-23 07:46:46 +02:00
#include "QskTextOptions.h"
2017-07-21 18:21:34 +02:00
#include <QFontMetrics>
#include <QGuiApplication>
#include <QSGTransformNode>
#include <QQuickWindow>
QSK_QT_PRIVATE_BEGIN
#include <private/qsgadaptationlayer_p.h>
#if QT_VERSION < QT_VERSION_CHECK( 5, 8, 0 )
#include <private/qsgcontext_p.h>
typedef QSGRenderContext RenderContext;
#else
#include <private/qsgdefaultrendercontext_p.h>
typedef QSGDefaultRenderContext RenderContext;
#endif
QSK_QT_PRIVATE_END
#define GlyphFlag static_cast< QSGNode::Flag >( 0x800 )
2017-10-23 07:46:46 +02:00
QSizeF QskPlainTextRenderer::textSize( const QString& text,
const QFont& font, const QskTextOptions& options )
2017-07-21 18:21:34 +02:00
{
// result differs from QskTextRenderer::implicitSizeHint ???
2017-10-23 07:46:46 +02:00
return textRect( text, font, options, QSizeF( 10e6, 10e6 ) ).size();
2017-07-21 18:21:34 +02:00
}
2017-10-23 07:46:46 +02:00
QRectF QskPlainTextRenderer::textRect( const QString& text,
const QFont& font, const QskTextOptions& options, const QSizeF& size )
2017-07-21 18:21:34 +02:00
{
2017-10-23 07:46:46 +02:00
const QFontMetricsF fm( font );
const QRect r( 0, 0, size.width(), size.height() );
2017-07-21 18:21:34 +02:00
2017-10-23 07:46:46 +02:00
return fm.boundingRect( r, options.textFlags(), text );
2017-07-21 18:21:34 +02:00
}
static qreal qskLayoutText( QTextLayout* layout, const QPointF& position, qreal lineWidth,
const QskTextOptions& options )
{
const auto maxLineCount = options.wrapMode() == QskTextOptions::NoWrap
? 1 : options.maximumLineCount();
int lineNumber = 0;
int characterPosition = 0;
qreal y = 0;
Q_FOREVER
{
if ( ++lineNumber > maxLineCount )
break;
if ( lineNumber == maxLineCount )
{
const auto elideMode = options.elideMode();
auto engine = layout->engine();
const auto textLength = engine->text.length();
if ( elideMode != Qt::ElideNone && textLength > characterPosition )
{
if ( lineNumber == 1 || elideMode == Qt::ElideRight )
{
auto option = layout->textOption();
option.setWrapMode( QTextOption::WrapAnywhere );
layout->setTextOption( option );
auto elidedText = engine->elidedText(
elideMode, QFixed::fromReal( lineWidth ),
Qt::TextShowMnemonic, characterPosition )
.leftJustified( textLength - characterPosition );
engine->text.replace( characterPosition, elidedText.length(), elidedText );
Q_ASSERT( engine->text.length() == textLength );
}
}
}
auto line = layout->createLine();
if ( !line.isValid() )
break;
line.setPosition( position + QPointF( 0, y ) );
line.setLineWidth( lineWidth );
characterPosition = line.textStart() + line.textLength();
y += line.leading() + line.height();
}
return y;
}
static void qskRenderText(
QQuickItem* item, QSGNode* parentNode, QTextLayout* layout, const QPointF& position,
const QColor& color, QQuickText::TextStyle style, const QColor& styleColor )
{
auto rc = RenderContext::from( QOpenGLContext::currentContext() );
auto sgContext = rc->sceneGraphContext();
// Clear out foreign nodes (e.g. from QskTextRenderer)
QSGNode* node = parentNode->firstChild();
while ( node )
{
auto sibling = node->nextSibling();
if ( !( node->flags() & GlyphFlag ) )
{
parentNode->removeChildNode( node );
delete node;
}
node = sibling;
}
auto glyphNode = static_cast< QSGGlyphNode* >( parentNode->firstChild() );
for ( int i = 0; i < layout->lineCount(); ++i )
{
2017-10-30 15:23:30 +01:00
const auto glyphRuns = layout->lineAt( i ).glyphRuns();
2017-10-30 14:38:30 +01:00
for ( const auto& glyphRun : glyphRuns )
2017-07-21 18:21:34 +02:00
{
const bool doCreate = !glyphNode;
if ( doCreate )
{
glyphNode = sgContext->createGlyphNode( rc, false ); // ### add native rendering to QskTextOptions?
glyphNode->setOwnerElement( item );
glyphNode->setFlags( QSGNode::OwnedByParent | GlyphFlag );
}
glyphNode->setStyle( style );
glyphNode->setColor( color );
glyphNode->setStyleColor( styleColor );
glyphNode->setGlyphs( position, glyphRun );
glyphNode->update();
if ( doCreate )
{
parentNode->appendChildNode( glyphNode );
}
glyphNode = static_cast< decltype( glyphNode ) >( glyphNode->nextSibling() );
}
}
// Remove leftover glyphs
while ( glyphNode )
{
auto sibling = glyphNode->nextSibling();
if ( glyphNode->flags() & GlyphFlag )
{
parentNode->removeChildNode( glyphNode );
delete glyphNode;
}
glyphNode = static_cast< QSGGlyphNode* >( sibling );
}
}
2017-10-20 20:26:39 +02:00
void QskPlainTextRenderer::updateNode( const QString& text,
2017-10-23 07:46:46 +02:00
const QFont& font, const QskTextOptions& options,
Qsk::TextStyle style, const QskTextColors& colors,
Qt::Alignment alignment, const QRectF& rect,
2017-10-20 20:26:39 +02:00
const QQuickItem* item, QSGTransformNode* node )
2017-07-21 18:21:34 +02:00
{
2017-10-23 07:46:46 +02:00
QTextOption textOption( alignment );
textOption.setWrapMode( static_cast< QTextOption::WrapMode >( options.wrapMode() ) );
2017-07-21 18:21:34 +02:00
QTextLayout layout;
2017-10-23 07:46:46 +02:00
layout.setFont( font );
2017-07-21 18:21:34 +02:00
layout.setTextOption( textOption );
layout.setText( text );
layout.beginLayout();
QPointF position;
2017-10-23 07:46:46 +02:00
position.ry() += qskLayoutText( &layout, position, rect.width(), options );
2017-07-21 18:21:34 +02:00
layout.endLayout();
position.setX( 0 );
2017-10-23 07:46:46 +02:00
position.setY( QFontMetricsF( font ).ascent()
+ ( alignment & Qt::AlignVCenter ? ( rect.height() - position.y() ) * 0.5 : 0 ) );
2017-07-21 18:21:34 +02:00
2017-10-20 20:26:39 +02:00
qskRenderText( const_cast< QQuickItem* >( item ), node, &layout, position,
colors.textColor, static_cast< QQuickText::TextStyle >( style ), colors.styleColor );
}
2017-07-21 18:21:34 +02:00
void QskPlainTextRenderer::updateNodeColor( QSGNode* parentNode, const QColor& textColor,
Qsk::TextStyle style, const QColor& styleColor )
{
auto glyphNode = static_cast< QSGGlyphNode* >( parentNode->firstChild() );
while ( glyphNode )
{
if ( glyphNode->flags() & GlyphFlag )
{
glyphNode->setColor( textColor );
glyphNode->setStyle( static_cast< QQuickText::TextStyle >( style ) );
glyphNode->setStyleColor( styleColor );
glyphNode->update();
}
glyphNode = static_cast< QSGGlyphNode* >( glyphNode->nextSibling() );
}
}