37 void QgsSymbolLayer::initPropertyDefinitions()
39 if ( !sPropertyDefinitions.isEmpty() )
42 QString origin = QStringLiteral(
"symbol" );
108 Q_UNUSED( mmMapUnitScaleFactor );
109 Q_UNUSED( layerName );
144 return QVector<qreal>();
149 return Qt::SolidLine;
203 QgsSymbolLayer::initPropertyDefinitions();
204 return sPropertyDefinitions;
229 if ( !baseName.isEmpty() )
231 prefix.append( QStringLiteral(
"%1_dd_" ).arg( baseName ) );
234 if ( !map.contains( QStringLiteral(
"%1expression" ).arg( prefix ) ) )
240 bool active = ( map.value( QStringLiteral(
"%1active" ).arg( prefix ), QStringLiteral(
"1" ) ) != QLatin1String(
"0" ) );
241 QString expression = map.value( QStringLiteral(
"%1expression" ).arg( prefix ) );
242 bool useExpression = ( map.value( QStringLiteral(
"%1useexpr" ).arg( prefix ), QStringLiteral(
"1" ) ) != QLatin1String(
"0" ) );
243 QString field = map.value( QStringLiteral(
"%1field" ).arg( prefix ), QString() );
252 static const QMap< QString, QgsSymbolLayer::Property > OLD_PROPS
329 QgsStringMap::const_iterator propIt = stringMap.constBegin();
330 for ( ; propIt != stringMap.constEnd(); ++propIt )
333 QString propertyName;
335 if ( propIt.key().endsWith( QLatin1String(
"_dd_expression" ) ) )
340 propertyName = propIt.key().left( propIt.key().length() - 14 );
344 else if ( propIt.key().endsWith( QLatin1String(
"_expression" ) ) )
349 propertyName = propIt.key().left( propIt.key().length() - 11 );
354 if ( !prop || !OLD_PROPS.contains( propertyName ) )
362 if ( propertyName == QLatin1String(
"width" ) )
364 else if ( propertyName == QLatin1String(
"color" ) )
428 if ( effect && effect->
enabled() )
431 renderPoint( QPointF( size.width() / 2, size.height() / 2 ), context );
435 renderPoint( QPointF( size.width() / 2, size.height() / 2 ), context );
442 markerOffset( context, mSize, mSize, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
447 markerOffset( context, width, height, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
454 offsetX = mOffset.x();
455 offsetY = mOffset.y();
461 if ( exprVal.isValid() )
464 offsetX = offset.x();
465 offsetY = offset.y();
477 if ( exprVal.isValid() )
479 horizontalAnchorPoint = decodeHorizontalAnchorPoint( exprVal.toString() );
485 if ( exprVal.isValid() )
487 verticalAnchorPoint = decodeVerticalAnchorPoint( exprVal.toString() );
492 if ( horizontalAnchorPoint == HCenter && verticalAnchorPoint == VCenter )
499 if ( horizontalAnchorPoint == Left )
501 offsetX += anchorPointCorrectionX;
503 else if ( horizontalAnchorPoint == Right )
505 offsetX -= anchorPointCorrectionX;
509 if ( verticalAnchorPoint == Top )
511 offsetY += anchorPointCorrectionY;
513 else if ( verticalAnchorPoint == Bottom )
515 offsetY -= anchorPointCorrectionY;
522 double c = std::cos( angle ), s = std::sin( angle );
523 return QPointF( offset.x() * c - offset.y() * s, offset.x() * s + offset.y() *
c );
528 if ( str.compare( QLatin1String(
"left" ), Qt::CaseInsensitive ) == 0 )
532 else if ( str.compare( QLatin1String(
"right" ), Qt::CaseInsensitive ) == 0 )
544 if ( str.compare( QLatin1String(
"top" ), Qt::CaseInsensitive ) == 0 )
548 else if ( str.compare( QLatin1String(
"bottom" ), Qt::CaseInsensitive ) == 0 )
566 if ( mOffsetUnit != mSizeUnit )
575 mSizeMapUnitScale = scale;
576 mOffsetMapUnitScale = scale;
581 if ( mSizeMapUnitScale == mOffsetMapUnitScale )
583 return mSizeMapUnitScale;
600 mWidthMapUnitScale = scale;
605 return mWidthMapUnitScale;
614 points << QPointF( 0,
int( size.height() / 2 ) + 0.5 ) << QPointF( size.width(), int( size.height() / 2 ) + 0.5 );
618 if ( effect && effect->
enabled() )
621 renderPolyline( points, context );
625 renderPolyline( points, context );
632 switch ( mRingFilter )
635 case ExteriorRingOnly:
636 renderPolyline( points, context );
638 case InteriorRingsOnly:
644 switch ( mRingFilter )
647 case InteriorRingsOnly:
649 for (
const QPolygonF &ring : qgis::as_const( *rings ) )
650 renderPolyline( ring, context );
653 case ExteriorRingOnly:
673 QPolygonF poly = QRectF( QPointF( 0, 0 ), QPointF( size.width(), size.height() ) );
676 if ( effect && effect->
enabled() )
696 if ( points.size() <= 5 &&
699 ( p->renderHints() & QPainter::Antialiasing ) )
701 p->setRenderHint( QPainter::Antialiasing,
false );
702 p->drawRect( points.boundingRect() );
703 p->setRenderHint( QPainter::Antialiasing,
true );
709 if ( !rings && p->pen().style() == Qt::NoPen )
712 p->drawPolygon( points );
718 path.addPolygon( points );
722 QList<QPolygonF>::const_iterator it = rings->constBegin();
723 for ( ; it != rings->constEnd(); ++it )
725 QPolygonF ring = *it;
726 path.addPolygon( ring );
736 QDomElement symbolizerElem = doc.createElement( QStringLiteral(
"se:PointSymbolizer" ) );
737 if ( !props.value( QStringLiteral(
"uom" ), QString() ).isEmpty() )
738 symbolizerElem.setAttribute( QStringLiteral(
"uom" ), props.value( QStringLiteral(
"uom" ), QString() ) );
739 element.appendChild( symbolizerElem );
744 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.
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.
double symbologyScale() const
Returns the reference scale for output.
QgsLineSymbolLayer(bool locked=false)
void setMapUnitScale(const QgsMapUnitScale &scale) override
const QgsVectorSimplifyMethod & vectorSimplifyMethod() const
Added in QGIS v2.4.
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
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
static QPointF decodePoint(const QString &string)
Decodes a QSizeF from a string.
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.
virtual QgsPaintEffect * clone() const =0
Duplicates an effect by creating a deep copy of the effect.
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...
QgsSymbolLayer(QgsSymbol::SymbolType type, bool locked=false)
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.
void setEnabled(bool enabled)
Sets whether the effect is enabled.
Align to bottom of symbol.
static QgsPaintEffect * defaultStack()
Returns a new effect stack consisting of a sensible selection of default effects. ...
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.
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...
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.
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
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.
QgsMarkerSymbolLayer(bool locked=false)
Constructor for QgsMarkerSymbolLayer.
virtual QColor dxfColor(QgsSymbolRenderContext &context) const
Gets color.
QgsPaintEffect * mPaintEffect
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.
bool mEnabled
True if layer is enabled and should be drawn.
virtual ~QgsSymbolLayer()
virtual void renderPolygonStroke(const QPolygonF &points, QList< QPolygonF > *rings, QgsSymbolRenderContext &context)
bool hasActiveProperties() const override
Returns true if the collection has any active properties, or false if all properties within the colle...
QgsFillSymbolLayer(bool locked=false)
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)