QGIS API Documentation 4.1.0-Master (60fea48833c)
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 <QString>
39#include <QUuid>
40
41using namespace Qt::StringLiterals;
42
43QgsPropertiesDefinition QgsSymbolLayer::sPropertyDefinitions;
44
45void QgsSymbolLayer::initPropertyDefinitions()
46{
47 if ( !sPropertyDefinitions.isEmpty() )
48 return;
49
50 QString origin = u"symbol"_s;
51
52 sPropertyDefinitions = QgsPropertiesDefinition {
53 { static_cast< int >( QgsSymbolLayer::Property::Size ), QgsPropertyDefinition( "size", QObject::tr( "Symbol size" ), QgsPropertyDefinition::Size, origin ) },
54 { static_cast< int >( QgsSymbolLayer::Property::Angle ), QgsPropertyDefinition( "angle", QObject::tr( "Rotation angle" ), QgsPropertyDefinition::Rotation, origin ) },
55 { static_cast< int >( QgsSymbolLayer::Property::Name ), QgsPropertyDefinition( "name", QObject::tr( "Symbol name" ), QgsPropertyDefinition::String, origin ) },
56 { static_cast< int >( QgsSymbolLayer::Property::FillColor ), QgsPropertyDefinition( "fillColor", QObject::tr( "Symbol fill color" ), QgsPropertyDefinition::ColorWithAlpha, origin ) },
57 { static_cast< int >( QgsSymbolLayer::Property::StrokeColor ), QgsPropertyDefinition( "outlineColor", QObject::tr( "Symbol stroke color" ), QgsPropertyDefinition::ColorWithAlpha, origin ) },
58 { static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ), QgsPropertyDefinition( "outlineWidth", QObject::tr( "Symbol stroke width" ), QgsPropertyDefinition::StrokeWidth, origin ) },
59 { static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ), QgsPropertyDefinition( "outlineStyle", QObject::tr( "Symbol stroke style" ), QgsPropertyDefinition::LineStyle, origin ) },
60 { static_cast< int >( QgsSymbolLayer::Property::Offset ), QgsPropertyDefinition( "offset", QObject::tr( "Symbol offset" ), QgsPropertyDefinition::Offset, origin ) },
61 { static_cast< int >( QgsSymbolLayer::Property::Character ), QgsPropertyDefinition( "char", QObject::tr( "Marker character(s)" ), QgsPropertyDefinition::String, origin ) },
62 { static_cast< int >( QgsSymbolLayer::Property::FontFamily ), QgsPropertyDefinition( "fontFamily", QObject::tr( "Font family" ), QgsPropertyDefinition::String, origin ) },
63 { static_cast< int >( QgsSymbolLayer::Property::FontStyle ), QgsPropertyDefinition( "fontStyle", QObject::tr( "Font style" ), QgsPropertyDefinition::String, origin ) },
64 { static_cast< int >( QgsSymbolLayer::Property::Width ), QgsPropertyDefinition( "width", QObject::tr( "Symbol width" ), QgsPropertyDefinition::DoublePositive, origin ) },
65 { static_cast< int >( QgsSymbolLayer::Property::Height ), QgsPropertyDefinition( "height", QObject::tr( "Symbol height" ), QgsPropertyDefinition::DoublePositive, origin ) },
67 QgsPropertyDefinition( "preserveAspectRatio", QObject::tr( "Preserve aspect ratio between width and height" ), QgsPropertyDefinition::Boolean, origin ) },
68 { static_cast< int >( QgsSymbolLayer::Property::FillStyle ), QgsPropertyDefinition( "fillStyle", QObject::tr( "Symbol fill style" ), QgsPropertyDefinition::FillStyle, origin ) },
69 { static_cast< int >( QgsSymbolLayer::Property::JoinStyle ), QgsPropertyDefinition( "joinStyle", QObject::tr( "Outline join style" ), QgsPropertyDefinition::PenJoinStyle, origin ) },
70 { static_cast< int >( QgsSymbolLayer::Property::SecondaryColor ), QgsPropertyDefinition( "color2", QObject::tr( "Secondary fill color" ), QgsPropertyDefinition::ColorWithAlpha, origin ) },
71 { static_cast< int >( QgsSymbolLayer::Property::LineAngle ), QgsPropertyDefinition( "lineAngle", QObject::tr( "Angle for line fills" ), QgsPropertyDefinition::Rotation, origin ) },
72 { static_cast< int >( QgsSymbolLayer::Property::GradientType ),
73 QgsPropertyDefinition( "gradientType", QgsPropertyDefinition::DataTypeString, QObject::tr( "Gradient type" ), QObject::tr( "string " ) + "[<b>linear</b>|<b>radial</b>|<b>conical</b>]"_L1, origin ) },
74 { static_cast< int >( QgsSymbolLayer::Property::CoordinateMode ),
75 QgsPropertyDefinition( "gradientMode", QgsPropertyDefinition::DataTypeString, QObject::tr( "Gradient mode" ), QObject::tr( "string " ) + "[<b>feature</b>|<b>viewport</b>]"_L1, origin ) },
76 { static_cast< int >( QgsSymbolLayer::Property::GradientSpread ),
77 QgsPropertyDefinition( "gradientSpread", QgsPropertyDefinition::DataTypeString, QObject::tr( "Gradient spread" ), QObject::tr( "string " ) + "[<b>pad</b>|<b>repeat</b>|<b>reflect</b>]"_L1, origin ) },
78 { static_cast< int >( QgsSymbolLayer::Property::GradientReference1X ), QgsPropertyDefinition( "gradientRef1X", QObject::tr( "Reference point 1 (X)" ), QgsPropertyDefinition::Double0To1, origin ) },
79 { static_cast< int >( QgsSymbolLayer::Property::GradientReference1Y ), QgsPropertyDefinition( "gradientRef1Y", QObject::tr( "Reference point 1 (Y)" ), QgsPropertyDefinition::Double0To1, origin ) },
80 { static_cast< int >( QgsSymbolLayer::Property::GradientReference2X ), QgsPropertyDefinition( "gradientRef2X", QObject::tr( "Reference point 2 (X)" ), QgsPropertyDefinition::Double0To1, origin ) },
81 { static_cast< int >( QgsSymbolLayer::Property::GradientReference2Y ), QgsPropertyDefinition( "gradientRef2Y", QObject::tr( "Reference point 2 (Y)" ), QgsPropertyDefinition::Double0To1, origin ) },
83 QgsPropertyDefinition( "gradientRef1Centroid", QObject::tr( "Reference point 1 follows feature centroid" ), QgsPropertyDefinition::Boolean, origin ) },
85 QgsPropertyDefinition( "gradientRef2Centroid", QObject::tr( "Reference point 2 follows feature centroid" ), QgsPropertyDefinition::Boolean, origin ) },
86 { static_cast< int >( QgsSymbolLayer::Property::BlurRadius ),
87 QgsPropertyDefinition( "blurRadius", QgsPropertyDefinition::DataTypeNumeric, QObject::tr( "Blur radius" ), QObject::tr( "Integer between 0 and 18" ), origin ) },
88 { static_cast< int >( QgsSymbolLayer::Property::LineDistance ), QgsPropertyDefinition( "lineDistance", QObject::tr( "Distance between lines" ), QgsPropertyDefinition::DoublePositive, origin ) },
90 QgsPropertyDefinition( "shapeburstWholeShape", QObject::tr( "Shade whole shape" ), QgsPropertyDefinition::Boolean, origin ) },
92 QgsPropertyDefinition( "shapeburstMaxDist", QObject::tr( "Maximum distance for shapeburst fill" ), QgsPropertyDefinition::DoublePositive, origin ) },
94 QgsPropertyDefinition( "shapeburstIgnoreRings", QObject::tr( "Ignore rings in feature" ), QgsPropertyDefinition::Boolean, origin ) },
95 { static_cast< int >( QgsSymbolLayer::Property::File ), QgsPropertyDefinition( "file", QObject::tr( "Symbol file path" ), QgsPropertyDefinition::String, origin ) },
96 { static_cast< int >( QgsSymbolLayer::Property::DistanceX ),
97 QgsPropertyDefinition( "distanceX", QObject::tr( "Horizontal distance between markers" ), QgsPropertyDefinition::DoublePositive, origin ) },
98 { static_cast< int >( QgsSymbolLayer::Property::DistanceY ), QgsPropertyDefinition( "distanceY", QObject::tr( "Vertical distance between markers" ), QgsPropertyDefinition::DoublePositive, origin ) },
99 { static_cast< int >( QgsSymbolLayer::Property::DisplacementX ),
100 QgsPropertyDefinition( "displacementX", QObject::tr( "Horizontal displacement between rows" ), QgsPropertyDefinition::DoublePositive, origin ) },
101 { static_cast< int >( QgsSymbolLayer::Property::DisplacementY ),
102 QgsPropertyDefinition( "displacementY", QObject::tr( "Vertical displacement between columns" ), QgsPropertyDefinition::DoublePositive, origin ) },
103 { static_cast< int >( QgsSymbolLayer::Property::OffsetX ), QgsPropertyDefinition( "offsetX", QObject::tr( "Horizontal offset" ), QgsPropertyDefinition::Double, origin ) },
104 { static_cast< int >( QgsSymbolLayer::Property::OffsetY ), QgsPropertyDefinition( "offsetY", QObject::tr( "Vertical offset" ), QgsPropertyDefinition::Double, origin ) },
105 { static_cast< int >( QgsSymbolLayer::Property::Opacity ), QgsPropertyDefinition( "alpha", QObject::tr( "Opacity" ), QgsPropertyDefinition::Opacity, origin ) },
106 { static_cast< int >( QgsSymbolLayer::Property::CustomDash ),
107 QgsPropertyDefinition( "customDash", QgsPropertyDefinition::DataTypeString, QObject::tr( "Custom dash pattern" ), QObject::tr( "[<b><dash>;<space></b>] e.g. '8;2;1;2'" ), origin ) },
108 { static_cast< int >( QgsSymbolLayer::Property::CapStyle ), QgsPropertyDefinition( "capStyle", QObject::tr( "Line cap style" ), QgsPropertyDefinition::CapStyle, origin ) },
109 { static_cast< int >( QgsSymbolLayer::Property::Placement ),
110 QgsPropertyDefinition(
111 "placement",
113 QObject::tr( "Marker placement" ),
114 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>]",
115 origin
116 ) },
117 { static_cast< int >( QgsSymbolLayer::Property::Interval ), QgsPropertyDefinition( "interval", QObject::tr( "Marker interval" ), QgsPropertyDefinition::DoublePositive, origin ) },
118 { static_cast< int >( QgsSymbolLayer::Property::OffsetAlongLine ), QgsPropertyDefinition( "offsetAlongLine", QObject::tr( "Offset along line" ), QgsPropertyDefinition::Double, origin ) },
119 { static_cast< int >( QgsSymbolLayer::Property::AverageAngleLength ),
120 QgsPropertyDefinition( "averageAngleLength", QObject::tr( "Average line angles over" ), QgsPropertyDefinition::DoublePositive, origin ) },
121 { static_cast< int >( QgsSymbolLayer::Property::HorizontalAnchor ), QgsPropertyDefinition( "hAnchor", QObject::tr( "Horizontal anchor point" ), QgsPropertyDefinition::HorizontalAnchor, origin ) },
122 { static_cast< int >( QgsSymbolLayer::Property::VerticalAnchor ), QgsPropertyDefinition( "vAnchor", QObject::tr( "Vertical anchor point" ), QgsPropertyDefinition::VerticalAnchor, origin ) },
123 { static_cast< int >( QgsSymbolLayer::Property::LayerEnabled ), QgsPropertyDefinition( "enabled", QObject::tr( "Layer enabled" ), QgsPropertyDefinition::Boolean, origin ) },
124 { static_cast< int >( QgsSymbolLayer::Property::ArrowWidth ), QgsPropertyDefinition( "arrowWidth", QObject::tr( "Arrow line width" ), QgsPropertyDefinition::StrokeWidth, origin ) },
125 { static_cast< int >( QgsSymbolLayer::Property::ArrowStartWidth ), QgsPropertyDefinition( "arrowStartWidth", QObject::tr( "Arrow line start width" ), QgsPropertyDefinition::StrokeWidth, origin ) },
126 { static_cast< int >( QgsSymbolLayer::Property::ArrowHeadLength ), QgsPropertyDefinition( "arrowHeadLength", QObject::tr( "Arrow head length" ), QgsPropertyDefinition::DoublePositive, origin ) },
127 { static_cast< int >( QgsSymbolLayer::Property::ArrowHeadThickness ),
128 QgsPropertyDefinition( "arrowHeadThickness", QObject::tr( "Arrow head thickness" ), QgsPropertyDefinition::DoublePositive, origin ) },
129 { static_cast< int >( QgsSymbolLayer::Property::ArrowHeadType ),
130 QgsPropertyDefinition( "arrowHeadType", QgsPropertyDefinition::DataTypeString, QObject::tr( "Arrow head type" ), QObject::tr( "string " ) + "[<b>single</b>|<b>reversed</b>|<b>double</b>]"_L1, origin ) },
131 { static_cast< int >( QgsSymbolLayer::Property::ArrowType ),
132 QgsPropertyDefinition( "arrowType", QgsPropertyDefinition::DataTypeString, QObject::tr( "Arrow type" ), QObject::tr( "string " ) + "[<b>plain</b>|<b>lefthalf</b>|<b>righthalf</b>]"_L1, origin ) },
133 { static_cast< int >( QgsSymbolLayer::Property::PointCount ), QgsPropertyDefinition( "pointCount", QObject::tr( "Point count" ), QgsPropertyDefinition::IntegerPositive, origin ) },
134 { static_cast< int >( QgsSymbolLayer::Property::RandomSeed ),
135 QgsPropertyDefinition( "randomSeed", QgsPropertyDefinition::DataTypeNumeric, QObject::tr( "Random number seed" ), QObject::tr( "integer > 0, or 0 for completely random sequence" ), origin ) },
136 { static_cast< int >( QgsSymbolLayer::Property::ClipPoints ), QgsPropertyDefinition( "clipPoints", QObject::tr( "Clip markers" ), QgsPropertyDefinition::Boolean, origin ) },
137 { static_cast< int >( QgsSymbolLayer::Property::DensityArea ), QgsPropertyDefinition( "densityArea", QObject::tr( "Density area" ), QgsPropertyDefinition::DoublePositive, origin ) },
138 { static_cast< int >( QgsSymbolLayer::Property::DashPatternOffset ),
139 QgsPropertyDefinition( "dashPatternOffset", QObject::tr( "Dash pattern offset" ), QgsPropertyDefinition::DoublePositive, origin ) },
140 { static_cast< int >( QgsSymbolLayer::Property::TrimStart ), QgsPropertyDefinition( "trimStart", QObject::tr( "Start trim distance" ), QgsPropertyDefinition::DoublePositive, origin ) },
141 { static_cast< int >( QgsSymbolLayer::Property::TrimEnd ), QgsPropertyDefinition( "trimEnd", QObject::tr( "End trim distance" ), QgsPropertyDefinition::DoublePositive, origin ) },
142 { static_cast< int >( QgsSymbolLayer::Property::LineStartWidthValue ),
143 QgsPropertyDefinition( "lineStartWidthValue", QObject::tr( "Line start width value" ), QgsPropertyDefinition::Double, origin ) },
144 { static_cast< int >( QgsSymbolLayer::Property::LineEndWidthValue ), QgsPropertyDefinition( "lineEndWidthValue", QObject::tr( "Line end width value" ), QgsPropertyDefinition::Double, origin ) },
145 { static_cast< int >( QgsSymbolLayer::Property::LineStartColorValue ),
146 QgsPropertyDefinition( "lineStartColorValue", QObject::tr( "Line start color value" ), QgsPropertyDefinition::Double, origin ) },
147 { static_cast< int >( QgsSymbolLayer::Property::LineEndColorValue ), QgsPropertyDefinition( "lineEndColorValue", QObject::tr( "Line end color value" ), QgsPropertyDefinition::Double, origin ) },
148 { static_cast< int >( QgsSymbolLayer::Property::MarkerClipping ),
149 QgsPropertyDefinition( "markerClipping", QgsPropertyDefinition::DataTypeString, QObject::tr( "Marker clipping mode" ), QObject::tr( "string " ) + "[<b>no</b>|<b>shape</b>|<b>centroid_within</b>|<b>completely_within</b>]"_L1, origin ) },
150 { static_cast< int >( QgsSymbolLayer::Property::RandomOffsetX ), QgsPropertyDefinition( "randomOffsetX", QObject::tr( "Horizontal random offset" ), QgsPropertyDefinition::Double, origin ) },
151 { static_cast< int >( QgsSymbolLayer::Property::RandomOffsetY ), QgsPropertyDefinition( "randomOffsetY", QObject::tr( "Vertical random offset" ), QgsPropertyDefinition::Double, origin ) },
152 { static_cast< int >( QgsSymbolLayer::Property::LineClipping ),
153 QgsPropertyDefinition( "lineClipping", QgsPropertyDefinition::DataTypeString, QObject::tr( "Line clipping mode" ), QObject::tr( "string " ) + "[<b>no</b>|<b>during_render</b>|<b>before_render</b>]"_L1, origin ) },
154 { static_cast< int >( QgsSymbolLayer::Property::SkipMultiples ), QgsPropertyDefinition( "skipMultiples", QObject::tr( "Skip multiples of" ), QgsPropertyDefinition::DoublePositive, origin ) },
155 { static_cast< int >( QgsSymbolLayer::Property::ShowMarker ), QgsPropertyDefinition( "showMarker", QObject::tr( "Show marker" ), QgsPropertyDefinition::Boolean, origin ) },
156 { static_cast< int >( QgsSymbolLayer::Property::BlankSegments ), QgsPropertyDefinition( "blankSegments", QObject::tr( "Line blank segments" ), QgsPropertyDefinition::String, origin ) },
157 };
158}
159
164
166{
167 installMasks( context, false );
168
169 if ( QgsSymbol *lSubSymbol = subSymbol() )
170 lSubSymbol->startFeatureRender( feature, context );
171}
172
174{
175 if ( QgsSymbol *lSubSymbol = subSymbol() )
176 lSubSymbol->stopFeatureRender( feature, context );
177
178 removeMasks( context, false );
179}
180
182{
183 return nullptr;
184}
185
187{
188 delete symbol;
189 return false;
190}
191
192bool QgsSymbolLayer::writeDxf( QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, QgsSymbolRenderContext &context, QPointF shift ) const
193{
194 Q_UNUSED( e )
195 Q_UNUSED( mmMapUnitScaleFactor )
196 Q_UNUSED( layerName )
197 Q_UNUSED( context )
198 Q_UNUSED( shift )
199 return false;
200}
201
203{
204 Q_UNUSED( e )
205 Q_UNUSED( context )
206 return 1.0;
207}
208
210{
211 Q_UNUSED( e )
212 Q_UNUSED( context )
213 return 1.0;
214}
215
217{
218 Q_UNUSED( e )
219 Q_UNUSED( context )
220 return 0.0;
221}
222
224{
225 Q_UNUSED( context )
226 return color();
227}
228
230{
231 Q_UNUSED( context )
232 return 0.0;
233}
234
236{
237 Q_UNUSED( unit )
238 return QVector<qreal>();
239}
240
241Qt::PenStyle QgsSymbolLayer::dxfPenStyle() const
242{
243 return Qt::SolidLine;
244}
245
247{
248 Q_UNUSED( context )
249 return color();
250}
251
252Qt::BrushStyle QgsSymbolLayer::dxfBrushStyle() const
253{
254 return Qt::NoBrush;
255}
256
258{
259 return mPaintEffect.get();
260}
261
263{
264 if ( effect == mPaintEffect.get() )
265 return;
266
267 mPaintEffect.reset( effect );
268}
269
271 : mType( other.mType )
272 , mEnabled( other.mEnabled )
273 , mUserFlags( other.mUserFlags )
274 , mLocked( other.mLocked )
275 , mColor( other.mColor )
277 , mId( other.mId )
280 , mPaintEffect( other.mPaintEffect ? other.mPaintEffect->clone() : nullptr )
281 , mFields( other.mFields )
282 , mClipPath( other.mClipPath )
283{}
284
286 : mType( type )
287 , mLocked( locked )
288 , mId( QUuid::createUuid().toString() )
289{}
290
292{
293 if ( !other )
294 return false;
295
296 if ( layerType() != other->layerType() )
297 return false;
298
299 // TODO -- we could consider each property individually
301 return false;
302
303 // shortcut now that we know there's no randomness/changing overrides involved
304 if ( other == this )
305 return true;
306
307 if ( mEnabled != other->mEnabled
308 || mColor != other->mColor
309 || mRenderingPass != other->mRenderingPass
310
311 // TODO -- we could consider the actual settings of the paint effect
313 || ( other->mPaintEffect && !QgsPaintEffectRegistry::isDefaultStack( other->mPaintEffect.get() ) ) )
314 return false;
315
316 return properties() == other->properties();
317}
318
323
328
333
335{
336 return mColor;
337}
338
339void QgsSymbolLayer::setColor( const QColor &color )
340{
341 mColor = color;
342}
343
344void QgsSymbolLayer::setStrokeColor( const QColor & )
345{}
346
348{
349 return QColor();
350}
351
352void QgsSymbolLayer::setFillColor( const QColor & )
353{}
354
356{
357 return QColor();
358}
359
361{
363
364 if ( !context.fields().isEmpty() )
365 {
366 //QgsFields is implicitly shared, so it's cheap to make a copy
367 mFields = context.fields();
368 }
369}
370
372{
373 return mDataDefinedProperties.hasActiveProperties();
374}
375
377{
378 QgsSymbolLayer::initPropertyDefinitions();
379 return sPropertyDefinitions;
380}
381
383
385{
387 return true;
388
389 return symbol->type() == mType;
390}
391
393{
394 return false;
395}
396
398{
399 return false;
400}
401
406
408{
409 return mRenderingPass;
410}
411
412QSet<QString> QgsSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
413{
414 // calling referencedFields() with ignoreContext=true because in our expression context
415 // we do not have valid QgsFields yet - because of that the field names from expressions
416 // wouldn't get reported
417 QSet<QString> columns = mDataDefinedProperties.referencedFields( context.expressionContext(), true );
418 return columns;
419}
420
421QgsProperty propertyFromMap( const QVariantMap &map, const QString &baseName )
422{
423 QString prefix;
424 if ( !baseName.isEmpty() )
425 {
426 prefix.append( u"%1_dd_"_s.arg( baseName ) );
427 }
428
429 if ( !map.contains( u"%1expression"_s.arg( prefix ) ) )
430 {
431 //requires at least the expression value
432 return QgsProperty();
434
435 bool active = ( map.value( u"%1active"_s.arg( prefix ), u"1"_s ) != "0"_L1 );
436 QString expression = map.value( u"%1expression"_s.arg( prefix ) ).toString();
437 bool useExpression = ( map.value( u"%1useexpr"_s.arg( prefix ), u"1"_s ) != "0"_L1 );
438 QString field = map.value( u"%1field"_s.arg( prefix ), QString() ).toString();
439
440 if ( useExpression )
441 return QgsProperty::fromExpression( expression, active );
442 else
443 return QgsProperty::fromField( field, active );
444}
445
446void QgsSymbolLayer::restoreOldDataDefinedProperties( const QVariantMap &stringMap )
447{
448 // property string to type upgrade map
449 static const QMap< QString, int > OLD_PROPS {
450 { "color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
451 { "arrow_width", static_cast< int >( QgsSymbolLayer::Property::ArrowWidth ) },
452 { "arrow_start_width", static_cast< int >( QgsSymbolLayer::Property::ArrowStartWidth ) },
453 { "head_length", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadLength ) },
454 { "head_thickness", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadThickness ) },
455 { "offset", static_cast< int >( QgsSymbolLayer::Property::Offset ) },
456 { "head_type", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadType ) },
457 { "arrow_type", static_cast< int >( QgsSymbolLayer::Property::ArrowType ) },
458 { "width_field", static_cast< int >( QgsSymbolLayer::Property::Width ) },
459 { "height_field", static_cast< int >( QgsSymbolLayer::Property::Height ) },
460 { "rotation_field", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
461 { "outline_width_field", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
462 { "fill_color_field", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
463 { "outline_color_field", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
464 { "symbol_name_field", static_cast< int >( QgsSymbolLayer::Property::Name ) },
465 { "outline_width", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
466 { "outline_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
467 { "join_style", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
468 { "fill_color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
469 { "outline_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
470 { "width", static_cast< int >( QgsSymbolLayer::Property::Width ) },
471 { "height", static_cast< int >( QgsSymbolLayer::Property::Height ) },
472 { "symbol_name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
473 { "angle", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
474 { "fill_style", static_cast< int >( QgsSymbolLayer::Property::FillStyle ) },
475 { "color_border", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
476 { "width_border", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
477 { "border_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
478 { "border_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
479 { "color2", static_cast< int >( QgsSymbolLayer::Property::SecondaryColor ) },
480 { "gradient_type", static_cast< int >( QgsSymbolLayer::Property::GradientType ) },
481 { "coordinate_mode", static_cast< int >( QgsSymbolLayer::Property::CoordinateMode ) },
482 { "spread", static_cast< int >( QgsSymbolLayer::Property::GradientSpread ) },
483 { "reference1_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference1X ) },
484 { "reference1_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference1Y ) },
485 { "reference2_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference2X ) },
486 { "reference2_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference2Y ) },
487 { "reference1_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference1IsCentroid ) },
488 { "reference2_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference2IsCentroid ) },
489 { "blur_radius", static_cast< int >( QgsSymbolLayer::Property::BlurRadius ) },
490 { "use_whole_shape", static_cast< int >( QgsSymbolLayer::Property::ShapeburstUseWholeShape ) },
491 { "max_distance", static_cast< int >( QgsSymbolLayer::Property::ShapeburstMaxDistance ) },
492 { "ignore_rings", static_cast< int >( QgsSymbolLayer::Property::ShapeburstIgnoreRings ) },
493 { "svgFillColor", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
494 { "svgOutlineColor", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
495 { "svgOutlineWidth", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
496 { "svgFile", static_cast< int >( QgsSymbolLayer::Property::File ) },
497 { "lineangle", static_cast< int >( QgsSymbolLayer::Property::LineAngle ) },
498 { "distance", static_cast< int >( QgsSymbolLayer::Property::LineDistance ) },
499 { "distance_x", static_cast< int >( QgsSymbolLayer::Property::DistanceX ) },
500 { "distance_y", static_cast< int >( QgsSymbolLayer::Property::DistanceY ) },
501 { "displacement_x", static_cast< int >( QgsSymbolLayer::Property::DisplacementX ) },
502 { "displacement_y", static_cast< int >( QgsSymbolLayer::Property::DisplacementY ) },
503 { "file", static_cast< int >( QgsSymbolLayer::Property::File ) },
504 { "alpha", static_cast< int >( QgsSymbolLayer::Property::Opacity ) },
505 { "customdash", static_cast< int >( QgsSymbolLayer::Property::CustomDash ) },
506 { "line_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
507 { "joinstyle", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
508 { "capstyle", static_cast< int >( QgsSymbolLayer::Property::CapStyle ) },
509 { "placement", static_cast< int >( QgsSymbolLayer::Property::Placement ) },
510 { "interval", static_cast< int >( QgsSymbolLayer::Property::Interval ) },
511 { "offset_along_line", static_cast< int >( QgsSymbolLayer::Property::OffsetAlongLine ) },
512 { "name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
513 { "size", static_cast< int >( QgsSymbolLayer::Property::Size ) },
514 { "fill", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
515 { "outline", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
516 { "char", static_cast< int >( QgsSymbolLayer::Property::Character ) },
517 { "enabled", static_cast< int >( QgsSymbolLayer::Property::LayerEnabled ) },
518 { "rotation", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
519 { "horizontal_anchor_point", static_cast< int >( QgsSymbolLayer::Property::HorizontalAnchor ) },
520 { "vertical_anchor_point", static_cast< int >( QgsSymbolLayer::Property::VerticalAnchor ) },
521 };
522
523 QVariantMap::const_iterator propIt = stringMap.constBegin();
524 for ( ; propIt != stringMap.constEnd(); ++propIt )
525 {
526 std::unique_ptr<QgsProperty> prop;
527 QString propertyName;
528
529 if ( propIt.key().endsWith( "_dd_expression"_L1 ) )
530 {
531 //found a data defined property
532
533 //get data defined property name by stripping "_dd_expression" from property key
534 propertyName = propIt.key().left( propIt.key().length() - 14 );
535
536 prop = std::make_unique<QgsProperty>( propertyFromMap( stringMap, propertyName ) );
537 }
538 else if ( propIt.key().endsWith( "_expression"_L1 ) )
539 {
540 //old style data defined property, upgrade
541
542 //get data defined property name by stripping "_expression" from property key
543 propertyName = propIt.key().left( propIt.key().length() - 11 );
544
545 prop = std::make_unique<QgsProperty>( QgsProperty::fromExpression( propIt.value().toString() ) );
546 }
547
548 if ( !prop || !OLD_PROPS.contains( propertyName ) )
549 continue;
550
551 int key = OLD_PROPS.value( propertyName );
552
553 if ( type() == Qgis::SymbolType::Line )
554 {
555 //these keys had different meaning for line symbol layers
556 if ( propertyName == "width"_L1 )
557 key = static_cast< int >( QgsSymbolLayer::Property::StrokeWidth );
558 else if ( propertyName == "color"_L1 )
559 key = static_cast< int >( QgsSymbolLayer::Property::StrokeColor );
560 }
561
562 setDataDefinedProperty( static_cast< QgsSymbolLayer::Property >( key ), QgsProperty( *prop.get() ) );
563 }
564}
565
572
574{
575 if ( !destLayer )
576 return;
577
579}
580
582{
583 if ( !destLayer || !mPaintEffect )
584 return;
585
587 destLayer->setPaintEffect( mPaintEffect->clone() );
588 else
589 destLayer->setPaintEffect( nullptr );
590}
591
593 : QgsSymbolLayer( Qgis::SymbolType::Marker, locked )
594{}
595
597 : QgsSymbolLayer( Qgis::SymbolType::Line, locked )
598{}
599
604
606{
607 mRingFilter = filter;
608}
609
611 : QgsSymbolLayer( Qgis::SymbolType::Fill, locked )
612{}
613
628
630{
631 Q_UNUSED( context )
632}
633
635{
636 Q_UNUSED( context )
637}
638
640{
641 startRender( context );
642 QgsPaintEffect *effect = paintEffect();
643
644 QPolygonF points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Marker, size ).value( 0 ).value( 0 )
646
647 std::unique_ptr< QgsEffectPainter > effectPainter;
648 if ( effect && effect->enabled() )
649 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
650
651 for ( QPointF point : std::as_const( points ) )
652 renderPoint( point, context );
653
654 effectPainter.reset();
655
656 stopRender( context );
657}
658
659void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double &offsetX, double &offsetY ) const
660{
662}
663
664void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double width, double height, double &offsetX, double &offsetY ) const
665{
666 markerOffset( context, width, height, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
667}
668
670 QgsSymbolRenderContext &context,
671 double width,
672 double height,
673 Qgis::RenderUnit widthUnit,
674 Qgis::RenderUnit heightUnit,
675 double &offsetX,
676 double &offsetY,
677 const QgsMapUnitScale &widthMapUnitScale,
678 const QgsMapUnitScale &heightMapUnitScale
679) const
680{
681 offsetX = mOffset.x();
682 offsetY = mOffset.y();
683
685 {
688 bool ok = false;
689 const QPointF offset = QgsSymbolLayerUtils::toPoint( exprVal, &ok );
690 if ( ok )
691 {
692 offsetX = offset.x();
693 offsetY = offset.y();
694 }
695 }
696
699
703 {
705 if ( !QgsVariantUtils::isNull( exprVal ) )
706 {
707 horizontalAnchorPoint = decodeHorizontalAnchorPoint( exprVal.toString() );
708 }
709 }
711 {
713 if ( !QgsVariantUtils::isNull( exprVal ) )
714 {
715 verticalAnchorPoint = decodeVerticalAnchorPoint( exprVal.toString() );
716 }
717 }
718
719 //correct horizontal position according to anchor point
721 {
722 return;
723 }
724
725 double anchorPointCorrectionX = context.renderContext().convertToPainterUnits( width, widthUnit, widthMapUnitScale ) / 2.0;
726 if ( widthUnit == Qgis::RenderUnit::MetersInMapUnits
728 {
729 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
730 // and clamp it to a reasonable range. It's the best we can do in this situation!
731 anchorPointCorrectionX = std::min( std::max( context.renderContext().convertToPainterUnits( width, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
732 }
733
734 double anchorPointCorrectionY = context.renderContext().convertToPainterUnits( height, heightUnit, heightMapUnitScale ) / 2.0;
735 if ( heightUnit == Qgis::RenderUnit::MetersInMapUnits
737 {
738 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
739 // and clamp it to a reasonable range. It's the best we can do in this situation!
740 anchorPointCorrectionY = std::min( std::max( context.renderContext().convertToPainterUnits( height, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
741 }
742
743 switch ( horizontalAnchorPoint )
744 {
746 offsetX += anchorPointCorrectionX;
747 break;
749 offsetX -= anchorPointCorrectionX;
750 break;
752 break;
753 }
754
755 //correct vertical position according to anchor point
756 switch ( verticalAnchorPoint )
757 {
759 offsetY += anchorPointCorrectionY;
760 break;
763 offsetY -= anchorPointCorrectionY;
764 break;
766 break;
767 }
768}
769
771{
772 angle = DEG2RAD( angle );
773 double c = std::cos( angle ), s = std::sin( angle );
774 return QPointF( offset.x() * c - offset.y() * s, offset.x() * s + offset.y() * c );
775}
776
777Qgis::HorizontalAnchorPoint QgsMarkerSymbolLayer::decodeHorizontalAnchorPoint( const QString &str )
778{
779 if ( str.compare( "left"_L1, Qt::CaseInsensitive ) == 0 )
780 {
782 }
783 else if ( str.compare( "right"_L1, Qt::CaseInsensitive ) == 0 )
784 {
786 }
787 else
788 {
790 }
791}
792
793Qgis::VerticalAnchorPoint QgsMarkerSymbolLayer::decodeVerticalAnchorPoint( const QString &str )
794{
795 if ( str.compare( "top"_L1, Qt::CaseInsensitive ) == 0 )
796 {
798 }
799 else if ( str.compare( "bottom"_L1, Qt::CaseInsensitive ) == 0 )
800 {
802 }
803 else
804 {
806 }
807}
808
810{
811 mSizeUnit = unit;
812 mOffsetUnit = unit;
813}
814
816{
817 if ( mOffsetUnit != mSizeUnit )
818 {
820 }
821 return mOffsetUnit;
822}
823
829
838
840{
841 mWidthUnit = unit;
842 mOffsetUnit = unit;
843}
844
849
854
859
860
862{
863 const QList< QList< QPolygonF > > points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Line, size )
865 startRender( context );
866 QgsPaintEffect *effect = paintEffect();
867
868 std::unique_ptr< QgsEffectPainter > effectPainter;
869 if ( effect && effect->enabled() )
870 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
871
872 for ( const QList< QPolygonF > &line : points )
873 renderPolyline( line.value( 0 ), context );
874
875 effectPainter.reset();
876
877 stopRender( context );
878}
879
880void QgsLineSymbolLayer::renderPolygonStroke( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
881{
882 QgsExpressionContextScope *scope = nullptr;
883 std::unique_ptr< QgsExpressionContextScopePopper > scopePopper;
885 {
886 scope = new QgsExpressionContextScope();
887 scopePopper = std::make_unique< QgsExpressionContextScopePopper >( context.renderContext().expressionContext(), scope );
888 }
889
890 switch ( mRingFilter )
891 {
892 case AllRings:
893 case ExteriorRingOnly:
894 {
895 if ( scope )
897 renderPolyline( points, context );
898 break;
899 }
901 break;
902 }
903
904 if ( rings )
905 {
906 switch ( mRingFilter )
907 {
908 case AllRings:
910 {
911 int ringIndex = 1;
912 for ( const QPolygonF &ring : std::as_const( *rings ) )
913 {
914 if ( scope )
916
917 renderPolyline( ring, context );
918 ringIndex++;
919 }
920 }
921 break;
922 case ExteriorRingOnly:
923 break;
924 }
925 }
926}
927
928double QgsLineSymbolLayer::width( const QgsRenderContext &context ) const
929{
931}
932
934{
935 Q_UNUSED( context )
937}
938
939
941{
942 const QList< QList< QPolygonF > > polys = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Fill, size )
944
945 startRender( context );
946 QgsPaintEffect *effect = paintEffect();
947
948 std::unique_ptr< QgsEffectPainter > effectPainter;
949 if ( effect && effect->enabled() )
950 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
951
952 for ( const QList< QPolygonF > &poly : polys )
953 {
954 QVector< QPolygonF > rings;
955 for ( int i = 1; i < poly.size(); ++i )
956 rings << poly.at( i );
957 renderPolygon( poly.value( 0 ), &rings, context );
958 }
959
960 effectPainter.reset();
961
962 stopRender( context );
963}
964
966{
967 return QImage();
968}
969
970void QgsFillSymbolLayer::_renderPolygon( QPainter *p, const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
971{
972 if ( !p )
973 {
974 return;
975 }
976
977 // Disable 'Antialiasing' if the geometry was generalized in the current RenderContext (We known that it must have least #5 points).
978 if ( points.size() <= 5
981 && ( p->renderHints() & QPainter::Antialiasing ) )
982 {
983 p->setRenderHint( QPainter::Antialiasing, false );
984 p->drawRect( points.boundingRect() );
985 p->setRenderHint( QPainter::Antialiasing, true );
986 return;
987 }
988
989 // polygons outlines are sometimes rendered wrongly with drawPolygon, when
990 // clipped (see #13343), so use drawPath instead.
991 if ( !rings && p->pen().style() == Qt::NoPen )
992 {
993 // simple polygon without holes
994 p->drawPolygon( points );
995 }
996 else
997 {
998 // polygon with holes must be drawn using painter path
999 QPainterPath path;
1000 path.addPolygon( points );
1001
1002 if ( rings )
1003 {
1004 for ( auto it = rings->constBegin(); it != rings->constEnd(); ++it )
1005 {
1006 QPolygonF ring = *it;
1007 path.addPolygon( ring );
1008 }
1009 }
1010
1011 p->drawPath( path );
1012 }
1013}
1014
1015bool QgsMarkerSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, QgsSldExportContext &context ) const
1016{
1017 QDomElement symbolizerElem = doc.createElement( u"se:PointSymbolizer"_s );
1018 const QVariantMap props = context.extraProperties();
1019 if ( !props.value( u"uom"_s, QString() ).toString().isEmpty() )
1020 symbolizerElem.setAttribute( u"uom"_s, props.value( u"uom"_s, QString() ).toString() );
1021 element.appendChild( symbolizerElem );
1022
1023 // <Geometry>
1024 QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( u"geom"_s, QString() ).toString(), context );
1025
1026 return writeSldMarker( doc, symbolizerElem, context );
1027}
1028
1029void QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
1030{
1031 QgsSldExportContext context;
1032 context.setExtraProperties( props );
1033 writeSldMarker( doc, element, context );
1034}
1035
1036bool QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
1037{
1038 context.pushError( QObject::tr( "Marker symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1039 return false;
1040}
1041
1042QList<QgsSymbolLayerReference> QgsSymbolLayer::masks() const
1043{
1044 return {};
1045}
1046
1051
1056
1058{
1059 double size = mSize;
1061 {
1062 bool ok = false;
1064
1065 if ( ok )
1066 {
1067 switch ( mScaleMethod )
1068 {
1070 size = std::sqrt( size );
1071 break;
1073 break;
1074 }
1075 }
1076 }
1078}
1079
1081{
1082 double angle = mAngle;
1084 {
1087 }
1088 return angle;
1089}
1090
1091QPainterPath generateClipPath( const QgsRenderContext &renderContext, const QString &id, const QRectF *rect, bool &foundGeometries )
1092{
1093 foundGeometries = false;
1094 const QVector<QgsGeometry> clipGeometries = rect ? QgsSymbolLayerUtils::collectSymbolLayerClipGeometries( renderContext, id, *rect ) : renderContext.symbolLayerClipGeometries( id );
1095 if ( !clipGeometries.empty() )
1096 {
1097 foundGeometries = true;
1098 QgsGeometry mergedGeom = QgsGeometry::unaryUnion( clipGeometries );
1099 if ( renderContext.maskSettings().simplifyTolerance() > 0 )
1100 {
1101 QgsGeos geos( mergedGeom.constGet() );
1102 mergedGeom = QgsGeometry( geos.simplify( renderContext.maskSettings().simplifyTolerance() ) );
1103 }
1104#if GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR < 10
1105 // structure would be better, but too old GEOS
1106 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Linework );
1107#else
1108 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Structure );
1109#endif
1110 if ( !mergedGeom.isEmpty() )
1111 {
1112 QgsGeometry exterior;
1113 const QgsRectangle contextBounds( 0, 0, renderContext.outputSize().width(), renderContext.outputSize().height() );
1114 if ( rect )
1115 {
1116 exterior = QgsGeometry::fromRect( QgsRectangle( *rect ).intersect( contextBounds ) );
1117 }
1118 else
1119 {
1120 exterior = QgsGeometry::fromRect( contextBounds );
1121 }
1122 const QgsGeometry maskGeom = exterior.difference( mergedGeom );
1123 if ( !maskGeom.isNull() )
1124 {
1125 return maskGeom.constGet()->asQPainterPath();
1126 }
1127 }
1128 }
1129 return QPainterPath();
1130}
1131
1133{
1134 const QgsRenderContext &renderContext = context.renderContext();
1135
1136 bool foundGeometries = false;
1137 mClipPath = generateClipPath( renderContext, id(), nullptr, foundGeometries );
1138}
1139
1140bool QgsSymbolLayer::installMasks( QgsRenderContext &context, bool recursive, const QRectF &rect )
1141{
1142 bool res = false;
1143 if ( !mClipPath.isEmpty() )
1144 {
1145 context.painter()->save();
1146 context.painter()->setClipPath( mClipPath, Qt::IntersectClip );
1147 res = true;
1148 }
1149 else if ( rect.isValid() )
1150 {
1151 // find just the clip geometries within the area the symbol layer will be drawn over
1152 bool foundGeometries = false;
1153 const QPainterPath clipPath = generateClipPath( context, id(), &rect, foundGeometries );
1154 if ( !clipPath.isEmpty() )
1155 {
1156 context.painter()->setClipPath( clipPath, context.painter()->clipPath().isEmpty() ? Qt::ReplaceClip : Qt::IntersectClip );
1157 res = true;
1158 }
1159 }
1160
1161 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1162 {
1163 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1164 for ( QgsSymbolLayer *sl : layers )
1165 res = sl->installMasks( context, true ) || res;
1166 }
1167
1168 return res;
1169}
1170
1171void QgsSymbolLayer::removeMasks( QgsRenderContext &context, bool recursive )
1172{
1173 if ( !mClipPath.isEmpty() )
1174 {
1175 context.painter()->restore();
1176 }
1177
1178 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1179 {
1180 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1181 for ( QgsSymbolLayer *sl : layers )
1182 sl->removeMasks( context, true );
1183 }
1184}
1185
1190
1191void QgsSymbolLayer::setId( const QString &id )
1192{
1193 mId = id;
1194}
1195
1196QString QgsSymbolLayer::id() const
1197{
1198 return mId;
1199}
1200
1201void QgsSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
1202{
1203 QgsSldExportContext context;
1204 context.setExtraProperties( props );
1205 toSld( doc, element, context );
1206}
1207
1208bool QgsSymbolLayer::toSld( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
1209{
1210 context.pushError( QObject::tr( "Symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1211 return false;
1212}
Provides global constants and enumerations for use throughout the application.
Definition qgis.h:62
@ AntialiasingSimplification
The geometries can be rendered with 'AntiAliasing' disabled because of it is '1-pixel size'.
Definition qgis.h:3133
@ ScaleDiameter
Calculate scale by the diameter.
Definition qgis.h:652
@ ScaleArea
Calculate scale by the area.
Definition qgis.h:651
QFlags< SymbolLayerFlag > SymbolLayerFlags
Symbol layer flags.
Definition qgis.h:913
QFlags< SymbolLayerUserFlag > SymbolLayerUserFlags
Symbol layer user flags.
Definition qgis.h:936
VerticalAnchorPoint
Marker symbol vertical anchor points.
Definition qgis.h:840
@ Bottom
Align to bottom of symbol.
Definition qgis.h:843
@ Center
Align to vertical center of symbol.
Definition qgis.h:842
@ Baseline
Align to baseline of symbol, e.g. font baseline for font marker symbol layers. Treated as Bottom if n...
Definition qgis.h:844
@ Top
Align to top of symbol.
Definition qgis.h:841
RenderUnit
Rendering size units.
Definition qgis.h:5340
@ Millimeters
Millimeters.
Definition qgis.h:5341
@ Unknown
Mixed or unknown units.
Definition qgis.h:5347
@ MetersInMapUnits
Meters value as Map units.
Definition qgis.h:5348
@ RenderSymbolPreview
The render is for a symbol preview only and map based properties may not be available,...
Definition qgis.h:2857
@ RenderLayerTree
The render is for a layer tree display where map based properties are not available and where avoidan...
Definition qgis.h:2868
@ Linework
Combines all rings into a set of noded lines and then extracts valid polygons from that linework.
Definition qgis.h:2261
@ Structure
Structured method, first makes all rings valid and then merges shells and subtracts holes from shells...
Definition qgis.h:2262
@ DisableSelectionRecoloring
If present, indicates that the symbol layer should not be recolored when rendering selected features.
Definition qgis.h:927
SymbolType
Symbol types.
Definition qgis.h:636
@ Marker
Marker symbol.
Definition qgis.h:637
@ Line
Line symbol.
Definition qgis.h:638
@ Fill
Fill symbol.
Definition qgis.h:639
HorizontalAnchorPoint
Marker symbol horizontal anchor points.
Definition qgis.h:826
@ Center
Align to horizontal center of symbol.
Definition qgis.h:828
@ Right
Align to right side of symbol.
Definition qgis.h:829
@ Left
Align to left side of symbol.
Definition qgis.h:827
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:60
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:139
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:74
@ Double
Double value (including negative values).
Definition qgsproperty.h:56
@ VerticalAnchor
Vertical anchor point.
Definition qgsproperty.h:75
@ Double0To1
Double value between 0-1 (inclusive).
Definition qgsproperty.h:58
@ FillStyle
Fill style (eg solid, lines).
Definition qgsproperty.h:72
@ StrokeWidth
Line stroke width.
Definition qgsproperty.h:71
@ LineStyle
Line style (eg solid/dashed).
Definition qgsproperty.h:70
@ String
Any string value.
Definition qgsproperty.h:60
@ Boolean
Boolean value.
Definition qgsproperty.h:52
@ PenJoinStyle
Pen join style.
Definition qgsproperty.h:65
@ IntegerPositive
Positive integer values (including 0).
Definition qgsproperty.h:54
@ Opacity
Opacity (0-100).
Definition qgsproperty.h:61
@ CapStyle
Line cap style (eg round).
Definition qgsproperty.h:73
@ Rotation
Rotation (value between 0-360 degrees).
Definition qgsproperty.h:59
@ Size
1D size (eg marker radius, or square marker height/width)
Definition qgsproperty.h:68
@ ColorWithAlpha
Color with alpha channel.
Definition qgsproperty.h:63
@ DoublePositive
Positive double value (including 0).
Definition qgsproperty.h:57
@ DataTypeString
Property requires a string value.
Definition qgsproperty.h:91
@ DataTypeNumeric
Property requires a numeric value.
Definition qgsproperty.h:98
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:148
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.
void copyCommonProperties(QgsSymbolLayer *destLayer) const
Copies all common base class properties from this layer to another symbol layer.
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.
QString selectiveMaskingSourceSetId() const
Returns the selective masking source set ID for this symbol layer.
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.
QString mSelectiveMaskingSourceSetId
void setSelectiveMaskingSourceSetId(const QString &id)
Sets the selective masking source set id for this symbol layer.
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:227
Qgis::SymbolType type() const
Returns the symbol's type.
Definition qgssymbol.h:296
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:76
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.