mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-05 00:05:32 -04:00
- update methods of existing classes - add comment to methods missing in the sip bindings - split up collective sip files into single files and use same directory structure in python/ as in src/ - add a lot of missing classes (some might not make sense because of missing python methods in those classes) - remove some non-existing methods from the header files - add scripts/sipdiff - replace some usages of std::vector and std::set with QVector/QSet
56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
|
|
class QgsRenderContext
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
#include <qgsrendercontext.h>
|
|
%End
|
|
|
|
public:
|
|
QgsRenderContext();
|
|
~QgsRenderContext();
|
|
|
|
//getters
|
|
|
|
QPainter* painter();
|
|
const QPainter* constPainter() const;
|
|
|
|
const QgsCoordinateTransform* coordinateTransform() const;
|
|
|
|
const QgsRectangle& extent() const;
|
|
|
|
const QgsMapToPixel& mapToPixel() const;
|
|
|
|
double scaleFactor() const;
|
|
|
|
double rasterScaleFactor() const;
|
|
|
|
bool renderingStopped() const;
|
|
|
|
bool forceVectorOutput() const;
|
|
|
|
bool drawEditingInformation() const;
|
|
|
|
double rendererScale() const;
|
|
|
|
//! Added in QGIS v1.4
|
|
QgsLabelingEngineInterface* labelingEngine();
|
|
|
|
//setters
|
|
|
|
/**Sets coordinate transformation. QgsRenderContext takes ownership and deletes if necessary*/
|
|
void setCoordinateTransform( QgsCoordinateTransform* t );
|
|
void setMapToPixel( const QgsMapToPixel& mtp );
|
|
void setExtent( const QgsRectangle& extent );
|
|
void setDrawEditingInformation( bool b );
|
|
void setRenderingStopped( bool stopped );
|
|
void setScaleFactor( double factor );
|
|
void setRasterScaleFactor( double factor );
|
|
void setRendererScale( double scale );
|
|
void setPainter( QPainter* p );
|
|
//! Added in QGIS v1.5
|
|
void setForceVectorOutput( bool force );
|
|
//! Added in QGIS v1.4
|
|
void setLabelingEngine(QgsLabelingEngineInterface* iface);
|
|
};
|