mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
63 lines
2.0 KiB
Plaintext
63 lines
2.0 KiB
Plaintext
|
|
class QgsRasterTransparency
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsrastertransparency.h>
|
|
%End
|
|
|
|
public:
|
|
QgsRasterTransparency();
|
|
|
|
//
|
|
// Structs to hold transparent pixel vlaues
|
|
//
|
|
struct TransparentThreeValuePixel
|
|
{
|
|
double red;
|
|
double green;
|
|
double blue;
|
|
double percentTransparent;
|
|
};
|
|
|
|
struct TransparentSingleValuePixel
|
|
{
|
|
double min;
|
|
double max;
|
|
double percentTransparent;
|
|
};
|
|
|
|
//
|
|
// Initializer, Accessor and mutator for transparency tables.
|
|
//
|
|
/** \brief Mutator for transparentSingleValuePixelList */
|
|
QList<QgsRasterTransparency::TransparentSingleValuePixel> transparentSingleValuePixelList() const;
|
|
|
|
/** \brief Mutator for transparentThreeValuePixelList */
|
|
QList<QgsRasterTransparency::TransparentThreeValuePixel> transparentThreeValuePixelList() const;
|
|
|
|
/** \brief Reset to the transparency list to a single value */
|
|
void initializeTransparentPixelList( double );
|
|
|
|
/** \brief Reset to the transparency list to a single value */
|
|
void initializeTransparentPixelList( double, double, double );
|
|
|
|
/** \brief Accessor for transparentSingleValuePixelList */
|
|
void setTransparentSingleValuePixelList( QList<QgsRasterTransparency::TransparentSingleValuePixel> /Transfer/);
|
|
|
|
/** \brief Accessor for transparentThreeValuePixelList */
|
|
void setTransparentThreeValuePixelList( QList<QgsRasterTransparency::TransparentThreeValuePixel> /Transfer/);
|
|
|
|
/** \brief Returns the transparency value for a single value Pixel */
|
|
int alphaValue( double, int theGlobalTransparency = 255 ) const;
|
|
|
|
/** \brief Return the transparency value for a RGB Pixel */
|
|
int alphaValue( double, double, double, int theGlobalTransparency = 255 ) const;
|
|
|
|
/**True if there are no entries in the pixel lists except the nodata value*/
|
|
bool isEmpty( double nodataValue ) const;
|
|
|
|
void writeXML( QDomDocument& doc, QDomElement& parentElem ) const;
|
|
|
|
void readXML( const QDomElement& elem );
|
|
};
|