QGIS API Documentation  3.22.4-Białowieża (ce8e65e95e)
qgsrenderer.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrenderer.h
3  ---------------------
4  begin : November 2009
5  copyright : (C) 2009 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 QGSRENDERER_H
17 #define QGSRENDERER_H
18 
19 #include "qgis_core.h"
20 #include "qgis_sip.h"
21 #include "qgis.h"
22 #include "qgsrectangle.h"
23 #include "qgsfields.h"
24 #include "qgsfeaturerequest.h"
25 #include "qgsconfig.h"
26 
27 #include <QList>
28 #include <QString>
29 #include <QVariant>
30 #include <QPair>
31 #include <QPixmap>
32 #include <QDomDocument>
33 #include <QDomElement>
34 
35 class QgsFeature;
36 class QgsVectorLayer;
37 class QgsPaintEffect;
40 class QgsRenderContext;
41 
42 typedef QMap<QString, QString> QgsStringMap SIP_SKIP;
43 
44 typedef QList<QgsSymbol *> QgsSymbolList;
45 typedef QMap<QString, QgsSymbol * > QgsSymbolMap SIP_SKIP;
46 
47 #include "qgslegendsymbolitem.h"
48 
49 
50 #define RENDERER_TAG_NAME "renderer-v2"
51 
53 // symbol levels
54 
59 class CORE_EXPORT QgsSymbolLevelItem
60 {
61  public:
62  QgsSymbolLevelItem( QgsSymbol *symbol, int layer )
63  : mSymbol( symbol )
64  , mLayer( layer )
65  {}
66 
70  QgsSymbol *symbol() const;
71 
75  int layer() const;
76 
77  // TODO QGIS 4.0 -> make private
78  protected:
79  QgsSymbol *mSymbol = nullptr;
80  int mLayer;
81 };
82 
83 // every level has list of items: symbol + symbol layer num
84 typedef QList< QgsSymbolLevelItem > QgsSymbolLevel;
85 
86 // this is a list of levels
87 #ifndef SIP_RUN
88 typedef QList< QgsSymbolLevel > QgsSymbolLevelOrder;
89 #else
90 typedef QList< QList< QgsSymbolLevelItem > > QgsSymbolLevelOrder;
91 #endif
92 
93 
95 // renderers
96 
101 class CORE_EXPORT QgsFeatureRenderer
102 {
103 
104 #ifdef SIP_RUN
106 
107  const QString type = sipCpp->type();
108 
109  if ( type == QLatin1String( "singleSymbol" ) )
110  sipType = sipType_QgsSingleSymbolRenderer;
111  else if ( type == QLatin1String( "categorizedSymbol" ) )
112  sipType = sipType_QgsCategorizedSymbolRenderer;
113  else if ( type == QLatin1String( "graduatedSymbol" ) )
114  sipType = sipType_QgsGraduatedSymbolRenderer;
115  else if ( type == QLatin1String( "RuleRenderer" ) )
116  sipType = sipType_QgsRuleBasedRenderer;
117  else if ( type == QLatin1String( "heatmapRenderer" ) )
118  sipType = sipType_QgsHeatmapRenderer;
119  else if ( type == QLatin1String( "invertedPolygonRenderer" ) )
120  sipType = sipType_QgsInvertedPolygonRenderer;
121  else if ( type == QLatin1String( "pointCluster" ) )
122  sipType = sipType_QgsPointClusterRenderer;
123  else if ( type == QLatin1String( "pointDisplacement" ) )
124  sipType = sipType_QgsPointDisplacementRenderer;
125  else if ( type == QLatin1String( "25dRenderer" ) )
126  sipType = sipType_Qgs25DRenderer;
127  else if ( type == QLatin1String( "nullSymbol" ) )
128  sipType = sipType_QgsNullSymbolRenderer;
129  else if ( type == QLatin1String( "embeddedSymbol" ) )
130  sipType = sipType_QgsEmbeddedSymbolRenderer;
131  else
132  sipType = 0;
133  SIP_END
134 #endif
135 
136  public:
137  // renderer takes ownership of its symbols!
138 
140  static QgsFeatureRenderer *defaultRenderer( QgsWkbTypes::GeometryType geomType ) SIP_FACTORY;
141 
142  QString type() const { return mType; }
143 
153  virtual QgsSymbol *symbolForFeature( const QgsFeature &feature, QgsRenderContext &context ) const = 0;
154 
161  virtual QgsSymbol *originalSymbolForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
162 
167  virtual QSet< QString > legendKeysForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
168 
181  virtual void startRender( QgsRenderContext &context, const QgsFields &fields );
182 
193  virtual void stopRender( QgsRenderContext &context );
194 
206  virtual QString filter( const QgsFields &fields = QgsFields() ) { Q_UNUSED( fields ) return QString(); }
207 
214  virtual QSet<QString> usedAttributes( const QgsRenderContext &context ) const = 0;
215 
222  virtual bool usesEmbeddedSymbols() const;
223 
227  virtual bool filterNeedsGeometry() const;
228 
229  virtual ~QgsFeatureRenderer();
230 
237  virtual QgsFeatureRenderer *clone() const = 0 SIP_FACTORY;
238 
252  virtual bool renderFeature( const QgsFeature &feature, QgsRenderContext &context, int layer = -1, bool selected = false, bool drawVertexMarker = false ) SIP_THROW( QgsCsException );
253 
255  virtual QString dump() const;
256 
262  {
263  SymbolLevels = 1,
264  MoreSymbolsPerFeature = 1 << 2,
265  Filter = 1 << 3,
266  ScaleDependent = 1 << 4
267  };
268 
269  Q_DECLARE_FLAGS( Capabilities, Capability )
270 
271 
283  virtual QgsFeatureRenderer::Capabilities capabilities() { return QgsFeatureRenderer::Capabilities(); }
284 
290  virtual QgsSymbolList symbols( QgsRenderContext &context ) const;
291 
292  bool usingSymbolLevels() const { return mUsingSymbolLevels; }
293  void setUsingSymbolLevels( bool usingSymbolLevels ) { mUsingSymbolLevels = usingSymbolLevels; }
294 
296  static QgsFeatureRenderer *load( QDomElement &symbologyElem, const QgsReadWriteContext &context ) SIP_FACTORY;
297 
304  virtual QDomElement save( QDomDocument &doc, const QgsReadWriteContext &context );
305 
310  virtual QDomElement writeSld( QDomDocument &doc, const QString &styleName, const QVariantMap &props = QVariantMap() ) const;
311 
323  static QgsFeatureRenderer *loadSld( const QDomNode &node, QgsWkbTypes::GeometryType geomType, QString &errorMessage ) SIP_FACTORY;
324 
326  virtual void toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props = QVariantMap() ) const
327  {
328  element.appendChild( doc.createComment( QStringLiteral( "FeatureRenderer %1 not implemented yet" ).arg( type() ) ) );
329  ( void ) props; // warning avoidance
330  }
331 
336  virtual bool legendSymbolItemsCheckable() const;
337 
342  virtual bool legendSymbolItemChecked( const QString &key );
343 
348  virtual void checkLegendSymbolItem( const QString &key, bool state = true );
349 
356  virtual void setLegendSymbolItem( const QString &key, QgsSymbol *symbol SIP_TRANSFER );
357 
362  virtual QgsLegendSymbolList legendSymbolItems() const;
363 
368  virtual QString legendClassificationAttribute() const { return QString(); }
369 
371  void setVertexMarkerAppearance( Qgis::VertexMarkerType type, double size );
372 
379  virtual bool willRenderFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
380 
387  virtual QgsSymbolList symbolsForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
388 
394  virtual QgsSymbolList originalSymbolsForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
395 
403  virtual void modifyRequestExtent( QgsRectangle &extent, QgsRenderContext &context );
404 
411  QgsPaintEffect *paintEffect() const;
412 
419  void setPaintEffect( QgsPaintEffect *effect SIP_TRANSFER );
420 
426  bool forceRasterRender() const { return mForceRaster; }
427 
436  void setForceRasterRender( bool forceRaster ) { mForceRaster = forceRaster; }
437 
452  double referenceScale() const { return mReferenceScale; }
453 
468  void setReferenceScale( double scale ) { mReferenceScale = scale; }
469 
476  QgsFeatureRequest::OrderBy orderBy() const;
477 
484  void setOrderBy( const QgsFeatureRequest::OrderBy &orderBy );
485 
492  bool orderByEnabled() const;
493 
501  void setOrderByEnabled( bool enabled );
502 
510  virtual void setEmbeddedRenderer( QgsFeatureRenderer *subRenderer SIP_TRANSFER );
511 
518  virtual const QgsFeatureRenderer *embeddedRenderer() const;
519 
529  virtual bool accept( QgsStyleEntityVisitorInterface *visitor ) const;
530 
545  void copyRendererData( QgsFeatureRenderer *destRenderer ) const;
546 
547  protected:
548  QgsFeatureRenderer( const QString &type );
549 
556  void renderFeatureWithSymbol( const QgsFeature &feature, QgsSymbol *symbol, QgsRenderContext &context, int layer, bool selected, bool drawVertexMarker ) SIP_THROW( QgsCsException );
557 
559  void renderVertexMarker( QPointF pt, QgsRenderContext &context );
561  void renderVertexMarkerPolyline( QPolygonF &pts, QgsRenderContext &context );
563  void renderVertexMarkerPolygon( QPolygonF &pts, QList<QPolygonF> *rings, QgsRenderContext &context );
564 
569  static QPointF _getPoint( QgsRenderContext &context, const QgsPoint &point );
570 
579  void saveRendererData( QDomDocument &doc, QDomElement &element, const QgsReadWriteContext &context );
580 
581  QString mType;
582 
583  bool mUsingSymbolLevels = false;
584 
587 
589  double mCurrentVertexMarkerSize = 2;
590 
591  QgsPaintEffect *mPaintEffect = nullptr;
592 
593  bool mForceRaster = false;
594 
595  double mReferenceScale = -1.0;
596 
601  static void convertSymbolSizeScale( QgsSymbol *symbol, Qgis::ScaleMethod method, const QString &field );
602 
607  static void convertSymbolRotation( QgsSymbol *symbol, const QString &field );
608 
610 
611  bool mOrderByEnabled = false;
612 
613  private:
614 #ifdef SIP_RUN
616  QgsFeatureRenderer &operator=( const QgsFeatureRenderer & );
617 #endif
618 
619 #ifdef QGISDEBUG
621  QThread *mThread = nullptr;
622 #endif
623 
624  Q_DISABLE_COPY( QgsFeatureRenderer )
625 };
626 
627 Q_DECLARE_OPERATORS_FOR_FLAGS( QgsFeatureRenderer::Capabilities )
628 
629 // for some reason SIP compilation fails if these lines are not included:
630 class QgsRendererWidget;
632 
633 #endif // QGSRENDERER_H
ScaleMethod
Scale methods.
Definition: qgis.h:183
VertexMarkerType
Editing vertex markers, used for showing vertices during a edit operation.
Definition: qgis.h:574
@ Cross
Cross marker.
Custom exception class for Coordinate Reference System related exceptions.
Definition: qgsexception.h:66
virtual QgsFeatureRenderer * clone() const =0
Create a deep copy of this renderer.
virtual QString filter(const QgsFields &fields=QgsFields())
If a renderer does not require all the features this method may be overridden and return an expressio...
Definition: qgsrenderer.h:206
bool forceRasterRender() const
Returns whether the renderer must render as a raster.
Definition: qgsrenderer.h:426
void setForceRasterRender(bool forceRaster)
Sets whether the renderer should be rendered to a raster destination.
Definition: qgsrenderer.h:436
virtual void toSld(QDomDocument &doc, QDomElement &element, const QVariantMap &props=QVariantMap()) const
used from subclasses to create SLD Rule elements following SLD v1.1 specs
Definition: qgsrenderer.h:326
virtual QString legendClassificationAttribute() const
If supported by the renderer, return classification attribute for the use in legend.
Definition: qgsrenderer.h:368
virtual QgsSymbol * symbolForFeature(const QgsFeature &feature, QgsRenderContext &context) const =0
To be overridden.
QString type() const
Definition: qgsrenderer.h:142
double referenceScale() const
Returns the symbology reference scale.
Definition: qgsrenderer.h:452
void setReferenceScale(double scale)
Sets the symbology reference scale.
Definition: qgsrenderer.h:468
bool usingSymbolLevels() const
Definition: qgsrenderer.h:292
void setUsingSymbolLevels(bool usingSymbolLevels)
Definition: qgsrenderer.h:293
Capability
Used to specify details about a renderer.
Definition: qgsrenderer.h:262
virtual QSet< QString > usedAttributes(const QgsRenderContext &context) const =0
Returns a list of attributes required by this renderer.
QgsFeatureRequest::OrderBy mOrderBy
Definition: qgsrenderer.h:609
Represents a list of OrderByClauses, with the most important first and the least important last.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition: qgsfeature.h:56
Container of fields for a vector layer.
Definition: qgsfields.h:45
Base class for effect properties widgets.
Base class for visual effects which can be applied to QPicture drawings.
Point geometry type, with support for z-dimension and m-values.
Definition: qgspoint.h:49
The class is used as a container of context for various read/write operations on other objects.
A rectangle specified with double values.
Definition: qgsrectangle.h:42
Contains information about the context of a rendering operation.
Base class for renderer settings widgets.
An interface for classes which can visit style entity (e.g.
QgsSymbolLevelItem(QgsSymbol *symbol, int layer)
Definition: qgsrenderer.h:62
Abstract base class for all rendered symbols.
Definition: qgssymbol.h:38
Represents a vector layer which manages a vector based data sets.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
Definition: qgswkbtypes.h:141
QMap< QString, QString > QgsStringMap
Definition: qgis.h:1703
#define SIP_THROW(name)
Definition: qgis_sip.h:189
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition: qgis_sip.h:177
#define SIP_SKIP
Definition: qgis_sip.h:126
#define SIP_TRANSFER
Definition: qgis_sip.h:36
#define SIP_FACTORY
Definition: qgis_sip.h:76
#define SIP_END
Definition: qgis_sip.h:194
const QgsField & field
Definition: qgsfield.h:463
Q_DECLARE_OPERATORS_FOR_FLAGS(QgsField::ConfigurationFlags) CORE_EXPORT QDataStream &operator<<(QDataStream &out
Writes the field to stream out. QGIS version compatibility is not guaranteed.
QList< QgsLegendSymbolItem > QgsLegendSymbolList
QList< QgsSymbolLevel > QgsSymbolLevelOrder
Definition: qgsrenderer.h:88
QList< QgsSymbolLevelItem > QgsSymbolLevel
Definition: qgsrenderer.h:84
QMap< QString, QgsSymbol * > QgsSymbolMap
Definition: qgsrenderer.h:45
QList< QgsSymbol * > QgsSymbolList
Definition: qgsrenderer.h:44