QGIS API Documentation  3.18.1-Zürich (202f1bf7e5)
qgstextlabelfeature.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgstextlabelfeature.h
3  ---------------------
4  begin : December 2015
5  copyright : (C) 2015 by Martin Dobias
6  email : wonder dot sk at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 #ifndef QGSTEXTLABELFEATURE_H
16 #define QGSTEXTLABELFEATURE_H
17 
18 #define SIP_NO_FILE
19 
20 #include "qgslabelfeature.h"
21 #include "qgstextdocument.h"
22 
24 
32 {
33  public:
36 
39 
46  QString text( int partId ) const;
47 
56  QgsTextCharacterFormat characterFormat( int partId ) const;
57 
63  bool hasCharacterFormat( int partId ) const;
64 
66  void calculateInfo( bool curvedLabeling, QFontMetricsF *fm, const QgsMapToPixel *xform, double maxinangle, double maxoutangle, QgsTextDocument *document = nullptr );
67 
69  const QMap< QgsPalLayerSettings::Property, QVariant > &dataDefinedValues() const { return mDataDefinedValues; }
71  void setDataDefinedValues( const QMap< QgsPalLayerSettings::Property, QVariant > &values ) { mDataDefinedValues = values; }
72 
74  void setDefinedFont( const QFont &f ) { mDefinedFont = f; }
76  QFont definedFont() { return mDefinedFont; }
77 
79  QFontMetricsF *labelFontMetrics() { return mFontMetrics; }
80 
86  QgsTextDocument document() const;
87 
93  void setDocument( const QgsTextDocument &document );
94 
95  protected:
97  QStringList mClusters;
98 
99  QList< QgsTextCharacterFormat > mCharacterFormats;
100 
102  QFont mDefinedFont;
104  QFontMetricsF *mFontMetrics = nullptr;
106  QMap< QgsPalLayerSettings::Property, QVariant > mDataDefinedValues;
107 
109 
110 };
111 
112 #endif //QGSTEXTLABELFEATURE_H
The QgsLabelFeature class describes a feature that should be used within the labeling engine.
QSizeF size(double angle=0.0) const
Size of the label (in map units)
GEOSGeometry * geometry() const
Gets access to the associated geometry.
Perform transforms between map coordinates and device coordinates.
Definition: qgsmaptopixel.h:39
Stores information relating to individual character formatting.
Represents a document consisting of one or more QgsTextBlock objects.
Class that adds extra information to QgsLabelFeature for text labels.
QgsTextLabelFeature(QgsFeatureId id, GEOSGeometry *geometry, const QSizeF &size)
Construct text label feature.
const QMap< QgsPalLayerSettings::Property, QVariant > & dataDefinedValues() const
Gets data-defined values.
void setDocument(const QgsTextDocument &document)
Sets the document for the label.
QList< QgsTextCharacterFormat > mCharacterFormats
void setDefinedFont(const QFont &f)
Sets font to be used for rendering.
QStringList mClusters
List of graphemes (used for curved labels)
QgsTextDocument document() const
Returns the document for the label.
QMap< QgsPalLayerSettings::DataDefinedProperties, QVariant > mDataDefinedValues
Stores attribute values for data defined properties.
QFontMetricsF * mFontMetrics
Metrics of the font for rendering.
QgsTextDocument mDocument
QFont definedFont()
Font to be used for rendering.
~QgsTextLabelFeature() override
Clean up.
void setDataDefinedValues(const QMap< QgsPalLayerSettings::Property, QVariant > &values)
Sets data-defined values.
QgsTextCharacterFormat characterFormat(int partId) const
Returns the character format corresponding to the specified label part.
QFont mDefinedFont
Font for rendering.
QMap< QgsPalLayerSettings::Property, QVariant > mDataDefinedValues
Stores attribute values for data defined properties.
void calculateInfo(bool curvedLabeling, QFontMetricsF *fm, const QgsMapToPixel *xform, double fontScale, double maxinangle, double maxoutangle)
calculate data for info(). setDefinedFont() must have been called already.
QString text(int partId) const
Returns the text component corresponding to a specified label part.
bool hasCharacterFormat(int partId) const
Returns true if the feature contains specific character formatting for the part with matching ID.
QFontMetricsF * labelFontMetrics()
Metrics of the font for rendering.
std::unique_ptr< GEOSGeometry, GeosDeleter > unique_ptr
Scoped GEOS pointer.
Definition: qgsgeos.h:79
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
Definition: qgsfeatureid.h:28