17#include <QFontMetricsF>
18#include <QTextFragment>
23 , mCharFormat( format )
27 : mText( fragment.text() )
45 mCharFormat = charFormat;
50 if ( fontHasBeenUpdatedForFragment )
52 const QFontMetricsF fm( font );
53 return fm.horizontalAdvance( mText );
57 QFont updatedFont = font;
59 const QFontMetricsF fm( updatedFont );
60 return fm.horizontalAdvance( mText );
Capitalization
String capitalization options.
Contains information about the context of a rendering operation.
static QString capitalize(const QString &string, Qgis::Capitalization capitalization)
Converts a string by applying capitalization rules to the string.
Stores information relating to individual character formatting.
void updateFontForFormat(QFont &font, const QgsRenderContext &context, double scaleFactor=1.0) const
Updates the specified font in place, applying character formatting options which are applicable on a ...
void setText(const QString &text)
Sets the text content of the fragment.
QString text() const
Returns the text content of the fragment.
void setCharacterFormat(const QgsTextCharacterFormat &format)
Sets the character format for the fragment.
double horizontalAdvance(const QFont &font, const QgsRenderContext &context, bool fontHasBeenUpdatedForFragment=false, double scaleFactor=1.0) const
Returns the horizontal advance associated with this fragment, when rendered using the specified base ...
QgsTextFragment(const QString &text=QString(), const QgsTextCharacterFormat &format=QgsTextCharacterFormat())
Constructor for QgsTextFragment, with the specified text and optional character format.
void applyCapitalization(Qgis::Capitalization capitalization)
Applies a capitalization style to the fragment's text.