QGIS API Documentation 4.1.0-Master (ca2ac17535b)
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 { static_cast< int >( QgsSymbolLayer::Property::ExtraItems ), QgsPropertyDefinition( "extraItems", QObject::tr( "Line extra item" ), QgsPropertyDefinition::String, origin ) },
158 };
159}
160
165
167{
168 installMasks( context, false );
169
170 if ( QgsSymbol *lSubSymbol = subSymbol() )
171 lSubSymbol->startFeatureRender( feature, context );
172}
173
175{
176 if ( QgsSymbol *lSubSymbol = subSymbol() )
177 lSubSymbol->stopFeatureRender( feature, context );
178
179 removeMasks( context, false );
180}
181
183{
184 return nullptr;
185}
186
188{
189 delete symbol;
190 return false;
191}
192
193bool QgsSymbolLayer::writeDxf( QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, QgsSymbolRenderContext &context, QPointF shift ) const
194{
195 Q_UNUSED( e )
196 Q_UNUSED( mmMapUnitScaleFactor )
197 Q_UNUSED( layerName )
198 Q_UNUSED( context )
199 Q_UNUSED( shift )
200 return false;
201}
202
204{
205 Q_UNUSED( e )
206 return dxfWidth( context );
207}
208
210{
211 Q_UNUSED( context )
212 return 1.0;
213}
214
216{
217 Q_UNUSED( e )
218 return dxfSize( context );
219}
220
222{
223 Q_UNUSED( context )
224 return 1.0;
225}
226
228{
229 Q_UNUSED( e )
230 return dxfOffset( context );
231}
232
234{
235 Q_UNUSED( context )
236 return 0.0;
237}
238
240{
241 Q_UNUSED( context )
242 return color();
243}
244
246{
247 Q_UNUSED( context )
248 return 0.0;
249}
250
252{
253 Q_UNUSED( unit )
254 return QVector<qreal>();
255}
256
257Qt::PenStyle QgsSymbolLayer::dxfPenStyle() const
258{
259 return Qt::SolidLine;
260}
261
263{
264 Q_UNUSED( context )
265 return color();
266}
267
268Qt::BrushStyle QgsSymbolLayer::dxfBrushStyle() const
269{
270 return Qt::NoBrush;
271}
272
274{
275 return mPaintEffect.get();
276}
277
279{
280 if ( effect == mPaintEffect.get() )
281 return;
282
283 mPaintEffect.reset( effect );
284}
285
287 : mType( other.mType )
288 , mEnabled( other.mEnabled )
289 , mUserFlags( other.mUserFlags )
290 , mLocked( other.mLocked )
291 , mColor( other.mColor )
293 , mId( other.mId )
296 , mPaintEffect( other.mPaintEffect ? other.mPaintEffect->clone() : nullptr )
297 , mFields( other.mFields )
298 , mClipPath( other.mClipPath )
299{}
300
302 : mType( type )
303 , mLocked( locked )
304 , mId( QUuid::createUuid().toString() )
305{}
306
308{
309 if ( !other )
310 return false;
311
312 if ( layerType() != other->layerType() )
313 return false;
314
315 // TODO -- we could consider each property individually
317 return false;
318
319 // shortcut now that we know there's no randomness/changing overrides involved
320 if ( other == this )
321 return true;
322
323 if ( mEnabled != other->mEnabled
324 || mColor != other->mColor
325 || mRenderingPass != other->mRenderingPass
326
327 // TODO -- we could consider the actual settings of the paint effect
329 || ( other->mPaintEffect && !QgsPaintEffectRegistry::isDefaultStack( other->mPaintEffect.get() ) ) )
330 return false;
331
332 return properties() == other->properties();
333}
334
339
344
349
351{
352 return mColor;
353}
354
355void QgsSymbolLayer::setColor( const QColor &color )
356{
357 mColor = color;
358}
359
360void QgsSymbolLayer::setStrokeColor( const QColor & )
361{}
362
364{
365 return QColor();
366}
367
368void QgsSymbolLayer::setFillColor( const QColor & )
369{}
370
372{
373 return QColor();
374}
375
377{
379
380 if ( !context.fields().isEmpty() )
381 {
382 //QgsFields is implicitly shared, so it's cheap to make a copy
383 mFields = context.fields();
384 }
385}
386
388{
389 return mDataDefinedProperties.hasActiveProperties();
390}
391
393{
394 QgsSymbolLayer::initPropertyDefinitions();
395 return sPropertyDefinitions;
396}
397
399
401{
403 return true;
404
405 return symbol->type() == mType;
406}
407
409{
410 return false;
411}
412
414{
415 return false;
416}
417
422
424{
425 return mRenderingPass;
426}
427
428QSet<QString> QgsSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
429{
430 // calling referencedFields() with ignoreContext=true because in our expression context
431 // we do not have valid QgsFields yet - because of that the field names from expressions
432 // wouldn't get reported
433 QSet<QString> columns = mDataDefinedProperties.referencedFields( context.expressionContext(), true );
434 return columns;
435}
436
437QgsProperty propertyFromMap( const QVariantMap &map, const QString &baseName )
438{
439 QString prefix;
440 if ( !baseName.isEmpty() )
441 {
442 prefix.append( u"%1_dd_"_s.arg( baseName ) );
443 }
444
445 if ( !map.contains( u"%1expression"_s.arg( prefix ) ) )
446 {
447 //requires at least the expression value
448 return QgsProperty();
449 }
450
451 bool active = ( map.value( u"%1active"_s.arg( prefix ), u"1"_s ) != "0"_L1 );
452 QString expression = map.value( u"%1expression"_s.arg( prefix ) ).toString();
453 bool useExpression = ( map.value( u"%1useexpr"_s.arg( prefix ), u"1"_s ) != "0"_L1 );
454 QString field = map.value( u"%1field"_s.arg( prefix ), QString() ).toString();
455
456 if ( useExpression )
457 return QgsProperty::fromExpression( expression, active );
458 else
459 return QgsProperty::fromField( field, active );
460}
461
462void QgsSymbolLayer::restoreOldDataDefinedProperties( const QVariantMap &stringMap )
463{
464 // property string to type upgrade map
465 static const QMap< QString, int > OLD_PROPS {
466 { "color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
467 { "arrow_width", static_cast< int >( QgsSymbolLayer::Property::ArrowWidth ) },
468 { "arrow_start_width", static_cast< int >( QgsSymbolLayer::Property::ArrowStartWidth ) },
469 { "head_length", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadLength ) },
470 { "head_thickness", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadThickness ) },
471 { "offset", static_cast< int >( QgsSymbolLayer::Property::Offset ) },
472 { "head_type", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadType ) },
473 { "arrow_type", static_cast< int >( QgsSymbolLayer::Property::ArrowType ) },
474 { "width_field", static_cast< int >( QgsSymbolLayer::Property::Width ) },
475 { "height_field", static_cast< int >( QgsSymbolLayer::Property::Height ) },
476 { "rotation_field", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
477 { "outline_width_field", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
478 { "fill_color_field", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
479 { "outline_color_field", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
480 { "symbol_name_field", static_cast< int >( QgsSymbolLayer::Property::Name ) },
481 { "outline_width", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
482 { "outline_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
483 { "join_style", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
484 { "fill_color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
485 { "outline_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
486 { "width", static_cast< int >( QgsSymbolLayer::Property::Width ) },
487 { "height", static_cast< int >( QgsSymbolLayer::Property::Height ) },
488 { "symbol_name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
489 { "angle", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
490 { "fill_style", static_cast< int >( QgsSymbolLayer::Property::FillStyle ) },
491 { "color_border", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
492 { "width_border", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
493 { "border_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
494 { "border_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
495 { "color2", static_cast< int >( QgsSymbolLayer::Property::SecondaryColor ) },
496 { "gradient_type", static_cast< int >( QgsSymbolLayer::Property::GradientType ) },
497 { "coordinate_mode", static_cast< int >( QgsSymbolLayer::Property::CoordinateMode ) },
498 { "spread", static_cast< int >( QgsSymbolLayer::Property::GradientSpread ) },
499 { "reference1_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference1X ) },
500 { "reference1_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference1Y ) },
501 { "reference2_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference2X ) },
502 { "reference2_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference2Y ) },
503 { "reference1_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference1IsCentroid ) },
504 { "reference2_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference2IsCentroid ) },
505 { "blur_radius", static_cast< int >( QgsSymbolLayer::Property::BlurRadius ) },
506 { "use_whole_shape", static_cast< int >( QgsSymbolLayer::Property::ShapeburstUseWholeShape ) },
507 { "max_distance", static_cast< int >( QgsSymbolLayer::Property::ShapeburstMaxDistance ) },
508 { "ignore_rings", static_cast< int >( QgsSymbolLayer::Property::ShapeburstIgnoreRings ) },
509 { "svgFillColor", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
510 { "svgOutlineColor", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
511 { "svgOutlineWidth", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
512 { "svgFile", static_cast< int >( QgsSymbolLayer::Property::File ) },
513 { "lineangle", static_cast< int >( QgsSymbolLayer::Property::LineAngle ) },
514 { "distance", static_cast< int >( QgsSymbolLayer::Property::LineDistance ) },
515 { "distance_x", static_cast< int >( QgsSymbolLayer::Property::DistanceX ) },
516 { "distance_y", static_cast< int >( QgsSymbolLayer::Property::DistanceY ) },
517 { "displacement_x", static_cast< int >( QgsSymbolLayer::Property::DisplacementX ) },
518 { "displacement_y", static_cast< int >( QgsSymbolLayer::Property::DisplacementY ) },
519 { "file", static_cast< int >( QgsSymbolLayer::Property::File ) },
520 { "alpha", static_cast< int >( QgsSymbolLayer::Property::Opacity ) },
521 { "customdash", static_cast< int >( QgsSymbolLayer::Property::CustomDash ) },
522 { "line_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
523 { "joinstyle", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
524 { "capstyle", static_cast< int >( QgsSymbolLayer::Property::CapStyle ) },
525 { "placement", static_cast< int >( QgsSymbolLayer::Property::Placement ) },
526 { "interval", static_cast< int >( QgsSymbolLayer::Property::Interval ) },
527 { "offset_along_line", static_cast< int >( QgsSymbolLayer::Property::OffsetAlongLine ) },
528 { "name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
529 { "size", static_cast< int >( QgsSymbolLayer::Property::Size ) },
530 { "fill", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
531 { "outline", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
532 { "char", static_cast< int >( QgsSymbolLayer::Property::Character ) },
533 { "enabled", static_cast< int >( QgsSymbolLayer::Property::LayerEnabled ) },
534 { "rotation", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
535 { "horizontal_anchor_point", static_cast< int >( QgsSymbolLayer::Property::HorizontalAnchor ) },
536 { "vertical_anchor_point", static_cast< int >( QgsSymbolLayer::Property::VerticalAnchor ) },
537 };
538
539 QVariantMap::const_iterator propIt = stringMap.constBegin();
540 for ( ; propIt != stringMap.constEnd(); ++propIt )
541 {
542 std::unique_ptr<QgsProperty> prop;
543 QString propertyName;
544
545 if ( propIt.key().endsWith( "_dd_expression"_L1 ) )
546 {
547 //found a data defined property
548
549 //get data defined property name by stripping "_dd_expression" from property key
550 propertyName = propIt.key().left( propIt.key().length() - 14 );
551
552 prop = std::make_unique<QgsProperty>( propertyFromMap( stringMap, propertyName ) );
553 }
554 else if ( propIt.key().endsWith( "_expression"_L1 ) )
555 {
556 //old style data defined property, upgrade
557
558 //get data defined property name by stripping "_expression" from property key
559 propertyName = propIt.key().left( propIt.key().length() - 11 );
560
561 prop = std::make_unique<QgsProperty>( QgsProperty::fromExpression( propIt.value().toString() ) );
562 }
563
564 if ( !prop || !OLD_PROPS.contains( propertyName ) )
565 continue;
566
567 int key = OLD_PROPS.value( propertyName );
568
569 if ( type() == Qgis::SymbolType::Line )
570 {
571 //these keys had different meaning for line symbol layers
572 if ( propertyName == "width"_L1 )
573 key = static_cast< int >( QgsSymbolLayer::Property::StrokeWidth );
574 else if ( propertyName == "color"_L1 )
575 key = static_cast< int >( QgsSymbolLayer::Property::StrokeColor );
576 }
577
578 setDataDefinedProperty( static_cast< QgsSymbolLayer::Property >( key ), QgsProperty( *prop.get() ) );
579 }
580}
581
588
590{
591 if ( !destLayer )
592 return;
593
596
598{
599 if ( !destLayer || !mPaintEffect )
600 return;
601
603 destLayer->setPaintEffect( mPaintEffect->clone() );
604 else
605 destLayer->setPaintEffect( nullptr );
606}
609 : QgsSymbolLayer( Qgis::SymbolType::Marker, locked )
610{}
611
613 : QgsSymbolLayer( Qgis::SymbolType::Line, locked )
614{}
615
620
622{
623 mRingFilter = filter;
624}
625
627 : QgsSymbolLayer( Qgis::SymbolType::Fill, locked )
628{}
629
644
646{
647 Q_UNUSED( context )
648}
649
651{
652 Q_UNUSED( context )
653}
654
656{
657 startRender( context );
658 QgsPaintEffect *effect = paintEffect();
659
660 QPolygonF points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Marker, size ).value( 0 ).value( 0 )
662
663 std::unique_ptr< QgsEffectPainter > effectPainter;
664 if ( effect && effect->enabled() )
665 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
666
667 for ( QPointF point : std::as_const( points ) )
668 renderPoint( point, context );
669
670 effectPainter.reset();
671
672 stopRender( context );
673}
674
675void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double &offsetX, double &offsetY ) const
676{
678}
679
680void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double width, double height, double &offsetX, double &offsetY ) const
681{
682 markerOffset( context, width, height, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
683}
684
686 QgsSymbolRenderContext &context,
687 double width,
688 double height,
689 Qgis::RenderUnit widthUnit,
690 Qgis::RenderUnit heightUnit,
691 double &offsetX,
692 double &offsetY,
693 const QgsMapUnitScale &widthMapUnitScale,
694 const QgsMapUnitScale &heightMapUnitScale
695) const
696{
697 offsetX = mOffset.x();
698 offsetY = mOffset.y();
699
701 {
704 bool ok = false;
705 const QPointF offset = QgsSymbolLayerUtils::toPoint( exprVal, &ok );
706 if ( ok )
707 {
708 offsetX = offset.x();
709 offsetY = offset.y();
710 }
711 }
712
715
719 {
721 if ( !QgsVariantUtils::isNull( exprVal ) )
722 {
723 horizontalAnchorPoint = decodeHorizontalAnchorPoint( exprVal.toString() );
724 }
725 }
727 {
729 if ( !QgsVariantUtils::isNull( exprVal ) )
730 {
731 verticalAnchorPoint = decodeVerticalAnchorPoint( exprVal.toString() );
732 }
733 }
734
735 //correct horizontal position according to anchor point
737 {
738 return;
739 }
740
741 double anchorPointCorrectionX = context.renderContext().convertToPainterUnits( width, widthUnit, widthMapUnitScale ) / 2.0;
742 if ( widthUnit == Qgis::RenderUnit::MetersInMapUnits
744 {
745 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
746 // and clamp it to a reasonable range. It's the best we can do in this situation!
747 anchorPointCorrectionX = std::min( std::max( context.renderContext().convertToPainterUnits( width, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
748 }
749
750 double anchorPointCorrectionY = context.renderContext().convertToPainterUnits( height, heightUnit, heightMapUnitScale ) / 2.0;
751 if ( heightUnit == Qgis::RenderUnit::MetersInMapUnits
753 {
754 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
755 // and clamp it to a reasonable range. It's the best we can do in this situation!
756 anchorPointCorrectionY = std::min( std::max( context.renderContext().convertToPainterUnits( height, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
757 }
758
759 switch ( horizontalAnchorPoint )
760 {
762 offsetX += anchorPointCorrectionX;
763 break;
765 offsetX -= anchorPointCorrectionX;
766 break;
768 break;
769 }
770
771 //correct vertical position according to anchor point
772 switch ( verticalAnchorPoint )
773 {
775 offsetY += anchorPointCorrectionY;
776 break;
779 offsetY -= anchorPointCorrectionY;
780 break;
782 break;
783 }
784}
785
787{
788 angle = DEG2RAD( angle );
789 double c = std::cos( angle ), s = std::sin( angle );
790 return QPointF( offset.x() * c - offset.y() * s, offset.x() * s + offset.y() * c );
791}
792
793Qgis::HorizontalAnchorPoint QgsMarkerSymbolLayer::decodeHorizontalAnchorPoint( const QString &str )
794{
795 if ( str.compare( "left"_L1, Qt::CaseInsensitive ) == 0 )
796 {
798 }
799 else if ( str.compare( "right"_L1, Qt::CaseInsensitive ) == 0 )
800 {
802 }
803 else
804 {
806 }
807}
808
809Qgis::VerticalAnchorPoint QgsMarkerSymbolLayer::decodeVerticalAnchorPoint( const QString &str )
810{
811 if ( str.compare( "top"_L1, Qt::CaseInsensitive ) == 0 )
812 {
814 }
815 else if ( str.compare( "bottom"_L1, Qt::CaseInsensitive ) == 0 )
816 {
818 }
819 else
820 {
822 }
823}
824
826{
827 mSizeUnit = unit;
828 mOffsetUnit = unit;
829}
830
832{
833 if ( mOffsetUnit != mSizeUnit )
834 {
836 }
837 return mOffsetUnit;
838}
839
845
854
856{
857 mWidthUnit = unit;
858 mOffsetUnit = unit;
859}
860
865
870
875
876
878{
879 const QList< QList< QPolygonF > > points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Line, size )
881 startRender( context );
882 QgsPaintEffect *effect = paintEffect();
883
884 std::unique_ptr< QgsEffectPainter > effectPainter;
885 if ( effect && effect->enabled() )
886 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
887
888 for ( const QList< QPolygonF > &line : points )
889 renderPolyline( line.value( 0 ), context );
890
891 effectPainter.reset();
892
893 stopRender( context );
894}
895
896void QgsLineSymbolLayer::renderPolygonStroke( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
897{
898 QgsExpressionContextScope *scope = nullptr;
899 std::unique_ptr< QgsExpressionContextScopePopper > scopePopper;
901 {
902 scope = new QgsExpressionContextScope();
903 scopePopper = std::make_unique< QgsExpressionContextScopePopper >( context.renderContext().expressionContext(), scope );
904 }
905
906 switch ( mRingFilter )
907 {
908 case AllRings:
909 case ExteriorRingOnly:
910 {
911 if ( scope )
913 renderPolyline( points, context );
914 break;
915 }
917 break;
918 }
919
920 if ( rings )
921 {
922 switch ( mRingFilter )
923 {
924 case AllRings:
926 {
927 int ringIndex = 1;
928 for ( const QPolygonF &ring : std::as_const( *rings ) )
929 {
930 if ( scope )
932
933 renderPolyline( ring, context );
934 ringIndex++;
935 }
936 }
937 break;
938 case ExteriorRingOnly:
939 break;
940 }
941 }
942}
943
944double QgsLineSymbolLayer::width( const QgsRenderContext &context ) const
945{
947}
948
953
954
956{
957 const QList< QList< QPolygonF > > polys = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Fill, size )
959
960 startRender( context );
961 QgsPaintEffect *effect = paintEffect();
962
963 std::unique_ptr< QgsEffectPainter > effectPainter;
964 if ( effect && effect->enabled() )
965 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
966
967 for ( const QList< QPolygonF > &poly : polys )
968 {
969 QVector< QPolygonF > rings;
970 for ( int i = 1; i < poly.size(); ++i )
971 rings << poly.at( i );
972 renderPolygon( poly.value( 0 ), &rings, context );
973 }
974
975 effectPainter.reset();
976
977 stopRender( context );
978}
979
981{
982 return QImage();
983}
984
985void QgsFillSymbolLayer::_renderPolygon( QPainter *p, const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
986{
987 if ( !p )
988 {
989 return;
990 }
991
992 // Disable 'Antialiasing' if the geometry was generalized in the current RenderContext (We known that it must have least #5 points).
993 if ( points.size() <= 5
996 && ( p->renderHints() & QPainter::Antialiasing ) )
997 {
998 p->setRenderHint( QPainter::Antialiasing, false );
999 p->drawRect( points.boundingRect() );
1000 p->setRenderHint( QPainter::Antialiasing, true );
1001 return;
1002 }
1003
1004 // polygons outlines are sometimes rendered wrongly with drawPolygon, when
1005 // clipped (see #13343), so use drawPath instead.
1006 if ( !rings && p->pen().style() == Qt::NoPen )
1007 {
1008 // simple polygon without holes
1009 p->drawPolygon( points );
1010 }
1011 else
1012 {
1013 // polygon with holes must be drawn using painter path
1014 QPainterPath path;
1015 path.addPolygon( points );
1016
1017 if ( rings )
1018 {
1019 for ( auto it = rings->constBegin(); it != rings->constEnd(); ++it )
1020 {
1021 QPolygonF ring = *it;
1022 path.addPolygon( ring );
1023 }
1024 }
1025
1026 p->drawPath( path );
1027 }
1028}
1029
1030bool QgsMarkerSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, QgsSldExportContext &context ) const
1031{
1032 QDomElement symbolizerElem = doc.createElement( u"se:PointSymbolizer"_s );
1033 const QVariantMap props = context.extraProperties();
1034 if ( !props.value( u"uom"_s, QString() ).toString().isEmpty() )
1035 symbolizerElem.setAttribute( u"uom"_s, props.value( u"uom"_s, QString() ).toString() );
1036 element.appendChild( symbolizerElem );
1037
1038 // <Geometry>
1039 QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( u"geom"_s, QString() ).toString(), context );
1040
1041 return writeSldMarker( doc, symbolizerElem, context );
1042}
1043
1044void QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
1045{
1046 QgsSldExportContext context;
1047 context.setExtraProperties( props );
1048 writeSldMarker( doc, element, context );
1049}
1050
1051bool QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
1052{
1053 context.pushError( QObject::tr( "Marker symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1054 return false;
1055}
1056
1057QList<QgsSymbolLayerReference> QgsSymbolLayer::masks() const
1058{
1059 return {};
1060}
1061
1066
1071
1073{
1074 double size = mSize;
1076 {
1077 bool ok = false;
1079
1080 if ( ok )
1081 {
1082 switch ( mScaleMethod )
1083 {
1085 size = std::sqrt( size );
1086 break;
1088 break;
1089 }
1090 }
1091 }
1093}
1094
1096{
1097 double angle = mAngle;
1099 {
1102 }
1103 return angle;
1104}
1105
1106QPainterPath generateClipPath( const QgsRenderContext &renderContext, const QString &id, const QRectF *rect, bool &foundGeometries )
1107{
1108 foundGeometries = false;
1109 const QVector<QgsGeometry> clipGeometries = rect ? QgsSymbolLayerUtils::collectSymbolLayerClipGeometries( renderContext, id, *rect ) : renderContext.symbolLayerClipGeometries( id );
1110 if ( !clipGeometries.empty() )
1111 {
1112 foundGeometries = true;
1113 QgsGeometry mergedGeom = QgsGeometry::unaryUnion( clipGeometries, QgsGeometryParameters(), renderContext.feedback() );
1114 if ( renderContext.maskSettings().simplifyTolerance() > 0 )
1115 {
1116 QgsGeos geos( mergedGeom.constGet() );
1117 mergedGeom = QgsGeometry( geos.simplify( renderContext.maskSettings().simplifyTolerance(), nullptr, renderContext.feedback() ) );
1118 }
1119#if GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR < 10
1120 // structure would be better, but too old GEOS
1121 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Linework, false, renderContext.feedback() );
1122#else
1123 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Structure, false, renderContext.feedback() );
1124#endif
1125 if ( !mergedGeom.isEmpty() )
1126 {
1127 QgsGeometry exterior;
1128 const QgsRectangle contextBounds( 0, 0, renderContext.outputSize().width(), renderContext.outputSize().height() );
1129 if ( rect )
1130 {
1131 exterior = QgsGeometry::fromRect( QgsRectangle( *rect ).intersect( contextBounds ) );
1132 }
1133 else
1134 {
1135 exterior = QgsGeometry::fromRect( contextBounds );
1136 }
1137 const QgsGeometry maskGeom = exterior.difference( mergedGeom, QgsGeometryParameters(), renderContext.feedback() );
1138 if ( !maskGeom.isNull() )
1139 {
1140 return maskGeom.constGet()->asQPainterPath();
1141 }
1142 }
1143 }
1144 return QPainterPath();
1145}
1146
1148{
1149 const QgsRenderContext &renderContext = context.renderContext();
1150
1151 bool foundGeometries = false;
1152 mClipPath = generateClipPath( renderContext, id(), nullptr, foundGeometries );
1153}
1154
1155bool QgsSymbolLayer::installMasks( QgsRenderContext &context, bool recursive, const QRectF &rect )
1156{
1157 bool res = false;
1158 if ( !mClipPath.isEmpty() )
1159 {
1160 context.painter()->save();
1161 context.painter()->setClipPath( mClipPath, Qt::IntersectClip );
1162 res = true;
1163 }
1164 else if ( rect.isValid() )
1165 {
1166 // find just the clip geometries within the area the symbol layer will be drawn over
1167 bool foundGeometries = false;
1168 const QPainterPath clipPath = generateClipPath( context, id(), &rect, foundGeometries );
1169 if ( !clipPath.isEmpty() )
1170 {
1171 context.painter()->setClipPath( clipPath, context.painter()->clipPath().isEmpty() ? Qt::ReplaceClip : Qt::IntersectClip );
1172 res = true;
1173 }
1174 }
1175
1176 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1177 {
1178 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1179 for ( QgsSymbolLayer *sl : layers )
1180 res = sl->installMasks( context, true ) || res;
1181 }
1182
1183 return res;
1184}
1185
1186void QgsSymbolLayer::removeMasks( QgsRenderContext &context, bool recursive )
1187{
1188 if ( !mClipPath.isEmpty() )
1189 {
1190 context.painter()->restore();
1191 }
1192
1193 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1194 {
1195 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1196 for ( QgsSymbolLayer *sl : layers )
1197 sl->removeMasks( context, true );
1198 }
1199}
1200
1205
1206void QgsSymbolLayer::setId( const QString &id )
1207{
1208 mId = id;
1209}
1210
1211QString QgsSymbolLayer::id() const
1212{
1213 return mId;
1214}
1215
1216void QgsSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
1217{
1218 QgsSldExportContext context;
1219 context.setExtraProperties( props );
1220 toSld( doc, element, context );
1221}
1222
1223bool QgsSymbolLayer::toSld( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
1224{
1225 context.pushError( QObject::tr( "Symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1226 return false;
1227}
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:3200
@ ScaleDiameter
Calculate scale by the diameter.
Definition qgis.h:653
@ ScaleArea
Calculate scale by the area.
Definition qgis.h:652
QFlags< SymbolLayerFlag > SymbolLayerFlags
Symbol layer flags.
Definition qgis.h:935
QFlags< SymbolLayerUserFlag > SymbolLayerUserFlags
Symbol layer user flags.
Definition qgis.h:958
VerticalAnchorPoint
Marker symbol vertical anchor points.
Definition qgis.h:862
@ Bottom
Align to bottom of symbol.
Definition qgis.h:865
@ Center
Align to vertical center of symbol.
Definition qgis.h:864
@ Baseline
Align to baseline of symbol, e.g. font baseline for font marker symbol layers. Treated as Bottom if n...
Definition qgis.h:866
@ Top
Align to top of symbol.
Definition qgis.h:863
RenderUnit
Rendering size units.
Definition qgis.h:5566
@ Millimeters
Millimeters.
Definition qgis.h:5567
@ Unknown
Mixed or unknown units.
Definition qgis.h:5573
@ MetersInMapUnits
Meters value as Map units.
Definition qgis.h:5574
@ RenderSymbolPreview
The render is for a symbol preview only and map based properties may not be available,...
Definition qgis.h:2924
@ RenderLayerTree
The render is for a layer tree display where map based properties are not available and where avoidan...
Definition qgis.h:2935
@ Linework
Combines all rings into a set of noded lines and then extracts valid polygons from that linework.
Definition qgis.h:2314
@ Structure
Structured method, first makes all rings valid and then merges shells and subtracts holes from shells...
Definition qgis.h:2315
@ DisableSelectionRecoloring
If present, indicates that the symbol layer should not be recolored when rendering selected features.
Definition qgis.h:949
SymbolType
Symbol types.
Definition qgis.h:637
@ Marker
Marker symbol.
Definition qgis.h:638
@ Line
Line symbol.
Definition qgis.h:639
@ Fill
Fill symbol.
Definition qgis.h:640
HorizontalAnchorPoint
Marker symbol horizontal anchor points.
Definition qgis.h:848
@ Center
Align to horizontal center of symbol.
Definition qgis.h:850
@ Right
Align to right side of symbol.
Definition qgis.h:851
@ Left
Align to left side of symbol.
Definition qgis.h:849
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 Q_DECL_DEPRECATED double mapUnitScaleFactor(double scale, Qgis::RenderUnit symbolUnits, Qgis::DistanceUnit mapUnits, double mapUnitsPerPixel=1.0)
Returns scale factor for conversion to map units.
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
Encapsulates parameters under which a geometry operation is performed.
A geometry is the spatial representation of a feature.
static QgsGeometry fromRect(const QgsRectangle &rect)
Creates a new geometry from a QgsRectangle.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsGeometry makeValid(Qgis::MakeValidMethod method=Qgis::MakeValidMethod::Linework, bool keepCollapsed=false, QgsFeedback *feedback=nullptr) const
Attempts to make an invalid geometry valid without losing vertices.
static QgsGeometry unaryUnion(const QVector< QgsGeometry > &geometries, const QgsGeometryParameters &parameters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr)
Compute the unary union on a list of geometries.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
QgsGeometry difference(const QgsGeometry &geometry, const QgsGeometryParameters &parameters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr) const
Returns a geometry representing the points making up this geometry that do not make up other.
Does vector analysis using the GEOS library and handles import, export, and exception handling.
Definition qgsgeos.h:175
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
double dxfWidth(QgsSymbolRenderContext &context) const override
Gets line width.
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.
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.
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 dxfSize(QgsSymbolRenderContext &context) const override
Gets marker size.
double dxfAngle(QgsSymbolRenderContext &context) const override
Gets angle.
Qgis::ScaleMethod mScaleMethod
Marker size scaling method.
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.
QgsFeedback * feedback() const
Returns the feedback object that can be queried regularly during rendering to check if rendering shou...
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:164
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 Q_DECL_DEPRECATED double dxfSize(const QgsDxfExport &e, QgsSymbolRenderContext &context) const
Gets marker size.
virtual Q_DECL_DEPRECATED 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.
@ ExtraItems
String list of tuple (x, y and rotation angle) to define extra items to be rendered for templated lin...
@ 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 Q_DECL_DEPRECATED 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:112
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.