17#include "moc_qgsrasterbandcombobox.cpp"
23 , mNotSetString( tr(
"Not set" ) )
25 connect(
this,
static_cast<void ( QComboBox::* )(
int )
>( &QComboBox::currentIndexChanged ),
this, [ = ]
27 if ( mLayer && mLayer->isValid() )
29 const int newBand = currentIndex() >= 0 ? currentData().toInt() : -1 ;
30 if ( newBand != mPrevBand )
32 emit bandChanged( currentIndex() >= 0 ? currentData().toInt() : -1 );
38 connect(
this, &QComboBox::currentTextChanged,
this, [ = ](
const QString & value )
40 if ( !mLayer || !mLayer->isValid() )
43 const int band = value.toInt( &ok );
44 if ( ok && band != mPrevBand )
46 emit bandChanged( band );
49 else if ( mShowNotSet && mPrevBand != -1 )
51 emit bandChanged( -1 );
68 if ( !mLayer || !mLayer->dataProvider() || !mLayer->isValid() )
71 const int band = currentText().toInt( &ok );
78 if ( currentIndex() < 0 )
81 return currentData().toInt();
96 addItem( mNotSetString, -1 );
101 if ( provider && mLayer->isValid() )
103 setEditable(
false );
105 const int nBands = provider->
bandCount();
106 for (
int i = 1; i <= nBands; ++i )
124 setCurrentIndex( 0 );
126 blockSignals(
false );
135 if ( !mLayer || !mLayer->dataProvider() || !mLayer->isValid() )
139 setCurrentIndex( -1 );
140 if ( mPrevBand != -1 )
144 setCurrentText( QString::number(
band ) );
148 setCurrentIndex( findData(
band ) );
161 mNotSetString =
string.isEmpty() ? tr(
"Not set" ) : string;
175 if ( !description.isEmpty() )
177 return name.contains( description, Qt::CaseInsensitive ) ? name : QStringLiteral(
"%1 - %2" ).arg( name, description );
Base class for all map layer types.
QgsRasterLayer * layer() const
Returns the layer currently associated with the combobox.
void bandChanged(int band)
Emitted when the currently selected band changes.
void setShowNotSetOption(bool show, const QString &string=QString())
Sets whether the combo box should show the "not set" option.
int currentBand() const
Returns the current band number selected in the combobox, or -1 if no band is selected.
QgsRasterBandComboBox(QWidget *parent=nullptr)
Constructor for QgsRasterBandComboBox.
void setLayer(QgsMapLayer *layer)
Sets the raster layer for which the bands are listed in the combobox.
static QString displayBandName(QgsRasterDataProvider *provider, int band)
Returns a user-friendly band name for the specified band.
bool isShowingNotSetOption() const
Returns true if the combo box is showing the "not set" option.
void setBand(int band)
Sets the current band number selected in the combobox.
Base class for raster data providers.
virtual QString bandDescription(int bandNumber)
Returns the description for band bandNumber, or an empty string if the band is not valid or has not d...
virtual int bandCount() const =0
Gets number of bands.
QString displayBandName(int bandNumber) const
Generates a friendly, descriptive name for the specified bandNumber.
Represents a raster layer.