20 #include <QSvgGenerator> 72 ( !
qgsDoubleNear( scaleFactorX, 0.0 ) ?
"tostring(" + QString::number( scaleFactorX ) +
"*(" + exprString +
"))" : QStringLiteral(
"'0'" ) ) +
74 ( !
qgsDoubleNear( scaleFactorY, 0.0 ) ?
"tostring(" + QString::number( scaleFactorY ) +
"*(" + exprString +
"))" : QStringLiteral(
"'0'" ) ) );
87 for (
int i = 0; i <
mLayers.count(); i++ )
93 else if ( !
mLayers.at( i )->isCompatibleWithSymbol(
this ) )
104 const unsigned int nPoints = curve.
numPoints();
111 if ( clipToExtent && nPoints > 1 )
114 const double cw = e.
width() / 10;
115 const double ch = e.
height() / 10;
131 pts.erase( std::remove_if( pts.begin(), pts.end(),
132 [](
const QPointF point )
134 return !std::isfinite( point.x() ) || !std::isfinite( point.y() );
137 QPointF *ptr = pts.data();
138 for (
int i = 0; i < pts.size(); ++i, ++ptr )
151 const double cw = e.
width() / 10;
152 const double ch = e.
height() / 10;
160 if ( correctRingOrientation )
164 std::reverse( poly.begin(), poly.end() );
166 std::reverse( poly.begin(), poly.end() );
170 const QRectF ptsRect = poly.boundingRect();
183 poly.erase( std::remove_if( poly.begin(), poly.end(),
184 [](
const QPointF point )
186 return !std::isfinite( point.x() ) || !std::isfinite( point.y() );
189 QPointF *ptr = poly.data();
190 for (
int i = 0; i < poly.size(); ++i, ++ptr )
206 if ( !hole.isEmpty() ) holes.append( hole );
223 QgsSymbolLayerList::const_iterator it =
mLayers.constBegin();
227 for ( ; it !=
mLayers.constEnd(); ++it )
229 if ( ( *it )->outputUnit() != unit )
244 QgsSymbolLayerList::const_iterator it =
mLayers.constBegin();
245 if ( it ==
mLayers.constEnd() )
251 for ( ; it !=
mLayers.constEnd(); ++it )
253 if ( ( *it )->mapUnitScale() != scale )
279 std::unique_ptr< QgsSymbol > s;
297 if ( !defaultSymbol.isEmpty() )
306 s = qgis::make_unique< QgsMarkerSymbol >();
309 s = qgis::make_unique< QgsLineSymbol >();
312 s = qgis::make_unique< QgsFillSymbol >();
315 QgsDebugMsg( QStringLiteral(
"unknown layer's geometry type" ) );
326 opacity = alpha / 255.0;
329 opacity = newOpacity;
330 s->setOpacity( opacity );
333 if ( defaultSymbol.isEmpty() ||
349 if ( index < 0 || index >
mLayers.count() )
355 mLayers.insert( index, layer );
372 if ( index < 0 || index >=
mLayers.count() )
383 if ( index < 0 || index >=
mLayers.count() )
386 return mLayers.takeAt( index );
394 if ( oldLayer == layer )
408 Q_ASSERT_X( !mStarted,
"startRender",
"Rendering has already been started for this symbol instance!" );
416 mSymbolRenderContext->setExpressionContextScope( scope.release() );
430 Q_ASSERT_X( mStarted,
"startRender",
"startRender was not called for this symbol instance!" );
434 if ( mSymbolRenderContext )
445 mSymbolRenderContext.reset(
nullptr );
463 for ( QgsSymbolLayerList::const_iterator it =
mLayers.begin(); it !=
mLayers.end(); ++it )
466 if ( !( *it )->isLocked() )
467 return ( *it )->color();
469 return QColor( 0, 0, 0 );
479 if ( !customContext )
501 QPolygonF poly = QRectF( QPointF( 0, 0 ), QPointF( size.width() - 1, size.height() - 1 ) );
514 if ( format.compare( QLatin1String(
"svg" ), Qt::CaseInsensitive ) == 0 )
516 QSvgGenerator generator;
517 generator.setFileName( path );
518 generator.setSize( size );
519 generator.setViewBox( QRect( 0, 0, size.height(), size.height() ) );
521 QPainter painter( &generator );
527 QImage image =
asImage( size );
534 QImage image( size, QImage::Format_ARGB32_Premultiplied );
537 QPainter p( &image );
538 p.setRenderHint( QPainter::Antialiasing );
548 QImage preview( QSize( 100, 100 ), QImage::Format_ARGB32_Premultiplied );
551 QPainter p( &preview );
552 p.setRenderHint( QPainter::Antialiasing );
553 p.translate( 0.5, 0.5 );
557 p.setPen( QPen( Qt::gray ) );
558 p.drawLine( 0, 50, 100, 50 );
559 p.drawLine( 50, 0, 50, 100 );
563 if ( expressionContext )
571 poly << QPointF( 0, 50 ) << QPointF( 99, 50 );
572 static_cast<QgsLineSymbol *
>( this )->renderPolyline( poly,
nullptr, context );
577 polygon << QPointF( 20, 20 ) << QPointF( 80, 20 ) << QPointF( 80, 80 ) << QPointF( 20, 80 ) << QPointF( 20, 20 );
578 static_cast<QgsFillSymbol *
>( this )->renderPolygon( polygon,
nullptr,
nullptr, context );
582 static_cast<QgsMarkerSymbol *
>( this )->renderPoint( QPointF( 50, 50 ),
nullptr, context );
596 t = QStringLiteral(
"MARKER" );
599 t = QStringLiteral(
"LINE" );
602 t = QStringLiteral(
"FILL" );
605 Q_ASSERT(
false &&
"unknown symbol type" );
609 for ( QgsSymbolLayerList::const_iterator it =
mLayers.begin(); it !=
mLayers.end(); ++it )
618 props[ QStringLiteral(
"alpha" )] = QString::number(
opacity() );
619 double scaleFactor = 1.0;
623 for ( QgsSymbolLayerList::const_iterator it =
mLayers.begin(); it !=
mLayers.end(); ++it )
625 ( *it )->toSld( doc, element, props );
632 for ( QgsSymbolLayerList::const_iterator it =
mLayers.begin(); it !=
mLayers.end(); ++it )
653 if ( effect && effect->
enabled() )
656 generatorLayer->
render( context );
660 generatorLayer->
render( context );
666 QSet<QString> attributes;
667 QgsSymbolLayerList::const_iterator sIt =
mLayers.constBegin();
668 for ( ; sIt !=
mLayers.constEnd(); ++sIt )
672 attributes.unite( ( *sIt )->usedAttributes( context ) );
707 class ExpressionContextScopePopper
711 ExpressionContextScopePopper() =
default;
713 ~ExpressionContextScopePopper()
725 class GeometryRestorer
729 : mContext( context ),
735 mContext.setGeometry( mGeometry );
752 GeometryRestorer geomRestorer( context );
754 bool usingSegmentizedGeometry =
false;
768 usingSegmentizedGeometry =
true;
771 mSymbolRenderContext->setGeometryPartCount( segmentizedGeometry.
constGet()->
partCount() );
772 mSymbolRenderContext->setGeometryPartNum( 1 );
775 ExpressionContextScopePopper scopePopper;
776 if ( mSymbolRenderContext->expressionContextScope() )
778 if ( needsExpressionContext )
803 segmentizedGeometry = simplifier.
simplify( segmentizedGeometry );
812 QgsDebugMsg( QStringLiteral(
"point can be drawn only with marker symbol!" ) );
817 const QPointF pt =
_getPoint( context, *point );
818 static_cast<QgsMarkerSymbol *
>( this )->renderPoint( pt, &feature, context, layer, selected );
823 context.
painter()->setPen( Qt::red );
824 context.
painter()->setBrush( QColor( 255, 0, 0, 100 ) );
825 context.
painter()->drawRect( static_cast<QgsMarkerSymbol *>(
this )->bounds( pt, context, feature ) );
828 if ( drawVertexMarker && !usingSegmentizedGeometry )
838 QgsDebugMsg( QStringLiteral(
"linestring can be drawn only with line symbol!" ) );
843 static_cast<QgsLineSymbol *
>( this )->renderPolyline( pts, &feature, context, layer, selected );
845 if ( drawVertexMarker && !usingSegmentizedGeometry )
855 QList<QPolygonF> holes;
858 QgsDebugMsg( QStringLiteral(
"polygon can be drawn only with fill symbol!" ) );
864 QgsDebugMsg( QStringLiteral(
"cannot render polygon with no exterior ring" ) );
868 static_cast<QgsFillSymbol *
>( this )->renderPolygon( pts, ( !holes.isEmpty() ? &holes : nullptr ), &feature, context, layer, selected );
870 if ( drawVertexMarker && !usingSegmentizedGeometry )
874 Q_FOREACH (
const QPolygonF &hole, holes )
886 QgsDebugMsg( QStringLiteral(
"multi-point can be drawn only with marker symbol!" ) );
892 if ( drawVertexMarker && !usingSegmentizedGeometry )
899 mSymbolRenderContext->setGeometryPartNum( i + 1 );
900 if ( needsExpressionContext )
904 const QPointF pt =
_getPoint( context, point );
905 static_cast<QgsMarkerSymbol *
>( this )->renderPoint( pt, &feature, context, layer, selected );
907 if ( drawVertexMarker && !usingSegmentizedGeometry )
909 markers.append( pt );
920 QgsDebugMsg( QStringLiteral(
"multi-linestring can be drawn only with line symbol!" ) );
927 for (
unsigned int i = 0; i < num; ++i )
929 mSymbolRenderContext->setGeometryPartNum( i + 1 );
930 if ( needsExpressionContext )
936 static_cast<QgsLineSymbol *
>( this )->renderPolyline( pts, &feature, context, layer, selected );
938 if ( drawVertexMarker && !usingSegmentizedGeometry )
951 QgsDebugMsg( QStringLiteral(
"multi-polygon can be drawn only with fill symbol!" ) );
956 QList<QPolygonF> holes;
963 std::map<double, QList<unsigned int> > mapAreaToPartNum;
964 for (
unsigned int i = 0; i < num; ++i )
968 mapAreaToPartNum[ r.width() * r.height()] << i;
974 std::map<double, QList<unsigned int> >::const_reverse_iterator iter = mapAreaToPartNum.rbegin();
975 for ( ; iter != mapAreaToPartNum.rend(); ++iter )
977 const QList<unsigned int> &listPartIndex = iter->second;
978 for (
int idx = 0; idx < listPartIndex.size(); ++idx )
980 const unsigned i = listPartIndex[idx];
981 mSymbolRenderContext->setGeometryPartNum( i + 1 );
982 if ( needsExpressionContext )
991 static_cast<QgsFillSymbol *
>( this )->renderPolygon( pts, ( !holes.isEmpty() ? &holes : nullptr ), &feature, context, layer, selected );
993 if ( drawVertexMarker && !usingSegmentizedGeometry )
997 Q_FOREACH (
const QPolygonF &hole, holes )
1018 QgsDebugMsg( QStringLiteral(
"feature %1: unsupported wkb type %2/%3 for rendering" )
1019 .arg( feature.
id() )
1021 .arg( geom.
wkbType(), 0, 16 ) );
1024 if ( drawVertexMarker )
1026 if ( !markers.isEmpty() )
1028 Q_FOREACH ( QPointF marker, markers )
1030 renderVertexMarker( marker, context, currentVertexMarkerType, currentVertexMarkerSize );
1045 x = vertexPoint.
x();
1046 y = vertexPoint.
y();
1055 renderVertexMarker( mapPoint, context, currentVertexMarkerType, currentVertexMarkerSize );
1063 return mSymbolRenderContext.get();
1076 : mRenderContext( c )
1078 , mMapUnitScale( mapUnitScale )
1080 , mSelected( selected )
1084 , mGeometryPartCount( 0 )
1085 , mGeometryPartNum( 0 )
1116 return mExpressionContextScope.get();
1121 mExpressionContextScope.reset( contextScope );
1133 layers.append( sl );
1144 layers.append( sl );
1155 layers.append( sl );
1170 double origAngle =
angle();
1171 double angleDiff = symbolAngle - origAngle;
1187 return markerLayer->
angle();
1205 const double symbolRotation =
angle();
1233 const double symbolRotation =
angle();
1263 if ( !layerAngleDD || layerAngleDD != symbolDD )
1269 if ( !layerAngleDD || layerAngleDD != rotatedDD )
1279 double origSize =
size();
1291 markerLayer->
setSize( markerLayer->
size() * s / origSize );
1295 markerLayer->
setOffset( QPointF( markerLayer->
offset().x() * s / origSize,
1296 markerLayer->
offset().y() * s / origSize ) );
1309 double lsize = markerLayer->
size();
1310 if ( lsize > maxSize )
1326 maxSize = std::max( maxSize, layerSize );
1358 if ( unit != markerLayer->
sizeUnit() )
1394 const double symbolSize =
size();
1421 markerLayer->
offset().x() / symbolSize,
1422 markerLayer->
offset().y() / symbolSize, property ) );
1430 const double symbolSize =
size();
1462 if ( !layerSizeDD || layerSizeDD != symbolDD )
1471 if ( !layerSizeDD || layerSizeDD != scaledDD )
1476 if ( layerOffsetDD && layerOffsetDD != scaledOffsetDD )
1510 static QPointF nullPoint( 0, 0 );
1516 if ( effect && effect->
enabled() )
1519 p->translate( point );
1535 if ( layerIdx != -1 )
1538 if ( symbolLayer && symbolLayer->
enabled() )
1543 renderPointUsingLayer( markerLayer, point, symbolContext );
1553 if ( !symbolLayer->
enabled() )
1559 renderPointUsingLayer( markerLayer, point, symbolContext );
1576 if ( bound.isNull() )
1577 bound = symbolLayer->
bounds( point, symbolContext );
1579 bound = bound.united( symbolLayer->
bounds( point, symbolContext ) );
1610 double origWidth =
width();
1636 double maxWidth = 0;
1646 if ( width > maxWidth )
1656 double maxWidth = 0;
1662 const double layerWidth = lineLayer->
width( context );
1663 maxWidth = std::max( maxWidth, layerWidth );
1670 const double symbolWidth =
width();
1705 const double symbolWidth =
width();
1710 for ( QgsSymbolLayerList::const_iterator it =
mLayers.begin(); it !=
mLayers.end(); ++it )
1735 if ( !layerWidthDD || layerWidthDD != symbolDD )
1744 if ( !layerWidthDD || layerWidthDD != scaledDD )
1749 if ( layerOffsetDD && layerOffsetDD != scaledOffsetDD )
1759 QPainter *renderPainter = context.
painter();
1765 if ( layerIdx != -1 )
1768 if ( symbolLayer && symbolLayer->
enabled() )
1773 renderPolylineUsingLayer( lineLayer, points, symbolContext );
1783 if ( !symbolLayer->
enabled() )
1789 renderPolylineUsingLayer( lineLayer, points, symbolContext );
1806 if ( effect && effect->
enabled() )
1809 p->translate( points.boundingRect().topLeft() );
1811 layer->
renderPolyline( points.translated( -points.boundingRect().topLeft() ), context );
1849 if ( layerIdx != -1 )
1852 if ( symbolLayer && symbolLayer->
enabled() )
1855 renderPolygonUsingLayer( symbolLayer, points, rings, symbolContext );
1864 if ( !symbolLayer->
enabled() )
1868 renderPolygonUsingLayer( symbolLayer, points, rings, symbolContext );
1882 if ( effect && effect->
enabled() )
1884 QRectF bounds = polygonBounds( points, rings );
1885 QList<QPolygonF> *translatedRings = translateRings( rings, -bounds.left(), -bounds.top() );
1888 p->translate( bounds.topLeft() );
1892 (
static_cast<QgsFillSymbolLayer *
>(
layer ) )->renderPolygon( points.translated( -bounds.topLeft() ), translatedRings, context );
1896 (
static_cast<QgsLineSymbolLayer *
>(
layer ) )->renderPolygonStroke( points.translated( -bounds.topLeft() ), translatedRings, context );
1898 delete translatedRings;
1913 QRectF QgsFillSymbol::polygonBounds(
const QPolygonF &points,
const QList<QPolygonF> *rings )
const 1915 QRectF bounds = points.boundingRect();
1918 QList<QPolygonF>::const_iterator it = rings->constBegin();
1919 for ( ; it != rings->constEnd(); ++it )
1921 bounds = bounds.united( ( *it ).boundingRect() );
1927 QList<QPolygonF> *QgsFillSymbol::translateRings(
const QList<QPolygonF> *rings,
double dx,
double dy )
const 1932 QList<QPolygonF> *translatedRings =
new QList<QPolygonF>;
1933 QList<QPolygonF>::const_iterator it = rings->constBegin();
1934 for ( ; it != rings->constEnd(); ++it )
1936 translatedRings->append( ( *it ).translated( dx, dy ) );
1938 return translatedRings;
void setOffset(QPointF offset)
Sets the marker's offset, which is the horizontal and vertical displacement which the rendered marker...
bool insertSymbolLayer(int index, QgsSymbolLayer *layer)
Inserts a symbol layer to specified index.
QgsSymbolRenderContext(QgsRenderContext &c, QgsUnitTypes::RenderUnit u, qreal opacity=1.0, bool selected=false, QgsSymbol::RenderHints renderHints=nullptr, const QgsFeature *f=nullptr, const QgsFields &fields=QgsFields(), const QgsMapUnitScale &mapUnitScale=QgsMapUnitScale())
Constructor for QgsSymbolRenderContext.
void setForceVectorOutput(bool force)
static QgsExpressionContextScope * updateSymbolScope(const QgsSymbol *symbol, QgsExpressionContextScope *symbolScope=nullptr)
Updates a symbol scope related to a QgsSymbol to an expression context.
bool contains(const QgsRectangle &rect) const
Returns true when rectangle contains other rectangle.
Single variable definition for use within a QgsExpressionContextScope.
A rectangle specified with double values.
QString asExpression() const
Returns an expression string representing the state of the property, or an empty string if the proper...
void setLineAngle(double lineAngle)
Sets the line angle modification for the symbol's angle.
void setRenderingPass(int renderingPass)
void setLocked(bool locked)
const QgsVectorSimplifyMethod & vectorSimplifyMethod() const
Added in QGIS v2.4.
static QPolygonF _getPolygonRing(QgsRenderContext &context, const QgsCurve &curve, bool clipToExtent, bool isExteriorRing=false, bool correctRingOrientation=false)
Creates a polygon ring in screen coordinates from a QgsCurve in map coordinates.
void setMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale for the symbol.
QString readEntry(const QString &scope, const QString &key, const QString &def=QString(), bool *ok=nullptr) const
QgsPaintEffect * paintEffect() const
Returns the current paint effect for the layer.
Abstract base class for all rendered symbols.
void renderVertexMarker(QPointF pt, QgsRenderContext &context, int currentVertexMarkerType, double currentVertexMarkerSize)
Render editing vertex marker at specified point.
bool readBoolEntry(const QString &scope, const QString &key, bool def=false, bool *ok=nullptr) const
Multi point geometry collection.
bool appendSymbolLayer(QgsSymbolLayer *layer)
Appends a symbol layer at the end of the current symbol layer list.
Simple marker symbol layer, consisting of a rendered shape with solid fill color and an stroke...
virtual void setWidth(double width)
SimplifyAlgorithm simplifyAlgorithm() const
Gets the local simplification algorithm of the vector layer managed.
static QgsLineSymbol * createSimple(const QgsStringMap &properties)
Create a line symbol with one symbol layer: SimpleLine with specified properties. ...
ScaleMethod scaleMethod()
const QgsMapUnitScale & sizeMapUnitScale() const
Returns the map unit scale for the symbol's size.
virtual void prepareExpressions(const QgsSymbolRenderContext &context)
Prepares all data defined property expressions for evaluation.
QgsWkbTypes::Type wkbType() const
Returns type of the geometry as a WKB type (point / linestring / polygon etc.)
static QgsFillSymbol * createSimple(const QgsStringMap &properties)
Create a fill symbol with one symbol layer: SimpleFill with specified properties. ...
QgsMapUnitScale mapUnitScale() const
Returns the map unit scale for the symbol.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
void setExpressionContextScope(QgsExpressionContextScope *contextScope)
Set an expression scope for this symbol.
void setAngle(double angle)
const QgsCurve * interiorRing(int i) const
Retrieves an interior ring from the curve polygon.
void renderPolyline(const QPolygonF &points, const QgsFeature *f, QgsRenderContext &context, int layer=-1, bool selected=false)
void toSld(QDomDocument &doc, QDomElement &element, QgsStringMap props) const
Converts the symbol to a SLD representation.
static QPointF _getPoint(QgsRenderContext &context, const QgsPoint &point)
Creates a point in screen coordinates from a QgsPoint in map coordinates.
#define Q_NOWARN_DEPRECATED_PUSH
void setSize(double size)
Sets the size for the whole symbol.
Base class for visual effects which can be applied to QPicture drawings.
static QgsProperty fromExpression(const QString &expression, bool isActive=true)
Returns a new ExpressionBasedProperty created from the specified expression.
void setSizeMapUnitScale(const QgsMapUnitScale &scale)
Sets the size map unit scale for the whole symbol (including all symbol layers).
bool clipFeaturesToExtent() const
Returns whether features drawn by the symbol will be clipped to the render context's extent...
double outputLineWidth(double width) const
bool mClipFeaturesToExtent
Container of fields for a vector layer.
A geometry is the spatial representation of a feature.
virtual void render(QgsSymbolRenderContext &context)
Will render this symbol layer using the context.
void setGeometryPartCount(int count)
Sets the part count of current geometry.
void renderFeature(const QgsFeature &feature, QgsRenderContext &context, int layer=-1, bool selected=false, bool drawVertexMarker=false, int currentVertexMarkerType=0, double currentVertexMarkerSize=0.0)
Render a feature.
bool deleteSymbolLayer(int index)
Removes and deletes the symbol layer at the specified index.
void setDataDefinedAngle(const QgsProperty &property)
Set data defined angle for whole symbol (including all symbol layers).
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
virtual bool nextVertex(QgsVertexId &id, QgsPoint &vertex) const =0
Returns next vertex id and coordinates.
void setAngle(double symbolAngle)
Sets the angle for the whole symbol.
SimplifyAlgorithm
Types of simplification algorithms that can be used.
void setScaleMethod(QgsSymbol::ScaleMethod scaleMethod)
Sets the method to use for scaling the marker's size.
QgsAbstractGeometry::SegmentationToleranceType segmentationToleranceType() const
Gets segmentation tolerance type (maximum angle or maximum difference between curve and approximation...
QgsMapLayer::LayerType type() const
Returns the type of the layer.
QMap< QString, QString > QgsStringMap
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
void addVariable(const QgsExpressionContextScope::StaticVariable &variable)
Adds a variable into the context scope.
virtual double width() const
Returns the estimated width for the line symbol layer.
A marker symbol type, for rendering Point and MultiPoint geometries.
A line symbol type, for rendering LineString and MultiLineString geometries.
void startRender(QgsRenderContext &context, const QgsFields &fields=QgsFields())
Begins the rendering process for the symbol.
static QgsStyle * defaultStyle()
Returns default application-wide style.
virtual void renderPolyline(const QPolygonF &points, QgsSymbolRenderContext &context)=0
Q_DECL_DEPRECATED const QgsVectorLayer * mLayer
bool isActive(int key) const override
Returns true if the collection contains an active property with the specified key.
static QString encodeColor(const QColor &color)
QgsUnitTypes::RenderUnit outputUnit() const
Returns the units to use for sizes and widths within the symbol.
virtual bool hasDataDefinedProperties() const
Returns true if the symbol layer (or any of its sub-symbols) contains data defined properties...
virtual void setColor(const QColor &color)
The fill color.
void setOutputUnit(QgsUnitTypes::RenderUnit unit)
Sets the units to use for sizes and widths within the symbol.
QgsSymbolRenderContext & operator=(const QgsSymbolRenderContext &)
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
void transformInPlace(double &x, double &y) const
Transform device coordinates to map coordinates.
SymbolType
Type of the symbol.
void renderPoint(QPointF point, const QgsFeature *f, QgsRenderContext &context, int layer=-1, bool selected=false)
void setOriginalValueVariable(const QVariant &value)
Sets the original value variable value for data defined symbology.
Perform transforms between map coordinates and device coordinates.
QgsProperty dataDefinedAngle() const
Returns data defined angle for whole symbol (including all symbol layers).
virtual QPolygonF asQPolygonF() const
Returns a QPolygonF representing the points.
static QgsSymbolLayer * create(const QgsStringMap &properties=QgsStringMap())
Creates a new QgsSimpleMarkerSymbolLayer.
QgsSymbolLayerList mLayers
int numInteriorRings() const
Returns the number of interior rings contained with the curve polygon.
virtual QRectF bounds(QPointF point, QgsSymbolRenderContext &context)=0
Returns the approximate bounding box of the marker symbol layer, taking into account any data defined...
QImage asImage(QSize size, QgsRenderContext *customContext=nullptr)
Returns an image of the symbol at the specified size.
void exportImage(const QString &path, const QString &format, QSize size)
Export the symbol as an image format, to the specified path and with the given size.
static QgsSymbol * defaultSymbol(QgsWkbTypes::GeometryType geomType)
Returns a new default symbol for the specified geometry type.
void setOriginalGeometryType(QgsWkbTypes::GeometryType type)
Sets the geometry type for the original feature geometry being rendered.
double angle() const
Returns the rotation angle for the marker, in degrees clockwise from north.
virtual void setOutputUnit(QgsUnitTypes::RenderUnit unit)
Sets the units to use for sizes and widths within the symbol layer.
QString dump() const
Returns a string dump of the symbol's properties.
Utility class for identifying a unique vertex within a geometry.
double tolerance() const
Gets the tolerance of simplification in map units. Represents the maximum distance in map units betwe...
void setGeometry(const QgsAbstractGeometry *geometry)
Sets pointer to original (unsegmentized) geometry.
const QgsRectangle & extent() const
When rendering a map layer, calling this method returns the "clipping" extent for the layer (in the l...
#define DEFAULT_SCALE_METHOD
QRectF bounds(QPointF point, QgsRenderContext &context, const QgsFeature &feature=QgsFeature()) const
Returns the approximate bounding box of the marker symbol, which includes the bounding box of all sym...
void renderPolygon(const QPolygonF &points, QList< QPolygonF > *rings, const QgsFeature *f, QgsRenderContext &context, int layer=-1, bool selected=false)
double outputPixelSize(double size) const
void renderUsingLayer(QgsSymbolLayer *layer, QgsSymbolRenderContext &context)
Renders a context using a particular symbol layer without passing in a geometry.
void setOpacity(qreal opacity)
Sets the opacity for the symbol.
QgsFillSymbol * clone() const override
Returns a deep copy of this symbol.
void setGeometryPartNum(int num)
Sets the part number of current geometry.
void setWidth(double width)
Sets the width for the whole line symbol.
double width() const
Returns the estimated width for the whole symbol, which is the maximum width of all marker symbol lay...
const QgsAbstractGeometry * geometry() const
Returns pointer to the unsegmentized geometry.
double size() const
Returns the symbol size.
virtual void renderPoint(QPointF point, QgsSymbolRenderContext &context)=0
Renders a marker at the specified point.
double width() const
Returns the width of the rectangle.
QString qgsDoubleToString(double a, int precision=17)
Returns a string representation of a double.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsPropertyCollection & dataDefinedProperties()
Returns a reference to the symbol layer's property collection, used for data defined overrides...
void setSize(double size)
Sets the symbol size.
QgsProperty scaleWholeSymbol(double scaleFactor, const QgsProperty &property)
void setSizeMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale for the symbol's size.
static QgsRenderContext fromQPainter(QPainter *painter)
Creates a default render context given a pixel based QPainter destination.
QgsMapUnitScale sizeMapUnitScale() const
Returns the size map unit scale for the whole symbol.
Draw bounds of symbols (for debugging/testing)
void drawPreviewIcon(QPainter *painter, QSize size, QgsRenderContext *customContext=nullptr)
Draws an icon of the symbol that occupies an area given by size using the specified painter...
QList< QgsSymbolLayer * > QgsSymbolLayerList
void setPainter(QPainter *p)
Sets the destination QPainter for the render operation.
QgsRectangle boundingBox() const override
Returns the minimal bounding box for the geometry.
static QString encodeSldUom(QgsUnitTypes::RenderUnit unit, double *scaleFactor)
Encodes a render unit into an SLD unit of measure string.
QColor color() const
Returns the symbol's color.
virtual void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size)=0
QgsSymbolRenderContext * symbolRenderContext()
Returns the symbol render context.
QgsSymbol::SymbolType type() const
void setScaleMethod(QgsSymbol::ScaleMethod scaleMethod)
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
bool enabled() const
Returns whether the effect is enabled.
Abstract base class for curved geometry type.
Single scope for storing variables and functions for use within a QgsExpressionContext.
Abstract base class for all geometries.
void setEnabled(bool enabled)
Sets whether symbol layer is enabled and should be drawn.
void setAngle(double angle)
A store for object properties.
QgsMarkerSymbol(const QgsSymbolLayerList &layers=QgsSymbolLayerList())
Constructor for QgsMarkerSymbol, with the specified list of initial symbol layers.
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
Implementation of GeometrySimplifier using the "MapToPixel" algorithm.
QgsSymbolLayer * symbolLayer(int layer)
Returns a specific symbol layer contained in the symbol.
QgsWkbTypes::Type wkbType() const
Returns the WKB type of the geometry.
Counter-clockwise orientation.
Point geometry type, with support for z-dimension and m-values.
void setEffect(QgsPaintEffect *effect)
Sets the effect to be painted.
static QPolygonF clippedLine(const QgsCurve &curve, const QgsRectangle &clipExtent)
Takes a linestring and clips it to clipExtent.
void setDataDefinedWidth(const QgsProperty &property)
Set data defined width for whole symbol (including all symbol layers).
void setSizeUnit(QgsUnitTypes::RenderUnit unit)
Sets the size units for the whole symbol (including all symbol layers).
static QgsSymbolLayer * create(const QgsStringMap &properties=QgsStringMap())
int numGeometries() const
Returns the number of geometries within the collection.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
QgsSymbol::ScaleMethod scaleMethod() const
Returns the method to use for scaling the marker's size.
Orientation orientation() const
Returns the curve's orientation, e.g.
QgsUnitTypes::RenderUnit sizeUnit() const
Returns the size units for the whole symbol (including all symbol layers).
QgsExpressionContext & expressionContext()
Gets the expression context.
static QPolygonF _getLineString(QgsRenderContext &context, const QgsCurve &curve, bool clipToExtent=true)
Creates a line string in screen coordinates from a QgsCurve in map coordinates.
QgsProperty dataDefinedSize() const
Returns data defined size for whole symbol (including all symbol layers).
double xMaximum() const
Returns the x maximum value (right side of rectangle).
virtual bool isCompatibleWithSymbol(QgsSymbol *symbol) const
Returns if the layer can be used below the specified symbol.
bool valueAsBool(int key, const QgsExpressionContext &context, bool defaultValue=false, bool *ok=nullptr) const
Calculates the current value of the property with the specified key and interprets it as an boolean...
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
#define Q_NOWARN_DEPRECATED_POP
VertexMarkerType
Editing vertex markers.
static void drawVertexMarker(double x, double y, QPainter &p, QgsSymbolLayerUtils::VertexMarkerType type, int markerSize)
Draws a vertex symbol at (painter) coordinates x, y.
bool changeSymbolLayer(int index, QgsSymbolLayer *layer)
Deletes the current layer at the specified index and replaces it with layer.
void setSizeUnit(QgsUnitTypes::RenderUnit unit)
Sets the units for the symbol's size.
static QgsColorSchemeRegistry * colorSchemeRegistry()
Returns the application's color scheme registry, used for managing color schemes. ...
QSet< QString > usedAttributes(const QgsRenderContext &context) const
Returns a list of attributes required to render this feature.
Contains information about the context of a rendering operation.
Abstract base class for marker symbol layers.
double convertToPainterUnits(double size, QgsUnitTypes::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale()) const
Converts a size from the specified units to painter units (pixels).
double segmentationTolerance() const
Gets the segmentation tolerance applied when rendering curved geometries.
virtual void setMapUnitScale(const QgsMapUnitScale &scale)
QPainter * painter()
Returns the destination QPainter for the render operation.
const QgsMapToPixel & mapToPixel() const
QgsSymbolLayerList cloneLayers() const
Retrieve a cloned list of all layers that make up this symbol.
QgsGeometry simplify(const QgsGeometry &geometry) const override
Returns a simplified version the specified geometry.
bool hasDataDefinedProperties() const
Returns whether the symbol utilizes any data defined properties.
static QgsSymbolLayer * create(const QgsStringMap &properties=QgsStringMap())
bool enabled() const
Returns true if symbol layer is enabled and will be drawn.
SymbolType type() const
Returns the symbol's type.
virtual void stopRender(QgsSymbolRenderContext &context)=0
Struct for storing maximum and minimum scales for measurements in map units.
QgsUnitTypes::RenderUnit sizeUnit() const
Returns the units for the symbol's size.
QgsProperty rotateWholeSymbol(double additionalRotation, const QgsProperty &property)
static bool isCurvedType(Type type)
Returns true if the WKB type is a curved type or can contain curved geometries.
Q_DECL_DEPRECATED void setLayer(const QgsVectorLayer *layer)
double size() const
Returns the estimated size for the whole symbol, which is the maximum size of all marker symbol layer...
bool forceLocalOptimization() const
Gets where the simplification executes, after fetch the geometries from provider, or when supported...
static void _getPolygon(QPolygonF &pts, QList< QPolygonF > &holes, QgsRenderContext &context, const QgsPolygon &polygon, bool clipToExtent=true, bool correctRingOrientation=false)
Creates a polygon in screen coordinates from a QgsPolygonXYin map coordinates.
RenderHints renderHints() const
Returns the rendering hint flags for the symbol.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
static QgsProject * instance()
Returns the QgsProject singleton instance.
QgsSymbol(SymbolType type, const QgsSymbolLayerList &layers)
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
SimplifyHints simplifyHints() const
Gets the simplification hints of the vector layer managed.
static QString displayString(Type type)
Returns a display string type for a WKB type, e.g., the geometry name used in WKT geometry representa...
double xMinimum() const
Returns the x minimum value (left side of rectangle).
virtual void renderPolygonStroke(const QPolygonF &points, QList< QPolygonF > *rings, QgsSymbolRenderContext &context)
void setAngle(double angle)
Sets the rotation angle for the marker.
void setLineAngle(double lineAngle)
Sets the line angle modification for the symbol's angle.
QgsLineSymbol(const QgsSymbolLayerList &layers=QgsSymbolLayerList())
Constructor for QgsLineSymbol, with the specified list of initial symbol layers.
double readDoubleEntry(const QString &scope, const QString &key, double def=0, bool *ok=nullptr) const
double yMaximum() const
Returns the y maximum value (top side of rectangle).
bool hasActiveProperties() const override
Returns true if the collection has any active properties, or false if all properties within the colle...
QgsSymbolLayer * takeSymbolLayer(int index)
Removes a symbol layer from the list and returns a pointer to it.
A fill symbol type, for rendering Polygon and MultiPolygon geometries.
void appendScopes(const QList< QgsExpressionContextScope *> &scopes)
Appends a list of scopes to the end of the context.
QgsSymbol * symbol(const QString &name)
Returns a NEW copy of symbol.
static QgsMarkerSymbol * createSimple(const QgsStringMap &properties)
Create a marker symbol with one symbol layer: SimpleMarker with specified properties.
void setDataDefinedSize(const QgsProperty &property)
Set data defined size for whole symbol (including all symbol layers).
bool testFlag(Flag flag) const
Check whether a particular flag is enabled.
void setClipFeaturesToExtent(bool clipFeaturesToExtent)
Sets whether features drawn by the symbol should be clipped to the render context's extent...
qreal opacity() const
Returns the opacity for the symbol.
void setForceRHR(bool force)
Sets whether polygon features drawn by the symbol should be reoriented to follow the standard right-h...
Draw map such that there are no problems between adjacent tiles.
const QgsCurve * exteriorRing() const
Returns the curve polygon's exterior ring.
static void trimPolygon(QPolygonF &pts, const QgsRectangle &clipRect)
static const QString EXPR_GEOMETRY_PART_NUM
Inbuilt variable name for geometry part number variable.
QImage bigSymbolPreviewImage(QgsExpressionContext *expressionContext=nullptr)
Returns a large (roughly 100x100 pixel) preview image for the symbol.
QPointF offset() const
Returns the marker's offset, which is the horizontal and vertical displacement which the rendered mar...
Q_DECL_DEPRECATED const QgsVectorLayer * layer() const
Represents a vector layer which manages a vector based data sets.
static const QString EXPR_GEOMETRY_PART_COUNT
Inbuilt variable name for geometry part count variable.
static Type flatType(Type type)
Returns the flat type for a WKB type.
void setOriginalValueVariable(const QVariant &value)
Sets the original value variable value for the context.
Whether symbol layer is enabled.
virtual QgsAbstractGeometry * segmentize(double tolerance=M_PI/180., SegmentationToleranceType toleranceType=MaximumAngle) const
Returns a version of the geometry without curves.
void stopRender(QgsRenderContext &context)
Ends the rendering process.
virtual int numPoints() const =0
Returns the number of points in the curve.
qreal mOpacity
Symbol opacity (in the range 0 - 1)
QgsProperty dataDefinedWidth() const
Returns data defined width for whole symbol (including all symbol layers).
A class to manager painter saving and restoring required for effect drawing.
double angle() const
Returns the marker angle for the whole symbol.
QgsFillSymbol(const QgsSymbolLayerList &layers=QgsSymbolLayerList())
Constructor for QgsFillSymbol, with the specified list of initial symbol layers.
QgsMarkerSymbol * clone() const override
Returns a deep copy of this symbol.
QgsProperty property(int key) const override
Returns a matching property from the collection, if one exists.
QgsVectorLayer * clone() const override
Returns a new instance equivalent to this one.
RenderUnit
Rendering size units.
void setExpressionContext(const QgsExpressionContext &context)
Sets the expression context.
virtual void setDataDefinedProperty(Property key, const QgsProperty &property)
Sets a data defined property for the layer.
virtual int partCount() const =0
Returns count of parts contained in the geometry.
double height() const
Returns the height of the rectangle.
void setOffset(double offset)
virtual void startRender(QgsSymbolRenderContext &context)=0
QgsLineSymbol * clone() const override
Returns a deep copy of this symbol.
void setColor(const QColor &color)
Sets the color for the symbol.
QgsExpressionContextScope * expressionContextScope()
This scope is always available when a symbol of this type is being rendered.