QGIS API Documentation  3.0.2-Girona (307d082)
qgsgeometrygeneratorsymbollayer.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsgeometrygeneratorsymbollayer.h
3  ---------------------
4  begin : November 2015
5  copyright : (C) 2015 by Matthias Kuhn
6  email : matthias at opengis dot ch
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 QGSGEOMETRYGENERATORSYMBOLLAYERV2_H
17 #define QGSGEOMETRYGENERATORSYMBOLLAYERV2_H
18 
19 #include "qgis_core.h"
20 #include "qgssymbollayer.h"
21 
27 {
28  public:
30 
31  static QgsSymbolLayer *create( const QgsStringMap &properties ) SIP_FACTORY;
32 
33  QString layerType() const override;
34 
41  void setSymbolType( QgsSymbol::SymbolType symbolType );
42 
49  QgsSymbol::SymbolType symbolType() const { return mSymbolType; }
50 
51  void startRender( QgsSymbolRenderContext &context ) override;
52 
53  void stopRender( QgsSymbolRenderContext &context ) override;
54 
55  QgsSymbolLayer *clone() const override SIP_FACTORY;
56 
57  QgsStringMap properties() const override;
58 
59  void drawPreviewIcon( QgsSymbolRenderContext &context, QSize size ) override;
60 
64  void setGeometryExpression( const QString &exp );
65 
69  QString geometryExpression() const { return mExpression->expression(); }
70 
71  QgsSymbol *subSymbol() override { return mSymbol; }
72 
73  bool setSubSymbol( QgsSymbol *symbol SIP_TRANSFER ) override;
74 
75  QSet<QString> usedAttributes( const QgsRenderContext &context ) const override;
76 
82  bool isCompatibleWithSymbol( QgsSymbol *symbol ) const override;
83 
94  virtual void render( QgsSymbolRenderContext &context );
95 
96  void setColor( const QColor &color ) override;
97 
98  private:
99  QgsGeometryGeneratorSymbolLayer( const QString &expression );
100 
101 #ifdef SIP_RUN
103 #endif
104 
105  std::unique_ptr<QgsExpression> mExpression;
106  QgsFillSymbol *mFillSymbol = nullptr;
107  QgsLineSymbol *mLineSymbol = nullptr;
108  QgsMarkerSymbol *mMarkerSymbol = nullptr;
109  QgsSymbol *mSymbol = nullptr;
110 
114  QgsSymbol::SymbolType mSymbolType;
115 };
116 
117 #endif // QGSGEOMETRYGENERATORSYMBOLLAYERV2_H
QgsSymbol * subSymbol() override
Returns the symbol&#39;s sub symbol, if present.
QString geometryExpression() const
Get the expression to generate this geometry.
virtual QgsStringMap properties() const =0
Should be reimplemented by subclasses to return a string map that contains the configuration informat...
QMap< QString, QString > QgsStringMap
Definition: qgis.h:479
virtual void setColor(const QColor &color)
The fill color.
SymbolType
Type of the symbol.
Definition: qgssymbol.h:83
virtual bool setSubSymbol(QgsSymbol *symbol)
set layer&#39;s subsymbol. takes ownership of the passed symbol
virtual QgsSymbolLayer * clone() const =0
Shall be reimplemented by subclasses to create a deep copy of the instance.
#define SIP_TRANSFER
Definition: qgis_sip.h:36
virtual void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size)=0
#define SIP_FACTORY
Definition: qgis_sip.h:69
virtual bool isCompatibleWithSymbol(QgsSymbol *symbol) const
Returns if the layer can be used below the specified symbol.
virtual QSet< QString > usedAttributes(const QgsRenderContext &context) const
Returns the set of attributes referenced by the layer.
Contains information about the context of a rendering operation.
virtual void stopRender(QgsSymbolRenderContext &context)=0
QgsSymbol::SymbolType symbolType() const
Access the symbol type.
virtual void startRender(QgsSymbolRenderContext &context)=0
virtual QString layerType() const =0
Returns a string that represents this layer type.