Skip to content

Commit

Permalink
statusChanged signal moved to raster provider
Browse files Browse the repository at this point in the history
  • Loading branch information
blazek committed Jan 9, 2016
1 parent 001dce0 commit 24d279a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
4 changes: 4 additions & 0 deletions src/core/raster/qgsrasterdataprovider.h
Expand Up @@ -415,6 +415,10 @@ class CORE_EXPORT QgsRasterDataProvider : public QgsDataProvider, public QgsRast
void progress( int theType, double theProgress, const QString& theMessage );
void progressUpdate( int theProgress );

/** Emit a message to be displayed on status bar, usually used by network providers (WMS,WCS)
@note added in 2.14 */
void statusChanged( const QString& );

protected:
/** Read block of data
* @note not available in python bindings */
Expand Down
3 changes: 0 additions & 3 deletions src/providers/gdal/qgsgdalprovider.h
Expand Up @@ -247,9 +247,6 @@ class QgsGdalProvider : public QgsRasterDataProvider, QgsGdalProviderBase
QString validatePyramidsCreationOptions( QgsRaster::RasterPyramidsFormat pyramidsFormat,
const QStringList & theConfigOptions, const QString & fileFormat );

signals:
void statusChanged( const QString& );

private:
// update mode
bool mUpdate;
Expand Down
3 changes: 0 additions & 3 deletions src/providers/wcs/qgswcsprovider.h
Expand Up @@ -208,9 +208,6 @@ class QgsWcsProvider : public QgsRasterDataProvider, QgsGdalProviderBase
/** \brief emit a signal to notify of a progress event */
void progressChanged( int theProgress, int theTotalSteps );

/** \brief emit a signal to be caught by qgisapp and display a msg on status bar */
void statusChanged( QString const & theStatusQString );

void dataChanged();

private:
Expand Down
3 changes: 0 additions & 3 deletions src/providers/wms/qgswmsprovider.h
Expand Up @@ -359,9 +359,6 @@ class QgsWmsProvider : public QgsRasterDataProvider
/** \brief emit a signal to notify of a progress event */
void progressChanged( int theProgress, int theTotalSteps );

/** \brief emit a signal to be caught by qgisapp and display a msg on status bar */
void statusChanged( QString const & theStatusQString );

void dataChanged();

private slots:
Expand Down

0 comments on commit 24d279a

Please sign in to comment.