QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
The QgsAbstractLabelProvider class is an interface class. More...
#include <qgslabelingengine.h>
Public Types | |
enum | Flag { DrawLabels = 1 << 1 , DrawAllLabels = 1 << 2 , MergeConnectedLines = 1 << 3 , CentroidMustBeInside = 1 << 4 } |
Public Member Functions | |
QgsAbstractLabelProvider (QgsMapLayer *layer, const QString &providerId=QString()) | |
Construct the provider with default values. More... | |
virtual | ~QgsAbstractLabelProvider ()=default |
virtual void | drawLabel (QgsRenderContext &context, pal::LabelPosition *label) const =0 |
Draw this label at the position determined by the labeling engine. More... | |
virtual void | drawLabelBackground (QgsRenderContext &context, pal::LabelPosition *label) const |
Draw the background for the specified label. More... | |
virtual void | drawUnplacedLabel (QgsRenderContext &context, pal::LabelPosition *label) const |
Draw an unplaced label. More... | |
Flags | flags () const |
Flags associated with the provider. More... | |
virtual QList< QgsLabelFeature * > | labelFeatures (QgsRenderContext &context)=0 |
Returns list of label features (they are owned by the provider and thus deleted on its destruction) More... | |
QgsMapLayer * | layer () const |
Returns the associated layer, or nullptr if no layer is associated with the provider. More... | |
QString | layerId () const |
Returns ID of associated layer, or empty string if no layer is associated with the provider. More... | |
QString | name () const |
Name of the layer (for statistics, debugging etc.) - does not need to be unique. More... | |
QgsLabelObstacleSettings::ObstacleType | obstacleType () const |
How the feature geometries will work as obstacles. More... | |
QgsPalLayerSettings::Placement | placement () const |
What placement strategy to use for the labels. More... | |
double | priority () const |
Default priority of labels (may be overridden by individual labels) More... | |
QString | providerId () const |
Returns provider ID - useful in case there is more than one label provider within a layer (e.g. More... | |
void | setEngine (const QgsLabelingEngine *engine) |
Associate provider with a labeling engine (should be only called internally from QgsLabelingEngine) More... | |
virtual void | startRender (QgsRenderContext &context) |
To be called before rendering of labels begins. More... | |
virtual void | stopRender (QgsRenderContext &context) |
To be called after rendering is complete. More... | |
virtual QList< QgsAbstractLabelProvider * > | subProviders () |
Returns list of child providers - useful if the provider needs to put labels into more layers with different configuration. More... | |
QgsPalLayerSettings::UpsideDownLabels | upsidedownLabels () const |
How to handle labels that would be upside down. More... | |
Protected Attributes | |
const QgsLabelingEngine * | mEngine = nullptr |
Associated labeling engine. More... | |
Flags | mFlags |
Flags altering drawing and registration of features. More... | |
QgsWeakMapLayerPointer | mLayer |
Weak pointer to source layer. More... | |
QString | mLayerId |
Associated layer's ID, if applicable. More... | |
QString | mName |
Name of the layer. More... | |
QgsLabelObstacleSettings::ObstacleType | mObstacleType = QgsLabelObstacleSettings::PolygonBoundary |
Type of the obstacle of feature geometries. More... | |
QgsPalLayerSettings::Placement | mPlacement |
Placement strategy. More... | |
double | mPriority |
Default priority of labels. More... | |
QString | mProviderId |
Associated provider ID (one layer may have multiple providers, e.g. in rule-based labeling) More... | |
QgsPalLayerSettings::UpsideDownLabels | mUpsidedownLabels |
How to handle labels that would be upside down. More... | |
The QgsAbstractLabelProvider class is an interface class.
Implementations return list of labels and their associated geometries - these are used by QgsLabelingEngine to compute the final layout of labels.
Implementations also take care of drawing the returned final label positions.
Definition at line 48 of file qgslabelingengine.h.
Definition at line 60 of file qgslabelingengine.h.
QgsAbstractLabelProvider::QgsAbstractLabelProvider | ( | QgsMapLayer * | layer, |
const QString & | providerId = QString() |
||
) |
Construct the provider with default values.
Definition at line 617 of file qgslabelingengine.cpp.
|
virtualdefault |
|
pure virtual |
Draw this label at the position determined by the labeling engine.
Before any calls to drawLabel(), a provider should be prepared for rendering by a call to startRender() and a corresponding call to stopRender().
Implemented in QgsVectorLayerDiagramProvider, QgsVectorLayerLabelProvider, QgsRuleBasedLabelSinkProvider, and QgsLabelSinkProvider.
|
virtual |
Draw the background for the specified label.
This is called in turn for each label provider before any actual labels are rendered, and allows the provider to render content which should be drawn below ALL map labels (such as background rectangles or callout lines).
Before any calls to drawLabelBackground(), a provider should be prepared for rendering by a call to startRender() and a corresponding call to stopRender().
Reimplemented in QgsVectorLayerLabelProvider.
Definition at line 633 of file qgslabelingengine.cpp.
|
virtual |
Draw an unplaced label.
These correspond to features which were registered for labeling, but which could not be labeled (e.g. due to conflicting labels).
The default behavior is to draw nothing for these labels.
Reimplemented in QgsVectorLayerLabelProvider.
Definition at line 628 of file qgslabelingengine.cpp.
|
inline |
Flags associated with the provider.
Definition at line 141 of file qgslabelingengine.h.
|
pure virtual |
Returns list of label features (they are owned by the provider and thus deleted on its destruction)
Implemented in QgsVectorLayerDiagramProvider, and QgsVectorLayerLabelProvider.
|
inline |
Returns the associated layer, or nullptr
if no layer is associated with the provider.
Definition at line 131 of file qgslabelingengine.h.
|
inline |
Returns ID of associated layer, or empty string if no layer is associated with the provider.
Definition at line 128 of file qgslabelingengine.h.
|
inline |
Name of the layer (for statistics, debugging etc.) - does not need to be unique.
Definition at line 125 of file qgslabelingengine.h.
|
inline |
How the feature geometries will work as obstacles.
Definition at line 150 of file qgslabelingengine.h.
|
inline |
What placement strategy to use for the labels.
Definition at line 144 of file qgslabelingengine.h.
|
inline |
Default priority of labels (may be overridden by individual labels)
Definition at line 147 of file qgslabelingengine.h.
|
inline |
Returns provider ID - useful in case there is more than one label provider within a layer (e.g.
in case of rule-based labeling - provider ID = rule's key). May be empty string if layer ID is sufficient for identification of provider's configuration.
Definition at line 138 of file qgslabelingengine.h.
|
inline |
Associate provider with a labeling engine (should be only called internally from QgsLabelingEngine)
Definition at line 58 of file qgslabelingengine.h.
|
virtual |
To be called before rendering of labels begins.
Must be accompanied by a corresponding call to stopRender()
Reimplemented in QgsVectorLayerLabelProvider.
Definition at line 638 of file qgslabelingengine.cpp.
|
virtual |
To be called after rendering is complete.
Reimplemented in QgsVectorLayerLabelProvider.
Definition at line 647 of file qgslabelingengine.cpp.
|
inlinevirtual |
Returns list of child providers - useful if the provider needs to put labels into more layers with different configuration.
Reimplemented in QgsVectorTileBasicLabelProvider, and QgsRuleBasedLabelProvider.
Definition at line 122 of file qgslabelingengine.h.
|
inline |
How to handle labels that would be upside down.
Definition at line 153 of file qgslabelingengine.h.
|
protected |
Associated labeling engine.
Definition at line 157 of file qgslabelingengine.h.
|
protected |
Flags altering drawing and registration of features.
Definition at line 168 of file qgslabelingengine.h.
|
protected |
Weak pointer to source layer.
Definition at line 164 of file qgslabelingengine.h.
|
protected |
Associated layer's ID, if applicable.
Definition at line 162 of file qgslabelingengine.h.
|
protected |
Name of the layer.
Definition at line 160 of file qgslabelingengine.h.
|
protected |
Type of the obstacle of feature geometries.
Definition at line 174 of file qgslabelingengine.h.
|
protected |
Placement strategy.
Definition at line 170 of file qgslabelingengine.h.
|
protected |
Default priority of labels.
Definition at line 172 of file qgslabelingengine.h.
|
protected |
Associated provider ID (one layer may have multiple providers, e.g. in rule-based labeling)
Definition at line 166 of file qgslabelingengine.h.
|
protected |
How to handle labels that would be upside down.
Definition at line 176 of file qgslabelingengine.h.