QGIS API Documentation 4.1.0-Master (31622b25bb0)
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 Q_UNUSED( context )
207 return 1.0;
208}
209
211{
212 Q_UNUSED( e )
213 Q_UNUSED( context )
214 return 1.0;
215}
216
218{
219 Q_UNUSED( e )
220 Q_UNUSED( context )
221 return 0.0;
222}
223
225{
226 Q_UNUSED( context )
227 return color();
228}
229
231{
232 Q_UNUSED( context )
233 return 0.0;
234}
235
237{
238 Q_UNUSED( unit )
239 return QVector<qreal>();
240}
241
242Qt::PenStyle QgsSymbolLayer::dxfPenStyle() const
243{
244 return Qt::SolidLine;
245}
246
248{
249 Q_UNUSED( context )
250 return color();
251}
252
253Qt::BrushStyle QgsSymbolLayer::dxfBrushStyle() const
254{
255 return Qt::NoBrush;
256}
257
259{
260 return mPaintEffect.get();
261}
262
264{
265 if ( effect == mPaintEffect.get() )
266 return;
267
268 mPaintEffect.reset( effect );
269}
270
272 : mType( other.mType )
273 , mEnabled( other.mEnabled )
274 , mUserFlags( other.mUserFlags )
275 , mLocked( other.mLocked )
276 , mColor( other.mColor )
278 , mId( other.mId )
281 , mPaintEffect( other.mPaintEffect ? other.mPaintEffect->clone() : nullptr )
282 , mFields( other.mFields )
283 , mClipPath( other.mClipPath )
284{}
285
287 : mType( type )
288 , mLocked( locked )
289 , mId( QUuid::createUuid().toString() )
290{}
291
293{
294 if ( !other )
295 return false;
296
297 if ( layerType() != other->layerType() )
298 return false;
299
300 // TODO -- we could consider each property individually
302 return false;
303
304 // shortcut now that we know there's no randomness/changing overrides involved
305 if ( other == this )
306 return true;
307
308 if ( mEnabled != other->mEnabled
309 || mColor != other->mColor
310 || mRenderingPass != other->mRenderingPass
311
312 // TODO -- we could consider the actual settings of the paint effect
314 || ( other->mPaintEffect && !QgsPaintEffectRegistry::isDefaultStack( other->mPaintEffect.get() ) ) )
315 return false;
316
317 return properties() == other->properties();
318}
319
324
329
334
336{
337 return mColor;
338}
339
340void QgsSymbolLayer::setColor( const QColor &color )
341{
342 mColor = color;
343}
344
345void QgsSymbolLayer::setStrokeColor( const QColor & )
346{}
347
349{
350 return QColor();
351}
352
353void QgsSymbolLayer::setFillColor( const QColor & )
354{}
355
357{
358 return QColor();
359}
360
362{
364
365 if ( !context.fields().isEmpty() )
366 {
367 //QgsFields is implicitly shared, so it's cheap to make a copy
368 mFields = context.fields();
369 }
370}
371
373{
374 return mDataDefinedProperties.hasActiveProperties();
375}
376
378{
379 QgsSymbolLayer::initPropertyDefinitions();
380 return sPropertyDefinitions;
381}
382
384
386{
388 return true;
389
390 return symbol->type() == mType;
391}
392
394{
395 return false;
396}
397
399{
400 return false;
401}
402
407
409{
410 return mRenderingPass;
411}
412
413QSet<QString> QgsSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
414{
415 // calling referencedFields() with ignoreContext=true because in our expression context
416 // we do not have valid QgsFields yet - because of that the field names from expressions
417 // wouldn't get reported
418 QSet<QString> columns = mDataDefinedProperties.referencedFields( context.expressionContext(), true );
419 return columns;
420}
421
422QgsProperty propertyFromMap( const QVariantMap &map, const QString &baseName )
423{
424 QString prefix;
425 if ( !baseName.isEmpty() )
426 {
427 prefix.append( u"%1_dd_"_s.arg( baseName ) );
428 }
429
430 if ( !map.contains( u"%1expression"_s.arg( prefix ) ) )
431 {
432 //requires at least the expression value
433 return QgsProperty();
435
436 bool active = ( map.value( u"%1active"_s.arg( prefix ), u"1"_s ) != "0"_L1 );
437 QString expression = map.value( u"%1expression"_s.arg( prefix ) ).toString();
438 bool useExpression = ( map.value( u"%1useexpr"_s.arg( prefix ), u"1"_s ) != "0"_L1 );
439 QString field = map.value( u"%1field"_s.arg( prefix ), QString() ).toString();
440
441 if ( useExpression )
442 return QgsProperty::fromExpression( expression, active );
443 else
444 return QgsProperty::fromField( field, active );
445}
446
447void QgsSymbolLayer::restoreOldDataDefinedProperties( const QVariantMap &stringMap )
448{
449 // property string to type upgrade map
450 static const QMap< QString, int > OLD_PROPS {
451 { "color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
452 { "arrow_width", static_cast< int >( QgsSymbolLayer::Property::ArrowWidth ) },
453 { "arrow_start_width", static_cast< int >( QgsSymbolLayer::Property::ArrowStartWidth ) },
454 { "head_length", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadLength ) },
455 { "head_thickness", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadThickness ) },
456 { "offset", static_cast< int >( QgsSymbolLayer::Property::Offset ) },
457 { "head_type", static_cast< int >( QgsSymbolLayer::Property::ArrowHeadType ) },
458 { "arrow_type", static_cast< int >( QgsSymbolLayer::Property::ArrowType ) },
459 { "width_field", static_cast< int >( QgsSymbolLayer::Property::Width ) },
460 { "height_field", static_cast< int >( QgsSymbolLayer::Property::Height ) },
461 { "rotation_field", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
462 { "outline_width_field", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
463 { "fill_color_field", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
464 { "outline_color_field", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
465 { "symbol_name_field", static_cast< int >( QgsSymbolLayer::Property::Name ) },
466 { "outline_width", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
467 { "outline_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
468 { "join_style", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
469 { "fill_color", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
470 { "outline_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
471 { "width", static_cast< int >( QgsSymbolLayer::Property::Width ) },
472 { "height", static_cast< int >( QgsSymbolLayer::Property::Height ) },
473 { "symbol_name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
474 { "angle", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
475 { "fill_style", static_cast< int >( QgsSymbolLayer::Property::FillStyle ) },
476 { "color_border", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
477 { "width_border", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
478 { "border_color", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
479 { "border_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
480 { "color2", static_cast< int >( QgsSymbolLayer::Property::SecondaryColor ) },
481 { "gradient_type", static_cast< int >( QgsSymbolLayer::Property::GradientType ) },
482 { "coordinate_mode", static_cast< int >( QgsSymbolLayer::Property::CoordinateMode ) },
483 { "spread", static_cast< int >( QgsSymbolLayer::Property::GradientSpread ) },
484 { "reference1_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference1X ) },
485 { "reference1_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference1Y ) },
486 { "reference2_x", static_cast< int >( QgsSymbolLayer::Property::GradientReference2X ) },
487 { "reference2_y", static_cast< int >( QgsSymbolLayer::Property::GradientReference2Y ) },
488 { "reference1_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference1IsCentroid ) },
489 { "reference2_iscentroid", static_cast< int >( QgsSymbolLayer::Property::GradientReference2IsCentroid ) },
490 { "blur_radius", static_cast< int >( QgsSymbolLayer::Property::BlurRadius ) },
491 { "use_whole_shape", static_cast< int >( QgsSymbolLayer::Property::ShapeburstUseWholeShape ) },
492 { "max_distance", static_cast< int >( QgsSymbolLayer::Property::ShapeburstMaxDistance ) },
493 { "ignore_rings", static_cast< int >( QgsSymbolLayer::Property::ShapeburstIgnoreRings ) },
494 { "svgFillColor", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
495 { "svgOutlineColor", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
496 { "svgOutlineWidth", static_cast< int >( QgsSymbolLayer::Property::StrokeWidth ) },
497 { "svgFile", static_cast< int >( QgsSymbolLayer::Property::File ) },
498 { "lineangle", static_cast< int >( QgsSymbolLayer::Property::LineAngle ) },
499 { "distance", static_cast< int >( QgsSymbolLayer::Property::LineDistance ) },
500 { "distance_x", static_cast< int >( QgsSymbolLayer::Property::DistanceX ) },
501 { "distance_y", static_cast< int >( QgsSymbolLayer::Property::DistanceY ) },
502 { "displacement_x", static_cast< int >( QgsSymbolLayer::Property::DisplacementX ) },
503 { "displacement_y", static_cast< int >( QgsSymbolLayer::Property::DisplacementY ) },
504 { "file", static_cast< int >( QgsSymbolLayer::Property::File ) },
505 { "alpha", static_cast< int >( QgsSymbolLayer::Property::Opacity ) },
506 { "customdash", static_cast< int >( QgsSymbolLayer::Property::CustomDash ) },
507 { "line_style", static_cast< int >( QgsSymbolLayer::Property::StrokeStyle ) },
508 { "joinstyle", static_cast< int >( QgsSymbolLayer::Property::JoinStyle ) },
509 { "capstyle", static_cast< int >( QgsSymbolLayer::Property::CapStyle ) },
510 { "placement", static_cast< int >( QgsSymbolLayer::Property::Placement ) },
511 { "interval", static_cast< int >( QgsSymbolLayer::Property::Interval ) },
512 { "offset_along_line", static_cast< int >( QgsSymbolLayer::Property::OffsetAlongLine ) },
513 { "name", static_cast< int >( QgsSymbolLayer::Property::Name ) },
514 { "size", static_cast< int >( QgsSymbolLayer::Property::Size ) },
515 { "fill", static_cast< int >( QgsSymbolLayer::Property::FillColor ) },
516 { "outline", static_cast< int >( QgsSymbolLayer::Property::StrokeColor ) },
517 { "char", static_cast< int >( QgsSymbolLayer::Property::Character ) },
518 { "enabled", static_cast< int >( QgsSymbolLayer::Property::LayerEnabled ) },
519 { "rotation", static_cast< int >( QgsSymbolLayer::Property::Angle ) },
520 { "horizontal_anchor_point", static_cast< int >( QgsSymbolLayer::Property::HorizontalAnchor ) },
521 { "vertical_anchor_point", static_cast< int >( QgsSymbolLayer::Property::VerticalAnchor ) },
522 };
523
524 QVariantMap::const_iterator propIt = stringMap.constBegin();
525 for ( ; propIt != stringMap.constEnd(); ++propIt )
526 {
527 std::unique_ptr<QgsProperty> prop;
528 QString propertyName;
529
530 if ( propIt.key().endsWith( "_dd_expression"_L1 ) )
531 {
532 //found a data defined property
533
534 //get data defined property name by stripping "_dd_expression" from property key
535 propertyName = propIt.key().left( propIt.key().length() - 14 );
536
537 prop = std::make_unique<QgsProperty>( propertyFromMap( stringMap, propertyName ) );
538 }
539 else if ( propIt.key().endsWith( "_expression"_L1 ) )
540 {
541 //old style data defined property, upgrade
542
543 //get data defined property name by stripping "_expression" from property key
544 propertyName = propIt.key().left( propIt.key().length() - 11 );
545
546 prop = std::make_unique<QgsProperty>( QgsProperty::fromExpression( propIt.value().toString() ) );
547 }
548
549 if ( !prop || !OLD_PROPS.contains( propertyName ) )
550 continue;
551
552 int key = OLD_PROPS.value( propertyName );
553
554 if ( type() == Qgis::SymbolType::Line )
555 {
556 //these keys had different meaning for line symbol layers
557 if ( propertyName == "width"_L1 )
558 key = static_cast< int >( QgsSymbolLayer::Property::StrokeWidth );
559 else if ( propertyName == "color"_L1 )
560 key = static_cast< int >( QgsSymbolLayer::Property::StrokeColor );
561 }
562
563 setDataDefinedProperty( static_cast< QgsSymbolLayer::Property >( key ), QgsProperty( *prop.get() ) );
564 }
565}
566
573
575{
576 if ( !destLayer )
577 return;
578
580}
581
583{
584 if ( !destLayer || !mPaintEffect )
585 return;
586
588 destLayer->setPaintEffect( mPaintEffect->clone() );
589 else
590 destLayer->setPaintEffect( nullptr );
591}
592
594 : QgsSymbolLayer( Qgis::SymbolType::Marker, locked )
595{}
596
598 : QgsSymbolLayer( Qgis::SymbolType::Line, locked )
599{}
600
605
607{
608 mRingFilter = filter;
609}
610
612 : QgsSymbolLayer( Qgis::SymbolType::Fill, locked )
613{}
614
629
631{
632 Q_UNUSED( context )
633}
634
636{
637 Q_UNUSED( context )
638}
639
641{
642 startRender( context );
643 QgsPaintEffect *effect = paintEffect();
644
645 QPolygonF points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Marker, size ).value( 0 ).value( 0 )
647
648 std::unique_ptr< QgsEffectPainter > effectPainter;
649 if ( effect && effect->enabled() )
650 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
651
652 for ( QPointF point : std::as_const( points ) )
653 renderPoint( point, context );
654
655 effectPainter.reset();
656
657 stopRender( context );
658}
659
660void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double &offsetX, double &offsetY ) const
661{
663}
664
665void QgsMarkerSymbolLayer::markerOffset( QgsSymbolRenderContext &context, double width, double height, double &offsetX, double &offsetY ) const
666{
667 markerOffset( context, width, height, mSizeUnit, mSizeUnit, offsetX, offsetY, mSizeMapUnitScale, mSizeMapUnitScale );
668}
669
671 QgsSymbolRenderContext &context,
672 double width,
673 double height,
674 Qgis::RenderUnit widthUnit,
675 Qgis::RenderUnit heightUnit,
676 double &offsetX,
677 double &offsetY,
678 const QgsMapUnitScale &widthMapUnitScale,
679 const QgsMapUnitScale &heightMapUnitScale
680) const
681{
682 offsetX = mOffset.x();
683 offsetY = mOffset.y();
684
686 {
689 bool ok = false;
690 const QPointF offset = QgsSymbolLayerUtils::toPoint( exprVal, &ok );
691 if ( ok )
692 {
693 offsetX = offset.x();
694 offsetY = offset.y();
695 }
696 }
697
700
704 {
706 if ( !QgsVariantUtils::isNull( exprVal ) )
707 {
708 horizontalAnchorPoint = decodeHorizontalAnchorPoint( exprVal.toString() );
709 }
710 }
712 {
714 if ( !QgsVariantUtils::isNull( exprVal ) )
715 {
716 verticalAnchorPoint = decodeVerticalAnchorPoint( exprVal.toString() );
717 }
718 }
719
720 //correct horizontal position according to anchor point
722 {
723 return;
724 }
725
726 double anchorPointCorrectionX = context.renderContext().convertToPainterUnits( width, widthUnit, widthMapUnitScale ) / 2.0;
727 if ( widthUnit == Qgis::RenderUnit::MetersInMapUnits
729 {
730 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
731 // and clamp it to a reasonable range. It's the best we can do in this situation!
732 anchorPointCorrectionX = std::min( std::max( context.renderContext().convertToPainterUnits( width, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
733 }
734
735 double anchorPointCorrectionY = context.renderContext().convertToPainterUnits( height, heightUnit, heightMapUnitScale ) / 2.0;
736 if ( heightUnit == Qgis::RenderUnit::MetersInMapUnits
738 {
739 // rendering for symbol previews -- an size in meters in map units can't be calculated, so treat the size as millimeters
740 // and clamp it to a reasonable range. It's the best we can do in this situation!
741 anchorPointCorrectionY = std::min( std::max( context.renderContext().convertToPainterUnits( height, Qgis::RenderUnit::Millimeters ), 3.0 ), 100.0 ) / 2.0;
742 }
743
744 switch ( horizontalAnchorPoint )
745 {
747 offsetX += anchorPointCorrectionX;
748 break;
750 offsetX -= anchorPointCorrectionX;
751 break;
753 break;
754 }
755
756 //correct vertical position according to anchor point
757 switch ( verticalAnchorPoint )
758 {
760 offsetY += anchorPointCorrectionY;
761 break;
764 offsetY -= anchorPointCorrectionY;
765 break;
767 break;
768 }
769}
770
772{
773 angle = DEG2RAD( angle );
774 double c = std::cos( angle ), s = std::sin( angle );
775 return QPointF( offset.x() * c - offset.y() * s, offset.x() * s + offset.y() * c );
776}
777
778Qgis::HorizontalAnchorPoint QgsMarkerSymbolLayer::decodeHorizontalAnchorPoint( const QString &str )
779{
780 if ( str.compare( "left"_L1, Qt::CaseInsensitive ) == 0 )
781 {
783 }
784 else if ( str.compare( "right"_L1, Qt::CaseInsensitive ) == 0 )
785 {
787 }
788 else
789 {
791 }
792}
793
794Qgis::VerticalAnchorPoint QgsMarkerSymbolLayer::decodeVerticalAnchorPoint( const QString &str )
795{
796 if ( str.compare( "top"_L1, Qt::CaseInsensitive ) == 0 )
797 {
799 }
800 else if ( str.compare( "bottom"_L1, Qt::CaseInsensitive ) == 0 )
801 {
803 }
804 else
805 {
807 }
808}
809
811{
812 mSizeUnit = unit;
813 mOffsetUnit = unit;
814}
815
817{
818 if ( mOffsetUnit != mSizeUnit )
819 {
821 }
822 return mOffsetUnit;
823}
824
830
839
841{
842 mWidthUnit = unit;
843 mOffsetUnit = unit;
844}
845
850
855
860
861
863{
864 const QList< QList< QPolygonF > > points = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Line, size )
866 startRender( context );
867 QgsPaintEffect *effect = paintEffect();
868
869 std::unique_ptr< QgsEffectPainter > effectPainter;
870 if ( effect && effect->enabled() )
871 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
872
873 for ( const QList< QPolygonF > &line : points )
874 renderPolyline( line.value( 0 ), context );
875
876 effectPainter.reset();
877
878 stopRender( context );
879}
880
881void QgsLineSymbolLayer::renderPolygonStroke( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
882{
883 QgsExpressionContextScope *scope = nullptr;
884 std::unique_ptr< QgsExpressionContextScopePopper > scopePopper;
886 {
887 scope = new QgsExpressionContextScope();
888 scopePopper = std::make_unique< QgsExpressionContextScopePopper >( context.renderContext().expressionContext(), scope );
889 }
890
891 switch ( mRingFilter )
892 {
893 case AllRings:
894 case ExteriorRingOnly:
895 {
896 if ( scope )
898 renderPolyline( points, context );
899 break;
900 }
902 break;
903 }
904
905 if ( rings )
906 {
907 switch ( mRingFilter )
908 {
909 case AllRings:
911 {
912 int ringIndex = 1;
913 for ( const QPolygonF &ring : std::as_const( *rings ) )
914 {
915 if ( scope )
917
918 renderPolyline( ring, context );
919 ringIndex++;
920 }
921 }
922 break;
923 case ExteriorRingOnly:
924 break;
925 }
926 }
927}
928
929double QgsLineSymbolLayer::width( const QgsRenderContext &context ) const
930{
932}
933
935{
936 Q_UNUSED( context )
938}
939
940
942{
943 const QList< QList< QPolygonF > > polys = context.patchShape() ? context.patchShape()->toQPolygonF( Qgis::SymbolType::Fill, size )
945
946 startRender( context );
947 QgsPaintEffect *effect = paintEffect();
948
949 std::unique_ptr< QgsEffectPainter > effectPainter;
950 if ( effect && effect->enabled() )
951 effectPainter = std::make_unique< QgsEffectPainter >( context.renderContext(), effect );
952
953 for ( const QList< QPolygonF > &poly : polys )
954 {
955 QVector< QPolygonF > rings;
956 for ( int i = 1; i < poly.size(); ++i )
957 rings << poly.at( i );
958 renderPolygon( poly.value( 0 ), &rings, context );
959 }
960
961 effectPainter.reset();
962
963 stopRender( context );
964}
965
967{
968 return QImage();
969}
970
971void QgsFillSymbolLayer::_renderPolygon( QPainter *p, const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
972{
973 if ( !p )
974 {
975 return;
976 }
977
978 // Disable 'Antialiasing' if the geometry was generalized in the current RenderContext (We known that it must have least #5 points).
979 if ( points.size() <= 5
982 && ( p->renderHints() & QPainter::Antialiasing ) )
983 {
984 p->setRenderHint( QPainter::Antialiasing, false );
985 p->drawRect( points.boundingRect() );
986 p->setRenderHint( QPainter::Antialiasing, true );
987 return;
988 }
989
990 // polygons outlines are sometimes rendered wrongly with drawPolygon, when
991 // clipped (see #13343), so use drawPath instead.
992 if ( !rings && p->pen().style() == Qt::NoPen )
993 {
994 // simple polygon without holes
995 p->drawPolygon( points );
996 }
997 else
998 {
999 // polygon with holes must be drawn using painter path
1000 QPainterPath path;
1001 path.addPolygon( points );
1002
1003 if ( rings )
1004 {
1005 for ( auto it = rings->constBegin(); it != rings->constEnd(); ++it )
1006 {
1007 QPolygonF ring = *it;
1008 path.addPolygon( ring );
1009 }
1010 }
1011
1012 p->drawPath( path );
1013 }
1014}
1015
1016bool QgsMarkerSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, QgsSldExportContext &context ) const
1017{
1018 QDomElement symbolizerElem = doc.createElement( u"se:PointSymbolizer"_s );
1019 const QVariantMap props = context.extraProperties();
1020 if ( !props.value( u"uom"_s, QString() ).toString().isEmpty() )
1021 symbolizerElem.setAttribute( u"uom"_s, props.value( u"uom"_s, QString() ).toString() );
1022 element.appendChild( symbolizerElem );
1023
1024 // <Geometry>
1025 QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( u"geom"_s, QString() ).toString(), context );
1026
1027 return writeSldMarker( doc, symbolizerElem, context );
1028}
1029
1030void QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
1031{
1032 QgsSldExportContext context;
1033 context.setExtraProperties( props );
1034 writeSldMarker( doc, element, context );
1035}
1036
1037bool QgsMarkerSymbolLayer::writeSldMarker( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
1038{
1039 context.pushError( QObject::tr( "Marker symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1040 return false;
1041}
1042
1043QList<QgsSymbolLayerReference> QgsSymbolLayer::masks() const
1044{
1045 return {};
1046}
1047
1052
1057
1059{
1060 double size = mSize;
1062 {
1063 bool ok = false;
1065
1066 if ( ok )
1067 {
1068 switch ( mScaleMethod )
1069 {
1071 size = std::sqrt( size );
1072 break;
1074 break;
1075 }
1076 }
1077 }
1079}
1080
1082{
1083 double angle = mAngle;
1085 {
1088 }
1089 return angle;
1090}
1091
1092QPainterPath generateClipPath( const QgsRenderContext &renderContext, const QString &id, const QRectF *rect, bool &foundGeometries )
1093{
1094 foundGeometries = false;
1095 const QVector<QgsGeometry> clipGeometries = rect ? QgsSymbolLayerUtils::collectSymbolLayerClipGeometries( renderContext, id, *rect ) : renderContext.symbolLayerClipGeometries( id );
1096 if ( !clipGeometries.empty() )
1097 {
1098 foundGeometries = true;
1099 QgsGeometry mergedGeom = QgsGeometry::unaryUnion( clipGeometries, QgsGeometryParameters(), renderContext.feedback() );
1100 if ( renderContext.maskSettings().simplifyTolerance() > 0 )
1101 {
1102 QgsGeos geos( mergedGeom.constGet() );
1103 mergedGeom = QgsGeometry( geos.simplify( renderContext.maskSettings().simplifyTolerance(), nullptr, renderContext.feedback() ) );
1104 }
1105#if GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR < 10
1106 // structure would be better, but too old GEOS
1107 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Linework, false, renderContext.feedback() );
1108#else
1109 mergedGeom = mergedGeom.makeValid( Qgis::MakeValidMethod::Structure, false, renderContext.feedback() );
1110#endif
1111 if ( !mergedGeom.isEmpty() )
1112 {
1113 QgsGeometry exterior;
1114 const QgsRectangle contextBounds( 0, 0, renderContext.outputSize().width(), renderContext.outputSize().height() );
1115 if ( rect )
1116 {
1117 exterior = QgsGeometry::fromRect( QgsRectangle( *rect ).intersect( contextBounds ) );
1118 }
1119 else
1120 {
1121 exterior = QgsGeometry::fromRect( contextBounds );
1122 }
1123 const QgsGeometry maskGeom = exterior.difference( mergedGeom, QgsGeometryParameters(), renderContext.feedback() );
1124 if ( !maskGeom.isNull() )
1125 {
1126 return maskGeom.constGet()->asQPainterPath();
1127 }
1128 }
1129 }
1130 return QPainterPath();
1131}
1132
1134{
1135 const QgsRenderContext &renderContext = context.renderContext();
1136
1137 bool foundGeometries = false;
1138 mClipPath = generateClipPath( renderContext, id(), nullptr, foundGeometries );
1139}
1140
1141bool QgsSymbolLayer::installMasks( QgsRenderContext &context, bool recursive, const QRectF &rect )
1142{
1143 bool res = false;
1144 if ( !mClipPath.isEmpty() )
1145 {
1146 context.painter()->save();
1147 context.painter()->setClipPath( mClipPath, Qt::IntersectClip );
1148 res = true;
1149 }
1150 else if ( rect.isValid() )
1151 {
1152 // find just the clip geometries within the area the symbol layer will be drawn over
1153 bool foundGeometries = false;
1154 const QPainterPath clipPath = generateClipPath( context, id(), &rect, foundGeometries );
1155 if ( !clipPath.isEmpty() )
1156 {
1157 context.painter()->setClipPath( clipPath, context.painter()->clipPath().isEmpty() ? Qt::ReplaceClip : Qt::IntersectClip );
1158 res = true;
1159 }
1160 }
1161
1162 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1163 {
1164 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1165 for ( QgsSymbolLayer *sl : layers )
1166 res = sl->installMasks( context, true ) || res;
1167 }
1168
1169 return res;
1170}
1171
1172void QgsSymbolLayer::removeMasks( QgsRenderContext &context, bool recursive )
1173{
1174 if ( !mClipPath.isEmpty() )
1175 {
1176 context.painter()->restore();
1177 }
1178
1179 if ( QgsSymbol *lSubSymbol = recursive ? subSymbol() : nullptr )
1180 {
1181 const QList<QgsSymbolLayer *> layers = lSubSymbol->symbolLayers();
1182 for ( QgsSymbolLayer *sl : layers )
1183 sl->removeMasks( context, true );
1184 }
1185}
1186
1191
1192void QgsSymbolLayer::setId( const QString &id )
1193{
1194 mId = id;
1195}
1196
1197QString QgsSymbolLayer::id() const
1198{
1199 return mId;
1200}
1201
1202void QgsSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
1203{
1204 QgsSldExportContext context;
1205 context.setExtraProperties( props );
1206 toSld( doc, element, context );
1207}
1208
1209bool QgsSymbolLayer::toSld( QDomDocument &, QDomElement &, QgsSldExportContext &context ) const
1210{
1211 context.pushError( QObject::tr( "Symbol layer %1 cannot be converted to SLD" ).arg( layerType() ) );
1212 return false;
1213}
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:5552
@ Millimeters
Millimeters.
Definition qgis.h:5553
@ Unknown
Mixed or unknown units.
Definition qgis.h:5559
@ MetersInMapUnits
Meters value as Map units.
Definition qgis.h:5560
@ 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 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
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
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...
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 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.
@ 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 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.