QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgssinglebandpseudocolorrendererwidget.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgssinglebandpseudocolorrendererwidget.cpp
3 ------------------------------------------
4 begin : February 2012
5 copyright : (C) 2012 by Marco Hugentobler
6 email : marco at sourcepole dot ch
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19#include "moc_qgssinglebandpseudocolorrendererwidget.cpp"
21#include "qgsrasterlayer.h"
23#include "qgsrastershader.h"
25#include "qgsdoublevalidator.h"
26#include "qgssettings.h"
27#include "qgsmapcanvas.h"
28#include "qgsguiutils.h"
29
30#include <QCursor>
31#include <QPushButton>
32#include <QInputDialog>
33#include <QFileDialog>
34#include <QMenu>
35#include <QMessageBox>
36#include <QTextStream>
37#include <QTreeView>
38
40 : QgsRasterRendererWidget( layer, extent )
41 , mMinMaxOrigin( 0 )
42{
43 const QgsSettings settings;
44
45 setupUi( this );
46
47 mColorRampShaderWidget->initializeForUseWithRasterLayer();
48
49 connect( mMinLineEdit, &QLineEdit::textChanged, this, &QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textChanged );
50 connect( mMaxLineEdit, &QLineEdit::textChanged, this, &QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textChanged );
51 connect( mMinLineEdit, &QLineEdit::textEdited, this, &QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textEdited );
52 connect( mMaxLineEdit, &QLineEdit::textEdited, this, &QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textEdited );
53
54 if ( !mRasterLayer )
55 {
56 return;
57 }
58
60 if ( !provider )
61 {
62 return;
63 }
64
65 // Must be before adding items to mBandComboBox (signal)
66 mMinLineEdit->setValidator( new QgsDoubleValidator( mMinLineEdit ) );
67 mMaxLineEdit->setValidator( new QgsDoubleValidator( mMaxLineEdit ) );
68
69 mMinMaxWidget = new QgsRasterMinMaxWidget( layer, this );
70 mMinMaxWidget->setExtent( extent );
71 mMinMaxWidget->setMapCanvas( mCanvas );
72
73 QHBoxLayout *layout = new QHBoxLayout();
74 layout->setContentsMargins( 0, 0, 0, 0 );
75 mMinMaxContainerWidget->setLayout( layout );
76 layout->addWidget( mMinMaxWidget );
77
78 mColorRampShaderWidget->setRasterDataProvider( provider );
79 mBandComboBox->setLayer( mRasterLayer );
80
81 setFromRenderer( layer->renderer() );
82
85
86 // If there is currently no min/max, load default with user current default options
87 if ( mMinLineEdit->text().isEmpty() || mMaxLineEdit->text().isEmpty() )
88 {
89 QgsRasterMinMaxOrigin minMaxOrigin = mMinMaxWidget->minMaxOrigin();
90 if ( minMaxOrigin.limits() == Qgis::RasterRangeLimit::NotSet )
91 {
93 mMinMaxWidget->setFromMinMaxOrigin( minMaxOrigin );
94 }
95 mMinMaxWidget->doComputations();
96 }
97
98 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
99
100 connect( mBandComboBox, &QgsRasterBandComboBox::bandChanged, this, &QgsSingleBandPseudoColorRendererWidget::bandChanged );
103}
104
106{
107 QgsRasterShader *rasterShader = new QgsRasterShader();
108
109 mColorRampShaderWidget->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
110 mColorRampShaderWidget->setExtent( mMinMaxWidget->extent() );
111
112 QgsColorRampShader *fcn = new QgsColorRampShader( mColorRampShaderWidget->shader() );
113 rasterShader->setRasterShaderFunction( fcn );
114
115 const int bandNumber = mBandComboBox->currentBand();
117 renderer->setClassificationMin( lineEditValue( mMinLineEdit ) );
118 renderer->setClassificationMax( lineEditValue( mMaxLineEdit ) );
119 renderer->setMinMaxOrigin( mMinMaxWidget->minMaxOrigin() );
120 return renderer;
121}
122
127
129
131{
133 mMinMaxWidget->setMapCanvas( canvas );
134 mColorRampShaderWidget->setExtent( mMinMaxWidget->extent() );
135}
136
138{
139 const QgsSingleBandPseudoColorRenderer *pr = dynamic_cast<const QgsSingleBandPseudoColorRenderer *>( r );
140 if ( pr )
141 {
142 mBandComboBox->setBand( pr->inputBand() );
143 mMinMaxWidget->setBands( QList<int>() << pr->inputBand() );
144 mColorRampShaderWidget->setRasterBand( pr->inputBand() );
145
146 // need to set min/max properties here because if we use the raster shader below,
147 // we may set a new color ramp which needs to have min/max values defined.
148 setLineEditValue( mMinLineEdit, pr->classificationMin() );
149 setLineEditValue( mMaxLineEdit, pr->classificationMax() );
150 mMinMaxWidget->setFromMinMaxOrigin( pr->minMaxOrigin() );
151
152 const QgsRasterShader *rasterShader = pr->shader();
153 if ( rasterShader )
154 {
155 const QgsColorRampShader *colorRampShader = dynamic_cast<const QgsColorRampShader *>( rasterShader->rasterShaderFunction() );
156 if ( colorRampShader )
157 {
158 mColorRampShaderWidget->setFromShader( *colorRampShader );
159 }
160 }
161 }
162 else
163 {
164 mMinMaxWidget->setBands( QList<int>() << mBandComboBox->currentBand() );
165 mColorRampShaderWidget->setRasterBand( mBandComboBox->currentBand() );
166 }
167}
168
169void QgsSingleBandPseudoColorRendererWidget::bandChanged()
170{
171 QList<int> bands;
172 bands.append( mBandComboBox->currentBand() );
173 mMinMaxWidget->setBands( bands );
174 mColorRampShaderWidget->setRasterBand( mBandComboBox->currentBand() );
175 mColorRampShaderWidget->classify();
176}
177
178void QgsSingleBandPseudoColorRendererWidget::loadMinMax( int bandNo, double min, double max )
179{
180 QgsDebugMsgLevel( QStringLiteral( "theBandNo = %1 min = %2 max = %3" ).arg( bandNo ).arg( min ).arg( max ), 2 );
181
182 const QString oldMinTextvalue = mMinLineEdit->text();
183 const QString oldMaxTextvalue = mMaxLineEdit->text();
184
185 if ( std::isnan( min ) )
186 {
187 whileBlocking( mMinLineEdit )->clear();
188 }
189 else
190 {
191 whileBlocking( mMinLineEdit )->setText( displayValueWithMaxPrecision( min ) );
192 }
193
194 if ( std::isnan( max ) )
195 {
196 whileBlocking( mMaxLineEdit )->clear();
197 }
198 else
199 {
200 whileBlocking( mMaxLineEdit )->setText( displayValueWithMaxPrecision( max ) );
201 }
202
203 // We compare old min and new min as text because QString::number keeps a fixed number of significant
204 // digits (default 6) and so loaded min/max will always differ from current one, which triggers a
205 // classification, and wipe out every user modification (see https://github.com/qgis/QGIS/issues/36172)
206 if ( mMinLineEdit->text() != oldMinTextvalue || mMaxLineEdit->text() != oldMaxTextvalue )
207 {
208 whileBlocking( mColorRampShaderWidget )->setRasterBand( bandNo );
209 whileBlocking( mColorRampShaderWidget )->setMinimumMaximumAndClassify( min, max );
210 }
211}
212
213
215{
216 whileBlocking( mMinLineEdit )->setText( displayValueWithMaxPrecision( min ) );
217 whileBlocking( mMaxLineEdit )->setText( displayValueWithMaxPrecision( max ) );
218 minMaxModified();
219}
220
221
222void QgsSingleBandPseudoColorRendererWidget::setLineEditValue( QLineEdit *lineEdit, double value )
223{
224 QString s;
225 if ( !std::isnan( value ) )
226 {
227 s = displayValueWithMaxPrecision( value );
228 }
229 lineEdit->setText( s );
230}
231
232double QgsSingleBandPseudoColorRendererWidget::lineEditValue( const QLineEdit *lineEdit ) const
233{
234 if ( lineEdit->text().isEmpty() )
235 {
236 return std::numeric_limits<double>::quiet_NaN();
237 }
238
239 return QgsDoubleValidator::toDouble( lineEdit->text() );
240}
241
242void QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textEdited( const QString & )
243{
244 minMaxModified();
245 whileBlocking( mColorRampShaderWidget )->setMinimumMaximumAndClassify( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
246 emit widgetChanged();
247}
248
249void QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textEdited( const QString & )
250{
251 minMaxModified();
252 whileBlocking( mColorRampShaderWidget )->setMinimumMaximumAndClassify( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
253 emit widgetChanged();
254}
255
256void QgsSingleBandPseudoColorRendererWidget::mMinLineEdit_textChanged( const QString & )
257{
258 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
259 emit widgetChanged();
260}
261
262void QgsSingleBandPseudoColorRendererWidget::mMaxLineEdit_textChanged( const QString & )
263{
264 whileBlocking( mColorRampShaderWidget )->setMinimumMaximum( lineEditValue( mMinLineEdit ), lineEditValue( mMaxLineEdit ) );
265 emit widgetChanged();
266}
267
268
269void QgsSingleBandPseudoColorRendererWidget::minMaxModified()
270{
271 mMinMaxWidget->userHasSetManualMinMaxValues();
272}
273
274QString QgsSingleBandPseudoColorRendererWidget::displayValueWithMaxPrecision( const double value )
275{
276 if ( mRasterLayer->dataProvider() )
277 {
278 return QgsGuiUtils::displayValueWithMaximumDecimals( mRasterLayer->dataProvider()->dataType( mBandComboBox->currentBand() ), value );
279 }
280 else
281 {
282 // Use QLocale default
283 return QLocale().toString( value, 'g' );
284 }
285}
286
287void QgsSingleBandPseudoColorRendererWidget::setMin( const QString &value, int )
288{
289 mMinLineEdit->setText( value );
290 minMaxModified();
291 mColorRampShaderWidget->classify();
292}
293
294void QgsSingleBandPseudoColorRendererWidget::setMax( const QString &value, int )
295{
296 mMaxLineEdit->setText( value );
297 minMaxModified();
298 mColorRampShaderWidget->classify();
299}
@ MinimumMaximum
Real min-max values.
@ NotSet
User defined.
void minimumMaximumChangedFromTree(double minimum, double maximum)
Color ramp tree has changed.
void widgetChanged()
Widget changed.
A ramp shader will color a raster pixel based on a list of values ranges in a ramp.
QgsDoubleValidator is a QLineEdit Validator that combines QDoubleValidator and QRegularExpressionVali...
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.
Qgis::DataType dataType(int bandNo) const override=0
Returns data type for the band specified by number.
Represents a raster layer.
QgsRasterRenderer * renderer() const
Returns the raster's renderer.
QgsRasterDataProvider * dataProvider() override
Returns the source data provider.
This class describes the origin of min/max values.
void setLimits(Qgis::RasterRangeLimit limits)
Sets the limits.
Qgis::RasterRangeLimit limits() const
Returns the raster limits.
void setExtent(const QgsRectangle &extent)
Sets the extent to use for minimum and maximum value calculation.
QgsRectangle extent()
Returns the extent selected by the user.
void doComputations()
Load programmatically with current values.
void setMapCanvas(QgsMapCanvas *canvas)
Sets the map canvas associated with the widget.
void load(int bandNo, double min, double max)
signal emitted when new min/max values are computed from statistics.
void setFromMinMaxOrigin(const QgsRasterMinMaxOrigin &)
Sets the "source" of min/max values.
void setBands(const QList< int > &bands)
QgsRasterMinMaxOrigin minMaxOrigin()
Returns a QgsRasterMinMaxOrigin object with the widget values.
void widgetChanged()
Emitted when something on the widget has changed.
void userHasSetManualMinMaxValues()
Uncheck cumulative cut, min/max, std-dev radio buttons.
Abstract base class for widgets which configure a QgsRasterRenderer.
virtual void setMapCanvas(QgsMapCanvas *canvas)
Sets the map canvas associated with the widget.
QgsMapCanvas * mCanvas
Associated map canvas.
void widgetChanged()
Emitted when something on the widget has changed.
Raster renderer pipe that applies colors to a raster.
void setMinMaxOrigin(const QgsRasterMinMaxOrigin &origin)
Sets origin of min/max values.
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.
This class is a composition of two QSettings instances:
Definition qgssettings.h:64
void setMax(const QString &value, int index=0) override
QgsSingleBandPseudoColorRendererWidget(QgsRasterLayer *layer, const QgsRectangle &extent=QgsRectangle())
Creates new raster renderer widget.
void doComputations() override
Load programmatically with current values.
QgsRasterMinMaxWidget * minMaxWidget() override
Returns min/max widget when it exists.
void setMin(const QString &value, int index=0) override
void setMapCanvas(QgsMapCanvas *canvas) override
Sets the map canvas associated with the widget.
QgsRasterRenderer * renderer() override
Creates a new renderer, using the properties defined in the widget.
void setFromRenderer(const QgsRasterRenderer *r)
Sets the widget state from the specified renderer.
void loadMinMax(int bandNo, double min, double max)
called when new min/max values are loaded
void loadMinMaxFromTree(double min, double max)
called when the color ramp tree has changed
Raster renderer pipe for single band pseudocolor.
Q_DECL_DEPRECATED void setBand(int bandNo)
Sets the band used by the renderer.
QgsRasterShader * shader()
Returns the raster shader.
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.
Definition qgis.h:5928
#define QgsDebugMsgLevel(str, level)
Definition qgslogger.h:39