QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgspalettedrasterrenderer.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgspalettedrasterrenderer.h
3  ---------------------------
4  begin : December 2011
5  copyright : (C) 2011 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 QGSPALETTEDRASTERRENDERER_H
19 #define QGSPALETTEDRASTERRENDERER_H
20 
21 #include "qgis_core.h"
22 #include "qgis_sip.h"
23 #include <QVector>
24 
25 #include "qgsrasterrenderer.h"
26 #include "qgscolorrampshader.h"
27 
28 class QColor;
29 class QDomElement;
30 
36 {
37  public:
38 
40  struct Class
41  {
43  Class( int value, const QColor &color = QColor(), const QString &label = QString() )
44  : value( value )
45  , color( color )
46  , label( label )
47  {}
48 
50  int value;
51 
53  QColor color;
55  QString label;
56  };
57 
59  typedef QList< QgsPalettedRasterRenderer::Class > ClassData;
60 
64  QgsPalettedRasterRenderer( QgsRasterInterface *input, int bandNumber, const ClassData &classes );
65 
69  const QgsPalettedRasterRenderer &operator=( const QgsPalettedRasterRenderer & ) = delete;
70 
71  QgsPalettedRasterRenderer *clone() const override SIP_FACTORY;
72  static QgsRasterRenderer *create( const QDomElement &elem, QgsRasterInterface *input ) SIP_FACTORY;
73 
74  QgsRasterBlock *block( int bandNo, const QgsRectangle &extent, int width, int height, QgsRasterBlockFeedback *feedback = nullptr ) override SIP_FACTORY;
75 
77  int nColors() const { return mClassData.size(); }
78 
82  ClassData classes() const;
83 
87  QString label( int idx ) const;
88 
92  void setLabel( int idx, const QString &label );
93 
98  int band() const { return mBand; }
99 
100  void writeXml( QDomDocument &doc, QDomElement &parentElem ) const override;
101  void legendSymbologyItems( QList< QPair< QString, QColor > > &symbolItems SIP_OUT ) const override;
102  QList<int> usesBands() const override;
103  void toSld( QDomDocument &doc, QDomElement &element, const QgsStringMap &props = QgsStringMap() ) const override;
104  bool accept( QgsStyleEntityVisitorInterface *visitor ) const override;
105 
111  void setSourceColorRamp( QgsColorRamp *ramp SIP_TRANSFER );
112 
118  QgsColorRamp *sourceColorRamp() const;
119 
124  static QgsPalettedRasterRenderer::ClassData colorTableToClassData( const QList<QgsColorRampShader::ColorRampItem> &table );
125 
132  static QgsPalettedRasterRenderer::ClassData classDataFromString( const QString &string );
133 
139  static QgsPalettedRasterRenderer::ClassData classDataFromFile( const QString &path );
140 
146  static QString classDataToString( const QgsPalettedRasterRenderer::ClassData &classes );
147 
153  static QgsPalettedRasterRenderer::ClassData classDataFromRaster( QgsRasterInterface *raster, int bandNumber, QgsColorRamp *ramp = nullptr,
154  QgsRasterBlockFeedback *feedback = nullptr );
155 
156  private:
157 #ifdef SIP_RUN
159  const QgsPalettedRasterRenderer &operator=( const QgsPalettedRasterRenderer & );
160 #endif
161 
162 
163  int mBand;
164  ClassData mClassData;
165 
167  std::unique_ptr<QgsColorRamp> mSourceColorRamp;
168 
170  QMap< int, QRgb > mColors;
171  void updateArrays();
172 };
173 
174 #endif // QGSPALETTEDRASTERRENDERER_H
A rectangle specified with double values.
Definition: qgsrectangle.h:41
QColor color
Color to render value.
Renderer for paletted raster images.
Abstract base class for color ramps.
Definition: qgscolorramp.h:31
Properties of a single value class.
An interface for classes which can visit style entity (e.g.
QMap< QString, QString > QgsStringMap
Definition: qgis.h:612
Raster data container.
QList< QgsPalettedRasterRenderer::Class > ClassData
Map of value to class properties.
#define SIP_TRANSFER
Definition: qgis_sip.h:36
#define SIP_FACTORY
Definition: qgis_sip.h:76
Base class for processing filters like renderers, reprojector, resampler etc.
#define SIP_OUT
Definition: qgis_sip.h:58
int band() const
Returns the raster band used for rendering the raster.
Class(int value, const QColor &color=QColor(), const QString &label=QString())
Constructor for Class.
Feedback object tailored for raster block reading.
Raster renderer pipe that applies colors to a raster.