mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
class QgsRasterShaderFunction
 | 
						|
{
 | 
						|
%TypeHeaderCode
 | 
						|
#include <qgsrastershaderfunction.h>
 | 
						|
#include <qgscolorrampshader.h>
 | 
						|
#include <qgspseudocolorshader.h>
 | 
						|
%End
 | 
						|
 | 
						|
%ConvertToSubClassCode
 | 
						|
  if (dynamic_cast<QgsColorRampShader*>(sipCpp) != NULL)
 | 
						|
    sipClass = sipClass_QgsColorRampShader;
 | 
						|
  else if (dynamic_cast<QgsPseudoColorShader*>(sipCpp) != NULL)
 | 
						|
    sipClass = sipClass_QgsPseudoColorShader;
 | 
						|
  else
 | 
						|
    sipClass = 0;
 | 
						|
%End
 | 
						|
 | 
						|
 | 
						|
  public:
 | 
						|
    QgsRasterShaderFunction( double theMinimumValue = 0.0, double theMaximumValue = 255.0 );
 | 
						|
    virtual ~QgsRasterShaderFunction();
 | 
						|
 | 
						|
    /** \brief Set the maximum value */
 | 
						|
    virtual void setMaximumValue( double );
 | 
						|
 | 
						|
    /** \brief Return the minimum value */
 | 
						|
    virtual void setMinimumValue( double );
 | 
						|
 | 
						|
    /** \brief generates and new RGB value based on one input value */
 | 
						|
    virtual bool shade( double, int* /Out/, int* /Out/, int* /Out/, int* /Out/ );
 | 
						|
 | 
						|
    /** \brief generates and new RGB value based on original RGB value */
 | 
						|
    virtual bool shade( double, double, double, double, int* /Out/, int* /Out/, int* /Out/, int* /Out/ );
 | 
						|
 | 
						|
    double minimumMaximumRange() const;
 | 
						|
 | 
						|
    double minimumValue() const;
 | 
						|
    double maximumValue() const;
 | 
						|
 | 
						|
    virtual void legendSymbologyItems( QList< QPair< QString, QColor > >& symbolItems ) const;
 | 
						|
};
 |