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();
134 return mMinMaxWidget;
140 mMinMaxWidget->setMapCanvas( canvas );
141 mColorRampShaderWidget->setExtent( mMinMaxWidget->extent() );
149 mBandComboBox->setBand( pr->
inputBand() );
150 mMinMaxWidget->setBands( QList<int>() << pr->
inputBand() );
151 mColorRampShaderWidget->setRasterBand( pr->
inputBand() );
157 mMinMaxWidget->setFromMinMaxOrigin( pr->
minMaxOrigin() );
163 if ( colorRampShader )
165 mColorRampShaderWidget->setFromShader( *colorRampShader );
171 mMinMaxWidget->setBands( QList<int>() << mBandComboBox->currentBand() );
172 mColorRampShaderWidget->setRasterBand( mBandComboBox->currentBand() );
176void QgsSingleBandPseudoColorRendererWidget::bandChanged()
179 bands.append( mBandComboBox->currentBand() );
181 mColorRampShaderWidget->setRasterBand( mBandComboBox->currentBand() );
182 mColorRampShaderWidget->classify();
189 const QString oldMinTextvalue = mMinLineEdit->text();
190 const QString oldMaxTextvalue = mMaxLineEdit->text();
192 if ( std::isnan(
min ) )
198 whileBlocking( mMinLineEdit )->setText( displayValueWithMaxPrecision(
min ) );
201 if ( std::isnan(
max ) )
207 whileBlocking( mMaxLineEdit )->setText( displayValueWithMaxPrecision(
max ) );
213 if ( mMinLineEdit->text() != oldMinTextvalue || mMaxLineEdit->text() != oldMaxTextvalue )
215 whileBlocking( mColorRampShaderWidget )->setRasterBand( bandNo );
223 whileBlocking( mMinLineEdit )->setText( displayValueWithMaxPrecision(
min ) );
224 whileBlocking( mMaxLineEdit )->setText( displayValueWithMaxPrecision(
max ) );
229void QgsSingleBandPseudoColorRendererWidget::setLineEditValue( QLineEdit *lineEdit,
double value )
232 if ( !std::isnan( value ) )
234 s = displayValueWithMaxPrecision( value );
236 lineEdit->setText( s );
239double QgsSingleBandPseudoColorRendererWidget::lineEditValue(
const QLineEdit *lineEdit )
const
241 if ( lineEdit->text().isEmpty() )
243 return std::numeric_limits<double>::quiet_NaN();
249void QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textEdited(
const QString & )
252 whileBlocking( mColorRampShaderWidget )->setMinimumMaximumAndClassify( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
256void QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textEdited(
const QString & )
259 whileBlocking( mColorRampShaderWidget )->setMinimumMaximumAndClassify( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
263void QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textChanged(
const QString & )
265 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
269void QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textChanged(
const QString & )
271 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
276void QgsSingleBandPseudoColorRendererWidget::minMaxModified()
278 mMinMaxWidget->userHasSetManualMinMaxValues();
281QString QgsSingleBandPseudoColorRendererWidget::displayValueWithMaxPrecision(
const double value )
290 return QLocale().toString( value,
'g' );
296 mMinLineEdit->setText( value );
298 mColorRampShaderWidget->classify();
303 mMaxLineEdit->setText( value );
305 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)