Skip to content

Commit 24d279a

Browse files
committedJan 9, 2016
statusChanged signal moved to raster provider
1 parent 001dce0 commit 24d279a

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed
 

‎src/core/raster/qgsrasterdataprovider.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,10 @@ class CORE_EXPORT QgsRasterDataProvider : public QgsDataProvider, public QgsRast
415415
void progress( int theType, double theProgress, const QString& theMessage );
416416
void progressUpdate( int theProgress );
417417

418+
/** Emit a message to be displayed on status bar, usually used by network providers (WMS,WCS)
419+
@note added in 2.14 */
420+
void statusChanged( const QString& );
421+
418422
protected:
419423
/** Read block of data
420424
* @note not available in python bindings */

‎src/providers/gdal/qgsgdalprovider.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,6 @@ class QgsGdalProvider : public QgsRasterDataProvider, QgsGdalProviderBase
247247
QString validatePyramidsCreationOptions( QgsRaster::RasterPyramidsFormat pyramidsFormat,
248248
const QStringList & theConfigOptions, const QString & fileFormat );
249249

250-
signals:
251-
void statusChanged( const QString& );
252-
253250
private:
254251
// update mode
255252
bool mUpdate;

‎src/providers/wcs/qgswcsprovider.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,6 @@ class QgsWcsProvider : public QgsRasterDataProvider, QgsGdalProviderBase
208208
/** \brief emit a signal to notify of a progress event */
209209
void progressChanged( int theProgress, int theTotalSteps );
210210

211-
/** \brief emit a signal to be caught by qgisapp and display a msg on status bar */
212-
void statusChanged( QString const & theStatusQString );
213-
214211
void dataChanged();
215212

216213
private:

‎src/providers/wms/qgswmsprovider.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,9 +359,6 @@ class QgsWmsProvider : public QgsRasterDataProvider
359359
/** \brief emit a signal to notify of a progress event */
360360
void progressChanged( int theProgress, int theTotalSteps );
361361

362-
/** \brief emit a signal to be caught by qgisapp and display a msg on status bar */
363-
void statusChanged( QString const & theStatusQString );
364-
365362
void dataChanged();
366363

367364
private slots:

0 commit comments

Comments
 (0)
Please sign in to comment.