QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsmultibandcolorrendererwidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmultibandcolorrendererwidget.h
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 
18 #ifndef QGSMULTIBANDCOLORRENDERERWIDGET_H
19 #define QGSMULTIBANDCOLORRENDERERWIDGET_H
20 
22 #include "ui_qgsmultibandcolorrendererwidgetbase.h"
23 #include "qgis_gui.h"
24 
28 class QgsRasterLayer;
29 class QLineEdit;
31 
36 class GUI_EXPORT QgsMultiBandColorRendererWidget: public QgsRasterRendererWidget, private Ui::QgsMultiBandColorRendererWidgetBase
37 {
38  Q_OBJECT
39 
40  public:
42  static QgsRasterRendererWidget *create( QgsRasterLayer *layer, const QgsRectangle &extent ) { return new QgsMultiBandColorRendererWidget( layer, extent ); }
43 
44  QgsRasterRenderer *renderer() override;
45  void setMapCanvas( QgsMapCanvas *canvas ) override;
46 
47  void setFromRenderer( const QgsRasterRenderer *r );
48 
49  QString min( int index = 0 ) override;
50  QString max( int index = 0 ) override;
51  void setMin( const QString &value, int index = 0 ) override;
52  void setMax( const QString &value, int index = 0 ) override;
53  int selectedBand( int index = 0 ) override;
54  void doComputations() override;
55  QgsRasterMinMaxWidget *minMaxWidget() override { return mMinMaxWidget; }
56 
57  public slots:
59  void loadMinMax( int bandNo, double min, double max );
60 
61  private slots:
62  void onBandChanged( int );
63  void mRedMinLineEdit_textChanged( const QString & );
64  void mRedMaxLineEdit_textChanged( const QString & );
65  void mGreenMinLineEdit_textChanged( const QString & );
66  void mGreenMaxLineEdit_textChanged( const QString & );
67  void mBlueMinLineEdit_textChanged( const QString & );
68  void mBlueMaxLineEdit_textChanged( const QString & );
69 
70  private:
71  void createValidators();
72  void setCustomMinMaxValues( QgsMultiBandColorRenderer *r, const QgsRasterDataProvider *provider, int redBand, int GreenBand,
73  int blueBand );
75  void setMinMaxValue( const QgsContrastEnhancement *ce, QLineEdit *minEdit, QLineEdit *maxEdit );
76  QgsRasterMinMaxWidget *mMinMaxWidget = nullptr;
77  bool mDisableMinMaxWidgetRefresh;
78 
79  void minMaxModified();
80 };
81 
82 #endif // QGSMULTIBANDCOLORRENDERERWIDGET_H
A rectangle specified with double values.
Definition: qgsrectangle.h:40
This class provides qgis with the ability to render raster datasets onto the mapcanvas.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:74
virtual void setMapCanvas(QgsMapCanvas *canvas)
Sets the map canvas associated with the widget.
static QgsRasterRendererWidget * create(QgsRasterLayer *layer, const QgsRectangle &extent)
virtual void setMax(const QString &value, int index=0)
virtual QString min(int index=0)
virtual int selectedBand(int index=0)
QgsRasterMinMaxWidget * minMaxWidget() override
Returns min/max widget when it exists.
virtual void doComputations()
Load programmatically with current values.
Renderer for multiband images with the color components.
Manipulates raster pixel values so that they enhanceContrast or clip into a specified numerical range...
virtual QString max(int index=0)
virtual void setMin(const QString &value, int index=0)
virtual QgsRasterRenderer * renderer()=0
Raster renderer pipe that applies colors to a raster.
Base class for raster data providers.