mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			472 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			472 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
class QgsRasterMinMaxWidget: QWidget
 | 
						|
{
 | 
						|
%TypeHeaderCode
 | 
						|
#include <qgsrasterminmaxwidget.h>
 | 
						|
%End
 | 
						|
  public:
 | 
						|
    QgsRasterMinMaxWidget( QgsRasterLayer* theLayer, QWidget *parent = 0 );
 | 
						|
    ~QgsRasterMinMaxWidget();
 | 
						|
 | 
						|
    void setExtent( const QgsRectangle & theExtent );
 | 
						|
 | 
						|
    void setBands( const QList<int> & theBands );
 | 
						|
 | 
						|
    // Load programmaticaly with current values
 | 
						|
    void load();
 | 
						|
 | 
						|
  signals:
 | 
						|
    void load( int theBandNo, double theMin, double theMax, int origin );
 | 
						|
};
 |