QGIS API Documentation  3.22.4-Białowieża (ce8e65e95e)
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 
45  void setMapCanvas( QgsMapCanvas *canvas ) override;
46 
50  void setFromRenderer( const QgsRasterRenderer *r );
51 
52  QString min( int index = 0 ) override;
53  QString max( int index = 0 ) override;
54  void setMin( const QString &value, int index = 0 ) override;
55  void setMax( const QString &value, int index = 0 ) override;
56  int selectedBand( int index = 0 ) override;
57  void doComputations() override;
58  QgsRasterMinMaxWidget *minMaxWidget() override { return mMinMaxWidget; }
59 
60  public slots:
62  void loadMinMax( int bandNo, double min, double max );
63 
64  private slots:
65  void onBandChanged( int );
66  void mRedMinLineEdit_textChanged( const QString & );
67  void mRedMaxLineEdit_textChanged( const QString & );
68  void mGreenMinLineEdit_textChanged( const QString & );
69  void mGreenMaxLineEdit_textChanged( const QString & );
70  void mBlueMinLineEdit_textChanged( const QString & );
71  void mBlueMaxLineEdit_textChanged( const QString & );
72 
73  private:
74  void createValidators();
75  void setCustomMinMaxValues( QgsMultiBandColorRenderer *r, const QgsRasterDataProvider *provider, int redBand, int GreenBand,
76  int blueBand );
78  void setMinMaxValue( const QgsContrastEnhancement *ce, QLineEdit *minEdit, QLineEdit *maxEdit );
79  QgsRasterMinMaxWidget *mMinMaxWidget = nullptr;
80  bool mDisableMinMaxWidgetRefresh;
81 
82  void minMaxModified();
83 };
84 
85 #endif // QGSMULTIBANDCOLORRENDERERWIDGET_H
Manipulates raster or point cloud pixel values so that they enhanceContrast or clip into a specified ...
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:89
static QgsRasterRendererWidget * create(QgsRasterLayer *layer, const QgsRectangle &extent)
Renderer for multiband images with the color components.
Base class for raster data providers.
Represents a raster layer.
Abstract base class for widgets which configure a QgsRasterRenderer.
virtual QgsRasterRenderer * renderer()=0
Creates a new renderer, using the properties defined in the widget.
Raster renderer pipe that applies colors to a raster.
A rectangle specified with double values.
Definition: qgsrectangle.h:42
#define SIP_FACTORY
Definition: qgis_sip.h:76