38 void QgsSymbolLayer::initPropertyDefinitions()
40 if ( !sPropertyDefinitions.isEmpty() )
43 QString origin = QStringLiteral(
"symbol" );
110 Q_UNUSED( mmMapUnitScaleFactor )
111 Q_UNUSED( layerName )
146 return QVector<qreal>();
151 return Qt::SolidLine;
202 QgsSymbolLayer::initPropertyDefinitions();
203 return sPropertyDefinitions;
235 if ( !baseName.isEmpty() )
237 prefix.append( QStringLiteral(
"%1_dd_" ).arg( baseName ) );
240 if ( !map.contains( QStringLiteral(
"%1expression" ).arg( prefix ) ) )
246 bool active = ( map.value( QStringLiteral(
"%1active" ).arg( prefix ), QStringLiteral(
"1" ) ) != QLatin1String(
"0" ) );
247 QString expression = map.value( QStringLiteral(
"%1expression" ).arg( prefix ) );
248 bool useExpression = ( map.value( QStringLiteral(
"%1useexpr" ).arg( prefix ), QStringLiteral(
"1" ) ) != QLatin1String(
"0" ) );
249 QString field = map.value( QStringLiteral(
"%1field" ).arg( prefix ), QString() );
258 static const QMap< QString, QgsSymbolLayer::Property > OLD_PROPS
335 QgsStringMap::const_iterator propIt = stringMap.constBegin();
336 for ( ; propIt != stringMap.constEnd(); ++propIt )
339 QString propertyName;
341 if ( propIt.key().endsWith( QLatin1String(
"_dd_expression" ) ) )
346 propertyName = propIt.key().left( propIt.key().length() - 14 );
350 else if ( propIt.key().endsWith( QLatin1String(
"_expression" ) ) )
355 propertyName = propIt.key().left( propIt.key().length() - 11 );
360 if ( !prop || !OLD_PROPS.contains( propertyName ) )
368 if ( propertyName == QLatin1String(
"width" ) )
370 else if ( propertyName == QLatin1String(
"color" ) )
437 if ( effect && effect->
enabled() )
440 renderPoint( QPointF( size.width() / 2, size.height() / 2 ), context );
444 renderPoint( QPointF( size.width() / 2, size.height() / 2 ), context );
451 markerOffset( context, mSize, mSize, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
456 markerOffset( context, width, height, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
463 offsetX = mOffset.x();
464 offsetY = mOffset.y();
474 offsetX = offset.x();
475 offsetY = offset.y();
487 if ( exprVal.isValid() )
489 horizontalAnchorPoint = decodeHorizontalAnchorPoint( exprVal.toString() );
495 if ( exprVal.isValid() )
497 verticalAnchorPoint = decodeVerticalAnchorPoint( exprVal.toString() );
502 if ( horizontalAnchorPoint == HCenter && verticalAnchorPoint == VCenter )
509 if ( horizontalAnchorPoint == Left )
511 offsetX += anchorPointCorrectionX;
513 else if ( horizontalAnchorPoint == Right )
515 offsetX -= anchorPointCorrectionX;
519 if ( verticalAnchorPoint == Top )
521 offsetY += anchorPointCorrectionY;
523 else if ( verticalAnchorPoint == Bottom )
525 offsetY -= anchorPointCorrectionY;
532 double c = std::cos( angle ), s = std::sin( angle );
533 return QPointF( offset.x() * c - offset.y() * s, offset.x() * s + offset.y() *
c );
538 if ( str.compare( QLatin1String(
"left" ), Qt::CaseInsensitive ) == 0 )
542 else if ( str.compare( QLatin1String(
"right" ), Qt::CaseInsensitive ) == 0 )
554 if ( str.compare( QLatin1String(
"top" ), Qt::CaseInsensitive ) == 0 )
558 else if ( str.compare( QLatin1String(
"bottom" ), Qt::CaseInsensitive ) == 0 )
576 if ( mOffsetUnit != mSizeUnit )
585 mSizeMapUnitScale = scale;
586 mOffsetMapUnitScale = scale;
591 if ( mSizeMapUnitScale == mOffsetMapUnitScale )
593 return mSizeMapUnitScale;
610 mWidthMapUnitScale = scale;
615 return mWidthMapUnitScale;
624 points << QPointF( 0,
int( size.height() / 2 ) + 0.5 ) << QPointF( size.width(), int( size.height() / 2 ) + 0.5 );
628 if ( effect && effect->
enabled() )
631 renderPolyline( points, context );
635 renderPolyline( points, context );
642 switch ( mRingFilter )
645 case ExteriorRingOnly:
646 renderPolyline( points, context );
648 case InteriorRingsOnly:
654 switch ( mRingFilter )
657 case InteriorRingsOnly:
659 for (
const QPolygonF &ring : qgis::as_const( *rings ) )
660 renderPolyline( ring, context );
663 case ExteriorRingOnly:
683 QPolygonF poly = QRectF( QPointF( 0, 0 ), QPointF( size.width(), size.height() ) );
686 if ( effect && effect->
enabled() )
706 if ( points.size() <= 5 &&
709 ( p->renderHints() & QPainter::Antialiasing ) )
711 p->setRenderHint( QPainter::Antialiasing,
false );
712 p->drawRect( points.boundingRect() );
713 p->setRenderHint( QPainter::Antialiasing,
true );
719 if ( !rings && p->pen().style() == Qt::NoPen )
722 p->drawPolygon( points );
728 path.addPolygon( points );
732 QList<QPolygonF>::const_iterator it = rings->constBegin();
733 for ( ; it != rings->constEnd(); ++it )
735 QPolygonF ring = *it;
736 path.addPolygon( ring );
746 QDomElement symbolizerElem = doc.createElement( QStringLiteral(
"se:PointSymbolizer" ) );
747 if ( !props.value( QStringLiteral(
"uom" ), QString() ).isEmpty() )
748 symbolizerElem.setAttribute( QStringLiteral(
"uom" ), props.value( QStringLiteral(
"uom" ), QString() ) );
749 element.appendChild( symbolizerElem );
754 writeSldMarker( doc, symbolizerElem, props );
void setProperty(int key, const QgsProperty &property)
Adds a property to the collection and takes ownership of it.
QgsMapUnitScale mapUnitScale() const override
virtual QVector< qreal > dxfCustomDashPattern(QgsUnitTypes::RenderUnit &unit) const
Gets dash pattern.
QgsLineSymbolLayer(const QgsLineSymbolLayer &other)=delete
QgsLineSymbolLayer cannot be copied.
RenderRingFilter ringFilter() const
Returns the line symbol layer's ring filter, which controls which rings are rendered when the line sy...
Gradient reference point 1 is centroid.
QgsFillSymbolLayer(const QgsFillSymbolLayer &other)=delete
QgsFillSymbolLayer cannot be copied.
double symbologyScale() const
Returns the reference scale for output.
void setRenderingPass(int renderingPass)
Specifies the rendering pass in which this symbol layer should be rendered.
void setMapUnitScale(const QgsMapUnitScale &scale) override
static QPointF toPoint(const QVariant &value, bool *ok=nullptr)
Converts a value to a point.
const QgsVectorSimplifyMethod & vectorSimplifyMethod() const
Returns the simplification settings to use when rendering vector layers.
Gradient reference point 1 x.
QgsFields fields() const
Fields of the layer.
QgsUnitTypes::RenderUnit outputUnit() const override
Returns the units to use for sizes and widths within the symbol layer.
QgsPaintEffect * paintEffect() const
Returns the current paint effect for the layer.
1D size (eg marker radius, or square marker height/width)
Abstract base class for all rendered symbols.
virtual double dxfOffset(const QgsDxfExport &e, QgsSymbolRenderContext &context) const
Gets offset.
Align to right side of symbol.
virtual void prepareExpressions(const QgsSymbolRenderContext &context)
Prepares all data defined property expressions for evaluation.
void startRender(QgsSymbolRenderContext &context) override
QgsMarkerSymbolLayer(const QgsMarkerSymbolLayer &other)=delete
QgsMarkerSymbolLayer cannot be copied.
static bool isDefaultStack(QgsPaintEffect *effect)
Tests whether a paint effect matches the default effects stack.
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
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 copyPaintEffect(QgsSymbolLayer *destLayer) const
Copies paint effect of this layer to another symbol layer.
void restoreOldDataDefinedProperties(const QgsStringMap &stringMap)
Restores older data defined properties from string map.
void _renderPolygon(QPainter *p, const QPolygonF &points, const QList< QPolygonF > *rings, QgsSymbolRenderContext &context)
Default method to render polygon.
Color with alpha channel.
QgsUnitTypes::DistanceUnit mapUnits() const
Retrieve map units.
virtual double dxfWidth(const QgsDxfExport &e, QgsSymbolRenderContext &context) const
Gets line width.
Positive double value (including 0)
void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size) override
Align to horizontal center of symbol.
double dxfWidth(const QgsDxfExport &e, QgsSymbolRenderContext &context) const override
Gets line width.
QMap< QString, QString > QgsStringMap
Shapeburst use whole shape.
static QString encodePoint(QPointF point)
Encodes a QPointF to a string.
virtual double width() const
Returns the estimated width for the line symbol layer.
Rotation (value between 0-360 degrees)
Name, eg shape name for simple markers.
Gradient reference point 2 y.
bool isActive(int key) const override
Returns true if the collection contains an active property with the specified key.
QgsProperty propertyFromMap(const QgsStringMap &map, const QString &baseName)
virtual bool hasDataDefinedProperties() const
Returns true if the symbol layer (or any of its sub-symbols) contains data defined properties...
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
virtual void renderPolygon(const QPolygonF &points, QList< QPolygonF > *rings, QgsSymbolRenderContext &context)=0
SymbolType
Type of the symbol.
QVariant value(int key, const QgsExpressionContext &context, const QVariant &defaultValue=QVariant()) const override
Returns the calculated value of the property with the specified key from within the collection...
void setOriginalValueVariable(const QVariant &value)
Sets the original value variable value for data defined symbology.
bool prepare(const QgsExpressionContext &context=QgsExpressionContext()) const override
Prepares the collection against a specified expression context.
int renderingPass() const
Specifies the rendering pass in which this symbol layer should be rendered.
Align to bottom of symbol.
QgsUnitTypes::RenderUnit outputUnit() const override
Returns the units to use for sizes and widths within the symbol layer.
The geometries can be rendered with 'AntiAliasing' disabled because of it is '1-pixel size'...
Gradient coordinate mode.
QgsPropertyCollection & dataDefinedProperties()
Returns a reference to the symbol layer's property collection, used for data defined overrides...
virtual Qt::BrushStyle dxfBrushStyle() const
Gets brush/fill style.
static double mapUnitScaleFactor(double scale, QgsUnitTypes::RenderUnit symbolUnits, QgsUnitTypes::DistanceUnit mapUnits, double mapUnitsPerPixel=1.0)
Returns scale factor for conversion to map units.
Property requires a numeric value.
virtual QColor color() const
The fill color.
Filename, eg for svg files.
float threshold() const
Gets the simplification threshold of the vector layer managed.
Align to left side of symbol.
void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size) override
void markerOffset(QgsSymbolRenderContext &context, double &offsetX, double &offsetY) const
Calculates the required marker offset, including both the symbol offset and any displacement required...
Shapeburst fill from edge distance.
QgsSymbolLayer(const QgsSymbolLayer &other)=delete
QgsSymbolLayer cannot be copied.
QgsSymbol::SymbolType type() const
void setPaintEffect(QgsPaintEffect *effect)
Sets the current paint effect for the layer.
bool enabled() const
Returns whether the effect is enabled.
Character, eg for font marker symbol layers.
double mapUnitsPerPixel() const
Returns current map units per pixel.
A store for object properties.
Fill style (eg solid, lines)
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
RenderRingFilter
Options for filtering rings when the line symbol layer is being used to render a polygon's rings...
std::unique_ptr< QgsPaintEffect > mPaintEffect
Definition for a property.
HorizontalAnchorPoint
Symbol horizontal anchor points.
Gradient reference point 1 y.
virtual QColor dxfBrushColor(QgsSymbolRenderContext &context) const
Gets brush/fill color.
QMap< int, QgsPropertyDefinition > QgsPropertiesDefinition
Definition of available properties.
VerticalAnchorPoint
Symbol vertical anchor points.
static void createGeometryElement(QDomDocument &doc, QDomElement &element, const QString &geomFunc)
QgsExpressionContext & expressionContext()
Gets the expression context.
virtual Qt::PenStyle dxfPenStyle() const
Gets pen style.
virtual bool isCompatibleWithSymbol(QgsSymbol *symbol) const
Returns if the layer can be used below the specified symbol.
Line angle, or angle of hash lines for hash line symbols.
QSet< QString > referencedFields(const QgsExpressionContext &context=QgsExpressionContext()) const override
Returns the set of any fields referenced by the active properties from the collection.
Stroke style (eg solid, dashed)
Preserve aspect ratio between width and height.
virtual QSet< QString > usedAttributes(const QgsRenderContext &context) const
Returns the set of attributes referenced by the layer.
Contains information about the context of a rendering operation.
double convertToPainterUnits(double size, QgsUnitTypes::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale()) const
Converts a size from the specified units to painter units (pixels).
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
RenderRingFilter mRingFilter
Property requires a string value.
SymbolType type() const
Returns the symbol's type.
Struct for storing maximum and minimum scales for measurements in map units.
virtual void stopRender(QgsSymbolRenderContext &context)=0
void setMapUnitScale(const QgsMapUnitScale &scale) override
virtual double dxfAngle(QgsSymbolRenderContext &context) const
Gets angle.
virtual QColor dxfColor(QgsSymbolRenderContext &context) const
Gets color.
Distance between lines, or length of lines for hash line symbols.
Line style (eg solid/dashed)
void setRingFilter(QgsLineSymbolLayer::RenderRingFilter filter)
Sets the line symbol layer's ring filter, which controls which rings are rendered when the line symbo...
SimplifyHints simplifyHints() const
Gets the simplification hints of the vector layer managed.
Align to vertical center of symbol.
Secondary color (eg for gradient fills)
bool isEmpty() const
Checks whether the container is empty.
virtual ~QgsSymbolLayer()
virtual void renderPolygonStroke(const QPolygonF &points, QList< QPolygonF > *rings, QgsSymbolRenderContext &context)
Renders the line symbol layer along the outline of polygon, using the given render context...
Length to average symbol angles over.
bool hasActiveProperties() const override
Returns true if the collection has any active properties, or false if all properties within the colle...
void stopRender(QgsSymbolRenderContext &context) override
static QPointF _rotatedOffset(QPointF offset, double angle)
Adjusts a marker offset to account for rotation.
void toSld(QDomDocument &doc, QDomElement &element, const QgsStringMap &props) const override
static const QgsPropertiesDefinition & propertyDefinitions()
Returns the symbol layer property definitions.
virtual bool writeDxf(QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, QgsSymbolRenderContext &context, QPointF shift=QPointF(0.0, 0.0)) const
write as DXF
static bool isGeneralizableByDeviceBoundingBox(const QgsRectangle &envelope, float mapToPixelTol=1.0f)
Returns whether the device-envelope can be replaced by its BBOX when is applied the specified toleran...
Line cap style (eg round)
Fill style (eg solid, dots)
Whether symbol layer is enabled.
void setOutputUnit(QgsUnitTypes::RenderUnit unit) override
Sets the units to use for sizes and widths within the symbol layer.
Gradient reference point 2 is centroid.
A class to manager painter saving and restoring required for effect drawing.
QgsSymbol::SymbolType mType
Gradient reference point 2 x.
QgsPropertyCollection mDataDefinedProperties
QgsMapUnitScale mapUnitScale() const override
void setDataDefinedProperties(const QgsPropertyCollection &collection)
Sets the symbol layer's property collection, used for data defined overrides.
void setOutputUnit(QgsUnitTypes::RenderUnit unit) override
Sets the units to use for sizes and widths within the symbol layer.
Property
Data definable properties.
RenderUnit
Rendering size units.
virtual void setDataDefinedProperty(Property key, const QgsProperty &property)
Sets a data defined property for the layer.
void copyDataDefinedProperties(QgsSymbolLayer *destLayer) const
Copies all data defined properties of this layer to another symbol layer.
virtual void startRender(QgsSymbolRenderContext &context)=0
Horizontal distance between points.
void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size) override
Vertical distance between points.
Double value between 0-1 (inclusive)