21#include "moc_qgsrasterbandcombobox.cpp"
25 , mNotSetString( tr(
"Not set" ) )
27 connect(
this,
static_cast<void ( QComboBox::* )(
int )
>( &QComboBox::currentIndexChanged ),
this, [
this] {
28 if ( mLayer && mLayer->isValid() )
30 const int newBand = currentIndex() >= 0 ? currentData().toInt() : -1;
31 if ( newBand != mPrevBand )
33 emit
bandChanged( currentIndex() >= 0 ? currentData().toInt() : -1 );
39 connect(
this, &QComboBox::currentTextChanged,
this, [
this](
const QString &value ) {
40 if ( !mLayer || !mLayer->isValid() )
43 const int band = value.toInt( &ok );
44 if ( ok &&
band != mPrevBand )
49 else if ( mShowNotSet && mPrevBand != -1 )
60 setSizeAdjustPolicy( QComboBox::SizeAdjustPolicy::AdjustToMinimumContentsLengthWithIcon );
70 if ( !mLayer || !mLayer->dataProvider() || !mLayer->isValid() )
73 const int band = currentText().toInt( &ok );
80 if ( currentIndex() < 0 )
83 return currentData().toInt();
98 addItem( mNotSetString, -1 );
103 if ( provider && mLayer->
isValid() )
105 setEditable(
false );
107 const int nBands = provider->
bandCount();
108 for (
int i = 1; i <= nBands; ++i )
126 setCurrentIndex( 0 );
128 blockSignals(
false );
137 if ( !mLayer || !mLayer->dataProvider() || !mLayer->isValid() )
141 setCurrentIndex( -1 );
142 if ( mPrevBand != -1 )
146 setCurrentText( QString::number(
band ) );
150 setCurrentIndex( findData(
band ) );
163 mNotSetString =
string.isEmpty() ? tr(
"Not set" ) : string;
177 if ( !description.isEmpty() )
179 return name.contains( description, Qt::CaseInsensitive ) ? name : QStringLiteral(
"%1 - %2" ).arg( name, description );
virtual bool isValid() const =0
Returns true if this is a valid layer.
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.