qskinny/src/nodes/QskTextRenderer.h
2017-07-21 18:21:34 +02:00

63 lines
1.9 KiB
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_TEXT_RENDERER_H
#define QSK_TEXT_RENDERER_H
#include "QskGlobal.h"
#include "QskNamespace.h"
#include "QskTextOptions.h"
#include <QFont>
#include <QRectF>
class QskTextHelperItem;
class QQuickItem;
class QQuickWindow;
class QSGTransformNode;
class QColor;
// Hacking a QQuickTextNode using a QQuickText helper item
// How to create the nodes in a better way needs further
// investigations
class QSK_EXPORT QskTextRenderer
{
public:
void setFont( const QFont& font );
void setOptions( const QskTextOptions& );
void setAlignment( Qt::Alignment );
void updateNode( const QQuickItem*, const QSizeF&, const QString&,
QSGTransformNode*, const QColor& textColor,
Qsk::TextStyle, const QColor& styleColor, const QColor& linkColor );
void updateNode( const QQuickItem*, const QRectF&, const QString&,
QSGTransformNode*, const QColor& textColor, Qsk::TextStyle,
const QColor& styleColor, const QColor& linkColor );
QSizeF implicitSizeHint( const QString& ) const;
QRectF textRect( const QSizeF&, const QString& ) const;
private:
void setupItem( QskTextHelperItem* ) const;
QFont m_font;
QskTextOptions m_options;
Qt::Alignment m_alignment;
};
inline void QskTextRenderer::updateNode( const QQuickItem* item, const QSizeF& size,
const QString& text, QSGTransformNode* node, const QColor& textColor,
Qsk::TextStyle style, const QColor& styleColor, const QColor& linkColor )
{
updateNode( item, QRectF( 0, 0, size.width(), size.height() ), text, node,
textColor, style, styleColor, linkColor );
}
#endif