32#include <QInputDialog>
40#include "moc_qgssinglebandpseudocolorrendererwidget.cpp"
42using namespace Qt::StringLiterals;
51 mColorRampShaderWidget->initializeForUseWithRasterLayer();
53 connect( mMinLineEdit, &QLineEdit::textChanged,
this, &QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textChanged );
54 connect( mMaxLineEdit, &QLineEdit::textChanged,
this, &QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textChanged );
55 connect( mMinLineEdit, &QLineEdit::textEdited,
this, &QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textEdited );
56 connect( mMaxLineEdit, &QLineEdit::textEdited,
this, &QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textEdited );
74 mMinMaxWidget->setExtent( extent );
75 mMinMaxWidget->setMapCanvas(
mCanvas );
77 QHBoxLayout *layout =
new QHBoxLayout();
78 layout->setContentsMargins( 0, 0, 0, 0 );
79 mMinMaxContainerWidget->setLayout( layout );
80 layout->addWidget( mMinMaxWidget );
82 mColorRampShaderWidget->setRasterDataProvider( provider );
91 if ( mMinLineEdit->text().isEmpty() || mMaxLineEdit->text().isEmpty() )
97 mMinMaxWidget->setFromMinMaxOrigin( minMaxOrigin );
99 mMinMaxWidget->doComputations();
102 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
113 mColorRampShaderWidget->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
114 mColorRampShaderWidget->setExtent( mMinMaxWidget->extent() );
119 const int bandNumber = mBandComboBox->currentBand();
121 renderer->setClassificationMin( lineEditValue( mMinLineEdit ) );
122 renderer->setClassificationMax( lineEditValue( mMaxLineEdit ) );
123 renderer->setMinMaxOrigin( mMinMaxWidget->minMaxOrigin() );
129 mMinMaxWidget->doComputations();
137 mMinMaxWidget->setMapCanvas( canvas );
138 mColorRampShaderWidget->setExtent( mMinMaxWidget->extent() );
146 mBandComboBox->setBand( pr->
inputBand() );
147 mMinMaxWidget->setBands( QList<int>() << pr->
inputBand() );
148 mColorRampShaderWidget->setRasterBand( pr->
inputBand() );
154 mMinMaxWidget->setFromMinMaxOrigin( pr->
minMaxOrigin() );
160 if ( colorRampShader )
162 mColorRampShaderWidget->setFromShader( *colorRampShader );
168 mMinMaxWidget->setBands( QList<int>() << mBandComboBox->currentBand() );
169 mColorRampShaderWidget->setRasterBand( mBandComboBox->currentBand() );
173void QgsSingleBandPseudoColorRendererWidget::bandChanged()
176 bands.append( mBandComboBox->currentBand() );
178 mColorRampShaderWidget->setRasterBand( mBandComboBox->currentBand() );
179 mColorRampShaderWidget->classify();
186 const QString oldMinTextvalue = mMinLineEdit->text();
187 const QString oldMaxTextvalue = mMaxLineEdit->text();
189 if ( std::isnan(
min ) )
195 whileBlocking( mMinLineEdit )->setText( displayValueWithMaxPrecision(
min ) );
198 if ( std::isnan(
max ) )
204 whileBlocking( mMaxLineEdit )->setText( displayValueWithMaxPrecision(
max ) );
210 if ( mMinLineEdit->text() != oldMinTextvalue || mMaxLineEdit->text() != oldMaxTextvalue )
212 whileBlocking( mColorRampShaderWidget )->setRasterBand( bandNo );
220 whileBlocking( mMinLineEdit )->setText( displayValueWithMaxPrecision(
min ) );
221 whileBlocking( mMaxLineEdit )->setText( displayValueWithMaxPrecision(
max ) );
226void QgsSingleBandPseudoColorRendererWidget::setLineEditValue( QLineEdit *lineEdit,
double value )
229 if ( !std::isnan( value ) )
231 s = displayValueWithMaxPrecision( value );
233 lineEdit->setText( s );
236double QgsSingleBandPseudoColorRendererWidget::lineEditValue(
const QLineEdit *lineEdit )
const
238 if ( lineEdit->text().isEmpty() )
240 return std::numeric_limits<double>::quiet_NaN();
246void QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textEdited(
const QString & )
249 whileBlocking( mColorRampShaderWidget )->setMinimumMaximumAndClassify( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
253void QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textEdited(
const QString & )
256 whileBlocking( mColorRampShaderWidget )->setMinimumMaximumAndClassify( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
260void QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textChanged(
const QString & )
262 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
266void QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textChanged(
const QString & )
268 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
273void QgsSingleBandPseudoColorRendererWidget::minMaxModified()
275 mMinMaxWidget->userHasSetManualMinMaxValues();
278QString QgsSingleBandPseudoColorRendererWidget::displayValueWithMaxPrecision(
const double value )
287 return QLocale().toString( value,
'g' );
293 mMinLineEdit->setText( value );
295 mColorRampShaderWidget->classify();
300 mMaxLineEdit->setText( value );
302 mColorRampShaderWidget->classify();
@ MinimumMaximum
Real min-max values.
A ramp shader will color a raster pixel based on a list of values ranges in a ramp.
A custom validator which allows entry of doubles in a locale-tolerant way.
static double toDouble(const QString &input, bool *ok)
Converts input string to double value.
Map canvas is a class for displaying all GIS data types on a canvas.
void bandChanged(int band)
Emitted when the currently selected band changes.
Base class for raster data providers.
Represents a raster layer.
QgsRasterRenderer * renderer() const
Returns the raster's renderer.
Describes the origin of minimum and maximum values in a raster.
void setLimits(Qgis::RasterRangeLimit limits)
Sets the limits.
Qgis::RasterRangeLimit limits() const
Returns the raster limits.
Raster renderer pipe that applies colors to a raster.
const QgsRasterMinMaxOrigin & minMaxOrigin() const
Returns const reference to origin of min/max values.
Interface for all raster shaders.
void setRasterShaderFunction(QgsRasterShaderFunction *function)
A public method that allows the user to set their own shader function.
QgsRasterShaderFunction * rasterShaderFunction()
A rectangle specified with double values.
Stores settings for use within QGIS.
Raster renderer pipe for single band pseudocolor.
double classificationMin() const
QgsRasterShader * shader()
Returns the raster shader.
double classificationMax() const
int inputBand() const override
Returns the input band for the renderer, or -1 if no input band is available.
QString displayValueWithMaximumDecimals(const Qgis::DataType dataType, const double value, bool displayTrailingZeroes)
Returns a localized string representation of the value with the appropriate number of decimals suppor...
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
#define QgsDebugMsgLevel(str, level)