mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
fix SIP bindings after atlas merge
This commit is contained in:
parent
fa68f85b72
commit
29e009f0ae
@ -3,7 +3,7 @@
|
||||
* prepareForFeature() modifies the atlas map's extent to zoom on the given feature.
|
||||
* This class is used for printing, exporting to PDF and images.
|
||||
* */
|
||||
class QgsAtlasComposition : public QObject
|
||||
class QgsAtlasComposition : QObject
|
||||
{
|
||||
%TypeHeaderCode
|
||||
#include <qgsatlascomposition.h>
|
||||
@ -12,32 +12,32 @@ class QgsAtlasComposition : public QObject
|
||||
public:
|
||||
QgsAtlasComposition( QgsComposition* composition );
|
||||
~QgsAtlasComposition();
|
||||
|
||||
|
||||
/** Is the atlas generation enabled ? */
|
||||
bool enabled() const;
|
||||
void setEnabled( bool e );
|
||||
|
||||
QgsComposerMap* composerMap() const;
|
||||
void setComposerMap( QgsComposerMap* map );
|
||||
|
||||
|
||||
bool hideCoverage() const;
|
||||
void setHideCoverage( bool hide );
|
||||
|
||||
|
||||
bool fixedScale() const;
|
||||
void setFixedScale( bool fixed );
|
||||
|
||||
|
||||
float margin() const;
|
||||
void setMargin( float margin );
|
||||
|
||||
|
||||
QString filenamePattern() const;
|
||||
void setFilenamePattern( const QString& pattern );
|
||||
|
||||
|
||||
QgsVectorLayer* coverageLayer() const;
|
||||
void setCoverageLayer( QgsVectorLayer* lmap );
|
||||
|
||||
|
||||
bool singleFile() const;
|
||||
void setSingleFile( bool single );
|
||||
|
||||
|
||||
/** Begins the rendering. */
|
||||
void beginRender();
|
||||
/** Ends the rendering. Restores original extent */
|
||||
@ -60,4 +60,4 @@ public:
|
||||
signals:
|
||||
/** emitted when one of the parameters changes */
|
||||
void parameterChanged();
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user