mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-05 00:05:32 -04:00
Now all classes and members are either exposed to bindings or marked as "not available in Python bindings" in the docs. Drop test thresholds to 0. Now it should be much easier to determine what missing members have been added which are causing test failures.
74 lines
2.0 KiB
Plaintext
74 lines
2.0 KiB
Plaintext
|
|
class QgsRasterRenderer : QgsRasterInterface
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgsrasterrenderer.h"
|
|
%End
|
|
|
|
public:
|
|
|
|
// Origin of min / max values
|
|
enum MinMaxOrigin
|
|
{
|
|
MinMaxUnknown,
|
|
MinMaxUser, // entered by user
|
|
// method
|
|
MinMaxMinMax,
|
|
MinMaxCumulativeCut,
|
|
MinMaxStdDev,
|
|
// Extent
|
|
MinMaxFullExtent,
|
|
MinMaxSubExtent,
|
|
// Precision
|
|
MinMaxEstimated,
|
|
MinMaxExact
|
|
};
|
|
|
|
static const QRgb NODATA_COLOR;
|
|
|
|
QgsRasterRenderer( QgsRasterInterface* input = 0, const QString& type = "" );
|
|
virtual ~QgsRasterRenderer();
|
|
|
|
virtual QgsRasterRenderer * clone() const = 0 /Factory/;
|
|
|
|
virtual int bandCount() const;
|
|
|
|
virtual QGis::DataType dataType( int bandNo ) const;
|
|
|
|
virtual QString type() const;
|
|
|
|
virtual bool setInput( QgsRasterInterface* input );
|
|
|
|
virtual QgsRasterBlock *block( int bandNo, const QgsRectangle &extent, int width, int height ) = 0 / Factory /;
|
|
|
|
bool usesTransparency() const;
|
|
|
|
void setOpacity( double opacity );
|
|
double opacity() const;
|
|
|
|
void setRasterTransparency( QgsRasterTransparency* t /Transfer/);
|
|
const QgsRasterTransparency* rasterTransparency() const;
|
|
|
|
void setAlphaBand( int band );
|
|
int alphaBand() const;
|
|
|
|
/** Get symbology items if provided by renderer*/
|
|
virtual void legendSymbologyItems( QList< QPair< QString, QColor > >& symbolItems ) const;
|
|
|
|
/** Sets base class members from xml. Usually called from create() methods of subclasses*/
|
|
void readXML( const QDomElement& rendererElem );
|
|
|
|
/** Returns a list of band numbers used by the renderer*/
|
|
virtual QList<int> usesBands() const;
|
|
|
|
static QString minMaxOriginName( int theOrigin );
|
|
static QString minMaxOriginLabel( int theOrigin );
|
|
static int minMaxOriginFromName( const QString& theName );
|
|
|
|
protected:
|
|
|
|
/** Write upper class info into rasterrenderer element (called by writeXML method of subclasses)*/
|
|
void _writeXML( QDomDocument& doc, QDomElement& rasterRendererElem ) const;
|
|
|
|
};
|