QGIS API Documentation 3.99.0-Master (21b3aa880ba)
Loading...
Searching...
No Matches
qgssymbollayer.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgssymbollayer.cpp
3 ---------------------
4 begin : November 2009
5 copyright : (C) 2009 by Martin Dobias
6 email : wonder dot sk at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#include "qgssymbollayer.h"
17
18#include "qgsdxfexport.h"
22#include "qgsgeos.h"
23#include "qgslegendpatchshape.h"
24#include "qgspainteffect.h"
26#include "qgsproperty.h"
27#include "qgsrendercontext.h"
28#include "qgssldexportcontext.h"
29#include "qgsstyle.h"
30#include "qgssymbol.h"
32#include "qgssymbollayerutils.h"
33
34#include <QPainter>
35#include <QPointF>
36#include <QPolygonF>
37#include <QSize>
38#include <QUuid>
39
40QgsPropertiesDefinition QgsSymbolLayer::sPropertyDefinitions;
41
42void QgsSymbolLayer::initPropertyDefinitions()
43{
44 if ( !sPropertyDefinitions.isEmpty() )
45 return;
46
47 QString origin = QStringLiteral( "symbol" );
48
49 sPropertyDefinitions = QgsPropertiesDefinition
50 {
51 { static_cast< int >( QgsSymbolLayer::Property::Size ), QgsPropertyDefinition( "size", QObject::tr( "Symbol size" ), QgsPropertyDefinition::Size, origin ) },
52 { static_cast< int >( QgsSymbolLayer::Property::Angle ), QgsPropertyDefinition( "angle", QObject::tr( "Rotation angle" ), QgsPropertyDefinition::Rotation, origin ) },
53 { static_cast< int >( QgsSymbolLayer::Property::Name ), QgsPropertyDefinition( "name", QObject::tr( "Symbol name" ), QgsPropertyDefinition::String, origin ) },
54 { static_cast< int >( QgsSymbolLayer::Property::FillColor ), QgsPropertyDefinition( "fillColor", QObject::tr( "Symbol fill color" ), QgsPropertyDefinition::ColorWithAlpha, origin ) },
55 { static_cast< int >( QgsSymbolLayer::Property::StrokeColor ), QgsPropertyDefinition( "outlineColor", QObject::tr( "Symbol stroke color" ), QgsPropertyDefinition::ColorWithAlpha, origin ) },
56 { static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ), QgsPropertyDefinition( "outlineWidth", QObject::tr( "Symbol stroke width" ), QgsPropertyDefinition::StrokeWidth, origin ) },
57 { static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ), QgsPropertyDefinition( "outlineStyle", QObject::tr( "Symbol stroke style" ), QgsPropertyDefinition::LineStyle, origin )},
58 { static_cast< int >( QgsSymbolLayer::Property::Offset ), QgsPropertyDefinition( "offset", QObject::tr( "Symbol offset" ), QgsPropertyDefinition::Offset, origin )},
59 { static_cast< int >( QgsSymbolLayer::Property::Character ), QgsPropertyDefinition( "char", QObject::tr( "Marker character(s)" ), QgsPropertyDefinition::String, origin )},
60 { static_cast< int >( QgsSymbolLayer::Property::FontFamily ), QgsPropertyDefinition( "fontFamily", QObject::tr( "Font family" ), QgsPropertyDefinition::String, origin )},
61 { static_cast< int >( QgsSymbolLayer::Property::FontStyle ), QgsPropertyDefinition( "fontStyle", QObject::tr( "Font style" ), QgsPropertyDefinition::String, origin )},
62 { static_cast< int >( QgsSymbolLayer::Property::Width ), QgsPropertyDefinition( "width", QObject::tr( "Symbol width" ), QgsPropertyDefinition::DoublePositive, origin )},
63 { static_cast< int >( QgsSymbolLayer::Property::Height ), QgsPropertyDefinition( "height", QObject::tr( "Symbol height" ), QgsPropertyDefinition::DoublePositive, origin )},
64 { static_cast< int >( QgsSymbolLayer::Property::PreserveAspectRatio ), QgsPropertyDefinition( "preserveAspectRatio", QObject::tr( "Preserve aspect ratio between width and height" ), QgsPropertyDefinition::Boolean, origin )},
65 { static_cast< int >( QgsSymbolLayer::Property::FillStyle ), QgsPropertyDefinition( "fillStyle", QObject::tr( "Symbol fill style" ), QgsPropertyDefinition::FillStyle, origin )},
66 { static_cast< int >( QgsSymbolLayer::Property::JoinStyle ), QgsPropertyDefinition( "joinStyle", QObject::tr( "Outline join style" ), QgsPropertyDefinition::PenJoinStyle, origin )},
67 { static_cast< int >( QgsSymbolLayer::Property::SecondaryColor ), QgsPropertyDefinition( "color2", QObject::tr( "Secondary fill color" ), QgsPropertyDefinition::ColorWithAlpha, origin )},
68 { static_cast< int >( QgsSymbolLayer::Property::LineAngle ), QgsPropertyDefinition( "lineAngle", QObject::tr( "Angle for line fills" ), QgsPropertyDefinition::Rotation, origin )},
69 { static_cast< int >( QgsSymbolLayer::Property::GradientType ), QgsPropertyDefinition( "gradientType", QgsPropertyDefinition::DataTypeString, QObject::tr( "Gradient type" ), QObject::tr( "string " ) + QLatin1String( "[<b>linear</b>|<b>radial</b>|<b>conical</b>]" ), origin )},
70 { static_cast< int >( QgsSymbolLayer::Property::CoordinateMode ), QgsPropertyDefinition( "gradientMode", QgsPropertyDefinition::DataTypeString, QObject::tr( "Gradient mode" ), QObject::tr( "string " ) + QLatin1String( "[<b>feature</b>|<b>viewport</b>]" ), origin )},
71 { static_cast< int >( QgsSymbolLayer::Property::GradientSpread ), QgsPropertyDefinition( "gradientSpread", QgsPropertyDefinition::DataTypeString, QObject::tr( "Gradient spread" ), QObject::tr( "string " ) + QLatin1String( "[<b>pad</b>|<b>repeat</b>|<b>reflect</b>]" ), origin )},
72 { static_cast< int >( QgsSymbolLayer::Property::GradientReference1X ), QgsPropertyDefinition( "gradientRef1X", QObject::tr( "Reference point 1 (X)" ), QgsPropertyDefinition::Double0To1, origin )},
73 { static_cast< int >( QgsSymbolLayer::Property::GradientReference1Y ), QgsPropertyDefinition( "gradientRef1Y", QObject::tr( "Reference point 1 (Y)" ), QgsPropertyDefinition::Double0To1, origin )},
74 { static_cast< int >( QgsSymbolLayer::Property::GradientReference2X ), QgsPropertyDefinition( "gradientRef2X", QObject::tr( "Reference point 2 (X)" ), QgsPropertyDefinition::Double0To1, origin )},
75 { static_cast< int >( QgsSymbolLayer::Property::GradientReference2Y ), QgsPropertyDefinition( "gradientRef2Y", QObject::tr( "Reference point 2 (Y)" ), QgsPropertyDefinition::Double0To1, origin )},
76 { static_cast< int >( QgsSymbolLayer::Property::GradientReference1IsCentroid ), QgsPropertyDefinition( "gradientRef1Centroid", QObject::tr( "Reference point 1 follows feature centroid" ), QgsPropertyDefinition::Boolean, origin )},
77 { static_cast< int >( QgsSymbolLayer::Property::GradientReference2IsCentroid ), QgsPropertyDefinition( "gradientRef2Centroid", QObject::tr( "Reference point 2 follows feature centroid" ), QgsPropertyDefinition::Boolean, origin )},
78 { static_cast< int >( QgsSymbolLayer::Property::BlurRadius ), QgsPropertyDefinition( "blurRadius", QgsPropertyDefinition::DataTypeNumeric, QObject::tr( "Blur radius" ), QObject::tr( "Integer between 0 and 18" ), origin )},
79 { static_cast< int >( QgsSymbolLayer::Property::LineDistance ), QgsPropertyDefinition( "lineDistance", QObject::tr( "Distance between lines" ), QgsPropertyDefinition::DoublePositive, origin )},
80 { static_cast< int >( QgsSymbolLayer::Property::ShapeburstUseWholeShape ), QgsPropertyDefinition( "shapeburstWholeShape", QObject::tr( "Shade whole shape" ), QgsPropertyDefinition::Boolean, origin )},
81 { static_cast< int >( QgsSymbolLayer::Property::ShapeburstMaxDistance ), QgsPropertyDefinition( "shapeburstMaxDist", QObject::tr( "Maximum distance for shapeburst fill" ), QgsPropertyDefinition::DoublePositive, origin )},
82 { static_cast< int >( QgsSymbolLayer::Property::ShapeburstIgnoreRings ), QgsPropertyDefinition( "shapeburstIgnoreRings", QObject::tr( "Ignore rings in feature" ), QgsPropertyDefinition::Boolean, origin )},
83 { static_cast< int >( QgsSymbolLayer::Property::File ), QgsPropertyDefinition( "file", QObject::tr( "Symbol file path" ), QgsPropertyDefinition::String, origin )},
84 { static_cast< int >( QgsSymbolLayer::Property::DistanceX ), QgsPropertyDefinition( "distanceX", QObject::tr( "Horizontal distance between markers" ), QgsPropertyDefinition::DoublePositive, origin )},
85 { static_cast< int >( QgsSymbolLayer::Property::DistanceY ), QgsPropertyDefinition( "distanceY", QObject::tr( "Vertical distance between markers" ), QgsPropertyDefinition::DoublePositive, origin )},
86 { static_cast< int >( QgsSymbolLayer::Property::DisplacementX ), QgsPropertyDefinition( "displacementX", QObject::tr( "Horizontal displacement between rows" ), QgsPropertyDefinition::DoublePositive, origin )},
87 { static_cast< int >( QgsSymbolLayer::Property::DisplacementY ), QgsPropertyDefinition( "displacementY", QObject::tr( "Vertical displacement between columns" ), QgsPropertyDefinition::DoublePositive, origin )},
88 { static_cast< int >( QgsSymbolLayer::Property::OffsetX ), QgsPropertyDefinition( "offsetX", QObject::tr( "Horizontal offset" ), QgsPropertyDefinition::Double, origin )},
89 { static_cast< int >( QgsSymbolLayer::Property::OffsetY ), QgsPropertyDefinition( "offsetY", QObject::tr( "Vertical offset" ), QgsPropertyDefinition::Double, origin )},
90 { static_cast< int >( QgsSymbolLayer::Property::Opacity ), QgsPropertyDefinition( "alpha", QObject::tr( "Opacity" ), QgsPropertyDefinition::Opacity, origin )},
91 { static_cast< int >( QgsSymbolLayer::Property::CustomDash ), QgsPropertyDefinition( "customDash", QgsPropertyDefinition::DataTypeString, QObject::tr( "Custom dash pattern" ), QObject::tr( "[<b><dash>;<space></b>] e.g. '8;2;1;2'" ), origin )},
92 { static_cast< int >( QgsSymbolLayer::Property::CapStyle ), QgsPropertyDefinition( "capStyle", QObject::tr( "Line cap style" ), QgsPropertyDefinition::CapStyle, origin )},
93 { static_cast< int >( QgsSymbolLayer::Property::Placement ), QgsPropertyDefinition( "placement", QgsPropertyDefinition::DataTypeString, QObject::tr( "Marker placement" ), QObject::tr( "string " ) + "[<b>interval</b>|<b>innervertices</b>|<b>vertex</b>|<b>lastvertex</b>|<b>firstvertex</b>|<b>centerpoint</b>|<b>curvepoint</b>|<b>segmentcenter</b>]", origin )},
94 { static_cast< int >( QgsSymbolLayer::Property::Interval ), QgsPropertyDefinition( "interval", QObject::tr( "Marker interval" ), QgsPropertyDefinition::DoublePositive, origin )},
95 { static_cast< int >( QgsSymbolLayer::Property::OffsetAlongLine ), QgsPropertyDefinition( "offsetAlongLine", QObject::tr( "Offset along line" ), QgsPropertyDefinition::Double, origin )},
96 { static_cast< int >( QgsSymbolLayer::Property::AverageAngleLength ), QgsPropertyDefinition( "averageAngleLength", QObject::tr( "Average line angles over" ), QgsPropertyDefinition::DoublePositive, origin )},
97 { static_cast< int >( QgsSymbolLayer::Property::HorizontalAnchor ), QgsPropertyDefinition( "hAnchor", QObject::tr( "Horizontal anchor point" ), QgsPropertyDefinition::HorizontalAnchor, origin )},
98 { static_cast< int >( QgsSymbolLayer::Property::VerticalAnchor ), QgsPropertyDefinition( "vAnchor", QObject::tr( "Vertical anchor point" ), QgsPropertyDefinition::VerticalAnchor, origin )},
99 { static_cast< int >( QgsSymbolLayer::Property::LayerEnabled ), QgsPropertyDefinition( "enabled", QObject::tr( "Layer enabled" ), QgsPropertyDefinition::Boolean, origin )},
100 { static_cast< int >( QgsSymbolLayer::Property::ArrowWidth ), QgsPropertyDefinition( "arrowWidth", QObject::tr( "Arrow line width" ), QgsPropertyDefinition::StrokeWidth, origin )},
101 { static_cast< int >( QgsSymbolLayer::Property::ArrowStartWidth ), QgsPropertyDefinition( "arrowStartWidth", QObject::tr( "Arrow line start width" ), QgsPropertyDefinition::StrokeWidth, origin )},
102 { static_cast< int >( QgsSymbolLayer::Property::ArrowHeadLength ), QgsPropertyDefinition( "arrowHeadLength", QObject::tr( "Arrow head length" ), QgsPropertyDefinition::DoublePositive, origin )},
103 { static_cast< int >( QgsSymbolLayer::Property::ArrowHeadThickness ), QgsPropertyDefinition( "arrowHeadThickness", QObject::tr( "Arrow head thickness" ), QgsPropertyDefinition::DoublePositive, origin )},
104 { static_cast< int >( QgsSymbolLayer::Property::ArrowHeadType ), QgsPropertyDefinition( "arrowHeadType", QgsPropertyDefinition::DataTypeString, QObject::tr( "Arrow head type" ), QObject::tr( "string " ) + QLatin1String( "[<b>single</b>|<b>reversed</b>|<b>double</b>]" ), origin )},
105 { static_cast< int >( QgsSymbolLayer::Property::ArrowType ), QgsPropertyDefinition( "arrowType", QgsPropertyDefinition::DataTypeString, QObject::tr( "Arrow type" ), QObject::tr( "string " ) + QLatin1String( "[<b>plain</b>|<b>lefthalf</b>|<b>righthalf</b>]" ), origin )},
106 { static_cast< int >( QgsSymbolLayer::Property::PointCount ), QgsPropertyDefinition( "pointCount", QObject::tr( "Point count" ), QgsPropertyDefinition::IntegerPositive, origin )},
107 { static_cast< int >( QgsSymbolLayer::Property::RandomSeed ), QgsPropertyDefinition( "randomSeed", QgsPropertyDefinition::DataTypeNumeric, QObject::tr( "Random number seed" ), QObject::tr( "integer > 0, or 0 for completely random sequence" ), origin )},
108 { static_cast< int >( QgsSymbolLayer::Property::ClipPoints ), QgsPropertyDefinition( "clipPoints", QObject::tr( "Clip markers" ), QgsPropertyDefinition::Boolean, origin )},
109 { static_cast< int >( QgsSymbolLayer::Property::DensityArea ), QgsPropertyDefinition( "densityArea", QObject::tr( "Density area" ), QgsPropertyDefinition::DoublePositive, origin )},
110 { static_cast< int >( QgsSymbolLayer::Property::DashPatternOffset ), QgsPropertyDefinition( "dashPatternOffset", QObject::tr( "Dash pattern offset" ), QgsPropertyDefinition::DoublePositive, origin )},
111 { static_cast< int >( QgsSymbolLayer::Property::TrimStart ), QgsPropertyDefinition( "trimStart", QObject::tr( "Start trim distance" ), QgsPropertyDefinition::DoublePositive, origin )},
112 { static_cast< int >( QgsSymbolLayer::Property::TrimEnd ), QgsPropertyDefinition( "trimEnd", QObject::tr( "End trim distance" ), QgsPropertyDefinition::DoublePositive, origin )},
113 { static_cast< int >( QgsSymbolLayer::Property::LineStartWidthValue ), QgsPropertyDefinition( "lineStartWidthValue", QObject::tr( "Line start width value" ), QgsPropertyDefinition::Double, origin )},
114 { static_cast< int >( QgsSymbolLayer::Property::LineEndWidthValue ), QgsPropertyDefinition( "lineEndWidthValue", QObject::tr( "Line end width value" ), QgsPropertyDefinition::Double, origin )},
115 { static_cast< int >( QgsSymbolLayer::Property::LineStartColorValue ), QgsPropertyDefinition( "lineStartColorValue", QObject::tr( "Line start color value" ), QgsPropertyDefinition::Double, origin )},
116 { static_cast< int >( QgsSymbolLayer::Property::LineEndColorValue ), QgsPropertyDefinition( "lineEndColorValue", QObject::tr( "Line end color value" ), QgsPropertyDefinition::Double, origin )},
117 { static_cast< int >( QgsSymbolLayer::Property::MarkerClipping ), QgsPropertyDefinition( "markerClipping", QgsPropertyDefinition::DataTypeString, QObject::tr( "Marker clipping mode" ), QObject::tr( "string " ) + QLatin1String( "[<b>no</b>|<b>shape</b>|<b>centroid_within</b>|<b>completely_within</b>]" ), origin )},
118 { static_cast< int >( QgsSymbolLayer::Property::RandomOffsetX ), QgsPropertyDefinition( "randomOffsetX", QObject::tr( "Horizontal random offset" ), QgsPropertyDefinition::Double, origin )},
119 { static_cast< int >( QgsSymbolLayer::Property::RandomOffsetY ), QgsPropertyDefinition( "randomOffsetY", QObject::tr( "Vertical random offset" ), QgsPropertyDefinition::Double, origin )},
120 { static_cast< int >( QgsSymbolLayer::Property::LineClipping ), QgsPropertyDefinition( "lineClipping", QgsPropertyDefinition::DataTypeString, QObject::tr( "Line clipping mode" ), QObject::tr( "string " ) + QLatin1String( "[<b>no</b>|<b>during_render</b>|<b>before_render</b>]" ), origin )},
121 { static_cast< int >( QgsSymbolLayer::Property::SkipMultiples ), QgsPropertyDefinition( "skipMultiples", QObject::tr( "Skip multiples of" ), QgsPropertyDefinition::DoublePositive, origin )},
122 { static_cast< int >( QgsSymbolLayer::Property::ShowMarker ), QgsPropertyDefinition( "showMarker", QObject::tr( "Show marker" ), QgsPropertyDefinition::Boolean, origin )},
123 { static_cast< int >( QgsSymbolLayer::Property::BlankSegments ), QgsPropertyDefinition( "blankSegments", QObject::tr( "Line blank segments" ), QgsPropertyDefinition::String, origin )},
124 };
125}
126
131
133{
134 installMasks( context, false );
135
136 if ( QgsSymbol *lSubSymbol = subSymbol() )
137 lSubSymbol->startFeatureRender( feature, context );
138}
139
141{
142 if ( QgsSymbol *lSubSymbol = subSymbol() )
143 lSubSymbol->stopFeatureRender( feature, context );
144
145 removeMasks( context, false );
146}
147
149{
150 return nullptr;
151}
152
154{
155 delete symbol;
156 return false;
157}
158
159bool QgsSymbolLayer::writeDxf( QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, QgsSymbolRenderContext &context, QPointF shift ) const
160{
161 Q_UNUSED( e )
162 Q_UNUSED( mmMapUnitScaleFactor )
163 Q_UNUSED( layerName )
164 Q_UNUSED( context )
165 Q_UNUSED( shift )
166 return false;
167}
168
170{
171 Q_UNUSED( e )
172 Q_UNUSED( context )
173 return 1.0;
174}
175
177{
178 Q_UNUSED( e )
179 Q_UNUSED( context )
180 return 1.0;
181}
182
184{
185 Q_UNUSED( e )
186 Q_UNUSED( context )
187 return 0.0;
188}
189
191{
192 Q_UNUSED( context )
193 return color();
194}
195
197{
198 Q_UNUSED( context )
199 return 0.0;
200}
201
203{
204 Q_UNUSED( unit )
205 return QVector<qreal>();
206}
207
208Qt::PenStyle QgsSymbolLayer::dxfPenStyle() const
209{
210 return Qt::SolidLine;
211}
212
214{
215 Q_UNUSED( context )
216 return color();
217}
218
219Qt::BrushStyle QgsSymbolLayer::dxfBrushStyle() const
220{
221 return Qt::NoBrush;
222}
223
225{
226 return mPaintEffect.get();
227}
228
230{
231 if ( effect == mPaintEffect.get() )
232 return;
233
234 mPaintEffect.reset( effect );
235}
236
238 : mType( other.mType )
239 , mEnabled( other.mEnabled )
240 , mUserFlags( other.mUserFlags )
241 , mLocked( other.mLocked )
242 , mColor( other.mColor )
244 , mId( other.mId )
246 , mPaintEffect( other.mPaintEffect ? other.mPaintEffect->clone() : nullptr )
247 , mFields( other.mFields )
248 , mClipPath( other.mClipPath )
249{
250}
251
253 : mType( type )
254 , mLocked( locked )
255 , mId( QUuid::createUuid().toString() )
256{
257}
258
260{
261 if ( !other )
262 return false;
263
264 if ( layerType() != other->layerType() )
265 return false;
266
267 // TODO -- we could consider each property individually
269 return false;
270
271 // shortcut now that we know there's no randomness/changing overrides involved
272 if ( other == this )
273 return true;
274
275 if ( mEnabled != other->mEnabled
276 || mColor != other->mColor
277 || mRenderingPass != other->mRenderingPass
278
279 // TODO -- we could consider the actual settings of the paint effect
281 || ( other->mPaintEffect && !QgsPaintEffectRegistry::isDefaultStack( other->mPaintEffect.get() ) ) )
282 return false;
283
284 return properties() == other->properties();
285}
286
291
296
301
303{
304 return mColor;
305}
306
307void QgsSymbolLayer::setColor( const QColor &color )
308{
309 mColor = color;
310}
311
312void QgsSymbolLayer::setStrokeColor( const QColor & )
313{
314
315}
316
318{
319 return QColor();
320}
321
322void QgsSymbolLayer::setFillColor( const QColor & )
323{
324}
325
327{
328 return QColor();
329}
330
332{
334
335 if ( !context.fields().isEmpty() )
336 {
337 //QgsFields is implicitly shared, so it's cheap to make a copy
338 mFields = context.fields();
339 }
340}
341
343{
344 return mDataDefinedProperties.hasActiveProperties();
345}
346
348{
349 QgsSymbolLayer::initPropertyDefinitions();
350 return sPropertyDefinitions;
351}
352
354
356{
358 return true;
359
360 return symbol->type() == mType;
361}
362
364{
365 return false;
366}
367
369{
370 return false;
371}
372
377
379{
380 return mRenderingPass;
381}
382
383QSet<QString> QgsSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
384{
385 // calling referencedFields() with ignoreContext=true because in our expression context
386 // we do not have valid QgsFields yet - because of that the field names from expressions
387 // wouldn't get reported
388 QSet<QString> columns = mDataDefinedProperties.referencedFields( context.expressionContext(), true );
389 return columns;
390}
391
392QgsProperty propertyFromMap( const QVariantMap &map, const QString &baseName )
393{
394 QString prefix;
395 if ( !baseName.isEmpty() )
396 {
397 prefix.append( QStringLiteral( "%1_dd_" ).arg( baseName ) );
398 }
399
400 if ( !map.contains( QStringLiteral( "%1expression" ).arg( prefix ) ) )
401 {
402 //requires at least the expression value
403 return QgsProperty();
404 }
405
406 bool active = ( map.value( QStringLiteral( "%1active" ).arg( prefix ), QStringLiteral( "1" ) ) != QLatin1String( "0" ) );
407 QString expression = map.value( QStringLiteral( "%1expression" ).arg( prefix ) ).toString();
408 bool useExpression = ( map.value( QStringLiteral( "%1useexpr" ).arg( prefix ), QStringLiteral( "1" ) ) != QLatin1String( "0" ) );
409 QString field = map.value( QStringLiteral( "%1field" ).arg( prefix ), QString() ).toString();
410
411 if ( useExpression )
412 return QgsProperty::fromExpression( expression, active );
413 else
414 return QgsProperty::fromField( field, active );
415}
416
417void QgsSymbolLayer::restoreOldDataDefinedProperties( const QVariantMap &stringMap )
418{
419 // property string to type upgrade map
420 static const QMap < QString, int > OLD_PROPS
421 {
422 { "color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
423 { "arrow_width", static_cast< int >( QgsSymbolLayer::Property::ArrowWidth ) },
424 { "arrow_start_width", static_cast< int >( QgsSymbolLayer::Property::ArrowStartWidth ) },
425 { "head_length", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadLength ) },
426 { "head_thickness", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadThickness ) },
427 { "offset", static_cast< int >( QgsSymbolLayer::Property::Offset ) },
428 { "head_type", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadType ) },
429 { "arrow_type", static_cast< int >( QgsSymbolLayer::Property::ArrowType ) },
430 { "width_field", static_cast< int >( QgsSymbolLayer::Property::Width ) },
431 { "height_field", static_cast< int >( QgsSymbolLayer::Property::Height ) },
432 { "rotation_field", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
433 { "outline_width_field", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
434 { "fill_color_field", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
435 { "outline_color_field", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
436 { "symbol_name_field", static_cast< int >( QgsSymbolLayer::Property::Name ) },
437 { "outline_width", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
438 { "outline_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
439 { "join_style", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
440 { "fill_color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
441 { "outline_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
442 { "width", static_cast< int >( QgsSymbolLayer::Property::Width ) },
443 { "height", static_cast< int >( QgsSymbolLayer::Property::Height ) },
444 { "symbol_name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
445 { "angle", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
446 { "fill_style", static_cast< int >( QgsSymbolLayer::Property::FillStyle ) },
447 { "color_border", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
448 { "width_border", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
449 { "border_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
450 { "border_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
451 { "color2", static_cast< int >( QgsSymbolLayer::Property::SecondaryColor ) },
452 { "gradient_type", static_cast< int >( QgsSymbolLayer::Property::GradientType ) },
453 { "coordinate_mode", static_cast< int >( QgsSymbolLayer::Property::CoordinateMode )},
454 { "spread", static_cast< int >( QgsSymbolLayer::Property::GradientSpread ) },
455 { "reference1_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference1X ) },
456 { "reference1_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference1Y ) },
457 { "reference2_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference2X ) },
458 { "reference2_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference2Y )},
459 { "reference1_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference1IsCentroid )},
460 { "reference2_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference2IsCentroid )},
461 { "blur_radius", static_cast< int >( QgsSymbolLayer::Property::BlurRadius ) },
462 { "use_whole_shape", static_cast< int >( QgsSymbolLayer::Property::ShapeburstUseWholeShape ) },
463 { "max_distance", static_cast< int >( QgsSymbolLayer::Property::ShapeburstMaxDistance ) },
464 { "ignore_rings", static_cast< int >( QgsSymbolLayer::Property::ShapeburstIgnoreRings ) },
465 { "svgFillColor", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
466 { "svgOutlineColor", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
467 { "svgOutlineWidth", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
468 { "svgFile", static_cast< int >( QgsSymbolLayer::Property::File ) },
469 { "lineangle", static_cast< int >( QgsSymbolLayer::Property::LineAngle ) },
470 { "distance", static_cast< int >( QgsSymbolLayer::Property::LineDistance )},
471 { "distance_x", static_cast< int >( QgsSymbolLayer::Property::DistanceX )},
472 { "distance_y", static_cast< int >( QgsSymbolLayer::Property::DistanceY ) },
473 { "displacement_x", static_cast< int >( QgsSymbolLayer::Property::DisplacementX )},
474 { "displacement_y", static_cast< int >( QgsSymbolLayer::Property::DisplacementY ) },
475 { "file", static_cast< int >( QgsSymbolLayer::Property::File ) },
476 { "alpha", static_cast< int >( QgsSymbolLayer::Property::Opacity )},
477 { "customdash", static_cast< int >( QgsSymbolLayer::Property::CustomDash ) },
478 { "line_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
479 { "joinstyle", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
480 { "capstyle", static_cast< int >( QgsSymbolLayer::Property::CapStyle ) },
481 { "placement", static_cast< int >( QgsSymbolLayer::Property::Placement ) },
482 { "interval", static_cast< int >( QgsSymbolLayer::Property::Interval ) },
483 { "offset_along_line", static_cast< int >( QgsSymbolLayer::Property::OffsetAlongLine ) },
484 { "name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
485 { "size", static_cast< int >( QgsSymbolLayer::Property::Size ) },
486 { "fill", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
487 { "outline", static_cast< int >( QgsSymbolLayer::Property::StrokeColor )},
488 { "char", static_cast< int >( QgsSymbolLayer::Property::Character )},
489 { "enabled", static_cast< int >( QgsSymbolLayer::Property::LayerEnabled ) },
490 { "rotation", static_cast< int >( QgsSymbolLayer::Property::Angle )},
491 { "horizontal_anchor_point", static_cast< int >( QgsSymbolLayer::Property::HorizontalAnchor ) },
492 { "vertical_anchor_point", static_cast< int >( QgsSymbolLayer::Property::VerticalAnchor ) },
493 };
494
495 QVariantMap::const_iterator propIt = stringMap.constBegin();
496 for ( ; propIt != stringMap.constEnd(); ++propIt )
497 {
498 std::unique_ptr<QgsProperty> prop;
499 QString propertyName;
500
501 if ( propIt.key().endsWith( QLatin1String( "_dd_expression" ) ) )
502 {
503 //found a data defined property
504
505 //get data defined property name by stripping "_dd_expression" from property key
506 propertyName = propIt.key().left( propIt.key().length() - 14 );
507
508 prop = std::make_unique<QgsProperty>( propertyFromMap( stringMap, propertyName ) );
509 }
510 else if ( propIt.key().endsWith( QLatin1String( "_expression" ) ) )
511 {
512 //old style data defined property, upgrade
513
514 //get data defined property name by stripping "_expression" from property key
515 propertyName = propIt.key().left( propIt.key().length() - 11 );
516
517 prop = std::make_unique<QgsProperty>( QgsProperty::fromExpression( propIt.value().toString() ) );
518 }
519
520 if ( !prop || !OLD_PROPS.contains( propertyName ) )
521 continue;
522
523 int key = OLD_PROPS.value( propertyName );
524
525 if ( type() == Qgis::SymbolType::Line )
526 {
527 //these keys had different meaning for line symbol layers
528 if ( propertyName == QLatin1String( "width" ) )
529 key = static_cast< int >( QgsSymbolLayer::Property::StrokeWidth );
530 else if ( propertyName == QLatin1String( "color" ) )
531 key = static_cast< int >( QgsSymbolLayer::Property::StrokeColor );
532 }
533
534 setDataDefinedProperty( static_cast< QgsSymbolLayer::Property >( key ), QgsProperty( *prop.get() ) );
535 }
536}
537
539{
540 if ( !destLayer )
541 return;
542
544}
545
547{
548 if ( !destLayer || !mPaintEffect )
549 return;
550
552 destLayer->setPaintEffect( mPaintEffect->clone() );
553 else
554 destLayer->setPaintEffect( nullptr );
555}
556
558 : QgsSymbolLayer( Qgis::SymbolType::Marker, locked )
559{
560
561}
562
564 : QgsSymbolLayer( Qgis::SymbolType::Line, locked )
565{
566}
567
572
574{
575 mRingFilter = filter;
576}
577
579 : QgsSymbolLayer( Qgis::SymbolType::Fill, locked )
580{
581}
582
599
601{
602 Q_UNUSED( context )
603}
604
606{
607 Q_UNUSED( context )
608}
609
611{
612 startRender( context );
613 QgsPaintEffect *effect = paintEffect();
614
615 QPolygonF points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Marker, size ).value( 0 ).value( 0 )
617
618 std::unique_ptr< QgsEffectPainter > effectPainter;
619 if ( effect && effect->enabled() )
620 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
621
622 for ( QPointF point : std::as_const( points ) )
623 renderPoint( point, context );
624
625 effectPainter.reset();
626
627 stopRender( context );
628}
629
630void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double &offsetX, double &offsetY ) const
631{
633}
634
635void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double width, double height, double &offsetX, double &offsetY ) const
636{
637 markerOffset( context, width, height, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
638}
639
640void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double width, double height,
641 Qgis::RenderUnit widthUnit, Qgis::RenderUnit heightUnit,
642 double &offsetX, double &offsetY, const QgsMapUnitScale &widthMapUnitScale, const QgsMapUnitScale &heightMapUnitScale ) const
643{
644 offsetX = mOffset.x();
645 offsetY = mOffset.y();
646
648 {
651 bool ok = false;
652 const QPointF offset = QgsSymbolLayerUtils::toPoint( exprVal, &ok );
653 if ( ok )
654 {
655 offsetX = offset.x();
656 offsetY = offset.y();
657 }
658 }
659
662
666 {
668 if ( !QgsVariantUtils::isNull( exprVal ) )
669 {
670 horizontalAnchorPoint = decodeHorizontalAnchorPoint( exprVal.toString() );
671 }
672 }
674 {
676 if ( !QgsVariantUtils::isNull( exprVal ) )
677 {
678 verticalAnchorPoint = decodeVerticalAnchorPoint( exprVal.toString() );
679 }
680 }
681
682 //correct horizontal position according to anchor point
684 {
685 return;
686 }
687
688 double anchorPointCorrectionX = context.renderContext().convertToPainterUnits( width, widthUnit, widthMapUnitScale ) / 2.0;
690 {
691 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
692 // and clamp it to a reasonable range. It's the best we can do in this situation!
693 anchorPointCorrectionX = std::min( std::max( context.renderContext().convertToPainterUnits( width, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
694 }
695
696 double anchorPointCorrectionY = context.renderContext().convertToPainterUnits( height, heightUnit, heightMapUnitScale ) / 2.0;
698 {
699 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
700 // and clamp it to a reasonable range. It's the best we can do in this situation!
701 anchorPointCorrectionY = std::min( std::max( context.renderContext().convertToPainterUnits( height, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
702 }
703
704 switch ( horizontalAnchorPoint )
705 {
707 offsetX += anchorPointCorrectionX;
708 break;
710 offsetX -= anchorPointCorrectionX;
711 break;
713 break;
714 }
715
716 //correct vertical position according to anchor point
717 switch ( verticalAnchorPoint )
718 {
720 offsetY += anchorPointCorrectionY;
721 break;
724 offsetY -= anchorPointCorrectionY;
725 break;
727 break;
728 }
729}
730
732{
733 angle = DEG2RAD( angle );
734 double c = std::cos( angle ), s = std::sin( angle );
735 return QPointF( offset.x() * c - offset.y() * s, offset.x() * s + offset.y() * c );
736}
737
738Qgis::HorizontalAnchorPoint QgsMarkerSymbolLayer::decodeHorizontalAnchorPoint( const QString &str )
739{
740 if ( str.compare( QLatin1String( "left" ), Qt::CaseInsensitive ) == 0 )
741 {
743 }
744 else if ( str.compare( QLatin1String( "right" ), Qt::CaseInsensitive ) == 0 )
745 {
747 }
748 else
749 {
751 }
752}
753
754Qgis::VerticalAnchorPoint QgsMarkerSymbolLayer::decodeVerticalAnchorPoint( const QString &str )
755{
756 if ( str.compare( QLatin1String( "top" ), Qt::CaseInsensitive ) == 0 )
757 {
759 }
760 else if ( str.compare( QLatin1String( "bottom" ), Qt::CaseInsensitive ) == 0 )
761 {
763 }
764 else
765 {
767 }
768}
769
771{
772 mSizeUnit = unit;
773 mOffsetUnit = unit;
774}
775
777{
778 if ( mOffsetUnit != mSizeUnit )
779 {
781 }
782 return mOffsetUnit;
783}
784
790
799
801{
802 mWidthUnit = unit;
803 mOffsetUnit = unit;
804}
805
810
815
820
821
823{
824 const QList< QList< QPolygonF > > points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Line, size )
826 startRender( context );
827 QgsPaintEffect *effect = paintEffect();
828
829 std::unique_ptr< QgsEffectPainter > effectPainter;
830 if ( effect && effect->enabled() )
831 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
832
833 for ( const QList< QPolygonF > &line : points )
834 renderPolyline( line.value( 0 ), context );
835
836 effectPainter.reset();
837
838 stopRender( context );
839}
840
841void QgsLineSymbolLayer::renderPolygonStroke( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
842{
843 QgsExpressionContextScope *scope = nullptr;
844 std::unique_ptr< QgsExpressionContextScopePopper > scopePopper;
846 {
847 scope = new QgsExpressionContextScope();
848 scopePopper = std::make_unique< QgsExpressionContextScopePopper >( context.renderContext().expressionContext(), scope );
849 }
850
851 switch ( mRingFilter )
852 {
853 case AllRings:
854 case ExteriorRingOnly:
855 {
856 if ( scope )
858 renderPolyline( points, context );
859 break;
860 }
862 break;
863 }
864
865 if ( rings )
866 {
867 switch ( mRingFilter )
868 {
869 case AllRings:
871 {
872 int ringIndex = 1;
873 for ( const QPolygonF &ring : std::as_const( *rings ) )
874 {
875 if ( scope )
877
878 renderPolyline( ring, context );
879 ringIndex++;
880 }
881 }
882 break;
883 case ExteriorRingOnly:
884 break;
885 }
886 }
887}
888
889double QgsLineSymbolLayer::width( const QgsRenderContext &context ) const
890{
892}
893
895{
896 Q_UNUSED( context )
898}
899
900
902{
903 const QList< QList< QPolygonF > > polys = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Fill, size )
905
906 startRender( context );
907 QgsPaintEffect *effect = paintEffect();
908
909 std::unique_ptr< QgsEffectPainter > effectPainter;
910 if ( effect && effect->enabled() )
911 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
912
913 for ( const QList< QPolygonF > &poly : polys )
914 {
915 QVector< QPolygonF > rings;
916 for ( int i = 1; i < poly.size(); ++i )
917 rings << poly.at( i );
918 renderPolygon( poly.value( 0 ), &rings, context );
919 }
920
921 effectPainter.reset();
922
923 stopRender( context );
924}
925
927{
928 return QImage();
929}
930
931void QgsFillSymbolLayer::_renderPolygon( QPainter *p, const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
932{
933 if ( !p )
934 {
935 return;
936 }
937
938 // Disable 'Antialiasing' if the geometry was generalized in the current RenderContext (We known that it must have least #5 points).
939 if ( points.size() <= 5 &&
942 ( p->renderHints() & QPainter::Antialiasing ) )
943 {
944 p->setRenderHint( QPainter::Antialiasing, false );
945 p->drawRect( points.boundingRect() );
946 p->setRenderHint( QPainter::Antialiasing, true );
947 return;
948 }
949
950 // polygons outlines are sometimes rendered wrongly with drawPolygon, when
951 // clipped (see #13343), so use drawPath instead.
952 if ( !rings && p->pen().style() == Qt::NoPen )
953 {
954 // simple polygon without holes
955 p->drawPolygon( points );
956 }
957 else
958 {
959 // polygon with holes must be drawn using painter path
960 QPainterPath path;
961 path.addPolygon( points );
962
963 if ( rings )
964 {
965 for ( auto it = rings->constBegin(); it != rings->constEnd(); ++it )
966 {
967 QPolygonF ring = *it;
968 path.addPolygon( ring );
969 }
970 }
971
972 p->drawPath( path );
973 }
974}
975
976bool QgsMarkerSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, QgsSldExportContext &context ) const
977{
978 QDomElement symbolizerElem = doc.createElement( QStringLiteral( "se:PointSymbolizer" ) );
979 const QVariantMap props = context.extraProperties();
980 if ( !props.value( QStringLiteral( "uom" ), QString() ).toString().isEmpty() )
981 symbolizerElem.setAttribute( QStringLiteral( "uom" ), props.value( QStringLiteral( "uom" ), QString() ).toString() );
982 element.appendChild( symbolizerElem );
983
984 // <Geometry>
985 QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( QStringLiteral( "geom" ), QString() ).toString(), context );
986
987 return writeSldMarker( doc, symbolizerElem, context );
988}
989
990void QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
991{
992 QgsSldExportContext context;
993 context.setExtraProperties( props );
994 writeSldMarker( doc, element, context );
995}
996
997bool QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
998{
999 context.pushError( QObject::tr( "Marker symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1000 return false;
1001}
1002
1003QList<QgsSymbolLayerReference> QgsSymbolLayer::masks() const
1004{
1005 return {};
1006}
1007
1009{
1010 double size = mSize;
1012 {
1013 bool ok = false;
1015
1016 if ( ok )
1017 {
1018 switch ( mScaleMethod )
1019 {
1021 size = std::sqrt( size );
1022 break;
1024 break;
1025 }
1026 }
1027 }
1029}
1030
1032{
1033 double angle = mAngle;
1035 {
1038 }
1039 return angle;
1040}
1041
1042QPainterPath generateClipPath( const QgsRenderContext &renderContext, const QString &id, const QRectF *rect, bool &foundGeometries )
1043{
1044 foundGeometries = false;
1045 const QVector<QgsGeometry> clipGeometries = rect
1046 ? QgsSymbolLayerUtils::collectSymbolLayerClipGeometries( renderContext, id, *rect )
1047 : renderContext.symbolLayerClipGeometries( id );
1048 if ( !clipGeometries.empty() )
1049 {
1050 foundGeometries = true;
1051 QgsGeometry mergedGeom = QgsGeometry::unaryUnion( clipGeometries );
1052 if ( renderContext.maskSettings().simplifyTolerance() > 0 )
1053 {
1054 QgsGeos geos( mergedGeom.constGet() );
1055 mergedGeom = QgsGeometry( geos.simplify( renderContext.maskSettings().simplifyTolerance() ) );
1056 }
1057#if GEOS_VERSION_MAJOR==3 && GEOS_VERSION_MINOR<10
1058 // structure would be better, but too old GEOS
1059 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Linework );
1060#else
1061 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Structure );
1062#endif
1063 if ( !mergedGeom.isEmpty() )
1064 {
1065 QgsGeometry exterior;
1066 const QgsRectangle contextBounds( 0, 0,
1067 renderContext.outputSize().width(),
1068 renderContext.outputSize().height() );
1069 if ( rect )
1070 {
1071 exterior = QgsGeometry::fromRect( QgsRectangle( *rect ).intersect( contextBounds ) );
1072 }
1073 else
1074 {
1075 exterior = QgsGeometry::fromRect( contextBounds );
1076 }
1077 const QgsGeometry maskGeom = exterior.difference( mergedGeom );
1078 if ( !maskGeom.isNull() )
1079 {
1080 return maskGeom.constGet()->asQPainterPath();
1081 }
1082 }
1083 }
1084 return QPainterPath();
1085}
1086
1088{
1089 const QgsRenderContext &renderContext = context.renderContext();
1090
1091 bool foundGeometries = false;
1092 mClipPath = generateClipPath( renderContext, id(), nullptr, foundGeometries );
1093}
1094
1095bool QgsSymbolLayer::installMasks( QgsRenderContext &context, bool recursive, const QRectF &rect )
1096{
1097 bool res = false;
1098 if ( !mClipPath.isEmpty() )
1099 {
1100 context.painter()->save();
1101 context.painter()->setClipPath( mClipPath, Qt::IntersectClip );
1102 res = true;
1103 }
1104 else if ( rect.isValid() )
1105 {
1106 // find just the clip geometries within the area the symbol layer will be drawn over
1107 bool foundGeometries = false;
1108 const QPainterPath clipPath = generateClipPath( context, id(), &rect, foundGeometries );
1109 if ( !clipPath.isEmpty() )
1110 {
1111 context.painter()->setClipPath( clipPath, context.painter()->clipPath().isEmpty() ? Qt::ReplaceClip : Qt::IntersectClip );
1112 res = true;
1113 }
1114 }
1115
1116 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1117 {
1118 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1119 for ( QgsSymbolLayer *sl : layers )
1120 res = sl->installMasks( context, true ) || res;
1121 }
1122
1123 return res;
1124}
1125
1126void QgsSymbolLayer::removeMasks( QgsRenderContext &context, bool recursive )
1127{
1128 if ( !mClipPath.isEmpty() )
1129 {
1130 context.painter()->restore();
1131 }
1132
1133 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1134 {
1135 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1136 for ( QgsSymbolLayer *sl : layers )
1137 sl->removeMasks( context, true );
1138 }
1139}
1140
1145
1146void QgsSymbolLayer::setId( const QString &id )
1147{
1148 mId = id;
1149}
1150
1151QString QgsSymbolLayer::id() const
1152{
1153 return mId;
1154}
1155
1156void QgsSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
1157{
1158 QgsSldExportContext context;
1159 context.setExtraProperties( props );
1160 toSld( doc, element, context );
1161}
1162
1163bool QgsSymbolLayer::toSld( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
1164{
1165 context.pushError( QObject::tr( "Symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1166 return false;
1167}
Provides global constants and enumerations for use throughout the application.
Definition qgis.h:56
@ AntialiasingSimplification
The geometries can be rendered with 'AntiAliasing' disabled because of it is '1-pixel size'.
Definition qgis.h:3032
@ ScaleDiameter
Calculate scale by the diameter.
Definition qgis.h:626
@ ScaleArea
Calculate scale by the area.
Definition qgis.h:625
QFlags< SymbolLayerFlag > SymbolLayerFlags
Symbol layer flags.
Definition qgis.h:887
QFlags< SymbolLayerUserFlag > SymbolLayerUserFlags
Symbol layer user flags.
Definition qgis.h:910
VerticalAnchorPoint
Marker symbol vertical anchor points.
Definition qgis.h:814
@ Bottom
Align to bottom of symbol.
Definition qgis.h:817
@ Center
Align to vertical center of symbol.
Definition qgis.h:816
@ Baseline
Align to baseline of symbol, e.g. font baseline for font marker symbol layers. Treated as Bottom if n...
Definition qgis.h:818
@ Top
Align to top of symbol.
Definition qgis.h:815
RenderUnit
Rendering size units.
Definition qgis.h:5183
@ Millimeters
Millimeters.
Definition qgis.h:5184
@ Unknown
Mixed or unknown units.
Definition qgis.h:5190
@ MetersInMapUnits
Meters value as Map units.
Definition qgis.h:5191
@ RenderSymbolPreview
The render is for a symbol preview only and map based properties may not be available,...
Definition qgis.h:2760
@ RenderLayerTree
The render is for a layer tree display where map based properties are not available and where avoidan...
Definition qgis.h:2771
@ Linework
Combines all rings into a set of noded lines and then extracts valid polygons from that linework.
Definition qgis.h:2181
@ Structure
Structured method, first makes all rings valid and then merges shells and subtracts holes from shells...
Definition qgis.h:2182
@ DisableSelectionRecoloring
If present, indicates that the symbol layer should not be recolored when rendering selected features.
Definition qgis.h:901
SymbolType
Symbol types.
Definition qgis.h:610
@ Marker
Marker symbol.
Definition qgis.h:611
@ Line
Line symbol.
Definition qgis.h:612
@ Fill
Fill symbol.
Definition qgis.h:613
HorizontalAnchorPoint
Marker symbol horizontal anchor points.
Definition qgis.h:800
@ Center
Align to horizontal center of symbol.
Definition qgis.h:802
@ Right
Align to right side of symbol.
Definition qgis.h:803
@ Left
Align to left side of symbol.
Definition qgis.h:801
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...
virtual QPainterPath asQPainterPath() const =0
Returns the geometry represented as a QPainterPath.
Exports QGIS layers to the DXF format.
static double mapUnitScaleFactor(double scale, Qgis::RenderUnit symbolUnits, Qgis::DistanceUnit mapUnits, double mapUnitsPerPixel=1.0)
Returns scale factor for conversion to map units.
Qgis::DistanceUnit mapUnits() const
Retrieve map units.
double symbologyScale() const
Returns the reference scale for output.
Single scope for storing variables and functions for use within a QgsExpressionContext.
void addVariable(const QgsExpressionContextScope::StaticVariable &variable)
Adds a variable into the context scope.
static const QString EXPR_GEOMETRY_RING_NUM
Inbuilt variable name for geometry ring number variable.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
bool isEmpty
Definition qgsfields.h:49
virtual void renderPolygon(const QPolygonF &points, const QVector< QPolygonF > *rings, QgsSymbolRenderContext &context)=0
Renders the fill symbol layer for the polygon whose outer ring is defined by points,...
void _renderPolygon(QPainter *p, const QPolygonF &points, const QVector< QPolygonF > *rings, QgsSymbolRenderContext &context)
Default method to render polygon.
virtual QImage toTiledPatternImage() const
Renders the symbol layer as an image that can be used as a seamless pattern fill for polygons,...
void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size) override
QgsFillSymbolLayer(const QgsFillSymbolLayer &other)=delete
A geometry is the spatial representation of a feature.
static QgsGeometry fromRect(const QgsRectangle &rect)
Creates a new geometry from a QgsRectangle.
QgsGeometry difference(const QgsGeometry &geometry, const QgsGeometryParameters &parameters=QgsGeometryParameters()) const
Returns a geometry representing the points making up this geometry that do not make up other.
QgsGeometry makeValid(Qgis::MakeValidMethod method=Qgis::MakeValidMethod::Linework, bool keepCollapsed=false) const
Attempts to make an invalid geometry valid without losing vertices.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
static QgsGeometry unaryUnion(const QVector< QgsGeometry > &geometries, const QgsGeometryParameters &parameters=QgsGeometryParameters())
Compute the unary union on a list of geometries.
Does vector analysis using the GEOS library and handles import, export, and exception handling.
Definition qgsgeos.h:141
QList< QList< QPolygonF > > toQPolygonF(Qgis::SymbolType type, QSizeF size) const
Converts the patch shape to a set of QPolygonF objects representing how the patch should be drawn for...
Qgis::RenderUnit mOffsetUnit
RenderRingFilter
Options for filtering rings when the line symbol layer is being used to render a polygon's rings.
@ ExteriorRingOnly
Render the exterior ring only.
@ InteriorRingsOnly
Render the interior rings only.
@ AllRings
Render both exterior and interior rings.
QgsMapUnitScale mWidthMapUnitScale
RenderRingFilter ringFilter() const
Returns the line symbol layer's ring filter, which controls which rings are rendered when the line sy...
void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size) override
QgsLineSymbolLayer(const QgsLineSymbolLayer &other)=delete
void setOutputUnit(Qgis::RenderUnit unit) override
Sets the units to use for sizes and widths within the symbol layer.
Qgis::RenderUnit outputUnit() const override
Returns the units to use for sizes and widths within the symbol layer.
virtual void renderPolygonStroke(const QPolygonF &points, const QVector< QPolygonF > *rings, QgsSymbolRenderContext &context)
Renders the line symbol layer along the outline of polygon, using the given render context.
Qgis::RenderUnit mWidthUnit
virtual void renderPolyline(const QPolygonF &points, QgsSymbolRenderContext &context)=0
Renders the line symbol layer along the line joining points, using the given render context.
RenderRingFilter mRingFilter
virtual double width() const
Returns the estimated width for the line symbol layer.
double dxfWidth(const QgsDxfExport &e, QgsSymbolRenderContext &context) const override
Gets line width.
QgsMapUnitScale mapUnitScale() const override
void setRingFilter(QgsLineSymbolLayer::RenderRingFilter filter)
Sets the line symbol layer's ring filter, which controls which rings are rendered when the line symbo...
void setMapUnitScale(const QgsMapUnitScale &scale) override
Qgis::RenderUnit widthUnit() const
Returns the units for the line's width.
double mapUnitsPerPixel() const
Returns the current map units per pixel.
Struct for storing maximum and minimum scales for measurements in map units.
double mSize
Marker size.
QgsMarkerSymbolLayer(const QgsMarkerSymbolLayer &other)
void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size) override
Qgis::RenderUnit mOffsetUnit
Offset units.
QPointF offset() const
Returns the marker's offset, which is the horizontal and vertical displacement which the rendered mar...
double mLineAngle
Line rotation angle (see setLineAngle() for details).
bool toSld(QDomDocument &doc, QDomElement &element, QgsSldExportContext &context) const override
Saves the symbol layer as SLD.
Qgis::RenderUnit outputUnit() const override
Returns the units to use for sizes and widths within the symbol layer.
virtual void renderPoint(QPointF point, QgsSymbolRenderContext &context)=0
Renders a marker at the specified point.
QPointF mOffset
Marker offset.
QgsMapUnitScale mapUnitScale() const override
double size() const
Returns the symbol size.
Qgis::VerticalAnchorPoint verticalAnchorPoint() const
Returns the vertical anchor point for positioning the symbol.
QgsMapUnitScale mOffsetMapUnitScale
Offset map unit scale.
Qgis::VerticalAnchorPoint mVerticalAnchorPoint
Vertical anchor point.
static QPointF _rotatedOffset(QPointF offset, double angle)
Adjusts a marker offset to account for rotation.
double dxfAngle(QgsSymbolRenderContext &context) const override
Gets angle.
Qgis::ScaleMethod mScaleMethod
Marker size scaling method.
double dxfSize(const QgsDxfExport &e, QgsSymbolRenderContext &context) const override
Gets marker size.
Qgis::HorizontalAnchorPoint horizontalAnchorPoint() const
Returns the horizontal anchor point for positioning the symbol.
void stopRender(QgsSymbolRenderContext &context) override
Called after a set of rendering operations has finished on the supplied render context.
QgsMapUnitScale mSizeMapUnitScale
Marker size map unit scale.
Qgis::RenderUnit mSizeUnit
Marker size unit.
void setOutputUnit(Qgis::RenderUnit unit) override
Sets the units to use for sizes and widths within the symbol layer.
virtual Q_DECL_DEPRECATED void writeSldMarker(QDomDocument &doc, QDomElement &element, const QVariantMap &props) const
Writes the symbol layer definition as a SLD XML element.
void markerOffset(QgsSymbolRenderContext &context, double &offsetX, double &offsetY) const
Calculates the required marker offset, including both the symbol offset and any displacement required...
Qgis::HorizontalAnchorPoint mHorizontalAnchorPoint
Horizontal anchor point.
double mAngle
Marker rotation angle, in degrees clockwise from north.
void startRender(QgsSymbolRenderContext &context) override
Called before a set of rendering operations commences on the supplied render context.
double angle() const
Returns the rotation angle for the marker, in degrees clockwise from north.
void setMapUnitScale(const QgsMapUnitScale &scale) override
double simplifyTolerance() const
Returns the simplification tolerance (in painter units) to use for on-the-fly simplification of mask ...
static bool isDefaultStack(QgsPaintEffect *effect)
Tests whether a paint effect matches the default effects stack.
Base class for visual effects which can be applied to QPicture drawings.
bool enabled() const
Returns whether the effect is enabled.
void setProperty(int key, const QgsProperty &property)
Adds a property to the collection and takes ownership of it.
@ HorizontalAnchor
Horizontal anchor point.
Definition qgsproperty.h:73
@ Double
Double value (including negative values).
Definition qgsproperty.h:55
@ VerticalAnchor
Vertical anchor point.
Definition qgsproperty.h:74
@ Double0To1
Double value between 0-1 (inclusive).
Definition qgsproperty.h:57
@ FillStyle
Fill style (eg solid, lines).
Definition qgsproperty.h:71
@ StrokeWidth
Line stroke width.
Definition qgsproperty.h:70
@ LineStyle
Line style (eg solid/dashed).
Definition qgsproperty.h:69
@ String
Any string value.
Definition qgsproperty.h:59
@ Boolean
Boolean value.
Definition qgsproperty.h:51
@ PenJoinStyle
Pen join style.
Definition qgsproperty.h:64
@ IntegerPositive
Positive integer values (including 0).
Definition qgsproperty.h:53
@ Opacity
Opacity (0-100).
Definition qgsproperty.h:60
@ CapStyle
Line cap style (eg round).
Definition qgsproperty.h:72
@ Rotation
Rotation (value between 0-360 degrees).
Definition qgsproperty.h:58
@ Size
1D size (eg marker radius, or square marker height/width)
Definition qgsproperty.h:67
@ ColorWithAlpha
Color with alpha channel.
Definition qgsproperty.h:62
@ DoublePositive
Positive double value (including 0).
Definition qgsproperty.h:56
@ DataTypeString
Property requires a string value.
Definition qgsproperty.h:90
@ DataTypeNumeric
Property requires a numeric value.
Definition qgsproperty.h:97
A store for object properties.
QVariant value(const QgsExpressionContext &context, const QVariant &defaultValue=QVariant(), bool *ok=nullptr) const
Calculates the current value of the property, including any transforms which are set for the property...
static QgsProperty fromExpression(const QString &expression, bool isActive=true)
Returns a new ExpressionBasedProperty created from the specified expression.
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
A rectangle specified with double values.
QgsRectangle intersect(const QgsRectangle &rect) const
Returns the intersection with the given rectangle.
Contains information about the context of a rendering operation.
QgsVectorSimplifyMethod & vectorSimplifyMethod()
Returns the simplification settings to use when rendering vector layers.
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsExpressionContext & expressionContext()
Gets the expression context.
QSize outputSize() const
Returns the size of the resulting rendered image, in pixels.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
QVector< QgsGeometry > symbolLayerClipGeometries(const QString &symbolLayerId) const
Returns clipping geometries to be applied to the symbolLayer before rendering.
Qgis::RenderContextFlags flags() const
Returns combination of flags used for rendering.
const QgsMaskRenderSettings & maskSettings() const
Returns a reference to the mask render settings, which control how masks are drawn and behave during ...
Holds SLD export options and other information related to SLD export of a QGIS layer style.
void setExtraProperties(const QVariantMap &properties)
Sets the open ended set of properties that can drive/inform the SLD encoding.
QVariantMap extraProperties() const
Returns the open ended set of properties that can drive/inform the SLD encoding.
void pushError(const QString &error)
Pushes a error message generated during the conversion.
static QgsStyle * defaultStyle(bool initialize=true)
Returns the default application-wide style.
Definition qgsstyle.cpp:147
QList< QList< QPolygonF > > defaultPatchAsQPolygonF(Qgis::SymbolType type, QSizeF size) const
Returns the default patch geometry for the given symbol type and size as a set of QPolygonF objects (...
static QPointF toPoint(const QVariant &value, bool *ok=nullptr)
Converts a value to a point.
static QVector< QgsGeometry > collectSymbolLayerClipGeometries(const QgsRenderContext &context, const QString &symbolLayerId, const QRectF &bounds)
Returns a list of the symbol layer clip geometries to be used for the symbol layer with the specified...
static Q_DECL_DEPRECATED void createGeometryElement(QDomDocument &doc, QDomElement &element, const QString &geomFunc)
Creates an SLD geometry element.
static QString encodePoint(QPointF point)
Encodes a QPointF to a string.
virtual QgsSymbolLayer * clone() const =0
Shall be reimplemented by subclasses to create a deep copy of the instance.
virtual bool setSubSymbol(QgsSymbol *symbol)
Sets layer's subsymbol. takes ownership of the passed symbol.
bool shouldRenderUsingSelectionColor(const QgsSymbolRenderContext &context) const
Returns true if the symbol layer should be rendered using the selection color from the render context...
Qgis::SymbolType type() const
virtual void startFeatureRender(const QgsFeature &feature, QgsRenderContext &context)
Called before the layer will be rendered for a particular feature.
virtual QColor fillColor() const
Returns the fill color for the symbol layer.
void setId(const QString &id)
Set symbol layer identifier This id has to be unique in the whole project.
virtual void setStrokeColor(const QColor &color)
Sets the stroke color for the symbol layer.
QPainterPath mClipPath
bool installMasks(QgsRenderContext &context, bool recursive, const QRectF &rect=QRectF())
When rendering, install masks on context painter.
virtual double dxfSize(const QgsDxfExport &e, QgsSymbolRenderContext &context) const
Gets marker size.
virtual double dxfOffset(const QgsDxfExport &e, QgsSymbolRenderContext &context) const
Gets offset.
virtual QColor dxfBrushColor(QgsSymbolRenderContext &context) const
Gets brush/fill color.
Qgis::SymbolType mType
void removeMasks(QgsRenderContext &context, bool recursive)
When rendering, remove previously installed masks from context painter if recursive is true masks are...
virtual QSet< QString > usedAttributes(const QgsRenderContext &context) const
Returns the set of attributes referenced by the layer.
void copyDataDefinedProperties(QgsSymbolLayer *destLayer) const
Copies all data defined properties of this layer to another symbol layer.
Property
Data definable properties.
@ SkipMultiples
Skip multiples of.
@ ArrowHeadLength
Arrow head length.
@ GradientType
Gradient fill type.
@ SecondaryColor
Secondary color (eg for gradient fills).
@ File
Filename, eg for svg files.
@ VerticalAnchor
Vertical anchor point.
@ GradientReference2Y
Gradient reference point 2 y.
@ GradientReference1X
Gradient reference point 1 x.
@ OffsetY
Vertical offset.
@ OffsetX
Horizontal offset.
@ GradientReference1Y
Gradient reference point 1 y.
@ ArrowWidth
Arrow tail width.
@ BlankSegments
String list of distance to define blank segments along line for templated line symbol layers.
@ DashPatternOffset
Dash pattern offset,.
@ GradientSpread
Gradient spread mode.
@ OffsetAlongLine
Offset along line.
@ ArrowHeadType
Arrow head type.
@ CustomDash
Custom dash pattern.
@ ShapeburstMaxDistance
Shapeburst fill from edge distance.
@ HorizontalAnchor
Horizontal anchor point.
@ StrokeStyle
Stroke style (eg solid, dashed).
@ Name
Name, eg shape name for simple markers.
@ DistanceY
Vertical distance between points.
@ LineEndColorValue
End line color for interpolated line renderer.
@ ClipPoints
Whether markers should be clipped to polygon boundaries.
@ ArrowHeadThickness
Arrow head thickness.
@ LineClipping
Line clipping mode.
@ ShapeburstIgnoreRings
Shapeburst ignore rings.
@ Character
Character, eg for font marker symbol layers.
@ ShapeburstUseWholeShape
Shapeburst use whole shape.
@ DisplacementX
Horizontal displacement.
@ CoordinateMode
Gradient coordinate mode.
@ FillStyle
Fill style (eg solid, dots).
@ GradientReference2X
Gradient reference point 2 x.
@ TrimStart
Trim distance from start of line.
@ ArrowStartWidth
Arrow tail start width.
@ CapStyle
Line cap style.
@ BlurRadius
Shapeburst blur radius.
@ Placement
Line marker placement.
@ MarkerClipping
Marker clipping mode.
@ RandomSeed
Random number seed.
@ LineAngle
Line angle, or angle of hash lines for hash line symbols.
@ JoinStyle
Line join style.
@ RandomOffsetY
Random offset Y.
@ DisplacementY
Vertical displacement.
@ PreserveAspectRatio
Preserve aspect ratio between width and height.
@ LineStartColorValue
Start line color for interpolated line renderer.
@ DistanceX
Horizontal distance between points.
@ AverageAngleLength
Length to average symbol angles over.
@ LineEndWidthValue
End line width for interpolated line renderer.
@ GradientReference1IsCentroid
Gradient reference point 1 is centroid.
@ Interval
Line marker interval.
@ GradientReference2IsCentroid
Gradient reference point 2 is centroid.
@ LineStartWidthValue
Start line width for interpolated line renderer.
@ LineDistance
Distance between lines, or length of lines for hash line symbols.
@ RandomOffsetX
Random offset X.
@ TrimEnd
Trim distance from end of line.
@ LayerEnabled
Whether symbol layer is enabled.
void restoreOldDataDefinedProperties(const QVariantMap &stringMap)
Restores older data defined properties from string map.
void setPaintEffect(QgsPaintEffect *effect)
Sets the current paint effect for the layer.
void setRenderingPass(int renderingPass)
Specifies the rendering pass in which this symbol layer should be rendered.
QgsPaintEffect * paintEffect() const
Returns the current paint effect for the layer.
virtual void startRender(QgsSymbolRenderContext &context)=0
Called before a set of rendering operations commences on the supplied render context.
virtual QVariantMap properties() const =0
Should be reimplemented by subclasses to return a string map that contains the configuration informat...
std::unique_ptr< QgsPaintEffect > mPaintEffect
virtual Qt::PenStyle dxfPenStyle() const
Gets pen style.
virtual void setFillColor(const QColor &color)
Sets the fill color for the symbol layer.
bool mEnabled
True if layer is enabled and should be drawn.
virtual void prepareExpressions(const QgsSymbolRenderContext &context)
Prepares all data defined property expressions for evaluation.
void setUserFlags(Qgis::SymbolLayerUserFlags flags)
Sets user-controlled flags which control the symbol layer's behavior.
virtual QColor dxfColor(QgsSymbolRenderContext &context) const
Gets color.
virtual bool rendersIdenticallyTo(const QgsSymbolLayer *other) const
Returns true if this symbol layer will always render identically to an other symbol layer.
virtual QString layerType() const =0
Returns a string that represents this layer type.
int renderingPass() const
Specifies the rendering pass in which this symbol layer should be rendered.
virtual void stopRender(QgsSymbolRenderContext &context)=0
Called after a set of rendering operations has finished on the supplied render context.
virtual Q_DECL_DEPRECATED void toSld(QDomDocument &doc, QDomElement &element, const QVariantMap &props) const
Saves the symbol layer as SLD.
virtual bool isCompatibleWithSymbol(QgsSymbol *symbol) const
Returns if the layer can be used below the specified symbol.
QString id() const
Returns symbol layer identifier This id is unique in the whole project.
virtual void setDataDefinedProperty(Property key, const QgsProperty &property)
Sets a data defined property for the layer.
virtual void setColor(const QColor &color)
Sets the "representative" color for the symbol layer.
virtual QgsSymbol * subSymbol()
Returns the symbol's sub symbol, if present.
Qgis::SymbolLayerUserFlags userFlags() const
Returns user-controlled flags which control the symbol layer's behavior.
virtual QColor color() const
Returns the "representative" color of the symbol layer.
virtual void prepareMasks(const QgsSymbolRenderContext &context)
Prepares all mask internal objects according to what is defined in context This should be called prio...
virtual void stopFeatureRender(const QgsFeature &feature, QgsRenderContext &context)
Called after the layer has been rendered for a particular feature.
static const QgsPropertiesDefinition & propertyDefinitions()
Returns the symbol layer property definitions.
virtual double dxfWidth(const QgsDxfExport &e, QgsSymbolRenderContext &context) const
Gets line width.
virtual QColor strokeColor() const
Returns the stroke color for the symbol layer.
virtual double dxfAngle(QgsSymbolRenderContext &context) const
Gets angle.
Qgis::SymbolLayerUserFlags mUserFlags
User controlled flags.
virtual bool canCauseArtifactsBetweenAdjacentTiles() const
Returns true if the symbol layer rendering can cause visible artifacts across a single feature when t...
virtual ~QgsSymbolLayer()
virtual bool usesMapUnits() const
Returns true if the symbol layer has any components which use map unit based sizes.
virtual bool writeDxf(QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, QgsSymbolRenderContext &context, QPointF shift=QPointF(0.0, 0.0)) const
write as DXF
void copyPaintEffect(QgsSymbolLayer *destLayer) const
Copies paint effect of this layer to another symbol layer.
virtual Qgis::SymbolLayerFlags flags() const
Returns flags which control the symbol layer's behavior.
QgsPropertyCollection mDataDefinedProperties
virtual QList< QgsSymbolLayerReference > masks() const
Returns masks defined by this symbol layer.
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.
virtual QVector< qreal > dxfCustomDashPattern(Qgis::RenderUnit &unit) const
Gets dash pattern.
virtual bool hasDataDefinedProperties() const
Returns true if the symbol layer (or any of its sub-symbols) contains data defined properties.
QgsSymbolLayer(const QgsSymbolLayer &other)
void setDataDefinedProperties(const QgsPropertyCollection &collection)
Sets the symbol layer's property collection, used for data defined overrides.
Encapsulates the context in which a symbol is being rendered.
QgsFields fields() const
Fields of the layer.
bool selected() const
Returns true if symbols should be rendered using the selected symbol coloring and style.
void setOriginalValueVariable(const QVariant &value)
Sets the original value variable value for data defined symbology.
const QgsLegendPatchShape * patchShape() const
Returns the symbol patch shape, to use if rendering symbol preview icons.
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
Abstract base class for all rendered symbols.
Definition qgssymbol.h:231
Qgis::SymbolType type() const
Returns the symbol's type.
Definition qgssymbol.h:294
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
Qgis::VectorRenderingSimplificationFlags simplifyHints() const
Gets the simplification hints of the vector layer managed.
float threshold() const
Gets the simplification threshold of the vector layer managed.
Contains geos related utilities and functions.
Definition qgsgeos.h:77
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
QMap< int, QgsPropertyDefinition > QgsPropertiesDefinition
Definition of available properties.
QgsProperty propertyFromMap(const QVariantMap &map, const QString &baseName)
QPainterPath generateClipPath(const QgsRenderContext &renderContext, const QString &id, const QRectF *rect, bool &foundGeometries)
#define DEG2RAD(x)
Single variable definition for use within a QgsExpressionContextScope.