QGIS API Documentation 3.99.0-Master (c22de0620c0)
Loading...
Searching...
No Matches
qgsvectorlayerlabelprovider.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsvectorlayerlabelprovider.h
3 --------------------------------------
4 Date : September 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
16#ifndef QGSVECTORLAYERLABELPROVIDER_H
17#define QGSVECTORLAYERLABELPROVIDER_H
18
19
20#include "qgis_core.h"
21#include "qgslabelingengine.h"
22#include "qgspallabeling.h"
23#include "qgsrenderer.h"
24
25#define SIP_NO_FILE
26
29class QgsSymbol;
30
42{
43 public:
44
47 const QString &providerId,
48 bool withFeatureLoop,
50 const QString &layerName = QString() );
51
54 const QgsFields &fields,
56 const QString &providerId,
59 const QString &layerName = QString() );
60
62
63 QList<QgsLabelFeature *> labelFeatures( QgsRenderContext &context ) override;
64
65 void drawLabelBackground( QgsRenderContext &context, pal::LabelPosition *label ) const override;
66 void drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const override;
67 void drawUnplacedLabel( QgsRenderContext &context, pal::LabelPosition *label ) const override;
68 void startRender( QgsRenderContext &context ) override;
69 void stopRender( QgsRenderContext &context ) override;
70
71 // new virtual methods
72
79 virtual bool prepare( QgsRenderContext &context, QSet<QString> &attributeNames );
80
95 virtual QList< QgsLabelFeature * > registerFeature( const QgsFeature &feature, QgsRenderContext &context, const QgsGeometry &obstacleGeometry = QgsGeometry(), const QgsSymbol *symbol = nullptr );
96
105 static QgsGeometry getPointObstacleGeometry( QgsFeature &fet, QgsRenderContext &context, const QgsSymbolList &symbols );
106
111 const QgsPalLayerSettings &settings() const;
112
119 void setFields( const QgsFields &fields );
120
121 protected:
123 void init();
125 void drawLabelPrivate( pal::LabelPosition *label, QgsRenderContext &context, QgsPalLayerSettings &tmpLyr, Qgis::TextComponent drawType, double dpiRatio = 1.0 ) const;
126
127 protected:
132
134
135 // these are needed only if using own renderer loop
136
142 std::unique_ptr<QgsAbstractFeatureSource> mSource;
143
145 QList<QgsLabelFeature *> mLabels;
146
147 private:
148
151
152 void drawCallout( QgsRenderContext &context, pal::LabelPosition *label ) const;
153};
154
155#endif // QGSVECTORLAYERLABELPROVIDER_H
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:376
TextComponent
Text components.
Definition qgis.h:2991
Base class that can be used for any class that is capable of returning features.
virtual QList< QgsLabelFeature * > labelFeatures(QgsRenderContext &context)=0
Returns list of label features (they are owned by the provider and thus deleted on its destruction).
virtual void drawUnplacedLabel(QgsRenderContext &context, pal::LabelPosition *label) const
Draw an unplaced label.
virtual void stopRender(QgsRenderContext &context)
To be called after rendering is complete.
virtual void drawLabel(QgsRenderContext &context, pal::LabelPosition *label) const =0
Draw this label at the position determined by the labeling engine.
virtual void drawLabelBackground(QgsRenderContext &context, pal::LabelPosition *label) const
Draw the background for the specified label.
QgsMapLayer * layer() const
Returns the associated layer, or nullptr if no layer is associated with the provider.
virtual void startRender(QgsRenderContext &context)
To be called before rendering of labels begins.
QString providerId() const
Returns provider ID - useful in case there is more than one label provider within a layer (e....
QgsAbstractLabelProvider(QgsMapLayer *layer, const QString &providerId=QString())
Construct the provider with default values.
Represents a coordinate reference system (CRS).
Abstract base class for all 2D vector feature renderers.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
Container of fields for a vector layer.
Definition qgsfields.h:46
A geometry is the spatial representation of a feature.
Base class for all map layer types.
Definition qgsmaplayer.h:83
Contains settings for how a map layer will be labeled.
Contains information about the context of a rendering operation.
Abstract base class for all rendered symbols.
Definition qgssymbol.h:231
QgsCoordinateReferenceSystem mCrs
Layer's CRS.
virtual bool prepare(QgsRenderContext &context, QSet< QString > &attributeNames)
Prepare for registration of features.
QList< QgsLabelFeature * > mLabels
List of generated.
QgsVectorLayerLabelProvider(QgsVectorLayer *layer, const QString &providerId, bool withFeatureLoop, const QgsPalLayerSettings *settings, const QString &layerName=QString())
Convenience constructor to initialize the provider from given vector layer.
const QgsPalLayerSettings & settings() const
Returns the layer's settings.
void drawLabelPrivate(pal::LabelPosition *label, QgsRenderContext &context, QgsPalLayerSettings &tmpLyr, Qgis::TextComponent drawType, double dpiRatio=1.0) const
Internal label drawing method.
Qgis::GeometryType mLayerGeometryType
Geometry type of layer.
static QgsGeometry getPointObstacleGeometry(QgsFeature &fet, QgsRenderContext &context, const QgsSymbolList &symbols)
Returns the geometry for a point feature which should be used as an obstacle for labels.
QgsPalLayerSettings mSettings
Layer's labeling configuration.
std::unique_ptr< QgsAbstractFeatureSource > mSource
Layer's feature source.
virtual QList< QgsLabelFeature * > registerFeature(const QgsFeature &feature, QgsRenderContext &context, const QgsGeometry &obstacleGeometry=QgsGeometry(), const QgsSymbol *symbol=nullptr)
Register a feature for labeling as one or more QgsLabelFeature objects stored into mLabels.
void init()
initialization method - called from constructors
void setFields(const QgsFields &fields)
Sets fields of this label provider.
Represents a vector layer which manages a vector based dataset.
LabelPosition is a candidate feature label position.
QList< QgsSymbol * > QgsSymbolList
Definition qgsrenderer.h:51