QGIS API Documentation  2.4.0-Chugiak
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Types | Public Slots | Signals | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Static Protected Attributes | List of all members
QgsMapRenderer Class Reference

A non GUI class for rendering a map layer set onto a QPainter. More...

#include <qgsmaprenderer.h>

Inheritance diagram for QgsMapRenderer:
Inheritance graph
[legend]
Collaboration diagram for QgsMapRenderer:
Collaboration graph
[legend]

Public Types

enum  OutputUnits { Millimeters, Pixels }
 Output units for pen width and point marker width/height. More...
 
enum  BlendMode {
  BlendNormal, BlendLighten, BlendScreen, BlendDodge,
  BlendAddition, BlendDarken, BlendMultiply, BlendBurn,
  BlendOverlay, BlendSoftLight, BlendHardLight, BlendDifference,
  BlendSubtract
}
 Blending modes enum defining the available composition modes that can be used when rendering a layer. More...
 

Public Slots

Q_DECL_DEPRECATED void onDrawingProgress (int current, int total)
 

Signals

void drawingProgress (int current, int total)
 
Q_DECL_DEPRECATED void hasCrsTransformEnabled (bool flag)
 This signal is emitted when CRS transformation is enabled/disabled. More...
 
void hasCrsTransformEnabledChanged (bool flag)
 This signal is emitted when CRS transformation is enabled/disabled. More...
 
void destinationSrsChanged ()
 
void updateMap ()
 
void mapUnitsChanged ()
 
void drawError (QgsMapLayer *)
 emitted when layer's draw() returned false More...
 
void extentsChanged ()
 emitted when the current extent gets changed More...
 
void datumTransformInfoRequested (const QgsMapLayer *ml, const QString &srcAuthId, const QString &destAuthId) const
 Notifies higher level components to show the datum transform dialog and add a QgsLayerCoordinateTransformInfo for that layer. More...
 

Public Member Functions

 QgsMapRenderer ()
 constructor More...
 
 ~QgsMapRenderer ()
 destructor More...
 
void render (QPainter *painter, double *forceWidthScale=0)
 starts rendering More...
 
bool setExtent (const QgsRectangle &extent)
 sets extent and checks whether suitable (returns false if not) More...
 
QgsRectangle extent () const
 returns current extent More...
 
const QgsMapToPixelcoordinateTransform ()
 
double scale () const
 Scale denominator. More...
 
void setScale (double scale)
 Sets scale for scale based visibility. More...
 
double mapUnitsPerPixel () const
 
int width () const
 
int height () const
 
void updateScale ()
 Recalculate the map scale. More...
 
QGis::UnitType mapUnits () const
 
void setMapUnits (QGis::UnitType u)
 
void enableOverviewMode (bool isOverview=true)
 sets whether map image will be for overview More...
 
void setOutputSize (QSize size, int dpi)
 
void setOutputSize (QSizeF size, double dpi)
 
double outputDpi ()
 accessor for output dpi More...
 
QSize outputSize ()
 accessor for output size More...
 
QSizeF outputSizeF ()
 
QgsRectangle layerExtentToOutputExtent (QgsMapLayer *theLayer, QgsRectangle extent)
 transform bounding box from layer's CRS to output CRS More...
 
QgsRectangle outputExtentToLayerExtent (QgsMapLayer *theLayer, QgsRectangle extent)
 transform bounding box from output CRS to layer's CRS More...
 
QgsPoint layerToMapCoordinates (QgsMapLayer *theLayer, QgsPoint point)
 transform point coordinates from layer's CRS to output CRS More...
 
QgsRectangle layerToMapCoordinates (QgsMapLayer *theLayer, QgsRectangle rect)
 transform rectangle from layer's CRS to output CRS More...
 
QgsPoint mapToLayerCoordinates (QgsMapLayer *theLayer, QgsPoint point)
 transform point coordinates from output CRS to layer's CRS More...
 
QgsRectangle mapToLayerCoordinates (QgsMapLayer *theLayer, QgsRectangle rect)
 transform rectangle from output CRS to layer's CRS More...
 
void setProjectionsEnabled (bool enabled)
 sets whether to use projections for this layer set More...
 
bool hasCrsTransformEnabled () const
 returns true if projections are enabled for this layer set More...
 
void setDestinationCrs (const QgsCoordinateReferenceSystem &crs, bool refreshCoordinateTransformInfo=true, bool transformExtent=true)
 sets destination coordinate reference system More...
 
const
QgsCoordinateReferenceSystem
destinationCrs () const
 returns CRS of destination coordinate reference system More...
 
void setOutputUnits (OutputUnits u)
 
OutputUnits outputUnits () const
 
QgsRectangle fullExtent ()
 returns current extent of layer set More...
 
QStringList & layerSet ()
 returns current layer set More...
 
void setLayerSet (const QStringList &layers)
 change current layer set More...
 
void updateFullExtent ()
 updates extent of the layer set More...
 
bool readXML (QDomNode &theNode)
 read settings More...
 
bool writeXML (QDomNode &theNode, QDomDocument &theDoc)
 write settings More...
 
QgsRenderContextrendererContext ()
 Accessor for render context. More...
 
QgsLabelingEngineInterfacelabelingEngine ()
 Labeling engine (NULL if there's no custom engine) More...
 
void setLabelingEngine (QgsLabelingEngineInterface *iface)
 Set labeling engine. More...
 
void addLayerCoordinateTransform (const QString &layerId, const QString &srcAuthId, const QString &destAuthId, int srcDatumTransform=-1, int destDatumTransform=-1)
 
void clearLayerCoordinateTransforms ()
 
const QgsCoordinateTransformtransformation (const QgsMapLayer *layer) const
 
const QgsMapSettingsmapSettings ()
 bridge to QgsMapSettings More...
 

Static Public Member Functions

static QPainter::CompositionMode getCompositionMode (const QgsMapRenderer::BlendMode &blendMode)
 Returns a QPainter::CompositionMode corresponding to a BlendMode Added in 1.9. More...
 
static QgsMapRenderer::BlendMode getBlendModeEnum (const QPainter::CompositionMode &blendMode)
 Returns a BlendMode corresponding to a QPainter::CompositionMode Added in 1.9. More...
 

Protected Member Functions

void adjustExtentToSize ()
 adjust extent to fit the pixmap size More...
 
bool splitLayersExtent (QgsMapLayer *layer, QgsRectangle &extent, QgsRectangle &r2)
 Convenience function to project an extent into the layer source CRS, but also split it into two extents if it crosses the +/- 180 degree line. More...
 

Protected Attributes

double mMapUnitsPerPixel
 map units per pixel More...
 
double mScale
 Map scale denominator at its current zoom level. More...
 
QgsScaleCalculatormScaleCalculator
 scale calculator More...
 
QgsRectangle mExtent
 current extent to be drawn More...
 
QgsRectangle mLastExtent
 Last extent to we drew so we know if we can used layer render caching or not. More...
 
bool mOverview
 indicates whether it's map image for overview More...
 
QSizeF mSize
 
bool mProjectionsEnabled
 detemines whether on the fly projection support is enabled More...
 
QgsCoordinateReferenceSystemmDestCRS
 destination spatial reference system of the projection More...
 
QStringList mLayerSet
 stores array of layers to be rendered (identified by string) More...
 
QgsRectangle mFullExtent
 full extent of the layer set More...
 
QgsDistanceAreamDistArea
 tool for measuring More...
 
QgsRenderContext mRenderContext
 Encapsulates context of rendering. More...
 
OutputUnits mOutputUnits
 Output units. More...
 
QgsLabelingEngineInterfacemLabelingEngine
 Labeling engine (NULL by default) More...
 
QMutex mRenderMutex
 Locks rendering loop for concurrent draws. More...
 
QgsMapSettings mMapSettings
 map settings - used only for export in mapSettings() for use in classes that deal with QgsMapSettings More...
 
QHash< QString,
QgsLayerCoordinateTransform
mLayerCoordinateTransformInfo
 

Static Protected Attributes

static bool mDrawing = false
 indicates drawing in progress More...
 

Detailed Description

A non GUI class for rendering a map layer set onto a QPainter.

Definition at line 133 of file qgsmaprenderer.h.

Member Enumeration Documentation

Blending modes enum defining the available composition modes that can be used when rendering a layer.

Enumerator
BlendNormal 
BlendLighten 
BlendScreen 
BlendDodge 
BlendAddition 
BlendDarken 
BlendMultiply 
BlendBurn 
BlendOverlay 
BlendSoftLight 
BlendHardLight 
BlendDifference 
BlendSubtract 

Definition at line 150 of file qgsmaprenderer.h.

Output units for pen width and point marker width/height.

Enumerator
Millimeters 
Pixels 

Definition at line 140 of file qgsmaprenderer.h.

Constructor & Destructor Documentation

QgsMapRenderer::QgsMapRenderer ( )
QgsMapRenderer::~QgsMapRenderer ( )

destructor

Definition at line 64 of file qgsmaprenderer.cpp.

References mDestCRS, mDistArea, mLabelingEngine, and mScaleCalculator.

Member Function Documentation

void QgsMapRenderer::addLayerCoordinateTransform ( const QString &  layerId,
const QString &  srcAuthId,
const QString &  destAuthId,
int  srcDatumTransform = -1,
int  destDatumTransform = -1 
)
void QgsMapRenderer::adjustExtentToSize ( )
protected
void QgsMapRenderer::clearLayerCoordinateTransforms ( )

Definition at line 1205 of file qgsmaprenderer.cpp.

References mLayerCoordinateTransformInfo.

const QgsMapToPixel* QgsMapRenderer::coordinateTransform ( )
inline

Definition at line 184 of file qgsmaprenderer.h.

void QgsMapRenderer::datumTransformInfoRequested ( const QgsMapLayer ml,
const QString &  srcAuthId,
const QString &  destAuthId 
) const
signal

Notifies higher level components to show the datum transform dialog and add a QgsLayerCoordinateTransformInfo for that layer.

Referenced by transformation().

const QgsCoordinateReferenceSystem & QgsMapRenderer::destinationCrs ( ) const

returns CRS of destination coordinate reference system

Definition at line 691 of file qgsmaprenderer.cpp.

References mDestCRS, QgsDebugMsgLevel, QgsCoordinateReferenceSystem::srsid(), and QgsCoordinateReferenceSystem::toProj4().

Referenced by mapSettings(), QgsMapCanvasRendererSync::onDestCrsR2C(), and writeXML().

void QgsMapRenderer::destinationSrsChanged ( )
signal

Referenced by setDestinationCrs().

void QgsMapRenderer::drawError ( QgsMapLayer )
signal

emitted when layer's draw() returned false

Referenced by render().

void QgsMapRenderer::drawingProgress ( int  current,
int  total 
)
signal
Deprecated:
in 2.4 - not emitted anymore

Referenced by render().

void QgsMapRenderer::enableOverviewMode ( bool  isOverview = true)
inline

sets whether map image will be for overview

Definition at line 203 of file qgsmaprenderer.h.

QgsRectangle QgsMapRenderer::extent ( ) const
void QgsMapRenderer::extentsChanged ( )
signal

emitted when the current extent gets changed

Note
added in 2.4

Referenced by setExtent().

QgsRectangle QgsMapRenderer::fullExtent ( )

returns current extent of layer set

Definition at line 976 of file qgsmaprenderer.cpp.

References mFullExtent, and updateFullExtent().

QgsMapRenderer::BlendMode QgsMapRenderer::getBlendModeEnum ( const QPainter::CompositionMode &  blendMode)
static
QPainter::CompositionMode QgsMapRenderer::getCompositionMode ( const QgsMapRenderer::BlendMode blendMode)
static
bool QgsMapRenderer::hasCrsTransformEnabled ( ) const
Q_DECL_DEPRECATED void QgsMapRenderer::hasCrsTransformEnabled ( bool  flag)
signal

This signal is emitted when CRS transformation is enabled/disabled.

Parameters
flagtrue if transformation is enabled.
Deprecated:
Use hasCrsTransformEnabledChanged( bool flag ) to avoid conflict with method of the same name).
void QgsMapRenderer::hasCrsTransformEnabledChanged ( bool  flag)
signal

This signal is emitted when CRS transformation is enabled/disabled.

Parameters
flagtrue if transformation is enabled.
Note
Added in 2.4

Referenced by setProjectionsEnabled().

int QgsMapRenderer::height ( ) const
inline

Definition at line 194 of file qgsmaprenderer.h.

QgsLabelingEngineInterface* QgsMapRenderer::labelingEngine ( )
inline

Labeling engine (NULL if there's no custom engine)

Note
Added in QGIS v1.4

Definition at line 293 of file qgsmaprenderer.h.

QgsRectangle QgsMapRenderer::layerExtentToOutputExtent ( QgsMapLayer theLayer,
QgsRectangle  extent 
)

transform bounding box from layer's CRS to output CRS

See also
layerToMapCoordinates( QgsMapLayer* theLayer, QgsRectangle rect ) if you want to transform a rectangle
Returns
a bounding box (aligned rectangle) containing the transformed extent

Definition at line 763 of file qgsmaprenderer.cpp.

References extent(), hasCrsTransformEnabled(), QgsMessageLog::logMessage(), QgsDebugMsg, QgsRectangle::toString(), tr, transformation(), QgsCoordinateTransform::transformBoundingBox(), and QgsException::what().

Referenced by updateFullExtent().

QStringList & QgsMapRenderer::layerSet ( )

returns current layer set

Definition at line 989 of file qgsmaprenderer.cpp.

References mLayerSet.

Referenced by mapSettings().

QgsPoint QgsMapRenderer::layerToMapCoordinates ( QgsMapLayer theLayer,
QgsPoint  point 
)

transform point coordinates from layer's CRS to output CRS

Returns
the transformed point

Definition at line 818 of file qgsmaprenderer.cpp.

References QgsCoordinateTransform::ForwardTransform, hasCrsTransformEnabled(), QgsMessageLog::logMessage(), QgsCoordinateTransform::transform(), transformation(), and QgsException::what().

QgsRectangle QgsMapRenderer::layerToMapCoordinates ( QgsMapLayer theLayer,
QgsRectangle  rect 
)

transform rectangle from layer's CRS to output CRS

See also
layerExtentToOutputExtent() if you want to transform a bounding box
Returns
the transformed rectangle

Definition at line 842 of file qgsmaprenderer.cpp.

References QgsCoordinateTransform::ForwardTransform, hasCrsTransformEnabled(), QgsMessageLog::logMessage(), QgsCoordinateTransform::transform(), transformation(), and QgsException::what().

const QgsMapSettings & QgsMapRenderer::mapSettings ( )
QgsPoint QgsMapRenderer::mapToLayerCoordinates ( QgsMapLayer theLayer,
QgsPoint  point 
)

transform point coordinates from output CRS to layer's CRS

Returns
the transformed point

Definition at line 866 of file qgsmaprenderer.cpp.

References hasCrsTransformEnabled(), QgsMessageLog::logMessage(), QgsCoordinateTransform::ReverseTransform, QgsCoordinateTransform::transform(), transformation(), and QgsException::what().

QgsRectangle QgsMapRenderer::mapToLayerCoordinates ( QgsMapLayer theLayer,
QgsRectangle  rect 
)

transform rectangle from output CRS to layer's CRS

See also
outputExtentToLayerExtent() if you want to transform a bounding box
Returns
the transformed rectangle

Definition at line 888 of file qgsmaprenderer.cpp.

References hasCrsTransformEnabled(), QgsMessageLog::logMessage(), QgsCoordinateTransform::ReverseTransform, QgsCoordinateTransform::transform(), transformation(), and QgsException::what().

QGis::UnitType QgsMapRenderer::mapUnits ( ) const
void QgsMapRenderer::mapUnitsChanged ( )
signal

Referenced by setMapUnits().

double QgsMapRenderer::mapUnitsPerPixel ( ) const
inline

Definition at line 191 of file qgsmaprenderer.h.

void QgsMapRenderer::onDrawingProgress ( int  current,
int  total 
)
slot
Deprecated:
in 2.4 - does nothing

Definition at line 631 of file qgsmaprenderer.cpp.

Referenced by render().

double QgsMapRenderer::outputDpi ( )

accessor for output dpi

Definition at line 140 of file qgsmaprenderer.cpp.

References QgsScaleCalculator::dpi(), and mScaleCalculator.

Referenced by mapSettings(), and writeXML().

QgsRectangle QgsMapRenderer::outputExtentToLayerExtent ( QgsMapLayer theLayer,
QgsRectangle  extent 
)
QSize QgsMapRenderer::outputSize ( )

accessor for output size

Definition at line 145 of file qgsmaprenderer.cpp.

References mSize.

Referenced by mapSettings(), and writeXML().

QSizeF QgsMapRenderer::outputSizeF ( )

Definition at line 150 of file qgsmaprenderer.cpp.

References mSize.

OutputUnits QgsMapRenderer::outputUnits ( ) const
inline

Definition at line 268 of file qgsmaprenderer.h.

bool QgsMapRenderer::readXML ( QDomNode &  theNode)
void QgsMapRenderer::render ( QPainter *  painter,
double *  forceWidthScale = 0 
)

starts rendering

Parameters
painterpainter to render to
forceWidthScaleForce a specific scale factor for line widths and marker sizes. Automatically calculated from output device DPI if 0

Definition at line 221 of file qgsmaprenderer.cpp.

References QgsMapLayer::blendMode(), QgsScaleCalculator::dpi(), QgsMapLayer::draw(), drawError(), drawingProgress(), QgsLabelingEngineInterface::drawLabeling(), QgsMapLayer::drawLabels(), QgsLabelingEngineInterface::exit(), QgsMapLayer::extent(), QgsVectorLayer::featureBlendMode(), hasCrsTransformEnabled(), QgsMapLayer::hasScaleBasedVisibility(), QgsLabelingEngineInterface::init(), QgsMapLayerRegistry::instance(), QgsProject::instance(), QgsRectangle::isEmpty(), QgsRectangle::isFinite(), QgsVectorLayer::layerTransparency(), QgsMapLayerRegistry::mapLayer(), mapSettings(), QgsRenderContext::mapToPixel(), QgsMapToPixel::mapUnitsPerPixel(), QgsMapLayer::maximumScale(), mDrawing, mExtent, Millimeters, QgsMapLayer::minimumScale(), mLabelingEngine, mLastExtent, mLayerSet, mOutputUnits, mOverview, mRenderContext, mRenderMutex, mScale, mScaleCalculator, mSize, QgsMapLayer::name(), onDrawingProgress(), QgsRenderContext::painter(), QgsDebugMsg, QgsMapLayer::RasterLayer, QgsRenderContext::rasterScaleFactor(), rasterScaleFactor, QgsProject::readNumEntry(), QgsRenderContext::rendererScale(), QgsRenderContext::renderingStopped(), QgsRenderContext::scaleFactor(), QgsRenderContext::setCoordinateTransform(), QgsRenderContext::setDrawEditingInformation(), QgsRenderContext::setExtent(), QgsRenderContext::setLabelingEngine(), QgsRenderContext::setMapToPixel(), QgsMapToPixel::setMapUnitsPerPixel(), QgsRenderContext::setPainter(), QgsRenderContext::setRasterScaleFactor(), QgsRenderContext::setRendererScale(), QgsRenderContext::setRenderingStopped(), QgsRenderContext::setScaleFactor(), QgsRenderContext::setSelectionColor(), QgsMapToPixel::setYMaximum(), splitLayersExtent(), QgsRectangle::toString(), transformation(), QgsMapLayer::type(), QgsRenderContext::useAdvancedEffects(), and QgsMapLayer::VectorLayer.

QgsRenderContext* QgsMapRenderer::rendererContext ( )
inline

Accessor for render context.

Definition at line 289 of file qgsmaprenderer.h.

double QgsMapRenderer::scale ( ) const
inline

Scale denominator.

Definition at line 187 of file qgsmaprenderer.h.

void QgsMapRenderer::setDestinationCrs ( const QgsCoordinateReferenceSystem crs,
bool  refreshCoordinateTransformInfo = true,
bool  transformExtent = true 
)
bool QgsMapRenderer::setExtent ( const QgsRectangle extent)
void QgsMapRenderer::setLabelingEngine ( QgsLabelingEngineInterface iface)

Set labeling engine.

Previous engine (if any) is deleted. Takes ownership of the engine. Added in QGIS v1.4

Definition at line 1062 of file qgsmaprenderer.cpp.

References mLabelingEngine.

void QgsMapRenderer::setLayerSet ( const QStringList &  layers)

change current layer set

Definition at line 982 of file qgsmaprenderer.cpp.

References mLayerSet, QgsDebugMsg, and updateFullExtent().

Referenced by QgsMapCanvasRendererSync::onLayersC2R().

void QgsMapRenderer::setMapUnits ( QGis::UnitType  u)
void QgsMapRenderer::setOutputSize ( QSize  size,
int  dpi 
)
void QgsMapRenderer::setOutputSize ( QSizeF  size,
double  dpi 
)
void QgsMapRenderer::setOutputUnits ( OutputUnits  u)
inline

Definition at line 266 of file qgsmaprenderer.h.

void QgsMapRenderer::setProjectionsEnabled ( bool  enabled)
void QgsMapRenderer::setScale ( double  scale)
inline

Sets scale for scale based visibility.

Normally, the scale is calculated automatically. This function is only used to force a preview scale (e.g. for print composer)

Definition at line 190 of file qgsmaprenderer.h.

bool QgsMapRenderer::splitLayersExtent ( QgsMapLayer layer,
QgsRectangle extent,
QgsRectangle r2 
)
protected

Convenience function to project an extent into the layer source CRS, but also split it into two extents if it crosses the +/- 180 degree line.

Modifies the given extent to be in the source CRS coordinates, and if it was split, returns true, and also sets the contents of the r2 parameter

Definition at line 700 of file qgsmaprenderer.cpp.

References QgsMapLayer::crs(), extent(), QgsCoordinateReferenceSystem::geographicFlag(), hasCrsTransformEnabled(), QgsDebugMsg, QgsCoordinateTransform::ReverseTransform, QgsRectangle::setXMaximum(), QgsRectangle::setXMinimum(), QgsCoordinateTransform::transform(), transformation(), QgsCoordinateTransform::transformBoundingBox(), QgsRectangle::xMaximum(), QgsRectangle::xMinimum(), QgsRectangle::yMaximum(), and QgsRectangle::yMinimum().

Referenced by render().

const QgsCoordinateTransform * QgsMapRenderer::transformation ( const QgsMapLayer layer) const
void QgsMapRenderer::updateFullExtent ( )
void QgsMapRenderer::updateMap ( )
signal
Deprecated:
in 2.4 - not emitted anymore
void QgsMapRenderer::updateScale ( )

Recalculate the map scale.

Definition at line 77 of file qgsmaprenderer.cpp.

References QgsScaleCalculator::calculate(), mExtent, mScale, mScaleCalculator, and mSize.

Referenced by adjustExtentToSize(), and setMapUnits().

int QgsMapRenderer::width ( ) const
inline

Definition at line 193 of file qgsmaprenderer.h.

bool QgsMapRenderer::writeXML ( QDomNode &  theNode,
QDomDocument &  theDoc 
)

Member Data Documentation

QgsCoordinateReferenceSystem* QgsMapRenderer::mDestCRS
protected

destination spatial reference system of the projection

Definition at line 402 of file qgsmaprenderer.h.

Referenced by destinationCrs(), QgsMapRenderer(), setDestinationCrs(), transformation(), and ~QgsMapRenderer().

QgsDistanceArea* QgsMapRenderer::mDistArea
protected

tool for measuring

Definition at line 411 of file qgsmaprenderer.h.

Referenced by QgsMapRenderer(), setDestinationCrs(), setProjectionsEnabled(), and ~QgsMapRenderer().

bool QgsMapRenderer::mDrawing = false
staticprotected

indicates drawing in progress

Definition at line 372 of file qgsmaprenderer.h.

Referenced by QgsMapRenderer(), and render().

QgsRectangle QgsMapRenderer::mExtent
protected

current extent to be drawn

Definition at line 384 of file qgsmaprenderer.h.

Referenced by adjustExtentToSize(), extent(), render(), setDestinationCrs(), setExtent(), and updateScale().

QgsRectangle QgsMapRenderer::mFullExtent
protected

full extent of the layer set

Definition at line 408 of file qgsmaprenderer.h.

Referenced by fullExtent(), and updateFullExtent().

QgsLabelingEngineInterface* QgsMapRenderer::mLabelingEngine
protected

Labeling engine (NULL by default)

Definition at line 420 of file qgsmaprenderer.h.

Referenced by QgsMapRenderer(), render(), setLabelingEngine(), and ~QgsMapRenderer().

QgsRectangle QgsMapRenderer::mLastExtent
protected

Last extent to we drew so we know if we can used layer render caching or not.

Note there are no accessors for this as it is intended to internal use only.

Note
added in QGIS 1.4

Definition at line 391 of file qgsmaprenderer.h.

Referenced by render(), setExtent(), and setProjectionsEnabled().

QHash< QString, QgsLayerCoordinateTransform > QgsMapRenderer::mLayerCoordinateTransformInfo
protected
QStringList QgsMapRenderer::mLayerSet
protected

stores array of layers to be rendered (identified by string)

Definition at line 405 of file qgsmaprenderer.h.

Referenced by layerSet(), render(), setLayerSet(), and updateFullExtent().

QgsMapSettings QgsMapRenderer::mMapSettings
protected

map settings - used only for export in mapSettings() for use in classes that deal with QgsMapSettings

Definition at line 426 of file qgsmaprenderer.h.

Referenced by mapSettings().

double QgsMapRenderer::mMapUnitsPerPixel
protected

map units per pixel

Definition at line 375 of file qgsmaprenderer.h.

Referenced by adjustExtentToSize().

OutputUnits QgsMapRenderer::mOutputUnits
protected

Output units.

Definition at line 417 of file qgsmaprenderer.h.

Referenced by QgsMapRenderer(), and render().

bool QgsMapRenderer::mOverview
protected

indicates whether it's map image for overview

Definition at line 394 of file qgsmaprenderer.h.

Referenced by QgsMapRenderer(), and render().

bool QgsMapRenderer::mProjectionsEnabled
protected

detemines whether on the fly projection support is enabled

Definition at line 399 of file qgsmaprenderer.h.

Referenced by hasCrsTransformEnabled(), QgsMapRenderer(), and setProjectionsEnabled().

QgsRenderContext QgsMapRenderer::mRenderContext
protected

Encapsulates context of rendering.

Definition at line 414 of file qgsmaprenderer.h.

Referenced by adjustExtentToSize(), and render().

QMutex QgsMapRenderer::mRenderMutex
protected

Locks rendering loop for concurrent draws.

Definition at line 423 of file qgsmaprenderer.h.

Referenced by render().

double QgsMapRenderer::mScale
protected

Map scale denominator at its current zoom level.

Definition at line 378 of file qgsmaprenderer.h.

Referenced by adjustExtentToSize(), QgsMapRenderer(), render(), and updateScale().

QgsScaleCalculator* QgsMapRenderer::mScaleCalculator
protected

scale calculator

Definition at line 381 of file qgsmaprenderer.h.

Referenced by mapUnits(), outputDpi(), QgsMapRenderer(), render(), setMapUnits(), setOutputSize(), updateScale(), and ~QgsMapRenderer().

QSizeF QgsMapRenderer::mSize
protected

The documentation for this class was generated from the following files: