QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgssinglebandpseudocolorrenderer.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgssinglebandpseudocolorrenderer.h
3  ----------------------------------
4  begin : January 2012
5  copyright : (C) 2012 by Marco Hugentobler
6  email : marco at sourcepole dot ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSSINGLEBANDPSEUDOCOLORRENDERER_H
19 #define QGSSINGLEBANDPSEUDOCOLORRENDERER_H
20 
21 #include "qgis_core.h"
22 #include "qgis_sip.h"
23 #include "qgscolorramp.h"
24 #include "qgscolorrampshader.h"
25 #include "qgsrasterrenderer.h"
26 #include "qgsrectangle.h"
27 
28 class QDomElement;
29 class QgsRasterShader;
30 
36 {
37 
38  public:
39 
41  QgsSingleBandPseudoColorRenderer( QgsRasterInterface *input, int band = -1, QgsRasterShader *shader SIP_TRANSFER = nullptr );
42 
47 
49 
50  static QgsRasterRenderer *create( const QDomElement &elem, QgsRasterInterface *input ) SIP_FACTORY;
51 
52  QgsRasterBlock *block( int bandNo, const QgsRectangle &extent, int width, int height, QgsRasterBlockFeedback *feedback = nullptr ) override SIP_FACTORY;
53 
55  void setShader( QgsRasterShader *shader SIP_TRANSFER );
56 
58  QgsRasterShader *shader() { return mShader.get(); }
59 
61  const QgsRasterShader *shader() const SIP_PYNAME( constShader ) { return mShader.get(); }
62 
72  void createShader( QgsColorRamp *colorRamp SIP_TRANSFER = nullptr,
75  int classes = 0,
76  bool clip = false,
77  const QgsRectangle &extent = QgsRectangle() );
78 
79  void writeXml( QDomDocument &doc, QDomElement &parentElem ) const override;
80  void legendSymbologyItems( QList< QPair< QString, QColor > > &symbolItems SIP_OUT ) const override;
81  QList<int> usesBands() const override;
82  void toSld( QDomDocument &doc, QDomElement &element, const QgsStringMap &props = QgsStringMap() ) const override;
83  bool accept( QgsStyleEntityVisitorInterface *visitor ) const override;
84 
89  int band() const { return mBand; }
90 
96  void setBand( int bandNo );
97 
98  double classificationMin() const { return mClassificationMin; }
99  double classificationMax() const { return mClassificationMax; }
100  void setClassificationMin( double min );
101  void setClassificationMax( double max );
102 
103  private:
104 #ifdef SIP_RUN
107 #endif
108 
109  std::unique_ptr< QgsRasterShader > mShader;
110  int mBand;
111 
112  // Minimum and maximum values used for automatic classification, these
113  // values are not used by renderer in rendering process
114  double mClassificationMin;
115  double mClassificationMax;
116 
117 };
118 
119 #endif // QGSSINGLEBANDPSEUDOCOLORRENDERER_H
A rectangle specified with double values.
Definition: qgsrectangle.h:41
Interface for all raster shaders.
QgsRasterBlock * block(int bandNo, const QgsRectangle &extent, int width, int height, QgsRasterBlockFeedback *feedback=nullptr) override=0
Read block of data using given extent and size.
virtual void toSld(QDomDocument &doc, QDomElement &element, const QgsStringMap &props=QgsStringMap()) const
Used from subclasses to create SLD Rule elements following SLD v1.0 specs.
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the renderer...
virtual QList< int > usesBands() const
Returns a list of band numbers used by the renderer.
Abstract base class for color ramps.
Definition: qgscolorramp.h:31
An interface for classes which can visit style entity (e.g.
QgsRasterShader * shader()
Returns the raster shader.
QMap< QString, QString > QgsStringMap
Definition: qgis.h:612
Type
Supported methods for color interpolation.
Raster data container.
#define SIP_TRANSFER
Definition: qgis_sip.h:36
Raster renderer pipe for single band pseudocolor.
#define SIP_FACTORY
Definition: qgis_sip.h:76
Base class for processing filters like renderers, reprojector, resampler etc.
const QgsRasterRenderer & operator=(const QgsRasterRenderer &)=delete
QgsRasterRenderer cannot be copied. Use clone() instead.
Uses breaks from color palette.
#define SIP_OUT
Definition: qgis_sip.h:58
QgsRasterRenderer * clone() const override=0
Clone itself, create deep copy.
Interpolates the color between two class breaks linearly.
ClassificationMode
Classification modes used to create the color ramp shader.
virtual void legendSymbologyItems(QList< QPair< QString, QColor > > &symbolItems) const
Gets symbology items if provided by renderer.
virtual void writeXml(QDomDocument &doc, QDomElement &parentElem) const
Write base class members to xml.
Feedback object tailored for raster block reading.
Raster renderer pipe that applies colors to a raster.
int band() const
Returns the band used by the renderer.
#define SIP_PYNAME(name)
Definition: qgis_sip.h:81