mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -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 );
|
|
};
|