Skip to content

Commit

Permalink
Merge pull request #1255 from Oslandia/atlas_signals
Browse files Browse the repository at this point in the history
Atlas signals
  • Loading branch information
nyalldawson committed Mar 21, 2014
2 parents 375e0d4 + 7805bc0 commit dd4975f
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/core/composer/qgsatlascomposition.sip
Expand Up @@ -122,4 +122,9 @@ public:
/**Is emitted when the coverage layer for an atlas changes*/
void coverageLayerChanged( QgsVectorLayer* layer );

/**Is emitted when atlas rendering has begun*/
void renderBegun();

/**Is emitted when atlas rendering has ended*/
void renderEnded();
};
3 changes: 3 additions & 0 deletions python/core/composer/qgscomposermap.sip
Expand Up @@ -407,6 +407,9 @@ class QgsComposerMap : QgsComposerItem
/**Is emitted on rotation change to notify north arrow pictures*/
void mapRotationChanged( double newRotation );

/**Is emitted when the map has been prepared for atlas rendering, just before actual rendering*/
void preparedForAtlas();

public slots:

/**Called if map canvas has changed*/
Expand Down
4 changes: 4 additions & 0 deletions src/core/composer/qgsatlascomposition.cpp
Expand Up @@ -266,6 +266,8 @@ bool QgsAtlasComposition::beginRender()
return false;
}

emit renderBegun();

bool featuresUpdated = updateFeatures();
if ( !featuresUpdated )
{
Expand Down Expand Up @@ -296,6 +298,8 @@ void QgsAtlasComposition::endRender()
}

updateAtlasMaps();

emit renderEnded();
}

void QgsAtlasComposition::updateAtlasMaps()
Expand Down
6 changes: 6 additions & 0 deletions src/core/composer/qgsatlascomposition.h
Expand Up @@ -150,6 +150,12 @@ class CORE_EXPORT QgsAtlasComposition : public QObject
/**Is emitted when the coverage layer for an atlas changes*/
void coverageLayerChanged( QgsVectorLayer* layer );

/**Is emitted when atlas rendering has begun*/
void renderBegun();

/**Is emitted when atlas rendering has ended*/
void renderEnded();

private:
/**Updates the filename expression*/
void updateFilenameExpression();
Expand Down
1 change: 1 addition & 0 deletions src/core/composer/qgscomposermap.cpp
Expand Up @@ -641,6 +641,7 @@ void QgsComposerMap::setNewAtlasFeatureExtent( const QgsRectangle& extent )

mAtlasFeatureExtent = newExtent;
mCacheUpdated = false;
emit preparedForAtlas();
updateItem();
emit itemChanged();
emit extentChanged();
Expand Down
3 changes: 3 additions & 0 deletions src/core/composer/qgscomposermap.h
Expand Up @@ -445,6 +445,9 @@ class CORE_EXPORT QgsComposerMap : public QgsComposerItem
/**Is emitted on rotation change to notify north arrow pictures*/
void mapRotationChanged( double newRotation );

/**Is emitted when the map has been prepared for atlas rendering, just before actual rendering*/
void preparedForAtlas();

public slots:

/**Called if map canvas has changed*/
Expand Down
1 change: 1 addition & 0 deletions src/core/composer/qgscomposition.cpp
Expand Up @@ -2537,6 +2537,7 @@ bool QgsComposition::setAtlasMode( QgsComposition::AtlasMode mode )
if ( ! atlasHasFeatures )
{
mAtlasMode = QgsComposition::AtlasOff;
mAtlasComposition.endRender();
return false;
}
}
Expand Down
29 changes: 29 additions & 0 deletions tests/src/core/testqgsatlascomposition.cpp
Expand Up @@ -28,6 +28,7 @@
#include "qgssymbolv2.h"
#include "qgssinglesymbolrendererv2.h"
#include <QObject>
#include <QSignalSpy>
#include <QtTest>

class TestQgsAtlasComposition: public QObject
Expand Down Expand Up @@ -57,6 +58,8 @@ class TestQgsAtlasComposition: public QObject
void sorting_render();
// test rendering with feature filtering
void filtering_render();
// test render signals
void test_signals();
private:
QgsComposition* mComposition;
QgsComposerLabel* mLabel1;
Expand Down Expand Up @@ -365,5 +368,31 @@ void TestQgsAtlasComposition::filtering_render()
mAtlas->endRender();
}

void TestQgsAtlasComposition::test_signals()
{
mAtlasMap->setNewExtent( QgsRectangle( 209838.166, 6528781.020, 610491.166, 6920530.620 ) );
mAtlasMap->setAtlasDriven( true );
mAtlasMap->setAtlasFixedScale( true );
mAtlas->setHideCoverage( false );
mAtlas->setSortFeatures( false );
mAtlas->setFilterFeatures( false );

QSignalSpy spyRenderBegun( mAtlas, SIGNAL(renderBegun()) );
QSignalSpy spyRenderEnded( mAtlas, SIGNAL(renderEnded()) );
QSignalSpy spyPreparedForAtlas( mAtlasMap, SIGNAL(preparedForAtlas()) );
mAtlas->beginRender();

QVERIFY( spyRenderBegun.count() == 1 );

for ( int fit = 0; fit < 2; ++fit )
{
mAtlas->prepareForFeature( fit );
mLabel1->adjustSizeToText();
}
QVERIFY( spyPreparedForAtlas.count() == 2 );
mAtlas->endRender();
QVERIFY( spyRenderEnded.count() == 1 );
}

QTEST_MAIN( TestQgsAtlasComposition )
#include "moc_testqgsatlascomposition.cxx"

0 comments on commit dd4975f

Please sign in to comment.