Branch data Line data Source code
1 : : /***************************************************************************
2 : : qgsfillsymbollayer.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 "qgsfillsymbollayer.h"
17 : : #include "qgslinesymbollayer.h"
18 : : #include "qgsmarkersymbollayer.h"
19 : : #include "qgssymbollayerutils.h"
20 : : #include "qgsdxfexport.h"
21 : : #include "qgsexpression.h"
22 : : #include "qgsgeometry.h"
23 : : #include "qgsgeometrycollection.h"
24 : : #include "qgsimagecache.h"
25 : : #include "qgsrendercontext.h"
26 : : #include "qgsproject.h"
27 : : #include "qgssvgcache.h"
28 : : #include "qgslogger.h"
29 : : #include "qgscolorramp.h"
30 : : #include "qgsunittypes.h"
31 : : #include "qgsmessagelog.h"
32 : : #include "qgsapplication.h"
33 : : #include "qgsimageoperation.h"
34 : : #include "qgspolygon.h"
35 : : #include "qgslinestring.h"
36 : : #include "qgsexpressioncontextutils.h"
37 : :
38 : : #include <QPainter>
39 : : #include <QFile>
40 : : #include <QSvgRenderer>
41 : : #include <QDomDocument>
42 : : #include <QDomElement>
43 : : #include <random>
44 : :
45 : : #ifndef QT_NO_PRINTER
46 : : #include <QPrinter>
47 : : #endif
48 : :
49 : 206 : QgsSimpleFillSymbolLayer::QgsSimpleFillSymbolLayer( const QColor &color, Qt::BrushStyle style, const QColor &strokeColor, Qt::PenStyle strokeStyle, double strokeWidth,
50 : : Qt::PenJoinStyle penJoinStyle )
51 : 206 : : mBrushStyle( style )
52 : 206 : , mStrokeColor( strokeColor )
53 : 206 : , mStrokeStyle( strokeStyle )
54 : 206 : , mStrokeWidth( strokeWidth )
55 : 206 : , mPenJoinStyle( penJoinStyle )
56 : 412 : {
57 : 206 : mColor = color;
58 : 206 : }
59 : :
60 : 0 : void QgsSimpleFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
61 : : {
62 : 0 : mStrokeWidthUnit = unit;
63 : 0 : mOffsetUnit = unit;
64 : 0 : }
65 : :
66 : 0 : QgsUnitTypes::RenderUnit QgsSimpleFillSymbolLayer::outputUnit() const
67 : : {
68 : 0 : QgsUnitTypes::RenderUnit unit = mStrokeWidthUnit;
69 : 0 : if ( mOffsetUnit != unit )
70 : : {
71 : 0 : return QgsUnitTypes::RenderUnknownUnit;
72 : : }
73 : 0 : return unit;
74 : 0 : }
75 : :
76 : 0 : bool QgsSimpleFillSymbolLayer::usesMapUnits() const
77 : : {
78 : 0 : return mStrokeWidthUnit == QgsUnitTypes::RenderMapUnits || mStrokeWidthUnit == QgsUnitTypes::RenderMetersInMapUnits
79 : 0 : || mOffsetUnit == QgsUnitTypes::RenderMapUnits || mOffsetUnit == QgsUnitTypes::RenderMetersInMapUnits;
80 : : }
81 : :
82 : 0 : void QgsSimpleFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
83 : : {
84 : 0 : mStrokeWidthMapUnitScale = scale;
85 : 0 : mOffsetMapUnitScale = scale;
86 : 0 : }
87 : :
88 : 0 : QgsMapUnitScale QgsSimpleFillSymbolLayer::mapUnitScale() const
89 : : {
90 : 0 : if ( mStrokeWidthMapUnitScale == mOffsetMapUnitScale )
91 : : {
92 : 0 : return mStrokeWidthMapUnitScale;
93 : : }
94 : 0 : return QgsMapUnitScale();
95 : 0 : }
96 : :
97 : 0 : void QgsSimpleFillSymbolLayer::applyDataDefinedSymbology( QgsSymbolRenderContext &context, QBrush &brush, QPen &pen, QPen &selPen )
98 : : {
99 : 0 : if ( !dataDefinedProperties().hasActiveProperties() )
100 : 0 : return; // shortcut
101 : :
102 : : bool ok;
103 : :
104 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFillColor ) )
105 : : {
106 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mColor ) );
107 : 0 : QColor fillColor = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyFillColor, context.renderContext().expressionContext(), mColor );
108 : 0 : fillColor.setAlphaF( context.opacity() * fillColor.alphaF() );
109 : 0 : brush.setColor( fillColor );
110 : 0 : }
111 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFillStyle ) )
112 : : {
113 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeBrushStyle( mBrushStyle ) );
114 : 0 : QVariant exprVal = mDataDefinedProperties.value( QgsSymbolLayer::PropertyFillStyle, context.renderContext().expressionContext() );
115 : 0 : if ( exprVal.isValid() )
116 : 0 : brush.setStyle( QgsSymbolLayerUtils::decodeBrushStyle( exprVal.toString() ) );
117 : 0 : }
118 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeColor ) )
119 : : {
120 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mStrokeColor ) );
121 : 0 : QColor penColor = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyStrokeColor, context.renderContext().expressionContext(), mStrokeColor );
122 : 0 : penColor.setAlphaF( context.opacity() * penColor.alphaF() );
123 : 0 : pen.setColor( penColor );
124 : 0 : }
125 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeWidth ) )
126 : : {
127 : 0 : context.setOriginalValueVariable( mStrokeWidth );
128 : 0 : QVariant exprVal = mDataDefinedProperties.value( QgsSymbolLayer::PropertyStrokeWidth, context.renderContext().expressionContext() );
129 : 0 : double width = exprVal.toDouble( &ok );
130 : 0 : if ( ok )
131 : : {
132 : 0 : width = context.renderContext().convertToPainterUnits( width, mStrokeWidthUnit, mStrokeWidthMapUnitScale );
133 : 0 : pen.setWidthF( width );
134 : 0 : selPen.setWidthF( width );
135 : 0 : }
136 : 0 : }
137 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeStyle ) )
138 : : {
139 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodePenStyle( mStrokeStyle ) );
140 : 0 : QString style = mDataDefinedProperties.valueAsString( QgsSymbolLayer::PropertyStrokeStyle, context.renderContext().expressionContext(), QString(), &ok );
141 : 0 : if ( ok )
142 : : {
143 : 0 : pen.setStyle( QgsSymbolLayerUtils::decodePenStyle( style ) );
144 : 0 : selPen.setStyle( QgsSymbolLayerUtils::decodePenStyle( style ) );
145 : 0 : }
146 : 0 : }
147 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyJoinStyle ) )
148 : : {
149 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodePenJoinStyle( mPenJoinStyle ) );
150 : 0 : QString style = mDataDefinedProperties.valueAsString( QgsSymbolLayer::PropertyJoinStyle, context.renderContext().expressionContext(), QString(), &ok );
151 : 0 : if ( ok )
152 : : {
153 : 0 : pen.setJoinStyle( QgsSymbolLayerUtils::decodePenJoinStyle( style ) );
154 : 0 : selPen.setJoinStyle( QgsSymbolLayerUtils::decodePenJoinStyle( style ) );
155 : 0 : }
156 : 0 : }
157 : 0 : }
158 : :
159 : :
160 : 175 : QgsSymbolLayer *QgsSimpleFillSymbolLayer::create( const QVariantMap &props )
161 : : {
162 : 175 : QColor color = DEFAULT_SIMPLEFILL_COLOR;
163 : 175 : Qt::BrushStyle style = DEFAULT_SIMPLEFILL_STYLE;
164 : 175 : QColor strokeColor = DEFAULT_SIMPLEFILL_BORDERCOLOR;
165 : 175 : Qt::PenStyle strokeStyle = DEFAULT_SIMPLEFILL_BORDERSTYLE;
166 : 175 : double strokeWidth = DEFAULT_SIMPLEFILL_BORDERWIDTH;
167 : 175 : Qt::PenJoinStyle penJoinStyle = DEFAULT_SIMPLEFILL_JOINSTYLE;
168 : 175 : QPointF offset;
169 : :
170 : 350 : if ( props.contains( QStringLiteral( "color" ) ) )
171 : 330 : color = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "color" )].toString() );
172 : 350 : if ( props.contains( QStringLiteral( "style" ) ) )
173 : 330 : style = QgsSymbolLayerUtils::decodeBrushStyle( props[QStringLiteral( "style" )].toString() );
174 : 350 : if ( props.contains( QStringLiteral( "color_border" ) ) )
175 : : {
176 : : //pre 2.5 projects used "color_border"
177 : 0 : strokeColor = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "color_border" )].toString() );
178 : 0 : }
179 : 350 : else if ( props.contains( QStringLiteral( "outline_color" ) ) )
180 : : {
181 : 330 : strokeColor = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "outline_color" )].toString() );
182 : 165 : }
183 : 20 : else if ( props.contains( QStringLiteral( "line_color" ) ) )
184 : 206 : {
185 : 0 : strokeColor = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "line_color" )].toString() );
186 : 0 : }
187 : :
188 : 350 : if ( props.contains( QStringLiteral( "style_border" ) ) )
189 : : {
190 : : //pre 2.5 projects used "style_border"
191 : 206 : strokeStyle = QgsSymbolLayerUtils::decodePenStyle( props[QStringLiteral( "style_border" )].toString() );
192 : 0 : }
193 : 350 : else if ( props.contains( QStringLiteral( "outline_style" ) ) )
194 : : {
195 : 330 : strokeStyle = QgsSymbolLayerUtils::decodePenStyle( props[QStringLiteral( "outline_style" )].toString() );
196 : 165 : }
197 : 20 : else if ( props.contains( QStringLiteral( "line_style" ) ) )
198 : : {
199 : 0 : strokeStyle = QgsSymbolLayerUtils::decodePenStyle( props[QStringLiteral( "line_style" )].toString() );
200 : 0 : }
201 : 350 : if ( props.contains( QStringLiteral( "width_border" ) ) )
202 : : {
203 : : //pre 2.5 projects used "width_border"
204 : 0 : strokeWidth = props[QStringLiteral( "width_border" )].toDouble();
205 : 0 : }
206 : 350 : else if ( props.contains( QStringLiteral( "outline_width" ) ) )
207 : : {
208 : 330 : strokeWidth = props[QStringLiteral( "outline_width" )].toDouble();
209 : 165 : }
210 : 20 : else if ( props.contains( QStringLiteral( "line_width" ) ) )
211 : : {
212 : 0 : strokeWidth = props[QStringLiteral( "line_width" )].toDouble();
213 : 0 : }
214 : 350 : if ( props.contains( QStringLiteral( "offset" ) ) )
215 : 340 : offset = QgsSymbolLayerUtils::decodePoint( props[QStringLiteral( "offset" )].toString() );
216 : 350 : if ( props.contains( QStringLiteral( "joinstyle" ) ) )
217 : 330 : penJoinStyle = QgsSymbolLayerUtils::decodePenJoinStyle( props[QStringLiteral( "joinstyle" )].toString() );
218 : :
219 : 175 : std::unique_ptr< QgsSimpleFillSymbolLayer > sl = std::make_unique< QgsSimpleFillSymbolLayer >( color, style, strokeColor, strokeStyle, strokeWidth, penJoinStyle );
220 : 175 : sl->setOffset( offset );
221 : 350 : if ( props.contains( QStringLiteral( "border_width_unit" ) ) )
222 : : {
223 : 0 : sl->setStrokeWidthUnit( QgsUnitTypes::decodeRenderUnit( props[QStringLiteral( "border_width_unit" )].toString() ) );
224 : 0 : }
225 : 350 : else if ( props.contains( QStringLiteral( "outline_width_unit" ) ) )
226 : : {
227 : 330 : sl->setStrokeWidthUnit( QgsUnitTypes::decodeRenderUnit( props[QStringLiteral( "outline_width_unit" )].toString() ) );
228 : 165 : }
229 : 20 : else if ( props.contains( QStringLiteral( "line_width_unit" ) ) )
230 : : {
231 : 0 : sl->setStrokeWidthUnit( QgsUnitTypes::decodeRenderUnit( props[QStringLiteral( "line_width_unit" )].toString() ) );
232 : 0 : }
233 : 350 : if ( props.contains( QStringLiteral( "offset_unit" ) ) )
234 : 340 : sl->setOffsetUnit( QgsUnitTypes::decodeRenderUnit( props[QStringLiteral( "offset_unit" )].toString() ) );
235 : :
236 : 350 : if ( props.contains( QStringLiteral( "border_width_map_unit_scale" ) ) )
237 : 330 : sl->setStrokeWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( props[QStringLiteral( "border_width_map_unit_scale" )].toString() ) );
238 : 350 : if ( props.contains( QStringLiteral( "offset_map_unit_scale" ) ) )
239 : 330 : sl->setOffsetMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( props[QStringLiteral( "offset_map_unit_scale" )].toString() ) );
240 : :
241 : 175 : sl->restoreOldDataDefinedProperties( props );
242 : :
243 : 175 : return sl.release();
244 : 175 : }
245 : :
246 : :
247 : 0 : QString QgsSimpleFillSymbolLayer::layerType() const
248 : : {
249 : 0 : return QStringLiteral( "SimpleFill" );
250 : : }
251 : :
252 : 0 : void QgsSimpleFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
253 : : {
254 : 0 : QColor fillColor = mColor;
255 : 0 : fillColor.setAlphaF( context.opacity() * mColor.alphaF() );
256 : 0 : mBrush = QBrush( fillColor, mBrushStyle );
257 : :
258 : 0 : QColor selColor = context.renderContext().selectionColor();
259 : 0 : QColor selPenColor = selColor == mColor ? selColor : mStrokeColor;
260 : : if ( ! SELECTION_IS_OPAQUE )
261 : : selColor.setAlphaF( context.opacity() );
262 : 0 : mSelBrush = QBrush( selColor );
263 : : // N.B. unless a "selection line color" is implemented in addition to the "selection color" option
264 : : // this would mean symbols with "no fill" look the same whether or not they are selected
265 : : if ( SELECT_FILL_STYLE )
266 : : mSelBrush.setStyle( mBrushStyle );
267 : :
268 : 0 : QColor strokeColor = mStrokeColor;
269 : 0 : strokeColor.setAlphaF( context.opacity() * mStrokeColor.alphaF() );
270 : 0 : mPen = QPen( strokeColor );
271 : 0 : mSelPen = QPen( selPenColor );
272 : 0 : mPen.setStyle( mStrokeStyle );
273 : 0 : mPen.setWidthF( context.renderContext().convertToPainterUnits( mStrokeWidth, mStrokeWidthUnit, mStrokeWidthMapUnitScale ) );
274 : 0 : mPen.setJoinStyle( mPenJoinStyle );
275 : 0 : }
276 : :
277 : 0 : void QgsSimpleFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
278 : : {
279 : 0 : Q_UNUSED( context )
280 : 0 : }
281 : :
282 : 0 : void QgsSimpleFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
283 : : {
284 : 0 : QPainter *p = context.renderContext().painter();
285 : 0 : if ( !p )
286 : : {
287 : 0 : return;
288 : : }
289 : :
290 : 0 : QColor fillColor = mColor;
291 : 0 : fillColor.setAlphaF( context.opacity() * mColor.alphaF() );
292 : 0 : mBrush.setColor( fillColor );
293 : 0 : QColor strokeColor = mStrokeColor;
294 : 0 : strokeColor.setAlphaF( context.opacity() * mStrokeColor.alphaF() );
295 : 0 : mPen.setColor( strokeColor );
296 : :
297 : 0 : applyDataDefinedSymbology( context, mBrush, mPen, mSelPen );
298 : :
299 : 0 : QPointF offset = mOffset;
300 : :
301 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffset ) )
302 : : {
303 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodePoint( mOffset ) );
304 : 0 : const QVariant val = mDataDefinedProperties.value( QgsSymbolLayer::PropertyOffset, context.renderContext().expressionContext(), QString() );
305 : 0 : bool ok = false;
306 : 0 : const QPointF res = QgsSymbolLayerUtils::toPoint( val, &ok );
307 : 0 : if ( ok )
308 : 0 : offset = res;
309 : 0 : }
310 : :
311 : 0 : if ( !offset.isNull() )
312 : : {
313 : 0 : offset.setX( context.renderContext().convertToPainterUnits( offset.x(), mOffsetUnit, mOffsetMapUnitScale ) );
314 : 0 : offset.setY( context.renderContext().convertToPainterUnits( offset.y(), mOffsetUnit, mOffsetMapUnitScale ) );
315 : 0 : p->translate( offset );
316 : 0 : }
317 : :
318 : : #ifndef QT_NO_PRINTER
319 : 0 : if ( mBrush.style() == Qt::SolidPattern || mBrush.style() == Qt::NoBrush || !dynamic_cast<QPrinter *>( p->device() ) )
320 : : #endif
321 : : {
322 : 0 : p->setPen( context.selected() ? mSelPen : mPen );
323 : 0 : p->setBrush( context.selected() ? mSelBrush : mBrush );
324 : 0 : _renderPolygon( p, points, rings, context );
325 : 0 : }
326 : : #ifndef QT_NO_PRINTER
327 : : else
328 : : {
329 : : // workaround upstream issue https://github.com/qgis/QGIS/issues/36580
330 : : // when a non-solid brush is set with opacity, the opacity incorrectly applies to the pen
331 : : // when exporting to PDF/print devices
332 : 0 : p->setBrush( context.selected() ? mSelBrush : mBrush );
333 : 0 : p->setPen( Qt::NoPen );
334 : 0 : _renderPolygon( p, points, rings, context );
335 : :
336 : 0 : p->setPen( context.selected() ? mSelPen : mPen );
337 : 0 : p->setBrush( Qt::NoBrush );
338 : 0 : _renderPolygon( p, points, rings, context );
339 : : }
340 : : #endif
341 : :
342 : 0 : if ( !offset.isNull() )
343 : : {
344 : 0 : p->translate( -offset );
345 : 0 : }
346 : 0 : }
347 : :
348 : 0 : QVariantMap QgsSimpleFillSymbolLayer::properties() const
349 : : {
350 : 0 : QVariantMap map;
351 : 0 : map[QStringLiteral( "color" )] = QgsSymbolLayerUtils::encodeColor( mColor );
352 : 0 : map[QStringLiteral( "style" )] = QgsSymbolLayerUtils::encodeBrushStyle( mBrushStyle );
353 : 0 : map[QStringLiteral( "outline_color" )] = QgsSymbolLayerUtils::encodeColor( mStrokeColor );
354 : 0 : map[QStringLiteral( "outline_style" )] = QgsSymbolLayerUtils::encodePenStyle( mStrokeStyle );
355 : 0 : map[QStringLiteral( "outline_width" )] = QString::number( mStrokeWidth );
356 : 0 : map[QStringLiteral( "outline_width_unit" )] = QgsUnitTypes::encodeUnit( mStrokeWidthUnit );
357 : 0 : map[QStringLiteral( "border_width_map_unit_scale" )] = QgsSymbolLayerUtils::encodeMapUnitScale( mStrokeWidthMapUnitScale );
358 : 0 : map[QStringLiteral( "joinstyle" )] = QgsSymbolLayerUtils::encodePenJoinStyle( mPenJoinStyle );
359 : 0 : map[QStringLiteral( "offset" )] = QgsSymbolLayerUtils::encodePoint( mOffset );
360 : 0 : map[QStringLiteral( "offset_unit" )] = QgsUnitTypes::encodeUnit( mOffsetUnit );
361 : 0 : map[QStringLiteral( "offset_map_unit_scale" )] = QgsSymbolLayerUtils::encodeMapUnitScale( mOffsetMapUnitScale );
362 : 0 : return map;
363 : 0 : }
364 : :
365 : 0 : QgsSimpleFillSymbolLayer *QgsSimpleFillSymbolLayer::clone() const
366 : : {
367 : 0 : std::unique_ptr< QgsSimpleFillSymbolLayer > sl = std::make_unique< QgsSimpleFillSymbolLayer >( mColor, mBrushStyle, mStrokeColor, mStrokeStyle, mStrokeWidth, mPenJoinStyle );
368 : 0 : sl->setOffset( mOffset );
369 : 0 : sl->setOffsetUnit( mOffsetUnit );
370 : 0 : sl->setOffsetMapUnitScale( mOffsetMapUnitScale );
371 : 0 : sl->setStrokeWidthUnit( mStrokeWidthUnit );
372 : 0 : sl->setStrokeWidthMapUnitScale( mStrokeWidthMapUnitScale );
373 : 0 : copyDataDefinedProperties( sl.get() );
374 : 0 : copyPaintEffect( sl.get() );
375 : 0 : return sl.release();
376 : 0 : }
377 : :
378 : 0 : void QgsSimpleFillSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
379 : 55 : {
380 : 0 : if ( mBrushStyle == Qt::NoBrush && mStrokeStyle == Qt::NoPen )
381 : 0 : return;
382 : :
383 : 0 : QDomElement symbolizerElem = doc.createElement( QStringLiteral( "se:PolygonSymbolizer" ) );
384 : 0 : if ( !props.value( QStringLiteral( "uom" ), QString() ).toString().isEmpty() )
385 : 55 : symbolizerElem.setAttribute( QStringLiteral( "uom" ), props.value( QStringLiteral( "uom" ), QString() ).toString() );
386 : 0 : element.appendChild( symbolizerElem );
387 : 55 :
388 : : // <Geometry>
389 : 0 : QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( QStringLiteral( "geom" ), QString() ).toString() );
390 : 55 :
391 : 0 : if ( mBrushStyle != Qt::NoBrush )
392 : : {
393 : : // <Fill>
394 : 0 : QDomElement fillElem = doc.createElement( QStringLiteral( "se:Fill" ) );
395 : 0 : symbolizerElem.appendChild( fillElem );
396 : 0 : QgsSymbolLayerUtils::fillToSld( doc, fillElem, mBrushStyle, mColor );
397 : 0 : }
398 : :
399 : 0 : if ( mStrokeStyle != Qt::NoPen )
400 : : {
401 : : // <Stroke>
402 : 0 : QDomElement strokeElem = doc.createElement( QStringLiteral( "se:Stroke" ) );
403 : 0 : symbolizerElem.appendChild( strokeElem );
404 : 0 : double strokeWidth = QgsSymbolLayerUtils::rescaleUom( mStrokeWidth, mStrokeWidthUnit, props );
405 : 0 : QgsSymbolLayerUtils::lineToSld( doc, strokeElem, mStrokeStyle, mStrokeColor, strokeWidth, &mPenJoinStyle );
406 : 0 : }
407 : :
408 : : // <se:Displacement>
409 : 0 : QPointF offset = QgsSymbolLayerUtils::rescaleUom( mOffset, mOffsetUnit, props );
410 : 0 : QgsSymbolLayerUtils::createDisplacementElement( doc, symbolizerElem, offset );
411 : 0 : }
412 : :
413 : 0 : QString QgsSimpleFillSymbolLayer::ogrFeatureStyle( double mmScaleFactor, double mapUnitScaleFactor ) const
414 : : {
415 : : //brush
416 : 0 : QString symbolStyle;
417 : 0 : symbolStyle.append( QgsSymbolLayerUtils::ogrFeatureStyleBrush( mColor ) );
418 : 0 : symbolStyle.append( ';' );
419 : : //pen
420 : 0 : symbolStyle.append( QgsSymbolLayerUtils::ogrFeatureStylePen( mStrokeWidth, mmScaleFactor, mapUnitScaleFactor, mStrokeColor, mPenJoinStyle ) );
421 : 0 : return symbolStyle;
422 : 0 : }
423 : :
424 : 0 : QgsSymbolLayer *QgsSimpleFillSymbolLayer::createFromSld( QDomElement &element )
425 : : {
426 : 0 : QColor color, strokeColor;
427 : : Qt::BrushStyle fillStyle;
428 : : Qt::PenStyle strokeStyle;
429 : : double strokeWidth;
430 : :
431 : 0 : QDomElement fillElem = element.firstChildElement( QStringLiteral( "Fill" ) );
432 : 0 : QgsSymbolLayerUtils::fillFromSld( fillElem, fillStyle, color );
433 : :
434 : 0 : QDomElement strokeElem = element.firstChildElement( QStringLiteral( "Stroke" ) );
435 : 0 : QgsSymbolLayerUtils::lineFromSld( strokeElem, strokeStyle, strokeColor, strokeWidth );
436 : :
437 : 0 : QPointF offset;
438 : 0 : QgsSymbolLayerUtils::displacementFromSldElement( element, offset );
439 : :
440 : 0 : QString uom = element.attribute( QStringLiteral( "uom" ), QString() );
441 : 0 : offset.setX( QgsSymbolLayerUtils::sizeInPixelsFromSldUom( uom, offset.x() ) );
442 : 0 : offset.setY( QgsSymbolLayerUtils::sizeInPixelsFromSldUom( uom, offset.y() ) );
443 : 0 : strokeWidth = QgsSymbolLayerUtils::sizeInPixelsFromSldUom( uom, strokeWidth );
444 : :
445 : 0 : std::unique_ptr< QgsSimpleFillSymbolLayer > sl = std::make_unique< QgsSimpleFillSymbolLayer >( color, fillStyle, strokeColor, strokeStyle, strokeWidth );
446 : 0 : sl->setOutputUnit( QgsUnitTypes::RenderUnit::RenderPixels );
447 : 0 : sl->setOffset( offset );
448 : 0 : return sl.release();
449 : 0 : }
450 : :
451 : 0 : double QgsSimpleFillSymbolLayer::estimateMaxBleed( const QgsRenderContext &context ) const
452 : : {
453 : 0 : double penBleed = context.convertToPainterUnits( mStrokeStyle == Qt::NoPen ? 0 : ( mStrokeWidth / 2.0 ), mStrokeWidthUnit, mStrokeWidthMapUnitScale );
454 : 0 : double offsetBleed = context.convertToPainterUnits( std::max( std::fabs( mOffset.x() ), std::fabs( mOffset.y() ) ), mOffsetUnit, mOffsetMapUnitScale );
455 : 0 : return penBleed + offsetBleed;
456 : : }
457 : :
458 : 0 : double QgsSimpleFillSymbolLayer::dxfWidth( const QgsDxfExport &e, QgsSymbolRenderContext &context ) const
459 : : {
460 : 0 : double width = mStrokeWidth;
461 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeWidth ) )
462 : : {
463 : 0 : context.setOriginalValueVariable( mStrokeWidth );
464 : 0 : width = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyStrokeWidth, context.renderContext().expressionContext(), mStrokeWidth );
465 : 0 : }
466 : 0 : return width * e.mapUnitScaleFactor( e.symbologyScale(), mStrokeWidthUnit, e.mapUnits(), context.renderContext().mapToPixel().mapUnitsPerPixel() );
467 : 0 : }
468 : :
469 : 0 : QColor QgsSimpleFillSymbolLayer::dxfColor( QgsSymbolRenderContext &context ) const
470 : : {
471 : 0 : QColor c = mStrokeColor;
472 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeColor ) )
473 : : {
474 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mStrokeColor ) );
475 : 0 : c = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyStrokeColor, context.renderContext().expressionContext(), c );
476 : 0 : }
477 : 0 : return c;
478 : 0 : }
479 : :
480 : 0 : double QgsSimpleFillSymbolLayer::dxfAngle( QgsSymbolRenderContext &context ) const
481 : : {
482 : 0 : double angle = mAngle;
483 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyAngle ) )
484 : : {
485 : 0 : context.setOriginalValueVariable( mAngle );
486 : 0 : angle = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyAngle, context.renderContext().expressionContext(), mAngle );
487 : 0 : }
488 : 0 : return angle;
489 : 0 : }
490 : :
491 : 0 : Qt::PenStyle QgsSimpleFillSymbolLayer::dxfPenStyle() const
492 : : {
493 : 0 : return mStrokeStyle;
494 : : }
495 : :
496 : 0 : QColor QgsSimpleFillSymbolLayer::dxfBrushColor( QgsSymbolRenderContext &context ) const
497 : : {
498 : 0 : QColor c = mColor;
499 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFillColor ) )
500 : : {
501 : 0 : c = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyFillColor, context.renderContext().expressionContext(), c );
502 : 0 : }
503 : 0 : return c;
504 : : }
505 : :
506 : 0 : Qt::BrushStyle QgsSimpleFillSymbolLayer::dxfBrushStyle() const
507 : : {
508 : 0 : return mBrushStyle;
509 : : }
510 : :
511 : : //QgsGradientFillSymbolLayer
512 : :
513 : 110 : QgsGradientFillSymbolLayer::QgsGradientFillSymbolLayer( const QColor &color, const QColor &color2,
514 : : GradientColorType colorType, GradientType gradientType,
515 : : GradientCoordinateMode coordinateMode, GradientSpread spread )
516 : 55 : : mGradientColorType( colorType )
517 : 55 : , mGradientType( gradientType )
518 : 55 : , mCoordinateMode( coordinateMode )
519 : 55 : , mGradientSpread( spread )
520 : 55 : , mReferencePoint1( QPointF( 0.5, 0 ) )
521 : 55 : , mReferencePoint2( QPointF( 0.5, 1 ) )
522 : 110 : {
523 : 55 : mColor = color;
524 : 55 : mColor2 = color2;
525 : 55 : }
526 : :
527 : 66 : QgsGradientFillSymbolLayer::~QgsGradientFillSymbolLayer()
528 : 66 : {
529 : 33 : delete mGradientRamp;
530 : 66 : }
531 : :
532 : 50 : QgsSymbolLayer *QgsGradientFillSymbolLayer::create( const QVariantMap &props )
533 : : {
534 : : //default to a two-color, linear gradient with feature mode and pad spreading
535 : 50 : GradientType type = QgsGradientFillSymbolLayer::Linear;
536 : 50 : GradientColorType colorType = QgsGradientFillSymbolLayer::SimpleTwoColor;
537 : 50 : GradientCoordinateMode coordinateMode = QgsGradientFillSymbolLayer::Feature;
538 : 50 : GradientSpread gradientSpread = QgsGradientFillSymbolLayer::Pad;
539 : : //default to gradient from the default fill color to white
540 : 50 : QColor color = DEFAULT_SIMPLEFILL_COLOR, color2 = Qt::white;
541 : 50 : QPointF referencePoint1 = QPointF( 0.5, 0 );
542 : 50 : bool refPoint1IsCentroid = false;
543 : 50 : QPointF referencePoint2 = QPointF( 0.5, 1 );
544 : 50 : bool refPoint2IsCentroid = false;
545 : 50 : double angle = 0;
546 : 50 : QPointF offset;
547 : :
548 : : //update gradient properties from props
549 : 100 : if ( props.contains( QStringLiteral( "type" ) ) )
550 : 100 : type = static_cast< GradientType >( props[QStringLiteral( "type" )].toInt() );
551 : 100 : if ( props.contains( QStringLiteral( "coordinate_mode" ) ) )
552 : 100 : coordinateMode = static_cast< GradientCoordinateMode >( props[QStringLiteral( "coordinate_mode" )].toInt() );
553 : 100 : if ( props.contains( QStringLiteral( "spread" ) ) )
554 : 100 : gradientSpread = static_cast< GradientSpread >( props[QStringLiteral( "spread" )].toInt() );
555 : 100 : if ( props.contains( QStringLiteral( "color_type" ) ) )
556 : 100 : colorType = static_cast< GradientColorType >( props[QStringLiteral( "color_type" )].toInt() );
557 : 100 : if ( props.contains( QStringLiteral( "gradient_color" ) ) )
558 : : {
559 : : //pre 2.5 projects used "gradient_color"
560 : 0 : color = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "gradient_color" )].toString() );
561 : 0 : }
562 : 100 : else if ( props.contains( QStringLiteral( "color" ) ) )
563 : : {
564 : 100 : color = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "color" )].toString() );
565 : 50 : }
566 : 100 : if ( props.contains( QStringLiteral( "gradient_color2" ) ) )
567 : : {
568 : 100 : color2 = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "gradient_color2" )].toString() );
569 : 50 : }
570 : :
571 : 100 : if ( props.contains( QStringLiteral( "reference_point1" ) ) )
572 : 100 : referencePoint1 = QgsSymbolLayerUtils::decodePoint( props[QStringLiteral( "reference_point1" )].toString() );
573 : 100 : if ( props.contains( QStringLiteral( "reference_point1_iscentroid" ) ) )
574 : 100 : refPoint1IsCentroid = props[QStringLiteral( "reference_point1_iscentroid" )].toInt();
575 : 100 : if ( props.contains( QStringLiteral( "reference_point2" ) ) )
576 : 100 : referencePoint2 = QgsSymbolLayerUtils::decodePoint( props[QStringLiteral( "reference_point2" )].toString() );
577 : 100 : if ( props.contains( QStringLiteral( "reference_point2_iscentroid" ) ) )
578 : 100 : refPoint2IsCentroid = props[QStringLiteral( "reference_point2_iscentroid" )].toInt();
579 : 100 : if ( props.contains( QStringLiteral( "angle" ) ) )
580 : 100 : angle = props[QStringLiteral( "angle" )].toDouble();
581 : :
582 : 100 : if ( props.contains( QStringLiteral( "offset" ) ) )
583 : 100 : offset = QgsSymbolLayerUtils::decodePoint( props[QStringLiteral( "offset" )].toString() );
584 : :
585 : : //attempt to create color ramp from props
586 : 50 : QgsColorRamp *gradientRamp = nullptr;
587 : 200 : if ( props.contains( QStringLiteral( "rampType" ) ) && props[QStringLiteral( "rampType" )] == QgsCptCityColorRamp::typeString() )
588 : : {
589 : 0 : gradientRamp = QgsCptCityColorRamp::create( props );
590 : 0 : }
591 : : else
592 : : {
593 : 50 : gradientRamp = QgsGradientColorRamp::create( props );
594 : : }
595 : :
596 : : //create a new gradient fill layer with desired properties
597 : 50 : std::unique_ptr< QgsGradientFillSymbolLayer > sl = std::make_unique< QgsGradientFillSymbolLayer >( color, color2, colorType, type, coordinateMode, gradientSpread );
598 : 50 : sl->setOffset( offset );
599 : 100 : if ( props.contains( QStringLiteral( "offset_unit" ) ) )
600 : 100 : sl->setOffsetUnit( QgsUnitTypes::decodeRenderUnit( props[QStringLiteral( "offset_unit" )].toString() ) );
601 : 100 : if ( props.contains( QStringLiteral( "offset_map_unit_scale" ) ) )
602 : 100 : sl->setOffsetMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( props[QStringLiteral( "offset_map_unit_scale" )].toString() ) );
603 : 50 : sl->setReferencePoint1( referencePoint1 );
604 : 50 : sl->setReferencePoint1IsCentroid( refPoint1IsCentroid );
605 : 50 : sl->setReferencePoint2( referencePoint2 );
606 : 50 : sl->setReferencePoint2IsCentroid( refPoint2IsCentroid );
607 : 50 : sl->setAngle( angle );
608 : 50 : if ( gradientRamp )
609 : 50 : sl->setColorRamp( gradientRamp );
610 : :
611 : 50 : sl->restoreOldDataDefinedProperties( props );
612 : :
613 : 50 : return sl.release();
614 : 50 : }
615 : :
616 : 50 : void QgsGradientFillSymbolLayer::setColorRamp( QgsColorRamp *ramp )
617 : : {
618 : 50 : delete mGradientRamp;
619 : 50 : mGradientRamp = ramp;
620 : 50 : }
621 : :
622 : 0 : QString QgsGradientFillSymbolLayer::layerType() const
623 : : {
624 : 0 : return QStringLiteral( "GradientFill" );
625 : : }
626 : :
627 : 0 : void QgsGradientFillSymbolLayer::applyDataDefinedSymbology( QgsSymbolRenderContext &context, const QPolygonF &points )
628 : : {
629 : 0 : if ( !dataDefinedProperties().hasActiveProperties() && !mReferencePoint1IsCentroid && !mReferencePoint2IsCentroid )
630 : : {
631 : : //shortcut
632 : 0 : applyGradient( context, mBrush, mColor, mColor2, mGradientColorType, mGradientRamp, mGradientType, mCoordinateMode,
633 : 0 : mGradientSpread, mReferencePoint1, mReferencePoint2, mAngle );
634 : 0 : return;
635 : : }
636 : :
637 : : bool ok;
638 : :
639 : : //first gradient color
640 : 0 : QColor color = mColor;
641 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFillColor ) )
642 : : {
643 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mColor ) );
644 : 0 : color = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyFillColor, context.renderContext().expressionContext(), mColor );
645 : 0 : color.setAlphaF( context.opacity() * color.alphaF() );
646 : 0 : }
647 : :
648 : : //second gradient color
649 : 0 : QColor color2 = mColor2;
650 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertySecondaryColor ) )
651 : : {
652 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mColor2 ) );
653 : 0 : color2 = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertySecondaryColor, context.renderContext().expressionContext(), mColor2 );
654 : 0 : color2.setAlphaF( context.opacity() * color2.alphaF() );
655 : 0 : }
656 : :
657 : : //gradient rotation angle
658 : 0 : double angle = mAngle;
659 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyAngle ) )
660 : : {
661 : 0 : context.setOriginalValueVariable( mAngle );
662 : 0 : angle = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyAngle, context.renderContext().expressionContext(), mAngle );
663 : 0 : }
664 : :
665 : : //gradient type
666 : 0 : QgsGradientFillSymbolLayer::GradientType gradientType = mGradientType;
667 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientType ) )
668 : : {
669 : 0 : QString currentType = mDataDefinedProperties.valueAsString( QgsSymbolLayer::PropertyGradientType, context.renderContext().expressionContext(), QString(), &ok );
670 : 0 : if ( ok )
671 : : {
672 : 0 : if ( currentType == QObject::tr( "linear" ) )
673 : : {
674 : 0 : gradientType = QgsGradientFillSymbolLayer::Linear;
675 : 0 : }
676 : 0 : else if ( currentType == QObject::tr( "radial" ) )
677 : : {
678 : 0 : gradientType = QgsGradientFillSymbolLayer::Radial;
679 : 0 : }
680 : 0 : else if ( currentType == QObject::tr( "conical" ) )
681 : : {
682 : 0 : gradientType = QgsGradientFillSymbolLayer::Conical;
683 : 0 : }
684 : 0 : }
685 : 0 : }
686 : :
687 : : //coordinate mode
688 : 0 : GradientCoordinateMode coordinateMode = mCoordinateMode;
689 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyCoordinateMode ) )
690 : : {
691 : 0 : QString currentCoordMode = mDataDefinedProperties.valueAsString( QgsSymbolLayer::PropertyCoordinateMode, context.renderContext().expressionContext(), QString(), &ok );
692 : 0 : if ( ok )
693 : : {
694 : 0 : if ( currentCoordMode == QObject::tr( "feature" ) )
695 : : {
696 : 0 : coordinateMode = QgsGradientFillSymbolLayer::Feature;
697 : 0 : }
698 : 0 : else if ( currentCoordMode == QObject::tr( "viewport" ) )
699 : : {
700 : 0 : coordinateMode = QgsGradientFillSymbolLayer::Viewport;
701 : 0 : }
702 : 0 : }
703 : 0 : }
704 : :
705 : : //gradient spread
706 : 0 : GradientSpread spread = mGradientSpread;
707 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientSpread ) )
708 : : {
709 : 0 : QString currentSpread = mDataDefinedProperties.valueAsString( QgsSymbolLayer::PropertyGradientSpread, context.renderContext().expressionContext(), QString(), &ok );
710 : 0 : if ( ok )
711 : : {
712 : 0 : if ( currentSpread == QObject::tr( "pad" ) )
713 : : {
714 : 0 : spread = QgsGradientFillSymbolLayer::Pad;
715 : 0 : }
716 : 0 : else if ( currentSpread == QObject::tr( "repeat" ) )
717 : : {
718 : 0 : spread = QgsGradientFillSymbolLayer::Repeat;
719 : 0 : }
720 : 0 : else if ( currentSpread == QObject::tr( "reflect" ) )
721 : : {
722 : 0 : spread = QgsGradientFillSymbolLayer::Reflect;
723 : 0 : }
724 : 0 : }
725 : 0 : }
726 : :
727 : : //reference point 1 x & y
728 : 0 : double refPoint1X = mReferencePoint1.x();
729 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientReference1X ) )
730 : : {
731 : 0 : context.setOriginalValueVariable( refPoint1X );
732 : 0 : refPoint1X = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyGradientReference1X, context.renderContext().expressionContext(), refPoint1X );
733 : 0 : }
734 : 0 : double refPoint1Y = mReferencePoint1.y();
735 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientReference1Y ) )
736 : : {
737 : 0 : context.setOriginalValueVariable( refPoint1Y );
738 : 0 : refPoint1Y = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyGradientReference1Y, context.renderContext().expressionContext(), refPoint1Y );
739 : 0 : }
740 : 0 : bool refPoint1IsCentroid = mReferencePoint1IsCentroid;
741 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientReference1IsCentroid ) )
742 : : {
743 : 0 : context.setOriginalValueVariable( refPoint1IsCentroid );
744 : 0 : refPoint1IsCentroid = mDataDefinedProperties.valueAsBool( QgsSymbolLayer::PropertyGradientReference1IsCentroid, context.renderContext().expressionContext(), refPoint1IsCentroid );
745 : 0 : }
746 : :
747 : : //reference point 2 x & y
748 : 0 : double refPoint2X = mReferencePoint2.x();
749 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientReference2X ) )
750 : : {
751 : 0 : context.setOriginalValueVariable( refPoint2X );
752 : 0 : refPoint2X = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyGradientReference2X, context.renderContext().expressionContext(), refPoint2X );
753 : 0 : }
754 : 0 : double refPoint2Y = mReferencePoint2.y();
755 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientReference2Y ) )
756 : : {
757 : 0 : context.setOriginalValueVariable( refPoint2Y );
758 : 0 : refPoint2Y = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyGradientReference2Y, context.renderContext().expressionContext(), refPoint2Y );
759 : 0 : }
760 : 0 : bool refPoint2IsCentroid = mReferencePoint2IsCentroid;
761 : 100 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyGradientReference2IsCentroid ) )
762 : : {
763 : 0 : context.setOriginalValueVariable( refPoint2IsCentroid );
764 : 100 : refPoint2IsCentroid = mDataDefinedProperties.valueAsBool( QgsSymbolLayer::PropertyGradientReference2IsCentroid, context.renderContext().expressionContext(), refPoint2IsCentroid );
765 : 100 : }
766 : :
767 : 0 : if ( refPoint1IsCentroid || refPoint2IsCentroid )
768 : : {
769 : : //either the gradient is starting or ending at a centroid, so calculate it
770 : 0 : QPointF centroid = QgsSymbolLayerUtils::polygonCentroid( points );
771 : : //centroid coordinates need to be scaled to a range [0, 1] relative to polygon bounds
772 : 0 : QRectF bbox = points.boundingRect();
773 : 0 : double centroidX = ( centroid.x() - bbox.left() ) / bbox.width();
774 : 0 : double centroidY = ( centroid.y() - bbox.top() ) / bbox.height();
775 : :
776 : 0 : if ( refPoint1IsCentroid )
777 : : {
778 : 0 : refPoint1X = centroidX;
779 : 0 : refPoint1Y = centroidY;
780 : 0 : }
781 : 0 : if ( refPoint2IsCentroid )
782 : : {
783 : 0 : refPoint2X = centroidX;
784 : 0 : refPoint2Y = centroidY;
785 : 0 : }
786 : 0 : }
787 : :
788 : : //update gradient with data defined values
789 : 0 : applyGradient( context, mBrush, color, color2, mGradientColorType, mGradientRamp, gradientType, coordinateMode,
790 : 0 : spread, QPointF( refPoint1X, refPoint1Y ), QPointF( refPoint2X, refPoint2Y ), angle );
791 : 0 : }
792 : :
793 : 0 : QPointF QgsGradientFillSymbolLayer::rotateReferencePoint( QPointF refPoint, double angle )
794 : : {
795 : : //rotate a reference point by a specified angle around the point (0.5, 0.5)
796 : :
797 : : //create a line from the centrepoint of a rectangle bounded by (0, 0) and (1, 1) to the reference point
798 : 0 : QLineF refLine = QLineF( QPointF( 0.5, 0.5 ), refPoint );
799 : : //rotate this line by the current rotation angle
800 : 0 : refLine.setAngle( refLine.angle() + angle );
801 : : //get new end point of line
802 : 0 : QPointF rotatedReferencePoint = refLine.p2();
803 : : //make sure coords of new end point is within [0, 1]
804 : 0 : if ( rotatedReferencePoint.x() > 1 )
805 : 0 : rotatedReferencePoint.setX( 1 );
806 : 0 : if ( rotatedReferencePoint.x() < 0 )
807 : 0 : rotatedReferencePoint.setX( 0 );
808 : 0 : if ( rotatedReferencePoint.y() > 1 )
809 : 0 : rotatedReferencePoint.setY( 1 );
810 : 0 : if ( rotatedReferencePoint.y() < 0 )
811 : 0 : rotatedReferencePoint.setY( 0 );
812 : :
813 : 0 : return rotatedReferencePoint;
814 : : }
815 : :
816 : 0 : void QgsGradientFillSymbolLayer::applyGradient( const QgsSymbolRenderContext &context, QBrush &brush,
817 : : const QColor &color, const QColor &color2, GradientColorType gradientColorType,
818 : : QgsColorRamp *gradientRamp, GradientType gradientType,
819 : : GradientCoordinateMode coordinateMode, GradientSpread gradientSpread,
820 : : QPointF referencePoint1, QPointF referencePoint2, const double angle )
821 : : {
822 : : //update alpha of gradient colors
823 : 0 : QColor fillColor = color;
824 : 0 : fillColor.setAlphaF( context.opacity() * fillColor.alphaF() );
825 : 0 : QColor fillColor2 = color2;
826 : 0 : fillColor2.setAlphaF( context.opacity() * fillColor2.alphaF() );
827 : :
828 : : //rotate reference points
829 : 0 : QPointF rotatedReferencePoint1 = !qgsDoubleNear( angle, 0.0 ) ? rotateReferencePoint( referencePoint1, angle ) : referencePoint1;
830 : 0 : QPointF rotatedReferencePoint2 = !qgsDoubleNear( angle, 0.0 ) ? rotateReferencePoint( referencePoint2, angle ) : referencePoint2;
831 : :
832 : : //create a QGradient with the desired properties
833 : 0 : QGradient gradient;
834 : 0 : switch ( gradientType )
835 : : {
836 : : case QgsGradientFillSymbolLayer::Linear:
837 : 0 : gradient = QLinearGradient( rotatedReferencePoint1, rotatedReferencePoint2 );
838 : 0 : break;
839 : : case QgsGradientFillSymbolLayer::Radial:
840 : 0 : gradient = QRadialGradient( rotatedReferencePoint1, QLineF( rotatedReferencePoint1, rotatedReferencePoint2 ).length() );
841 : 0 : break;
842 : : case QgsGradientFillSymbolLayer::Conical:
843 : 0 : gradient = QConicalGradient( rotatedReferencePoint1, QLineF( rotatedReferencePoint1, rotatedReferencePoint2 ).angle() );
844 : 0 : break;
845 : : }
846 : 0 : switch ( coordinateMode )
847 : : {
848 : : case QgsGradientFillSymbolLayer::Feature:
849 : 0 : gradient.setCoordinateMode( QGradient::ObjectBoundingMode );
850 : 0 : break;
851 : : case QgsGradientFillSymbolLayer::Viewport:
852 : 0 : gradient.setCoordinateMode( QGradient::StretchToDeviceMode );
853 : 0 : break;
854 : : }
855 : 0 : switch ( gradientSpread )
856 : : {
857 : : case QgsGradientFillSymbolLayer::Pad:
858 : 0 : gradient.setSpread( QGradient::PadSpread );
859 : 0 : break;
860 : : case QgsGradientFillSymbolLayer::Reflect:
861 : 0 : gradient.setSpread( QGradient::ReflectSpread );
862 : 0 : break;
863 : : case QgsGradientFillSymbolLayer::Repeat:
864 : 0 : gradient.setSpread( QGradient::RepeatSpread );
865 : 0 : break;
866 : : }
867 : :
868 : : //add stops to gradient
869 : 0 : if ( gradientColorType == QgsGradientFillSymbolLayer::ColorRamp && gradientRamp &&
870 : 0 : ( gradientRamp->type() == QgsGradientColorRamp::typeString() || gradientRamp->type() == QgsCptCityColorRamp::typeString() ) )
871 : : {
872 : : //color ramp gradient
873 : 0 : QgsGradientColorRamp *gradRamp = static_cast<QgsGradientColorRamp *>( gradientRamp );
874 : 0 : gradRamp->addStopsToGradient( &gradient, context.opacity() );
875 : 0 : }
876 : : else
877 : : {
878 : : //two color gradient
879 : 0 : gradient.setColorAt( 0.0, fillColor );
880 : 0 : gradient.setColorAt( 1.0, fillColor2 );
881 : : }
882 : :
883 : : //update QBrush use gradient
884 : 0 : brush = QBrush( gradient );
885 : 0 : }
886 : :
887 : 0 : void QgsGradientFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
888 : : {
889 : 0 : QColor selColor = context.renderContext().selectionColor();
890 : : if ( ! SELECTION_IS_OPAQUE )
891 : : selColor.setAlphaF( context.opacity() );
892 : 0 : mSelBrush = QBrush( selColor );
893 : 0 : }
894 : :
895 : 0 : void QgsGradientFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
896 : : {
897 : 0 : Q_UNUSED( context )
898 : 0 : }
899 : :
900 : 0 : void QgsGradientFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
901 : : {
902 : 0 : QPainter *p = context.renderContext().painter();
903 : 0 : if ( !p )
904 : : {
905 : 0 : return;
906 : : }
907 : :
908 : 0 : applyDataDefinedSymbology( context, points );
909 : :
910 : 0 : p->setBrush( context.selected() ? mSelBrush : mBrush );
911 : 0 : p->setPen( Qt::NoPen );
912 : :
913 : 0 : QPointF offset = mOffset;
914 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffset ) )
915 : : {
916 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodePoint( mOffset ) );
917 : 0 : const QVariant val = mDataDefinedProperties.value( QgsSymbolLayer::PropertyOffset, context.renderContext().expressionContext(), QString() );
918 : 0 : bool ok = false;
919 : 0 : const QPointF res = QgsSymbolLayerUtils::toPoint( val, &ok );
920 : 0 : if ( ok )
921 : 0 : offset = res;
922 : 0 : }
923 : :
924 : 0 : if ( !offset.isNull() )
925 : : {
926 : 0 : offset.setX( context.renderContext().convertToPainterUnits( offset.x(), mOffsetUnit, mOffsetMapUnitScale ) );
927 : 0 : offset.setY( context.renderContext().convertToPainterUnits( offset.y(), mOffsetUnit, mOffsetMapUnitScale ) );
928 : 0 : p->translate( offset );
929 : 0 : }
930 : :
931 : 0 : _renderPolygon( p, points, rings, context );
932 : :
933 : 0 : if ( !offset.isNull() )
934 : : {
935 : 0 : p->translate( -offset );
936 : 0 : }
937 : 0 : }
938 : :
939 : 0 : QVariantMap QgsGradientFillSymbolLayer::properties() const
940 : : {
941 : 0 : QVariantMap map;
942 : 0 : map[QStringLiteral( "color" )] = QgsSymbolLayerUtils::encodeColor( mColor );
943 : 0 : map[QStringLiteral( "gradient_color2" )] = QgsSymbolLayerUtils::encodeColor( mColor2 );
944 : 0 : map[QStringLiteral( "color_type" )] = QString::number( mGradientColorType );
945 : 0 : map[QStringLiteral( "type" )] = QString::number( mGradientType );
946 : 0 : map[QStringLiteral( "coordinate_mode" )] = QString::number( mCoordinateMode );
947 : 0 : map[QStringLiteral( "spread" )] = QString::number( mGradientSpread );
948 : 0 : map[QStringLiteral( "reference_point1" )] = QgsSymbolLayerUtils::encodePoint( mReferencePoint1 );
949 : 0 : map[QStringLiteral( "reference_point1_iscentroid" )] = QString::number( mReferencePoint1IsCentroid );
950 : 0 : map[QStringLiteral( "reference_point2" )] = QgsSymbolLayerUtils::encodePoint( mReferencePoint2 );
951 : 0 : map[QStringLiteral( "reference_point2_iscentroid" )] = QString::number( mReferencePoint2IsCentroid );
952 : 0 : map[QStringLiteral( "angle" )] = QString::number( mAngle );
953 : 0 : map[QStringLiteral( "offset" )] = QgsSymbolLayerUtils::encodePoint( mOffset );
954 : 0 : map[QStringLiteral( "offset_unit" )] = QgsUnitTypes::encodeUnit( mOffsetUnit );
955 : 0 : map[QStringLiteral( "offset_map_unit_scale" )] = QgsSymbolLayerUtils::encodeMapUnitScale( mOffsetMapUnitScale );
956 : 0 : if ( mGradientRamp )
957 : : {
958 : : #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
959 : : map.unite( mGradientRamp->properties() );
960 : : #else
961 : 0 : map.insert( mGradientRamp->properties() );
962 : : #endif
963 : 0 : }
964 : 0 : return map;
965 : 0 : }
966 : :
967 : 0 : QgsGradientFillSymbolLayer *QgsGradientFillSymbolLayer::clone() const
968 : : {
969 : 0 : std::unique_ptr< QgsGradientFillSymbolLayer > sl = std::make_unique< QgsGradientFillSymbolLayer >( mColor, mColor2, mGradientColorType, mGradientType, mCoordinateMode, mGradientSpread );
970 : 0 : if ( mGradientRamp )
971 : 0 : sl->setColorRamp( mGradientRamp->clone() );
972 : 0 : sl->setReferencePoint1( mReferencePoint1 );
973 : 0 : sl->setReferencePoint1IsCentroid( mReferencePoint1IsCentroid );
974 : 0 : sl->setReferencePoint2( mReferencePoint2 );
975 : 0 : sl->setReferencePoint2IsCentroid( mReferencePoint2IsCentroid );
976 : 0 : sl->setAngle( mAngle );
977 : 0 : sl->setOffset( mOffset );
978 : 0 : sl->setOffsetUnit( mOffsetUnit );
979 : 0 : sl->setOffsetMapUnitScale( mOffsetMapUnitScale );
980 : 0 : copyDataDefinedProperties( sl.get() );
981 : 0 : copyPaintEffect( sl.get() );
982 : 0 : return sl.release();
983 : 0 : }
984 : :
985 : 0 : double QgsGradientFillSymbolLayer::estimateMaxBleed( const QgsRenderContext &context ) const
986 : : {
987 : 0 : double offsetBleed = context.convertToPainterUnits( std::max( std::fabs( mOffset.x() ), std::fabs( mOffset.y() ) ), mOffsetUnit, mOffsetMapUnitScale );
988 : 0 : return offsetBleed;
989 : : }
990 : :
991 : 0 : bool QgsGradientFillSymbolLayer::canCauseArtifactsBetweenAdjacentTiles() const
992 : : {
993 : 0 : return true;
994 : : }
995 : :
996 : 0 : void QgsGradientFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
997 : : {
998 : 0 : mOffsetUnit = unit;
999 : 0 : }
1000 : :
1001 : 0 : QgsUnitTypes::RenderUnit QgsGradientFillSymbolLayer::outputUnit() const
1002 : 0 : {
1003 : 0 : return mOffsetUnit;
1004 : : }
1005 : 0 :
1006 : 0 : bool QgsGradientFillSymbolLayer::usesMapUnits() const
1007 : : {
1008 : 0 : return mOffsetUnit == QgsUnitTypes::RenderMapUnits || mOffsetUnit == QgsUnitTypes::RenderMetersInMapUnits;
1009 : : }
1010 : :
1011 : 0 : void QgsGradientFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
1012 : : {
1013 : 0 : mOffsetMapUnitScale = scale;
1014 : 0 : }
1015 : :
1016 : 0 : QgsMapUnitScale QgsGradientFillSymbolLayer::mapUnitScale() const
1017 : : {
1018 : 0 : return mOffsetMapUnitScale;
1019 : : }
1020 : :
1021 : : //QgsShapeburstFillSymbolLayer
1022 : :
1023 : 0 : QgsShapeburstFillSymbolLayer::QgsShapeburstFillSymbolLayer( const QColor &color, const QColor &color2, ShapeburstColorType colorType,
1024 : : int blurRadius, bool useWholeShape, double maxDistance )
1025 : 0 : : mBlurRadius( blurRadius )
1026 : 0 : , mUseWholeShape( useWholeShape )
1027 : 0 : , mMaxDistance( maxDistance )
1028 : 0 : , mColorType( colorType )
1029 : 0 : , mColor2( color2 )
1030 : 0 : {
1031 : 0 : mColor = color;
1032 : 0 : }
1033 : :
1034 : 0 : QgsShapeburstFillSymbolLayer::~QgsShapeburstFillSymbolLayer() = default;
1035 : :
1036 : 0 : QgsSymbolLayer *QgsShapeburstFillSymbolLayer::create( const QVariantMap &props )
1037 : : {
1038 : : //default to a two-color gradient
1039 : 0 : ShapeburstColorType colorType = QgsShapeburstFillSymbolLayer::SimpleTwoColor;
1040 : 0 : QColor color = DEFAULT_SIMPLEFILL_COLOR, color2 = Qt::white;
1041 : 0 : int blurRadius = 0;
1042 : 0 : bool useWholeShape = true;
1043 : 0 : double maxDistance = 5;
1044 : 0 : QPointF offset;
1045 : :
1046 : : //update fill properties from props
1047 : 0 : if ( props.contains( QStringLiteral( "color_type" ) ) )
1048 : : {
1049 : 0 : colorType = static_cast< ShapeburstColorType >( props[QStringLiteral( "color_type" )].toInt() );
1050 : 0 : }
1051 : 0 : if ( props.contains( QStringLiteral( "shapeburst_color" ) ) )
1052 : : {
1053 : : //pre 2.5 projects used "shapeburst_color"
1054 : 0 : color = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "shapeburst_color" )].toString() );
1055 : 0 : }
1056 : 0 : else if ( props.contains( QStringLiteral( "color" ) ) )
1057 : : {
1058 : 0 : color = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "color" )].toString() );
1059 : 0 : }
1060 : :
1061 : 0 : if ( props.contains( QStringLiteral( "shapeburst_color2" ) ) )
1062 : : {
1063 : : //pre 2.5 projects used "shapeburst_color2"
1064 : 0 : color2 = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "shapeburst_color2" )].toString() );
1065 : 0 : }
1066 : 0 : else if ( props.contains( QStringLiteral( "gradient_color2" ) ) )
1067 : : {
1068 : 0 : color2 = QgsSymbolLayerUtils::decodeColor( props[QStringLiteral( "gradient_color2" )].toString() );
1069 : 0 : }
1070 : 0 : if ( props.contains( QStringLiteral( "blur_radius" ) ) )
1071 : : {
1072 : 0 : blurRadius = props[QStringLiteral( "blur_radius" )].toInt();
1073 : 0 : }
1074 : 0 : if ( props.contains( QStringLiteral( "use_whole_shape" ) ) )
1075 : : {
1076 : 0 : useWholeShape = props[QStringLiteral( "use_whole_shape" )].toInt();
1077 : 0 : }
1078 : 0 : if ( props.contains( QStringLiteral( "max_distance" ) ) )
1079 : : {
1080 : 0 : maxDistance = props[QStringLiteral( "max_distance" )].toDouble();
1081 : 0 : }
1082 : 0 : if ( props.contains( QStringLiteral( "offset" ) ) )
1083 : : {
1084 : 0 : offset = QgsSymbolLayerUtils::decodePoint( props[QStringLiteral( "offset" )].toString() );
1085 : 0 : }
1086 : :
1087 : : //attempt to create color ramp from props
1088 : 0 : QgsColorRamp *gradientRamp = nullptr;
1089 : 0 : if ( props.contains( QStringLiteral( "rampType" ) ) && props[QStringLiteral( "rampType" )] == QgsCptCityColorRamp::typeString() )
1090 : : {
1091 : 0 : gradientRamp = QgsCptCityColorRamp::create( props );
1092 : 0 : }
1093 : : else
1094 : : {
1095 : 0 : gradientRamp = QgsGradientColorRamp::create( props );
1096 : : }
1097 : :
1098 : : //create a new shapeburst fill layer with desired properties
1099 : 0 : std::unique_ptr< QgsShapeburstFillSymbolLayer > sl = std::make_unique< QgsShapeburstFillSymbolLayer >( color, color2, colorType, blurRadius, useWholeShape, maxDistance );
1100 : 0 : sl->setOffset( offset );
1101 : 0 : if ( props.contains( QStringLiteral( "offset_unit" ) ) )
1102 : : {
1103 : 0 : sl->setOffsetUnit( QgsUnitTypes::decodeRenderUnit( props[QStringLiteral( "offset_unit" )].toString() ) );
1104 : 0 : }
1105 : 0 : if ( props.contains( QStringLiteral( "distance_unit" ) ) )
1106 : : {
1107 : 0 : sl->setDistanceUnit( QgsUnitTypes::decodeRenderUnit( props[QStringLiteral( "distance_unit" )].toString() ) );
1108 : 0 : }
1109 : 0 : if ( props.contains( QStringLiteral( "offset_map_unit_scale" ) ) )
1110 : : {
1111 : 0 : sl->setOffsetMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( props[QStringLiteral( "offset_map_unit_scale" )].toString() ) );
1112 : 0 : }
1113 : 0 : if ( props.contains( QStringLiteral( "distance_map_unit_scale" ) ) )
1114 : : {
1115 : 0 : sl->setDistanceMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( props[QStringLiteral( "distance_map_unit_scale" )].toString() ) );
1116 : 0 : }
1117 : 0 : if ( props.contains( QStringLiteral( "ignore_rings" ) ) )
1118 : : {
1119 : 0 : sl->setIgnoreRings( props[QStringLiteral( "ignore_rings" )].toInt() );
1120 : 0 : }
1121 : 0 : if ( gradientRamp )
1122 : : {
1123 : 0 : sl->setColorRamp( gradientRamp );
1124 : 0 : }
1125 : :
1126 : 0 : sl->restoreOldDataDefinedProperties( props );
1127 : :
1128 : 0 : return sl.release();
1129 : 0 : }
1130 : :
1131 : 0 : QString QgsShapeburstFillSymbolLayer::layerType() const
1132 : : {
1133 : 0 : return QStringLiteral( "ShapeburstFill" );
1134 : : }
1135 : :
1136 : 0 : void QgsShapeburstFillSymbolLayer::setColorRamp( QgsColorRamp *ramp )
1137 : : {
1138 : 0 : if ( mGradientRamp.get() == ramp )
1139 : 0 : return;
1140 : :
1141 : 0 : mGradientRamp.reset( ramp );
1142 : 0 : }
1143 : :
1144 : 0 : void QgsShapeburstFillSymbolLayer::applyDataDefinedSymbology( QgsSymbolRenderContext &context, QColor &color, QColor &color2, int &blurRadius, bool &useWholeShape,
1145 : : double &maxDistance, bool &ignoreRings )
1146 : : {
1147 : : //first gradient color
1148 : 0 : color = mColor;
1149 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFillColor ) )
1150 : : {
1151 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mColor ) );
1152 : 0 : color = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyFillColor, context.renderContext().expressionContext(), mColor );
1153 : 0 : }
1154 : :
1155 : : //second gradient color
1156 : 0 : color2 = mColor2;
1157 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertySecondaryColor ) )
1158 : : {
1159 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mColor2 ) );
1160 : 0 : color2 = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertySecondaryColor, context.renderContext().expressionContext(), mColor2 );
1161 : 0 : }
1162 : :
1163 : : //blur radius
1164 : 0 : blurRadius = mBlurRadius;
1165 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyBlurRadius ) )
1166 : : {
1167 : 0 : context.setOriginalValueVariable( mBlurRadius );
1168 : 0 : blurRadius = mDataDefinedProperties.valueAsInt( QgsSymbolLayer::PropertyBlurRadius, context.renderContext().expressionContext(), mBlurRadius );
1169 : 0 : }
1170 : :
1171 : : //use whole shape
1172 : 0 : useWholeShape = mUseWholeShape;
1173 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyShapeburstUseWholeShape ) )
1174 : : {
1175 : 0 : context.setOriginalValueVariable( mUseWholeShape );
1176 : 0 : useWholeShape = mDataDefinedProperties.valueAsBool( QgsSymbolLayer::PropertyShapeburstUseWholeShape, context.renderContext().expressionContext(), mUseWholeShape );
1177 : 0 : }
1178 : :
1179 : : //max distance
1180 : 0 : maxDistance = mMaxDistance;
1181 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyShapeburstMaxDistance ) )
1182 : : {
1183 : 0 : context.setOriginalValueVariable( mMaxDistance );
1184 : 0 : maxDistance = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyShapeburstMaxDistance, context.renderContext().expressionContext(), mMaxDistance );
1185 : 0 : }
1186 : :
1187 : : //ignore rings
1188 : 0 : ignoreRings = mIgnoreRings;
1189 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyShapeburstIgnoreRings ) )
1190 : : {
1191 : 0 : context.setOriginalValueVariable( mIgnoreRings );
1192 : 0 : ignoreRings = mDataDefinedProperties.valueAsBool( QgsSymbolLayer::PropertyShapeburstIgnoreRings, context.renderContext().expressionContext(), mIgnoreRings );
1193 : 0 : }
1194 : :
1195 : 0 : }
1196 : :
1197 : 0 : void QgsShapeburstFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
1198 : : {
1199 : : //TODO - check this
1200 : 0 : QColor selColor = context.renderContext().selectionColor();
1201 : : if ( ! SELECTION_IS_OPAQUE )
1202 : : selColor.setAlphaF( context.opacity() );
1203 : 0 : mSelBrush = QBrush( selColor );
1204 : 0 : }
1205 : :
1206 : 0 : void QgsShapeburstFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
1207 : : {
1208 : 0 : Q_UNUSED( context )
1209 : 0 : }
1210 : :
1211 : 0 : void QgsShapeburstFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
1212 : : {
1213 : 0 : QPainter *p = context.renderContext().painter();
1214 : 0 : if ( !p )
1215 : : {
1216 : 0 : return;
1217 : : }
1218 : :
1219 : 0 : if ( context.selected() )
1220 : : {
1221 : : //feature is selected, draw using selection style
1222 : 0 : p->setBrush( mSelBrush );
1223 : 0 : QPointF offset = mOffset;
1224 : :
1225 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffset ) )
1226 : : {
1227 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodePoint( mOffset ) );
1228 : 0 : const QVariant val = mDataDefinedProperties.value( QgsSymbolLayer::PropertyOffset, context.renderContext().expressionContext(), QString() );
1229 : 0 : bool ok = false;
1230 : 0 : const QPointF res = QgsSymbolLayerUtils::toPoint( val, &ok );
1231 : 0 : if ( ok )
1232 : 0 : offset = res;
1233 : 0 : }
1234 : :
1235 : 0 : if ( !offset.isNull() )
1236 : : {
1237 : 0 : offset.setX( context.renderContext().convertToPainterUnits( offset.x(), mOffsetUnit, mOffsetMapUnitScale ) );
1238 : 0 : offset.setY( context.renderContext().convertToPainterUnits( offset.y(), mOffsetUnit, mOffsetMapUnitScale ) );
1239 : 0 : p->translate( offset );
1240 : 0 : }
1241 : 0 : _renderPolygon( p, points, rings, context );
1242 : 0 : if ( !offset.isNull() )
1243 : : {
1244 : 0 : p->translate( -offset );
1245 : 0 : }
1246 : 0 : return;
1247 : : }
1248 : :
1249 : 0 : QColor color1, color2;
1250 : : int blurRadius;
1251 : : bool useWholeShape;
1252 : : double maxDistance;
1253 : : bool ignoreRings;
1254 : : //calculate data defined symbology
1255 : 0 : applyDataDefinedSymbology( context, color1, color2, blurRadius, useWholeShape, maxDistance, ignoreRings );
1256 : :
1257 : : //calculate max distance for shapeburst fill to extend from polygon boundary, in pixels
1258 : 0 : int outputPixelMaxDist = 0;
1259 : 0 : if ( !useWholeShape && !qgsDoubleNear( maxDistance, 0.0 ) )
1260 : : {
1261 : : //convert max distance to pixels
1262 : 0 : outputPixelMaxDist = static_cast< int >( std::round( context.renderContext().convertToPainterUnits( maxDistance, mDistanceUnit, mDistanceMapUnitScale ) ) );
1263 : 0 : }
1264 : :
1265 : : //if we are using the two color mode, create a gradient ramp
1266 : 0 : std::unique_ptr< QgsGradientColorRamp > twoColorGradientRamp;
1267 : 0 : if ( mColorType == QgsShapeburstFillSymbolLayer::SimpleTwoColor )
1268 : : {
1269 : 0 : twoColorGradientRamp = std::make_unique< QgsGradientColorRamp >( color1, color2 );
1270 : 0 : }
1271 : :
1272 : : //no stroke for shapeburst fills
1273 : 0 : p->setPen( QPen( Qt::NoPen ) );
1274 : :
1275 : : //calculate margin size in pixels so that QImage of polygon has sufficient space to draw the full blur effect
1276 : 0 : int sideBuffer = 4 + ( blurRadius + 2 ) * 4;
1277 : : //create a QImage to draw shapeburst in
1278 : 0 : int pointsWidth = static_cast< int >( std::round( points.boundingRect().width() ) );
1279 : 0 : int pointsHeight = static_cast< int >( std::round( points.boundingRect().height() ) );
1280 : 0 : int imWidth = pointsWidth + ( sideBuffer * 2 );
1281 : 0 : int imHeight = pointsHeight + ( sideBuffer * 2 );
1282 : 0 : std::unique_ptr< QImage > fillImage = std::make_unique< QImage >( imWidth,
1283 : 0 : imHeight, QImage::Format_ARGB32_Premultiplied );
1284 : 0 : if ( fillImage->isNull() )
1285 : : {
1286 : 0 : QgsMessageLog::logMessage( QObject::tr( "Could not allocate sufficient memory for shapeburst fill" ) );
1287 : 0 : return;
1288 : : }
1289 : :
1290 : : //also create an image to store the alpha channel
1291 : 0 : std::unique_ptr< QImage > alphaImage = std::make_unique< QImage >( fillImage->width(), fillImage->height(), QImage::Format_ARGB32_Premultiplied );
1292 : 0 : if ( alphaImage->isNull() )
1293 : : {
1294 : 0 : QgsMessageLog::logMessage( QObject::tr( "Could not allocate sufficient memory for shapeburst fill" ) );
1295 : 0 : return;
1296 : : }
1297 : :
1298 : : //Fill this image with black. Initially the distance transform is drawn in greyscale, where black pixels have zero distance from the
1299 : : //polygon boundary. Since we don't care about pixels which fall outside the polygon, we start with a black image and then draw over it the
1300 : : //polygon in white. The distance transform function then fills in the correct distance values for the white pixels.
1301 : 0 : fillImage->fill( Qt::black );
1302 : :
1303 : : //initially fill the alpha channel image with a transparent color
1304 : 0 : alphaImage->fill( Qt::transparent );
1305 : :
1306 : : //now, draw the polygon in the alpha channel image
1307 : 0 : QPainter imgPainter;
1308 : 0 : imgPainter.begin( alphaImage.get() );
1309 : 0 : imgPainter.setRenderHint( QPainter::Antialiasing, true );
1310 : 0 : imgPainter.setBrush( QBrush( Qt::white ) );
1311 : 0 : imgPainter.setPen( QPen( Qt::black ) );
1312 : 0 : imgPainter.translate( -points.boundingRect().left() + sideBuffer, - points.boundingRect().top() + sideBuffer );
1313 : 0 : _renderPolygon( &imgPainter, points, rings, context );
1314 : 0 : imgPainter.end();
1315 : :
1316 : : //now that we have a render of the polygon in white, draw this onto the shapeburst fill image too
1317 : : //(this avoids calling _renderPolygon twice, since that can be slow)
1318 : 0 : imgPainter.begin( fillImage.get() );
1319 : 0 : if ( !ignoreRings )
1320 : : {
1321 : 0 : imgPainter.drawImage( 0, 0, *alphaImage );
1322 : 0 : }
1323 : : else
1324 : : {
1325 : : //using ignore rings mode, so the alpha image can't be used
1326 : : //directly as the alpha channel contains polygon rings and we need
1327 : : //to draw now without any rings
1328 : 0 : imgPainter.setBrush( QBrush( Qt::white ) );
1329 : 0 : imgPainter.setPen( QPen( Qt::black ) );
1330 : 0 : imgPainter.translate( -points.boundingRect().left() + sideBuffer, - points.boundingRect().top() + sideBuffer );
1331 : 0 : _renderPolygon( &imgPainter, points, nullptr, context );
1332 : : }
1333 : 0 : imgPainter.end();
1334 : :
1335 : : //apply distance transform to image, uses the current color ramp to calculate final pixel colors
1336 : 0 : double *dtArray = distanceTransform( fillImage.get(), context.renderContext() );
1337 : :
1338 : : //copy distance transform values back to QImage, shading by appropriate color ramp
1339 : 0 : dtArrayToQImage( dtArray, fillImage.get(), mColorType == QgsShapeburstFillSymbolLayer::SimpleTwoColor ? twoColorGradientRamp.get() : mGradientRamp.get(),
1340 : 0 : context.renderContext(), useWholeShape, outputPixelMaxDist );
1341 : 0 : if ( context.opacity() < 1 )
1342 : : {
1343 : 0 : QgsImageOperation::multiplyOpacity( *fillImage, context.opacity() );
1344 : 0 : }
1345 : :
1346 : : //clean up some variables
1347 : 0 : delete [] dtArray;
1348 : :
1349 : : //apply blur if desired
1350 : 0 : if ( blurRadius > 0 )
1351 : : {
1352 : 0 : QgsImageOperation::stackBlur( *fillImage, blurRadius, false );
1353 : 0 : }
1354 : :
1355 : : //apply alpha channel to distance transform image, so that areas outside the polygon are transparent
1356 : 0 : imgPainter.begin( fillImage.get() );
1357 : 0 : imgPainter.setCompositionMode( QPainter::CompositionMode_DestinationIn );
1358 : 0 : imgPainter.drawImage( 0, 0, *alphaImage );
1359 : 0 : imgPainter.end();
1360 : : //we're finished with the alpha channel image now
1361 : 0 : alphaImage.reset();
1362 : :
1363 : : //draw shapeburst image in correct place in the destination painter
1364 : :
1365 : 0 : QgsScopedQPainterState painterState( p );
1366 : 0 : QPointF offset = mOffset;
1367 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffset ) )
1368 : : {
1369 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodePoint( mOffset ) );
1370 : 0 : const QVariant val = mDataDefinedProperties.value( QgsSymbolLayer::PropertyOffset, context.renderContext().expressionContext(), QString() );
1371 : 0 : bool ok = false;
1372 : 0 : const QPointF res = QgsSymbolLayerUtils::toPoint( val, &ok );
1373 : 0 : if ( ok )
1374 : 0 : offset = res;
1375 : 0 : }
1376 : 0 : if ( !offset.isNull() )
1377 : : {
1378 : 0 : offset.setX( context.renderContext().convertToPainterUnits( offset.x(), mOffsetUnit, mOffsetMapUnitScale ) );
1379 : 0 : offset.setY( context.renderContext().convertToPainterUnits( offset.y(), mOffsetUnit, mOffsetMapUnitScale ) );
1380 : 0 : p->translate( offset );
1381 : 0 : }
1382 : :
1383 : 0 : p->drawImage( points.boundingRect().left() - sideBuffer, points.boundingRect().top() - sideBuffer, *fillImage );
1384 : :
1385 : 0 : if ( !offset.isNull() )
1386 : : {
1387 : 0 : p->translate( -offset );
1388 : 0 : }
1389 : 0 : }
1390 : :
1391 : : //fast distance transform code, adapted from http://cs.brown.edu/~pff/dt/
1392 : :
1393 : : /* distance transform of a 1d function using squared distance */
1394 : 0 : void QgsShapeburstFillSymbolLayer::distanceTransform1d( double *f, int n, int *v, double *z, double *d )
1395 : : {
1396 : 0 : int k = 0;
1397 : 0 : v[0] = 0;
1398 : 0 : z[0] = -INF;
1399 : 0 : z[1] = + INF;
1400 : 0 : for ( int q = 1; q <= n - 1; q++ )
1401 : : {
1402 : 0 : double s = ( ( f[q] + q * q ) - ( f[v[k]] + ( v[k] * v[k] ) ) ) / ( 2 * q - 2 * v[k] );
1403 : 0 : while ( s <= z[k] )
1404 : : {
1405 : 0 : k--;
1406 : 0 : s = ( ( f[q] + q * q ) - ( f[v[k]] + ( v[k] * v[k] ) ) ) / ( 2 * q - 2 * v[k] );
1407 : : }
1408 : 0 : k++;
1409 : 0 : v[k] = q;
1410 : 0 : z[k] = s;
1411 : 0 : z[k + 1] = + INF;
1412 : 0 : }
1413 : :
1414 : 0 : k = 0;
1415 : 0 : for ( int q = 0; q <= n - 1; q++ )
1416 : : {
1417 : 0 : while ( z[k + 1] < q )
1418 : 0 : k++;
1419 : 0 : d[q] = ( q - v[k] ) * ( q - v[k] ) + f[v[k]];
1420 : 0 : }
1421 : 0 : }
1422 : :
1423 : : /* distance transform of 2d function using squared distance */
1424 : 0 : void QgsShapeburstFillSymbolLayer::distanceTransform2d( double *im, int width, int height, QgsRenderContext &context )
1425 : : {
1426 : 0 : int maxDimension = std::max( width, height );
1427 : 0 : double *f = new double[ maxDimension ];
1428 : 0 : int *v = new int[ maxDimension ];
1429 : 0 : double *z = new double[ maxDimension + 1 ];
1430 : 0 : double *d = new double[ maxDimension ];
1431 : :
1432 : : // transform along columns
1433 : 0 : for ( int x = 0; x < width; x++ )
1434 : : {
1435 : 0 : if ( context.renderingStopped() )
1436 : 0 : break;
1437 : :
1438 : 0 : for ( int y = 0; y < height; y++ )
1439 : : {
1440 : 0 : f[y] = im[ x + y * width ];
1441 : 0 : }
1442 : 0 : distanceTransform1d( f, height, v, z, d );
1443 : 0 : for ( int y = 0; y < height; y++ )
1444 : : {
1445 : 0 : im[ x + y * width ] = d[y];
1446 : 0 : }
1447 : 0 : }
1448 : :
1449 : : // transform along rows
1450 : 0 : for ( int y = 0; y < height; y++ )
1451 : : {
1452 : 0 : if ( context.renderingStopped() )
1453 : 0 : break;
1454 : :
1455 : 0 : for ( int x = 0; x < width; x++ )
1456 : : {
1457 : 0 : f[x] = im[ x + y * width ];
1458 : 0 : }
1459 : 0 : distanceTransform1d( f, width, v, z, d );
1460 : 0 : for ( int x = 0; x < width; x++ )
1461 : : {
1462 : 0 : im[ x + y * width ] = d[x];
1463 : 0 : }
1464 : 0 : }
1465 : :
1466 : 0 : delete [] d;
1467 : 0 : delete [] f;
1468 : 0 : delete [] v;
1469 : 0 : delete [] z;
1470 : 0 : }
1471 : :
1472 : : /* distance transform of a binary QImage */
1473 : 0 : double *QgsShapeburstFillSymbolLayer::distanceTransform( QImage *im, QgsRenderContext &context )
1474 : : {
1475 : 0 : int width = im->width();
1476 : 0 : int height = im->height();
1477 : :
1478 : 0 : double *dtArray = new double[width * height];
1479 : :
1480 : : //load qImage to array
1481 : : QRgb tmpRgb;
1482 : 0 : int idx = 0;
1483 : 0 : for ( int heightIndex = 0; heightIndex < height; ++heightIndex )
1484 : : {
1485 : 0 : if ( context.renderingStopped() )
1486 : 0 : break;
1487 : :
1488 : 0 : const QRgb *scanLine = reinterpret_cast< const QRgb * >( im->constScanLine( heightIndex ) );
1489 : 0 : for ( int widthIndex = 0; widthIndex < width; ++widthIndex )
1490 : : {
1491 : 0 : tmpRgb = scanLine[widthIndex];
1492 : 0 : if ( qRed( tmpRgb ) == 0 )
1493 : : {
1494 : : //black pixel, so zero distance
1495 : 0 : dtArray[ idx ] = 0;
1496 : 0 : }
1497 : : else
1498 : : {
1499 : : //white pixel, so initially set distance as infinite
1500 : 0 : dtArray[ idx ] = INF;
1501 : : }
1502 : 0 : idx++;
1503 : 0 : }
1504 : 0 : }
1505 : :
1506 : : //calculate squared distance transform
1507 : 0 : distanceTransform2d( dtArray, width, height, context );
1508 : :
1509 : 0 : return dtArray;
1510 : : }
1511 : :
1512 : 0 : void QgsShapeburstFillSymbolLayer::dtArrayToQImage( double *array, QImage *im, QgsColorRamp *ramp, QgsRenderContext &context, bool useWholeShape, int maxPixelDistance )
1513 : : {
1514 : 0 : int width = im->width();
1515 : 0 : int height = im->height();
1516 : :
1517 : : //find maximum distance value
1518 : : double maxDistanceValue;
1519 : :
1520 : 70 : if ( useWholeShape )
1521 : 70 : {
1522 : : //no max distance specified in symbol properties, so calculate from maximum value in distance transform results
1523 : 0 : double dtMaxValue = array[0];
1524 : 70 : for ( int i = 1; i < ( width * height ); ++i )
1525 : 70 : {
1526 : 0 : if ( array[i] > dtMaxValue )
1527 : : {
1528 : 70 : dtMaxValue = array[i];
1529 : 0 : }
1530 : 70 : }
1531 : 70 :
1532 : : //values in distance transform are squared
1533 : 0 : maxDistanceValue = std::sqrt( dtMaxValue );
1534 : 0 : }
1535 : : else
1536 : : {
1537 : : //use max distance set in symbol properties
1538 : 0 : maxDistanceValue = maxPixelDistance;
1539 : : }
1540 : :
1541 : : //update the pixels in the provided QImage
1542 : 70 : int idx = 0;
1543 : 0 : double squaredVal = 0;
1544 : 0 : double pixVal = 0;
1545 : :
1546 : 0 : for ( int heightIndex = 0; heightIndex < height; ++heightIndex )
1547 : : {
1548 : 0 : if ( context.renderingStopped() )
1549 : 0 : break;
1550 : :
1551 : 0 : QRgb *scanLine = reinterpret_cast< QRgb * >( im->scanLine( heightIndex ) );
1552 : 0 : for ( int widthIndex = 0; widthIndex < width; ++widthIndex )
1553 : : {
1554 : : //result of distance transform
1555 : 0 : squaredVal = array[idx];
1556 : :
1557 : : //scale result to fit in the range [0, 1]
1558 : 0 : if ( maxDistanceValue > 0 )
1559 : : {
1560 : 0 : pixVal = squaredVal > 0 ? std::min( ( std::sqrt( squaredVal ) / maxDistanceValue ), 1.0 ) : 0;
1561 : 0 : }
1562 : : else
1563 : : {
1564 : 0 : pixVal = 1.0;
1565 : : }
1566 : :
1567 : : //convert value to color from ramp
1568 : : //premultiply ramp color since we are storing this in a ARGB32_Premultiplied QImage
1569 : 0 : scanLine[widthIndex] = qPremultiply( ramp->color( pixVal ).rgba() );
1570 : 0 : idx++;
1571 : 0 : }
1572 : 0 : }
1573 : 0 : }
1574 : :
1575 : 0 : QVariantMap QgsShapeburstFillSymbolLayer::properties() const
1576 : : {
1577 : 0 : QVariantMap map;
1578 : 0 : map[QStringLiteral( "color" )] = QgsSymbolLayerUtils::encodeColor( mColor );
1579 : 0 : map[QStringLiteral( "gradient_color2" )] = QgsSymbolLayerUtils::encodeColor( mColor2 );
1580 : 0 : map[QStringLiteral( "color_type" )] = QString::number( mColorType );
1581 : 0 : map[QStringLiteral( "blur_radius" )] = QString::number( mBlurRadius );
1582 : 0 : map[QStringLiteral( "use_whole_shape" )] = QString::number( mUseWholeShape );
1583 : 0 : map[QStringLiteral( "max_distance" )] = QString::number( mMaxDistance );
1584 : 0 : map[QStringLiteral( "distance_unit" )] = QgsUnitTypes::encodeUnit( mDistanceUnit );
1585 : 0 : map[QStringLiteral( "distance_map_unit_scale" )] = QgsSymbolLayerUtils::encodeMapUnitScale( mDistanceMapUnitScale );
1586 : 0 : map[QStringLiteral( "ignore_rings" )] = QString::number( mIgnoreRings );
1587 : 0 : map[QStringLiteral( "offset" )] = QgsSymbolLayerUtils::encodePoint( mOffset );
1588 : 0 : map[QStringLiteral( "offset_unit" )] = QgsUnitTypes::encodeUnit( mOffsetUnit );
1589 : 0 : map[QStringLiteral( "offset_map_unit_scale" )] = QgsSymbolLayerUtils::encodeMapUnitScale( mOffsetMapUnitScale );
1590 : 0 : if ( mGradientRamp )
1591 : : {
1592 : : #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
1593 : : map.unite( mGradientRamp->properties() );
1594 : : #else
1595 : 0 : map.insert( mGradientRamp->properties() );
1596 : : #endif
1597 : 0 : }
1598 : :
1599 : 0 : return map;
1600 : 0 : }
1601 : :
1602 : 0 : QgsShapeburstFillSymbolLayer *QgsShapeburstFillSymbolLayer::clone() const
1603 : : {
1604 : 0 : std::unique_ptr< QgsShapeburstFillSymbolLayer > sl = std::make_unique< QgsShapeburstFillSymbolLayer >( mColor, mColor2, mColorType, mBlurRadius, mUseWholeShape, mMaxDistance );
1605 : 0 : if ( mGradientRamp )
1606 : : {
1607 : 0 : sl->setColorRamp( mGradientRamp->clone() );
1608 : 0 : }
1609 : 0 : sl->setDistanceUnit( mDistanceUnit );
1610 : 0 : sl->setDistanceMapUnitScale( mDistanceMapUnitScale );
1611 : 0 : sl->setIgnoreRings( mIgnoreRings );
1612 : 0 : sl->setOffset( mOffset );
1613 : 0 : sl->setOffsetUnit( mOffsetUnit );
1614 : 0 : sl->setOffsetMapUnitScale( mOffsetMapUnitScale );
1615 : 0 : copyDataDefinedProperties( sl.get() );
1616 : 0 : copyPaintEffect( sl.get() );
1617 : 0 : return sl.release();
1618 : 0 : }
1619 : :
1620 : 0 : double QgsShapeburstFillSymbolLayer::estimateMaxBleed( const QgsRenderContext &context ) const
1621 : : {
1622 : 0 : double offsetBleed = context.convertToPainterUnits( std::max( std::fabs( mOffset.x() ), std::fabs( mOffset.y() ) ), mOffsetUnit, mOffsetMapUnitScale );
1623 : 0 : return offsetBleed;
1624 : : }
1625 : :
1626 : 0 : bool QgsShapeburstFillSymbolLayer::canCauseArtifactsBetweenAdjacentTiles() const
1627 : : {
1628 : 0 : return true;
1629 : : }
1630 : :
1631 : 0 : void QgsShapeburstFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
1632 : : {
1633 : 0 : mDistanceUnit = unit;
1634 : 0 : mOffsetUnit = unit;
1635 : 0 : }
1636 : :
1637 : 0 : QgsUnitTypes::RenderUnit QgsShapeburstFillSymbolLayer::outputUnit() const
1638 : : {
1639 : 0 : if ( mDistanceUnit == mOffsetUnit )
1640 : : {
1641 : 0 : return mDistanceUnit;
1642 : : }
1643 : 0 : return QgsUnitTypes::RenderUnknownUnit;
1644 : 0 : }
1645 : :
1646 : 0 : bool QgsShapeburstFillSymbolLayer::usesMapUnits() const
1647 : : {
1648 : 0 : return mDistanceUnit == QgsUnitTypes::RenderMapUnits || mDistanceUnit == QgsUnitTypes::RenderMetersInMapUnits
1649 : 0 : || mOffsetUnit == QgsUnitTypes::RenderMapUnits || mOffsetUnit == QgsUnitTypes::RenderMetersInMapUnits;
1650 : : }
1651 : :
1652 : 0 : void QgsShapeburstFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
1653 : : {
1654 : 0 : mDistanceMapUnitScale = scale;
1655 : 0 : mOffsetMapUnitScale = scale;
1656 : 0 : }
1657 : :
1658 : 0 : QgsMapUnitScale QgsShapeburstFillSymbolLayer::mapUnitScale() const
1659 : : {
1660 : 0 : if ( mDistanceMapUnitScale == mOffsetMapUnitScale )
1661 : : {
1662 : 0 : return mDistanceMapUnitScale;
1663 : : }
1664 : 0 : return QgsMapUnitScale();
1665 : 0 : }
1666 : :
1667 : :
1668 : : //QgsImageFillSymbolLayer
1669 : :
1670 : 100 : QgsImageFillSymbolLayer::QgsImageFillSymbolLayer()
1671 : 200 : {
1672 : 100 : setSubSymbol( new QgsLineSymbol() );
1673 : 100 : }
1674 : :
1675 : 0 : void QgsImageFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
1676 : : {
1677 : 0 : QPainter *p = context.renderContext().painter();
1678 : 0 : if ( !p )
1679 : : {
1680 : 0 : return;
1681 : : }
1682 : :
1683 : 0 : mNextAngle = mAngle;
1684 : 0 : applyDataDefinedSettings( context );
1685 : :
1686 : 0 : p->setPen( QPen( Qt::NoPen ) );
1687 : :
1688 : 0 : QTransform bkTransform = mBrush.transform();
1689 : 0 : if ( applyBrushTransformFromContext() && !context.renderContext().textureOrigin().isNull() )
1690 : : {
1691 : 0 : QPointF leftCorner = context.renderContext().textureOrigin();
1692 : 0 : QTransform t = mBrush.transform();
1693 : 0 : t.translate( leftCorner.x(), leftCorner.y() );
1694 : 0 : mBrush.setTransform( t );
1695 : 0 : }
1696 : :
1697 : 0 : if ( context.selected() )
1698 : : {
1699 : 0 : QColor selColor = context.renderContext().selectionColor();
1700 : 0 : p->setBrush( QBrush( selColor ) );
1701 : 0 : _renderPolygon( p, points, rings, context );
1702 : 0 : }
1703 : :
1704 : 0 : if ( !qgsDoubleNear( mNextAngle, 0.0 ) )
1705 : : {
1706 : 0 : QTransform t = mBrush.transform();
1707 : 0 : t.rotate( mNextAngle );
1708 : 0 : mBrush.setTransform( t );
1709 : 0 : }
1710 : 0 : p->setBrush( mBrush );
1711 : 0 : _renderPolygon( p, points, rings, context );
1712 : 0 : if ( mStroke )
1713 : : {
1714 : 0 : mStroke->renderPolyline( points, context.feature(), context.renderContext(), -1, SELECT_FILL_BORDER && context.selected() );
1715 : 0 : if ( rings )
1716 : : {
1717 : 0 : for ( auto ringIt = rings->constBegin(); ringIt != rings->constEnd(); ++ringIt )
1718 : : {
1719 : 0 : mStroke->renderPolyline( *ringIt, context.feature(), context.renderContext(), -1, SELECT_FILL_BORDER && context.selected() );
1720 : 0 : }
1721 : 0 : }
1722 : 0 : }
1723 : :
1724 : 0 : mBrush.setTransform( bkTransform );
1725 : 0 : }
1726 : :
1727 : 200 : bool QgsImageFillSymbolLayer::setSubSymbol( QgsSymbol *symbol )
1728 : : {
1729 : 200 : if ( !symbol ) //unset current stroke
1730 : : {
1731 : 100 : mStroke.reset( nullptr );
1732 : 100 : return true;
1733 : : }
1734 : :
1735 : 100 : if ( symbol->type() != QgsSymbol::Line )
1736 : : {
1737 : 0 : delete symbol;
1738 : 0 : return false;
1739 : : }
1740 : :
1741 : 100 : QgsLineSymbol *lineSymbol = dynamic_cast<QgsLineSymbol *>( symbol );
1742 : 100 : if ( lineSymbol )
1743 : : {
1744 : 100 : mStroke.reset( lineSymbol );
1745 : 100 : return true;
1746 : : }
1747 : :
1748 : 0 : delete symbol;
1749 : 0 : return false;
1750 : 200 : }
1751 : :
1752 : 0 : void QgsImageFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
1753 : : {
1754 : 0 : mStrokeWidthUnit = unit;
1755 : 0 : }
1756 : :
1757 : 0 : QgsUnitTypes::RenderUnit QgsImageFillSymbolLayer::outputUnit() const
1758 : : {
1759 : 0 : return mStrokeWidthUnit;
1760 : : }
1761 : :
1762 : 0 : void QgsImageFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
1763 : : {
1764 : 0 : mStrokeWidthMapUnitScale = scale;
1765 : 0 : }
1766 : :
1767 : 0 : QgsMapUnitScale QgsImageFillSymbolLayer::mapUnitScale() const
1768 : : {
1769 : 0 : return mStrokeWidthMapUnitScale;
1770 : : }
1771 : :
1772 : 0 : double QgsImageFillSymbolLayer::estimateMaxBleed( const QgsRenderContext &context ) const
1773 : : {
1774 : 0 : if ( mStroke && mStroke->symbolLayer( 0 ) )
1775 : : {
1776 : 0 : double subLayerBleed = mStroke->symbolLayer( 0 )->estimateMaxBleed( context );
1777 : 0 : return subLayerBleed;
1778 : : }
1779 : 0 : return 0;
1780 : 30 : }
1781 : 30 :
1782 : 30 : double QgsImageFillSymbolLayer::dxfWidth( const QgsDxfExport &e, QgsSymbolRenderContext &context ) const
1783 : : {
1784 : 30 : double width = mStrokeWidth;
1785 : 30 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyWidth ) )
1786 : : {
1787 : 30 : context.setOriginalValueVariable( mStrokeWidth );
1788 : 30 : width = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyWidth, context.renderContext().expressionContext(), mStrokeWidth );
1789 : 0 : }
1790 : 30 : return width * e.mapUnitScaleFactor( e.symbologyScale(), mStrokeWidthUnit, e.mapUnits(), context.renderContext().mapToPixel().mapUnitsPerPixel() );
1791 : 30 : }
1792 : :
1793 : 30 : QColor QgsImageFillSymbolLayer::dxfColor( QgsSymbolRenderContext &context ) const
1794 : 30 : {
1795 : 0 : Q_UNUSED( context )
1796 : 30 : if ( !mStroke )
1797 : 30 : {
1798 : 0 : return QColor( Qt::black );
1799 : : }
1800 : 0 : return mStroke->color();
1801 : 0 : }
1802 : :
1803 : 0 : Qt::PenStyle QgsImageFillSymbolLayer::dxfPenStyle() const
1804 : : {
1805 : 0 : return Qt::SolidLine;
1806 : : #if 0
1807 : : if ( !mStroke )
1808 : : {
1809 : : return Qt::SolidLine;
1810 : 30 : }
1811 : : else
1812 : : {
1813 : : return mStroke->dxfPenStyle();
1814 : : }
1815 : : #endif //0
1816 : : }
1817 : :
1818 : 0 : QSet<QString> QgsImageFillSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
1819 : : {
1820 : 0 : QSet<QString> attr = QgsFillSymbolLayer::usedAttributes( context );
1821 : 0 : if ( mStroke )
1822 : 0 : attr.unite( mStroke->usedAttributes( context ) );
1823 : 0 : return attr;
1824 : 0 : }
1825 : :
1826 : 0 : bool QgsImageFillSymbolLayer::hasDataDefinedProperties() const
1827 : : {
1828 : 0 : if ( QgsSymbolLayer::hasDataDefinedProperties() )
1829 : 0 : return true;
1830 : 0 : if ( mStroke && mStroke->hasDataDefinedProperties() )
1831 : 0 : return true;
1832 : 0 : return false;
1833 : 0 : }
1834 : :
1835 : 0 : bool QgsImageFillSymbolLayer::applyBrushTransformFromContext() const
1836 : : {
1837 : 0 : return true;
1838 : : }
1839 : :
1840 : :
1841 : : //QgsSVGFillSymbolLayer
1842 : :
1843 : 0 : QgsSVGFillSymbolLayer::QgsSVGFillSymbolLayer( const QString &svgFilePath, double width, double angle )
1844 : 0 : : QgsImageFillSymbolLayer()
1845 : 0 : , mPatternWidth( width )
1846 : 0 : {
1847 : 0 : mStrokeWidth = 0.3;
1848 : 0 : mAngle = angle;
1849 : 0 : mColor = QColor( 255, 255, 255 );
1850 : 0 : setSvgFilePath( svgFilePath );
1851 : 0 : }
1852 : :
1853 : 0 : QgsSVGFillSymbolLayer::QgsSVGFillSymbolLayer( const QByteArray &svgData, double width, double angle )
1854 : 0 : : QgsImageFillSymbolLayer()
1855 : 0 : , mPatternWidth( width )
1856 : 0 : , mSvgData( svgData )
1857 : 0 : {
1858 : 0 : storeViewBox();
1859 : 0 : mStrokeWidth = 0.3;
1860 : 0 : mAngle = angle;
1861 : 0 : mColor = QColor( 255, 255, 255 );
1862 : 0 : setSubSymbol( new QgsLineSymbol() );
1863 : 0 : setDefaultSvgParams();
1864 : 0 : }
1865 : :
1866 : 0 : void QgsSVGFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
1867 : : {
1868 : 0 : QgsImageFillSymbolLayer::setOutputUnit( unit );
1869 : 0 : mPatternWidthUnit = unit;
1870 : 0 : mSvgStrokeWidthUnit = unit;
1871 : 0 : mStrokeWidthUnit = unit;
1872 : 0 : mStroke->setOutputUnit( unit );
1873 : 0 : }
1874 : :
1875 : 0 : QgsUnitTypes::RenderUnit QgsSVGFillSymbolLayer::outputUnit() const
1876 : : {
1877 : 0 : QgsUnitTypes::RenderUnit unit = QgsImageFillSymbolLayer::outputUnit();
1878 : 0 : if ( mPatternWidthUnit != unit || mSvgStrokeWidthUnit != unit || mStrokeWidthUnit != unit )
1879 : : {
1880 : 0 : return QgsUnitTypes::RenderUnknownUnit;
1881 : : }
1882 : 0 : return unit;
1883 : 0 : }
1884 : :
1885 : 0 : void QgsSVGFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
1886 : : {
1887 : 0 : QgsImageFillSymbolLayer::setMapUnitScale( scale );
1888 : 0 : mPatternWidthMapUnitScale = scale;
1889 : 0 : mSvgStrokeWidthMapUnitScale = scale;
1890 : 0 : mStrokeWidthMapUnitScale = scale;
1891 : 0 : }
1892 : :
1893 : 0 : QgsMapUnitScale QgsSVGFillSymbolLayer::mapUnitScale() const
1894 : : {
1895 : 0 : if ( QgsImageFillSymbolLayer::mapUnitScale() == mPatternWidthMapUnitScale &&
1896 : 0 : mPatternWidthMapUnitScale == mSvgStrokeWidthMapUnitScale &&
1897 : 0 : mSvgStrokeWidthMapUnitScale == mStrokeWidthMapUnitScale )
1898 : : {
1899 : 0 : return mPatternWidthMapUnitScale;
1900 : : }
1901 : 0 : return QgsMapUnitScale();
1902 : 0 : }
1903 : :
1904 : 0 : void QgsSVGFillSymbolLayer::setSvgFilePath( const QString &svgPath )
1905 : : {
1906 : 0 : mSvgData = QgsApplication::svgCache()->getImageData( svgPath );
1907 : 0 : storeViewBox();
1908 : :
1909 : 0 : mSvgFilePath = svgPath;
1910 : 0 : setDefaultSvgParams();
1911 : 0 : }
1912 : :
1913 : 0 : QgsSymbolLayer *QgsSVGFillSymbolLayer::create( const QVariantMap &properties )
1914 : : {
1915 : 0 : QByteArray data;
1916 : 0 : double width = 20;
1917 : 0 : QString svgFilePath;
1918 : 0 : double angle = 0.0;
1919 : :
1920 : 0 : if ( properties.contains( QStringLiteral( "width" ) ) )
1921 : : {
1922 : 0 : width = properties[QStringLiteral( "width" )].toDouble();
1923 : 0 : }
1924 : 0 : if ( properties.contains( QStringLiteral( "svgFile" ) ) )
1925 : : {
1926 : 0 : svgFilePath = properties[QStringLiteral( "svgFile" )].toString();
1927 : 0 : }
1928 : 0 : if ( properties.contains( QStringLiteral( "angle" ) ) )
1929 : : {
1930 : 0 : angle = properties[QStringLiteral( "angle" )].toDouble();
1931 : 0 : }
1932 : :
1933 : 0 : std::unique_ptr< QgsSVGFillSymbolLayer > symbolLayer;
1934 : 0 : if ( !svgFilePath.isEmpty() )
1935 : : {
1936 : 0 : symbolLayer = std::make_unique< QgsSVGFillSymbolLayer >( svgFilePath, width, angle );
1937 : 0 : }
1938 : : else
1939 : : {
1940 : 0 : if ( properties.contains( QStringLiteral( "data" ) ) )
1941 : : {
1942 : 0 : data = QByteArray::fromHex( properties[QStringLiteral( "data" )].toString().toLocal8Bit() );
1943 : 0 : }
1944 : 0 : symbolLayer = std::make_unique< QgsSVGFillSymbolLayer >( data, width, angle );
1945 : : }
1946 : :
1947 : : //svg parameters
1948 : 0 : if ( properties.contains( QStringLiteral( "svgFillColor" ) ) )
1949 : : {
1950 : : //pre 2.5 projects used "svgFillColor"
1951 : 0 : symbolLayer->setSvgFillColor( QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "svgFillColor" )].toString() ) );
1952 : 0 : }
1953 : 0 : else if ( properties.contains( QStringLiteral( "color" ) ) )
1954 : : {
1955 : 0 : symbolLayer->setSvgFillColor( QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "color" )].toString() ) );
1956 : 0 : }
1957 : 0 : if ( properties.contains( QStringLiteral( "svgOutlineColor" ) ) )
1958 : : {
1959 : : //pre 2.5 projects used "svgOutlineColor"
1960 : 0 : symbolLayer->setSvgStrokeColor( QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "svgOutlineColor" )].toString() ) );
1961 : 0 : }
1962 : 0 : else if ( properties.contains( QStringLiteral( "outline_color" ) ) )
1963 : : {
1964 : 0 : symbolLayer->setSvgStrokeColor( QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "outline_color" )].toString() ) );
1965 : 0 : }
1966 : 0 : else if ( properties.contains( QStringLiteral( "line_color" ) ) )
1967 : : {
1968 : 0 : symbolLayer->setSvgStrokeColor( QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "line_color" )].toString() ) );
1969 : 0 : }
1970 : 0 : if ( properties.contains( QStringLiteral( "svgOutlineWidth" ) ) )
1971 : : {
1972 : : //pre 2.5 projects used "svgOutlineWidth"
1973 : 0 : symbolLayer->setSvgStrokeWidth( properties[QStringLiteral( "svgOutlineWidth" )].toDouble() );
1974 : 0 : }
1975 : 0 : else if ( properties.contains( QStringLiteral( "outline_width" ) ) )
1976 : : {
1977 : 0 : symbolLayer->setSvgStrokeWidth( properties[QStringLiteral( "outline_width" )].toDouble() );
1978 : 0 : }
1979 : 0 : else if ( properties.contains( QStringLiteral( "line_width" ) ) )
1980 : : {
1981 : 0 : symbolLayer->setSvgStrokeWidth( properties[QStringLiteral( "line_width" )].toDouble() );
1982 : 0 : }
1983 : :
1984 : : //units
1985 : 0 : if ( properties.contains( QStringLiteral( "pattern_width_unit" ) ) )
1986 : : {
1987 : 0 : symbolLayer->setPatternWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "pattern_width_unit" )].toString() ) );
1988 : 0 : }
1989 : 0 : if ( properties.contains( QStringLiteral( "pattern_width_map_unit_scale" ) ) )
1990 : : {
1991 : 0 : symbolLayer->setPatternWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "pattern_width_map_unit_scale" )].toString() ) );
1992 : 0 : }
1993 : 0 : if ( properties.contains( QStringLiteral( "svg_outline_width_unit" ) ) )
1994 : : {
1995 : 0 : symbolLayer->setSvgStrokeWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "svg_outline_width_unit" )].toString() ) );
1996 : 0 : }
1997 : 0 : if ( properties.contains( QStringLiteral( "svg_outline_width_map_unit_scale" ) ) )
1998 : : {
1999 : 0 : symbolLayer->setSvgStrokeWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "svg_outline_width_map_unit_scale" )].toString() ) );
2000 : 0 : }
2001 : 0 : if ( properties.contains( QStringLiteral( "outline_width_unit" ) ) )
2002 : 0 : {
2003 : 0 : symbolLayer->setStrokeWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "outline_width_unit" )].toString() ) );
2004 : 0 : }
2005 : 0 : if ( properties.contains( QStringLiteral( "outline_width_map_unit_scale" ) ) )
2006 : : {
2007 : 0 : symbolLayer->setStrokeWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "outline_width_map_unit_scale" )].toString() ) );
2008 : 0 : }
2009 : :
2010 : 0 : if ( properties.contains( QStringLiteral( "parameters" ) ) )
2011 : : {
2012 : 0 : const QVariantMap parameters = properties[QStringLiteral( "parameters" )].toMap();
2013 : 0 : QMap<QString, QgsProperty> parametersProperties;
2014 : 0 : QVariantMap::const_iterator it = parameters.constBegin();
2015 : 0 : for ( ; it != parameters.constEnd(); ++it )
2016 : : {
2017 : 0 : QgsProperty property;
2018 : 0 : if ( property.loadVariant( it.value() ) )
2019 : 0 : parametersProperties.insert( it.key(), property );
2020 : 0 : }
2021 : :
2022 : 0 : symbolLayer->setParameters( parametersProperties );
2023 : 0 : }
2024 : :
2025 : 0 : symbolLayer->restoreOldDataDefinedProperties( properties );
2026 : :
2027 : 0 : return symbolLayer.release();
2028 : 0 : }
2029 : :
2030 : 0 : void QgsSVGFillSymbolLayer::resolvePaths( QVariantMap &properties, const QgsPathResolver &pathResolver, bool saving )
2031 : : {
2032 : 0 : QVariantMap::iterator it = properties.find( QStringLiteral( "svgFile" ) );
2033 : 0 : if ( it != properties.end() )
2034 : : {
2035 : 0 : if ( saving )
2036 : 0 : it.value() = QgsSymbolLayerUtils::svgSymbolPathToName( it.value().toString(), pathResolver );
2037 : : else
2038 : 0 : it.value() = QgsSymbolLayerUtils::svgSymbolNameToPath( it.value().toString(), pathResolver );
2039 : 0 : }
2040 : 0 : }
2041 : :
2042 : 0 : QString QgsSVGFillSymbolLayer::layerType() const
2043 : : {
2044 : 0 : return QStringLiteral( "SVGFill" );
2045 : : }
2046 : :
2047 : 0 : void QgsSVGFillSymbolLayer::applyPattern( QBrush &brush, const QString &svgFilePath, double patternWidth, QgsUnitTypes::RenderUnit patternWidthUnit,
2048 : : const QColor &svgFillColor, const QColor &svgStrokeColor, double svgStrokeWidth,
2049 : : QgsUnitTypes::RenderUnit svgStrokeWidthUnit, const QgsSymbolRenderContext &context,
2050 : : const QgsMapUnitScale &patternWidthMapUnitScale, const QgsMapUnitScale &svgStrokeWidthMapUnitScale, const QgsStringMap svgParameters )
2051 : : {
2052 : 0 : if ( mSvgViewBox.isNull() )
2053 : : {
2054 : 0 : return;
2055 : : }
2056 : :
2057 : 0 : double size = context.renderContext().convertToPainterUnits( patternWidth, patternWidthUnit, patternWidthMapUnitScale );
2058 : :
2059 : 0 : if ( static_cast< int >( size ) < 1.0 || 10000.0 < size )
2060 : : {
2061 : 0 : brush.setTextureImage( QImage() );
2062 : 0 : }
2063 : : else
2064 : : {
2065 : 0 : bool fitsInCache = true;
2066 : 0 : double strokeWidth = context.renderContext().convertToPainterUnits( svgStrokeWidth, svgStrokeWidthUnit, svgStrokeWidthMapUnitScale );
2067 : 0 : QImage patternImage = QgsApplication::svgCache()->svgAsImage( svgFilePath, size, svgFillColor, svgStrokeColor, strokeWidth,
2068 : 0 : context.renderContext().scaleFactor(), fitsInCache, 0, ( context.renderContext().flags() & QgsRenderContext::RenderBlocking ), svgParameters );
2069 : 0 : if ( !fitsInCache )
2070 : : {
2071 : 0 : QPicture patternPict = QgsApplication::svgCache()->svgAsPicture( svgFilePath, size, svgFillColor, svgStrokeColor, strokeWidth,
2072 : 0 : context.renderContext().scaleFactor(), false, 0, ( context.renderContext().flags() & QgsRenderContext::RenderBlocking ) );
2073 : 0 : double hwRatio = 1.0;
2074 : 0 : if ( patternPict.width() > 0 )
2075 : : {
2076 : 0 : hwRatio = static_cast< double >( patternPict.height() ) / static_cast< double >( patternPict.width() );
2077 : 0 : }
2078 : 0 : patternImage = QImage( static_cast< int >( size ), static_cast< int >( size * hwRatio ), QImage::Format_ARGB32_Premultiplied );
2079 : 0 : patternImage.fill( 0 ); // transparent background
2080 : :
2081 : 0 : QPainter p( &patternImage );
2082 : 0 : p.drawPicture( QPointF( size / 2, size * hwRatio / 2 ), patternPict );
2083 : 0 : }
2084 : :
2085 : 0 : QTransform brushTransform;
2086 : 0 : if ( !qgsDoubleNear( context.opacity(), 1.0 ) )
2087 : : {
2088 : 0 : QImage transparentImage = patternImage.copy();
2089 : 0 : QgsSymbolLayerUtils::multiplyImageOpacity( &transparentImage, context.opacity() );
2090 : 0 : brush.setTextureImage( transparentImage );
2091 : 0 : }
2092 : : else
2093 : : {
2094 : 0 : brush.setTextureImage( patternImage );
2095 : : }
2096 : 0 : brush.setTransform( brushTransform );
2097 : 0 : }
2098 : 0 : }
2099 : :
2100 : 0 : void QgsSVGFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
2101 : : {
2102 : 0 : QgsStringMap evaluatedParameters = QgsSymbolLayerUtils::evaluatePropertiesMap( mParameters, context.renderContext().expressionContext() );
2103 : :
2104 : 0 : applyPattern( mBrush, mSvgFilePath, mPatternWidth, mPatternWidthUnit, mColor, mSvgStrokeColor, mSvgStrokeWidth, mSvgStrokeWidthUnit, context, mPatternWidthMapUnitScale, mSvgStrokeWidthMapUnitScale, evaluatedParameters );
2105 : 0 :
2106 : 0 : if ( mStroke )
2107 : 0 : {
2108 : 0 : mStroke->startRender( context.renderContext(), context.fields() );
2109 : 0 : }
2110 : 0 : }
2111 : 0 :
2112 : 0 : void QgsSVGFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
2113 : 0 : {
2114 : 0 : if ( mStroke )
2115 : : {
2116 : 0 : mStroke->stopRender( context.renderContext() );
2117 : 0 : }
2118 : 0 : }
2119 : :
2120 : 0 : QVariantMap QgsSVGFillSymbolLayer::properties() const
2121 : : {
2122 : 0 : QVariantMap map;
2123 : 0 : if ( !mSvgFilePath.isEmpty() )
2124 : : {
2125 : 0 : map.insert( QStringLiteral( "svgFile" ), mSvgFilePath );
2126 : 0 : }
2127 : : else
2128 : : {
2129 : 0 : map.insert( QStringLiteral( "data" ), QString( mSvgData.toHex() ) );
2130 : : }
2131 : :
2132 : 0 : map.insert( QStringLiteral( "width" ), QString::number( mPatternWidth ) );
2133 : 0 : map.insert( QStringLiteral( "angle" ), QString::number( mAngle ) );
2134 : :
2135 : : //svg parameters
2136 : 0 : map.insert( QStringLiteral( "color" ), QgsSymbolLayerUtils::encodeColor( mColor ) );
2137 : 0 : map.insert( QStringLiteral( "outline_color" ), QgsSymbolLayerUtils::encodeColor( mSvgStrokeColor ) );
2138 : 0 : map.insert( QStringLiteral( "outline_width" ), QString::number( mSvgStrokeWidth ) );
2139 : :
2140 : : //units
2141 : 0 : map.insert( QStringLiteral( "pattern_width_unit" ), QgsUnitTypes::encodeUnit( mPatternWidthUnit ) );
2142 : 0 : map.insert( QStringLiteral( "pattern_width_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mPatternWidthMapUnitScale ) );
2143 : 0 : map.insert( QStringLiteral( "svg_outline_width_unit" ), QgsUnitTypes::encodeUnit( mSvgStrokeWidthUnit ) );
2144 : 0 : map.insert( QStringLiteral( "svg_outline_width_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mSvgStrokeWidthMapUnitScale ) );
2145 : 0 : map.insert( QStringLiteral( "outline_width_unit" ), QgsUnitTypes::encodeUnit( mStrokeWidthUnit ) );
2146 : 0 : map.insert( QStringLiteral( "outline_width_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mStrokeWidthMapUnitScale ) );
2147 : :
2148 : 0 : QVariantMap parameters;
2149 : 0 : QMap<QString, QgsProperty>::const_iterator it = mParameters.constBegin();
2150 : 0 : for ( ; it != mParameters.constEnd(); ++it )
2151 : 0 : parameters.insert( it.key(), it.value().toVariant() );
2152 : 0 : map[QStringLiteral( "parameters" )] = parameters;
2153 : :
2154 : 0 : return map;
2155 : 0 : }
2156 : :
2157 : 0 : QgsSVGFillSymbolLayer *QgsSVGFillSymbolLayer::clone() const
2158 : : {
2159 : 0 : std::unique_ptr< QgsSVGFillSymbolLayer > clonedLayer;
2160 : 0 : if ( !mSvgFilePath.isEmpty() )
2161 : : {
2162 : 0 : clonedLayer = std::make_unique< QgsSVGFillSymbolLayer >( mSvgFilePath, mPatternWidth, mAngle );
2163 : 0 : clonedLayer->setSvgFillColor( mColor );
2164 : 0 : clonedLayer->setSvgStrokeColor( mSvgStrokeColor );
2165 : 0 : clonedLayer->setSvgStrokeWidth( mSvgStrokeWidth );
2166 : 0 : }
2167 : : else
2168 : : {
2169 : 0 : clonedLayer = std::make_unique< QgsSVGFillSymbolLayer >( mSvgData, mPatternWidth, mAngle );
2170 : : }
2171 : :
2172 : 0 : clonedLayer->setPatternWidthUnit( mPatternWidthUnit );
2173 : 0 : clonedLayer->setPatternWidthMapUnitScale( mPatternWidthMapUnitScale );
2174 : 0 : clonedLayer->setSvgStrokeWidthUnit( mSvgStrokeWidthUnit );
2175 : 0 : clonedLayer->setSvgStrokeWidthMapUnitScale( mSvgStrokeWidthMapUnitScale );
2176 : 0 : clonedLayer->setStrokeWidthUnit( mStrokeWidthUnit );
2177 : 0 : clonedLayer->setStrokeWidthMapUnitScale( mStrokeWidthMapUnitScale );
2178 : :
2179 : 0 : clonedLayer->setParameters( mParameters );
2180 : :
2181 : 0 : if ( mStroke )
2182 : : {
2183 : 0 : clonedLayer->setSubSymbol( mStroke->clone() );
2184 : 0 : }
2185 : 0 : copyDataDefinedProperties( clonedLayer.get() );
2186 : 0 : copyPaintEffect( clonedLayer.get() );
2187 : 0 : return clonedLayer.release();
2188 : 0 : }
2189 : :
2190 : 0 : void QgsSVGFillSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
2191 : : {
2192 : 0 : QDomElement symbolizerElem = doc.createElement( QStringLiteral( "se:PolygonSymbolizer" ) );
2193 : 0 : if ( !props.value( QStringLiteral( "uom" ), QString() ).toString().isEmpty() )
2194 : 0 : symbolizerElem.setAttribute( QStringLiteral( "uom" ), props.value( QStringLiteral( "uom" ), QString() ).toString() );
2195 : 0 : element.appendChild( symbolizerElem );
2196 : :
2197 : 0 : QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( QStringLiteral( "geom" ), QString() ).toString() );
2198 : :
2199 : 0 : QDomElement fillElem = doc.createElement( QStringLiteral( "se:Fill" ) );
2200 : 0 : symbolizerElem.appendChild( fillElem );
2201 : :
2202 : 0 : QDomElement graphicFillElem = doc.createElement( QStringLiteral( "se:GraphicFill" ) );
2203 : 0 : fillElem.appendChild( graphicFillElem );
2204 : :
2205 : 0 : QDomElement graphicElem = doc.createElement( QStringLiteral( "se:Graphic" ) );
2206 : 0 : graphicFillElem.appendChild( graphicElem );
2207 : :
2208 : 0 : if ( !mSvgFilePath.isEmpty() )
2209 : : {
2210 : : // encode a parametric SVG reference
2211 : 0 : double patternWidth = QgsSymbolLayerUtils::rescaleUom( mPatternWidth, mPatternWidthUnit, props );
2212 : 0 : double strokeWidth = QgsSymbolLayerUtils::rescaleUom( mSvgStrokeWidth, mSvgStrokeWidthUnit, props );
2213 : 0 : QgsSymbolLayerUtils::parametricSvgToSld( doc, graphicElem, mSvgFilePath, mColor, patternWidth, mSvgStrokeColor, strokeWidth );
2214 : 0 : }
2215 : : else
2216 : : {
2217 : : // TODO: create svg from data
2218 : : // <se:InlineContent>
2219 : 0 : symbolizerElem.appendChild( doc.createComment( QStringLiteral( "SVG from data not implemented yet" ) ) );
2220 : : }
2221 : :
2222 : : // <Rotation>
2223 : 0 : QString angleFunc;
2224 : : bool ok;
2225 : 0 : double angle = props.value( QStringLiteral( "angle" ), QStringLiteral( "0" ) ).toDouble( &ok );
2226 : 0 : if ( !ok )
2227 : : {
2228 : 0 : angleFunc = QStringLiteral( "%1 + %2" ).arg( props.value( QStringLiteral( "angle" ), QStringLiteral( "0" ) ).toString() ).arg( mAngle );
2229 : 0 : }
2230 : 0 : else if ( !qgsDoubleNear( angle + mAngle, 0.0 ) )
2231 : : {
2232 : 0 : angleFunc = QString::number( angle + mAngle );
2233 : 0 : }
2234 : 0 : QgsSymbolLayerUtils::createRotationElement( doc, graphicElem, angleFunc );
2235 : :
2236 : 0 : if ( mStroke )
2237 : : {
2238 : : // the stroke sub symbol should be stored within the Stroke element,
2239 : : // but it will be stored in a separated LineSymbolizer because it could
2240 : : // have more than one layer
2241 : 0 : mStroke->toSld( doc, element, props );
2242 : 0 : }
2243 : 0 : }
2244 : :
2245 : 0 : bool QgsSVGFillSymbolLayer::usesMapUnits() const
2246 : : {
2247 : 0 : return mPatternWidthUnit == QgsUnitTypes::RenderMapUnits || mPatternWidthUnit == QgsUnitTypes::RenderMetersInMapUnits
2248 : 0 : || mSvgStrokeWidthUnit == QgsUnitTypes::RenderMapUnits || mSvgStrokeWidthUnit == QgsUnitTypes::RenderMetersInMapUnits;
2249 : : }
2250 : :
2251 : 0 : QgsSymbolLayer *QgsSVGFillSymbolLayer::createFromSld( QDomElement &element )
2252 : : {
2253 : 0 : QString path, mimeType;
2254 : 0 : QColor fillColor, strokeColor;
2255 : : Qt::PenStyle penStyle;
2256 : : double size, strokeWidth;
2257 : :
2258 : 0 : QDomElement fillElem = element.firstChildElement( QStringLiteral( "Fill" ) );
2259 : 0 : if ( fillElem.isNull() )
2260 : 0 : return nullptr;
2261 : :
2262 : 0 : QDomElement graphicFillElem = fillElem.firstChildElement( QStringLiteral( "GraphicFill" ) );
2263 : 0 : if ( graphicFillElem.isNull() )
2264 : 0 : return nullptr;
2265 : :
2266 : 0 : QDomElement graphicElem = graphicFillElem.firstChildElement( QStringLiteral( "Graphic" ) );
2267 : 0 : if ( graphicElem.isNull() )
2268 : 0 : return nullptr;
2269 : :
2270 : 0 : if ( !QgsSymbolLayerUtils::externalGraphicFromSld( graphicElem, path, mimeType, fillColor, size ) )
2271 : 0 : return nullptr;
2272 : :
2273 : 0 : if ( mimeType != QLatin1String( "image/svg+xml" ) )
2274 : 0 : return nullptr;
2275 : :
2276 : 0 : QgsSymbolLayerUtils::lineFromSld( graphicElem, penStyle, strokeColor, strokeWidth );
2277 : :
2278 : 0 : QString uom = element.attribute( QStringLiteral( "uom" ) );
2279 : 0 : size = QgsSymbolLayerUtils::sizeInPixelsFromSldUom( uom, size );
2280 : 0 : strokeWidth = QgsSymbolLayerUtils::sizeInPixelsFromSldUom( uom, strokeWidth );
2281 : :
2282 : 0 : double angle = 0.0;
2283 : 0 : QString angleFunc;
2284 : 0 : if ( QgsSymbolLayerUtils::rotationFromSldElement( graphicElem, angleFunc ) )
2285 : : {
2286 : : bool ok;
2287 : 0 : double d = angleFunc.toDouble( &ok );
2288 : 0 : if ( ok )
2289 : 0 : angle = d;
2290 : 0 : }
2291 : :
2292 : 0 : std::unique_ptr< QgsSVGFillSymbolLayer > sl = std::make_unique< QgsSVGFillSymbolLayer >( path, size, angle );
2293 : 0 : sl->setOutputUnit( QgsUnitTypes::RenderUnit::RenderPixels );
2294 : 0 : sl->setSvgFillColor( fillColor );
2295 : 0 : sl->setSvgStrokeColor( strokeColor );
2296 : 0 : sl->setSvgStrokeWidth( strokeWidth );
2297 : :
2298 : : // try to get the stroke
2299 : 0 : QDomElement strokeElem = element.firstChildElement( QStringLiteral( "Stroke" ) );
2300 : 0 : if ( !strokeElem.isNull() )
2301 : : {
2302 : 0 : QgsSymbolLayer *l = QgsSymbolLayerUtils::createLineLayerFromSld( strokeElem );
2303 : 0 : if ( l )
2304 : : {
2305 : 0 : QgsSymbolLayerList layers;
2306 : 0 : layers.append( l );
2307 : 0 : sl->setSubSymbol( new QgsLineSymbol( layers ) );
2308 : 0 : }
2309 : 0 : }
2310 : :
2311 : 0 : return sl.release();
2312 : 0 : }
2313 : :
2314 : 0 : void QgsSVGFillSymbolLayer::applyDataDefinedSettings( QgsSymbolRenderContext &context )
2315 : : {
2316 : 0 : if ( !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyWidth ) && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFile )
2317 : 0 : && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFillColor ) && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeColor )
2318 : 0 : && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeWidth ) && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyAngle ) )
2319 : : {
2320 : 0 : return; //no data defined settings
2321 : : }
2322 : :
2323 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyAngle ) )
2324 : : {
2325 : 0 : context.setOriginalValueVariable( mAngle );
2326 : 0 : mNextAngle = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyAngle, context.renderContext().expressionContext(), mNextAngle );
2327 : 0 : }
2328 : :
2329 : 0 : double width = mPatternWidth;
2330 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyWidth ) )
2331 : : {
2332 : 0 : context.setOriginalValueVariable( mPatternWidth );
2333 : 0 : width = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyWidth, context.renderContext().expressionContext(), mPatternWidth );
2334 : 0 : }
2335 : 0 : QString svgFile = mSvgFilePath;
2336 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFile ) )
2337 : : {
2338 : 0 : context.setOriginalValueVariable( mSvgFilePath );
2339 : 0 : svgFile = QgsSymbolLayerUtils::svgSymbolNameToPath( mDataDefinedProperties.valueAsString( QgsSymbolLayer::PropertyFile, context.renderContext().expressionContext(), mSvgFilePath ),
2340 : 0 : context.renderContext().pathResolver() );
2341 : 0 : }
2342 : 0 : QColor svgFillColor = mColor;
2343 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFillColor ) )
2344 : : {
2345 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mColor ) );
2346 : 0 : svgFillColor = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyFillColor, context.renderContext().expressionContext(), mColor );
2347 : 0 : }
2348 : 0 : QColor svgStrokeColor = mSvgStrokeColor;
2349 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeColor ) )
2350 : : {
2351 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodeColor( mSvgStrokeColor ) );
2352 : 0 : svgStrokeColor = mDataDefinedProperties.valueAsColor( QgsSymbolLayer::PropertyStrokeColor, context.renderContext().expressionContext(), mSvgStrokeColor );
2353 : 0 : }
2354 : 0 : double strokeWidth = mSvgStrokeWidth;
2355 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyStrokeWidth ) )
2356 : : {
2357 : 0 : context.setOriginalValueVariable( mSvgStrokeWidth );
2358 : 0 : strokeWidth = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyStrokeWidth, context.renderContext().expressionContext(), mSvgStrokeWidth );
2359 : 0 : }
2360 : 0 : QgsStringMap evaluatedParameters = QgsSymbolLayerUtils::evaluatePropertiesMap( mParameters, context.renderContext().expressionContext() );
2361 : :
2362 : 0 : applyPattern( mBrush, svgFile, width, mPatternWidthUnit, svgFillColor, svgStrokeColor, strokeWidth,
2363 : 0 : mSvgStrokeWidthUnit, context, mPatternWidthMapUnitScale, mSvgStrokeWidthMapUnitScale, evaluatedParameters );
2364 : :
2365 : 0 : }
2366 : :
2367 : 0 : void QgsSVGFillSymbolLayer::storeViewBox()
2368 : : {
2369 : 0 : if ( !mSvgData.isEmpty() )
2370 : : {
2371 : 0 : QSvgRenderer r( mSvgData );
2372 : 0 : if ( r.isValid() )
2373 : : {
2374 : 0 : mSvgViewBox = r.viewBoxF();
2375 : 0 : return;
2376 : : }
2377 : 0 : }
2378 : :
2379 : 0 : mSvgViewBox = QRectF();
2380 : 0 : }
2381 : :
2382 : 0 : void QgsSVGFillSymbolLayer::setDefaultSvgParams()
2383 : : {
2384 : 0 : if ( mSvgFilePath.isEmpty() )
2385 : : {
2386 : 0 : return;
2387 : : }
2388 : :
2389 : : bool hasFillParam, hasFillOpacityParam, hasStrokeParam, hasStrokeWidthParam, hasStrokeOpacityParam;
2390 : : bool hasDefaultFillColor, hasDefaultFillOpacity, hasDefaultStrokeColor, hasDefaultStrokeWidth, hasDefaultStrokeOpacity;
2391 : 0 : QColor defaultFillColor, defaultStrokeColor;
2392 : : double defaultStrokeWidth, defaultFillOpacity, defaultStrokeOpacity;
2393 : 0 : QgsApplication::svgCache()->containsParams( mSvgFilePath, hasFillParam, hasDefaultFillColor, defaultFillColor,
2394 : : hasFillOpacityParam, hasDefaultFillOpacity, defaultFillOpacity,
2395 : : hasStrokeParam, hasDefaultStrokeColor, defaultStrokeColor,
2396 : : hasStrokeWidthParam, hasDefaultStrokeWidth, defaultStrokeWidth,
2397 : : hasStrokeOpacityParam, hasDefaultStrokeOpacity, defaultStrokeOpacity );
2398 : :
2399 : 0 : double newFillOpacity = hasFillOpacityParam ? mColor.alphaF() : 1.0;
2400 : 0 : double newStrokeOpacity = hasStrokeOpacityParam ? mSvgStrokeColor.alphaF() : 1.0;
2401 : :
2402 : 0 : if ( hasDefaultFillColor )
2403 : : {
2404 : 0 : mColor = defaultFillColor;
2405 : 0 : mColor.setAlphaF( newFillOpacity );
2406 : 0 : }
2407 : 0 : if ( hasDefaultFillOpacity )
2408 : : {
2409 : 0 : mColor.setAlphaF( defaultFillOpacity );
2410 : 0 : }
2411 : 0 : if ( hasDefaultStrokeColor )
2412 : : {
2413 : 0 : mSvgStrokeColor = defaultStrokeColor;
2414 : 0 : mSvgStrokeColor.setAlphaF( newStrokeOpacity );
2415 : 0 : }
2416 : 0 : if ( hasDefaultStrokeOpacity )
2417 : : {
2418 : 0 : mSvgStrokeColor.setAlphaF( defaultStrokeOpacity );
2419 : 0 : }
2420 : 0 : if ( hasDefaultStrokeWidth )
2421 : : {
2422 : 0 : mSvgStrokeWidth = defaultStrokeWidth;
2423 : 0 : }
2424 : 0 : }
2425 : :
2426 : 0 : void QgsSVGFillSymbolLayer::setParameters( const QMap<QString, QgsProperty> ¶meters )
2427 : : {
2428 : 0 : mParameters = parameters;
2429 : 0 : }
2430 : :
2431 : :
2432 : 70 : QgsLinePatternFillSymbolLayer::QgsLinePatternFillSymbolLayer()
2433 : 70 : : QgsImageFillSymbolLayer()
2434 : 140 : {
2435 : 70 : setSubSymbol( new QgsLineSymbol() );
2436 : 70 : QgsImageFillSymbolLayer::setSubSymbol( nullptr ); //no stroke
2437 : 70 : }
2438 : :
2439 : 70 : void QgsLinePatternFillSymbolLayer::setLineWidth( double w )
2440 : : {
2441 : 70 : mFillLineSymbol->setWidth( w );
2442 : 70 : mLineWidth = w;
2443 : 70 : }
2444 : :
2445 : 70 : void QgsLinePatternFillSymbolLayer::setColor( const QColor &c )
2446 : : {
2447 : 70 : mFillLineSymbol->setColor( c );
2448 : 70 : mColor = c;
2449 : 70 : }
2450 : :
2451 : 0 : QColor QgsLinePatternFillSymbolLayer::color() const
2452 : : {
2453 : 0 : return mFillLineSymbol ? mFillLineSymbol->color() : mColor;
2454 : : }
2455 : :
2456 : 84 : QgsLinePatternFillSymbolLayer::~QgsLinePatternFillSymbolLayer()
2457 : 84 : {
2458 : 42 : delete mFillLineSymbol;
2459 : 84 : }
2460 : :
2461 : 140 : bool QgsLinePatternFillSymbolLayer::setSubSymbol( QgsSymbol *symbol )
2462 : : {
2463 : 140 : if ( !symbol )
2464 : : {
2465 : 0 : return false;
2466 : : }
2467 : :
2468 : 140 : if ( symbol->type() == QgsSymbol::Line )
2469 : : {
2470 : 140 : QgsLineSymbol *lineSymbol = dynamic_cast<QgsLineSymbol *>( symbol );
2471 : 140 : if ( lineSymbol )
2472 : : {
2473 : 140 : delete mFillLineSymbol;
2474 : 140 : mFillLineSymbol = lineSymbol;
2475 : :
2476 : 140 : return true;
2477 : : }
2478 : 0 : }
2479 : 0 : delete symbol;
2480 : 0 : return false;
2481 : 140 : }
2482 : :
2483 : 0 : QgsSymbol *QgsLinePatternFillSymbolLayer::subSymbol()
2484 : : {
2485 : 0 : return mFillLineSymbol;
2486 : : }
2487 : :
2488 : 0 : QSet<QString> QgsLinePatternFillSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
2489 : : {
2490 : 0 : QSet<QString> attr = QgsImageFillSymbolLayer::usedAttributes( context );
2491 : 0 : if ( mFillLineSymbol )
2492 : 0 : attr.unite( mFillLineSymbol->usedAttributes( context ) );
2493 : 0 : return attr;
2494 : 0 : }
2495 : :
2496 : 0 : bool QgsLinePatternFillSymbolLayer::hasDataDefinedProperties() const
2497 : : {
2498 : 0 : if ( QgsSymbolLayer::hasDataDefinedProperties() )
2499 : 0 : return true;
2500 : 0 : if ( mFillLineSymbol && mFillLineSymbol->hasDataDefinedProperties() )
2501 : 0 : return true;
2502 : 0 : return false;
2503 : 0 : }
2504 : :
2505 : 0 : double QgsLinePatternFillSymbolLayer::estimateMaxBleed( const QgsRenderContext & ) const
2506 : : {
2507 : 0 : return 0;
2508 : : }
2509 : :
2510 : 0 : void QgsLinePatternFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
2511 : : {
2512 : 0 : QgsImageFillSymbolLayer::setOutputUnit( unit );
2513 : 0 : mDistanceUnit = unit;
2514 : 0 : mLineWidthUnit = unit;
2515 : 0 : mOffsetUnit = unit;
2516 : 0 : }
2517 : :
2518 : 0 : QgsUnitTypes::RenderUnit QgsLinePatternFillSymbolLayer::outputUnit() const
2519 : : {
2520 : 0 : QgsUnitTypes::RenderUnit unit = QgsImageFillSymbolLayer::outputUnit();
2521 : 0 : if ( mDistanceUnit != unit || mLineWidthUnit != unit || mOffsetUnit != unit )
2522 : : {
2523 : 0 : return QgsUnitTypes::RenderUnknownUnit;
2524 : : }
2525 : 0 : return unit;
2526 : 0 : }
2527 : :
2528 : 0 : bool QgsLinePatternFillSymbolLayer::usesMapUnits() const
2529 : : {
2530 : 0 : return mDistanceUnit == QgsUnitTypes::RenderMapUnits || mDistanceUnit == QgsUnitTypes::RenderMetersInMapUnits
2531 : 0 : || mLineWidthUnit == QgsUnitTypes::RenderMapUnits || mLineWidthUnit == QgsUnitTypes::RenderMetersInMapUnits
2532 : 0 : || mOffsetUnit == QgsUnitTypes::RenderMapUnits || mOffsetUnit == QgsUnitTypes::RenderMetersInMapUnits;
2533 : : }
2534 : :
2535 : 0 : void QgsLinePatternFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
2536 : : {
2537 : 0 : QgsImageFillSymbolLayer::setMapUnitScale( scale );
2538 : 0 : mDistanceMapUnitScale = scale;
2539 : 0 : mLineWidthMapUnitScale = scale;
2540 : 0 : mOffsetMapUnitScale = scale;
2541 : 0 : }
2542 : :
2543 : 0 : QgsMapUnitScale QgsLinePatternFillSymbolLayer::mapUnitScale() const
2544 : : {
2545 : 0 : if ( QgsImageFillSymbolLayer::mapUnitScale() == mDistanceMapUnitScale &&
2546 : 0 : mDistanceMapUnitScale == mLineWidthMapUnitScale &&
2547 : 0 : mLineWidthMapUnitScale == mOffsetMapUnitScale )
2548 : : {
2549 : 0 : return mDistanceMapUnitScale;
2550 : : }
2551 : 0 : return QgsMapUnitScale();
2552 : 0 : }
2553 : :
2554 : 70 : QgsSymbolLayer *QgsLinePatternFillSymbolLayer::create( const QVariantMap &properties )
2555 : : {
2556 : 70 : std::unique_ptr< QgsLinePatternFillSymbolLayer > patternLayer = std::make_unique< QgsLinePatternFillSymbolLayer >();
2557 : :
2558 : : //default values
2559 : 70 : double lineAngle = 45;
2560 : 70 : double distance = 5;
2561 : 70 : double lineWidth = 0.5;
2562 : 70 : QColor color( Qt::black );
2563 : 70 : double offset = 0.0;
2564 : :
2565 : 140 : if ( properties.contains( QStringLiteral( "lineangle" ) ) )
2566 : : {
2567 : : //pre 2.5 projects used "lineangle"
2568 : 0 : lineAngle = properties[QStringLiteral( "lineangle" )].toDouble();
2569 : 0 : }
2570 : 140 : else if ( properties.contains( QStringLiteral( "angle" ) ) )
2571 : : {
2572 : 140 : lineAngle = properties[QStringLiteral( "angle" )].toDouble();
2573 : 70 : }
2574 : 70 : patternLayer->setLineAngle( lineAngle );
2575 : :
2576 : 140 : if ( properties.contains( QStringLiteral( "distance" ) ) )
2577 : : {
2578 : 140 : distance = properties[QStringLiteral( "distance" )].toDouble();
2579 : 70 : }
2580 : 70 : patternLayer->setDistance( distance );
2581 : :
2582 : 140 : if ( properties.contains( QStringLiteral( "linewidth" ) ) )
2583 : : {
2584 : : //pre 2.5 projects used "linewidth"
2585 : 0 : lineWidth = properties[QStringLiteral( "linewidth" )].toDouble();
2586 : 0 : }
2587 : 140 : else if ( properties.contains( QStringLiteral( "outline_width" ) ) )
2588 : : {
2589 : 0 : lineWidth = properties[QStringLiteral( "outline_width" )].toDouble();
2590 : 0 : }
2591 : 140 : else if ( properties.contains( QStringLiteral( "line_width" ) ) )
2592 : : {
2593 : 140 : lineWidth = properties[QStringLiteral( "line_width" )].toDouble();
2594 : 70 : }
2595 : 70 : patternLayer->setLineWidth( lineWidth );
2596 : :
2597 : 140 : if ( properties.contains( QStringLiteral( "color" ) ) )
2598 : : {
2599 : 140 : color = QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "color" )].toString() );
2600 : 70 : }
2601 : 0 : else if ( properties.contains( QStringLiteral( "outline_color" ) ) )
2602 : : {
2603 : 0 : color = QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "outline_color" )].toString() );
2604 : 0 : }
2605 : 0 : else if ( properties.contains( QStringLiteral( "line_color" ) ) )
2606 : : {
2607 : 0 : color = QgsSymbolLayerUtils::decodeColor( properties[QStringLiteral( "line_color" )].toString() );
2608 : 0 : }
2609 : 70 : patternLayer->setColor( color );
2610 : :
2611 : 140 : if ( properties.contains( QStringLiteral( "offset" ) ) )
2612 : : {
2613 : 140 : offset = properties[QStringLiteral( "offset" )].toDouble();
2614 : 70 : }
2615 : 70 : patternLayer->setOffset( offset );
2616 : :
2617 : :
2618 : 140 : if ( properties.contains( QStringLiteral( "distance_unit" ) ) )
2619 : : {
2620 : 140 : patternLayer->setDistanceUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "distance_unit" )].toString() ) );
2621 : 70 : }
2622 : 140 : if ( properties.contains( QStringLiteral( "distance_map_unit_scale" ) ) )
2623 : : {
2624 : 140 : patternLayer->setDistanceMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "distance_map_unit_scale" )].toString() ) );
2625 : 70 : }
2626 : 140 : if ( properties.contains( QStringLiteral( "line_width_unit" ) ) )
2627 : : {
2628 : 140 : patternLayer->setLineWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "line_width_unit" )].toString() ) );
2629 : 70 : }
2630 : 0 : else if ( properties.contains( QStringLiteral( "outline_width_unit" ) ) )
2631 : : {
2632 : 0 : patternLayer->setLineWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "outline_width_unit" )].toString() ) );
2633 : 0 : }
2634 : 140 : if ( properties.contains( QStringLiteral( "line_width_map_unit_scale" ) ) )
2635 : : {
2636 : 140 : patternLayer->setLineWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "line_width_map_unit_scale" )].toString() ) );
2637 : 70 : }
2638 : 140 : if ( properties.contains( QStringLiteral( "offset_unit" ) ) )
2639 : : {
2640 : 140 : patternLayer->setOffsetUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "offset_unit" )].toString() ) );
2641 : 70 : }
2642 : 140 : if ( properties.contains( QStringLiteral( "offset_map_unit_scale" ) ) )
2643 : : {
2644 : 140 : patternLayer->setOffsetMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "offset_map_unit_scale" )].toString() ) );
2645 : 70 : }
2646 : 140 : if ( properties.contains( QStringLiteral( "outline_width_unit" ) ) )
2647 : : {
2648 : 140 : patternLayer->setStrokeWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "outline_width_unit" )].toString() ) );
2649 : 70 : }
2650 : 140 : if ( properties.contains( QStringLiteral( "outline_width_map_unit_scale" ) ) )
2651 : : {
2652 : 140 : patternLayer->setStrokeWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "outline_width_map_unit_scale" )].toString() ) );
2653 : 70 : }
2654 : :
2655 : 70 : patternLayer->restoreOldDataDefinedProperties( properties );
2656 : :
2657 : 70 : return patternLayer.release();
2658 : 70 : }
2659 : :
2660 : 0 : QString QgsLinePatternFillSymbolLayer::layerType() const
2661 : : {
2662 : 0 : return QStringLiteral( "LinePatternFill" );
2663 : : }
2664 : :
2665 : 0 : void QgsLinePatternFillSymbolLayer::applyPattern( const QgsSymbolRenderContext &context, QBrush &brush, double lineAngle, double distance )
2666 : : {
2667 : 0 : mBrush.setTextureImage( QImage() ); // set empty in case we have to return
2668 : :
2669 : 0 : if ( !mFillLineSymbol )
2670 : : {
2671 : 0 : return;
2672 : : }
2673 : : // We have to make a copy because marker intervals will have to be adjusted
2674 : 0 : std::unique_ptr< QgsLineSymbol > fillLineSymbol( mFillLineSymbol->clone() );
2675 : 0 : if ( !fillLineSymbol )
2676 : : {
2677 : 0 : return;
2678 : : }
2679 : :
2680 : 0 : const QgsRenderContext &ctx = context.renderContext();
2681 : : //double strokePixelWidth = lineWidth * QgsSymbolLayerUtils::pixelSizeScaleFactor( ctx, mLineWidthUnit, mLineWidthMapUnitScale );
2682 : 0 : double outputPixelDist = ctx.convertToPainterUnits( distance, mDistanceUnit, mDistanceMapUnitScale );
2683 : 0 : double outputPixelOffset = ctx.convertToPainterUnits( mOffset, mOffsetUnit, mOffsetMapUnitScale );
2684 : :
2685 : : // NOTE: this may need to be modified if we ever change from a forced rasterized/brush approach,
2686 : : // because potentially we may want to allow vector based line pattern fills where the first line
2687 : : // is offset by a large distance
2688 : :
2689 : : // fix truncated pattern with larger offsets
2690 : 0 : outputPixelOffset = std::fmod( outputPixelOffset, outputPixelDist );
2691 : 0 : if ( outputPixelOffset > outputPixelDist / 2.0 )
2692 : 0 : outputPixelOffset -= outputPixelDist;
2693 : :
2694 : : // To get all patterns into image, we have to consider symbols size (estimateMaxBleed()).
2695 : : // For marker lines we have to get markers interval.
2696 : 0 : double outputPixelBleed = 0;
2697 : 0 : double outputPixelInterval = 0; // maximum interval
2698 : 0 : for ( int i = 0; i < fillLineSymbol->symbolLayerCount(); i++ )
2699 : : {
2700 : 0 : QgsSymbolLayer *layer = fillLineSymbol->symbolLayer( i );
2701 : 0 : double outputPixelLayerBleed = layer->estimateMaxBleed( context.renderContext() );
2702 : 0 : outputPixelBleed = std::max( outputPixelBleed, outputPixelLayerBleed );
2703 : :
2704 : 0 : QgsMarkerLineSymbolLayer *markerLineLayer = dynamic_cast<QgsMarkerLineSymbolLayer *>( layer );
2705 : 0 : if ( markerLineLayer )
2706 : : {
2707 : 0 : double outputPixelLayerInterval = ctx.convertToPainterUnits( markerLineLayer->interval(), markerLineLayer->intervalUnit(), markerLineLayer->intervalMapUnitScale() );
2708 : :
2709 : : // There may be multiple marker lines with different intervals.
2710 : : // In theory we should find the least common multiple, but that could be too
2711 : : // big (multiplication of intervals in the worst case).
2712 : : // Because patterns without small common interval would look strange, we
2713 : : // believe that the longest interval should usually be sufficient.
2714 : 0 : outputPixelInterval = std::max( outputPixelInterval, outputPixelLayerInterval );
2715 : 0 : }
2716 : 0 : }
2717 : :
2718 : 0 : if ( outputPixelInterval > 0 )
2719 : : {
2720 : : // We have to adjust marker intervals to integer pixel size to get
2721 : : // repeatable pattern.
2722 : 0 : double intervalScale = std::round( outputPixelInterval ) / outputPixelInterval;
2723 : 0 : outputPixelInterval = std::round( outputPixelInterval );
2724 : :
2725 : 0 : for ( int i = 0; i < fillLineSymbol->symbolLayerCount(); i++ )
2726 : : {
2727 : 0 : QgsSymbolLayer *layer = fillLineSymbol->symbolLayer( i );
2728 : :
2729 : 0 : QgsMarkerLineSymbolLayer *markerLineLayer = dynamic_cast<QgsMarkerLineSymbolLayer *>( layer );
2730 : 0 : if ( markerLineLayer )
2731 : : {
2732 : 0 : markerLineLayer->setInterval( intervalScale * markerLineLayer->interval() );
2733 : 0 : }
2734 : 0 : }
2735 : 0 : }
2736 : :
2737 : : //create image
2738 : : int height, width;
2739 : 0 : lineAngle = std::fmod( lineAngle, 360 );
2740 : 0 : if ( lineAngle < 0 )
2741 : 0 : lineAngle += 360;
2742 : 0 : if ( qgsDoubleNear( lineAngle, 0 ) || qgsDoubleNear( lineAngle, 360 ) || qgsDoubleNear( lineAngle, 180 ) )
2743 : : {
2744 : 0 : height = outputPixelDist;
2745 : 0 : width = outputPixelInterval > 0 ? outputPixelInterval : height;
2746 : 0 : }
2747 : 0 : else if ( qgsDoubleNear( lineAngle, 90 ) || qgsDoubleNear( lineAngle, 270 ) )
2748 : : {
2749 : 0 : width = outputPixelDist;
2750 : 0 : height = outputPixelInterval > 0 ? outputPixelInterval : width;
2751 : 0 : }
2752 : : else
2753 : : {
2754 : 0 : height = outputPixelDist / std::cos( lineAngle * M_PI / 180 ); //keep perpendicular distance between lines constant
2755 : 0 : width = outputPixelDist / std::sin( lineAngle * M_PI / 180 );
2756 : :
2757 : : // recalculate real angle and distance after rounding to pixels
2758 : 0 : lineAngle = 180 * std::atan2( static_cast< double >( height ), static_cast< double >( width ) ) / M_PI;
2759 : 0 : if ( lineAngle < 0 )
2760 : : {
2761 : 0 : lineAngle += 360.;
2762 : 0 : }
2763 : :
2764 : 0 : height = std::abs( height );
2765 : 0 : width = std::abs( width );
2766 : :
2767 : 0 : outputPixelDist = std::abs( height * std::cos( lineAngle * M_PI / 180 ) );
2768 : :
2769 : : // Round offset to correspond to one pixel height, otherwise lines may
2770 : : // be shifted on tile border if offset falls close to pixel center
2771 : 0 : int offsetHeight = static_cast< int >( std::round( outputPixelOffset / std::cos( lineAngle * M_PI / 180 ) ) );
2772 : 0 : outputPixelOffset = offsetHeight * std::cos( lineAngle * M_PI / 180 );
2773 : : }
2774 : :
2775 : : //depending on the angle, we might need to render into a larger image and use a subset of it
2776 : 0 : double dx = 0;
2777 : 0 : double dy = 0;
2778 : :
2779 : : // Add buffer based on bleed but keep precisely the height/width ratio (angle)
2780 : : // thus we add integer multiplications of width and height covering the bleed
2781 : 0 : int bufferMulti = static_cast< int >( std::max( std::ceil( outputPixelBleed / width ), std::ceil( outputPixelBleed / width ) ) );
2782 : :
2783 : : // Always buffer at least once so that center of line marker in upper right corner
2784 : : // does not fall outside due to representation error
2785 : 0 : bufferMulti = std::max( bufferMulti, 1 );
2786 : :
2787 : 0 : int xBuffer = width * bufferMulti;
2788 : 0 : int yBuffer = height * bufferMulti;
2789 : 0 : int innerWidth = width;
2790 : 0 : int innerHeight = height;
2791 : 0 : width += 2 * xBuffer;
2792 : 0 : height += 2 * yBuffer;
2793 : :
2794 : : //protect from zero width/height image and symbol layer from eating too much memory
2795 : 0 : if ( width > 10000 || height > 10000 || width == 0 || height == 0 )
2796 : : {
2797 : 0 : return;
2798 : : }
2799 : :
2800 : 0 : QImage patternImage( width, height, QImage::Format_ARGB32 );
2801 : 0 : patternImage.fill( 0 );
2802 : :
2803 : 0 : QPointF p1, p2, p3, p4, p5, p6;
2804 : 0 : if ( qgsDoubleNear( lineAngle, 0.0 ) || qgsDoubleNear( lineAngle, 360.0 ) || qgsDoubleNear( lineAngle, 180.0 ) )
2805 : : {
2806 : 0 : p1 = QPointF( 0, yBuffer );
2807 : 0 : p2 = QPointF( width, yBuffer );
2808 : 0 : p3 = QPointF( 0, yBuffer + innerHeight );
2809 : 0 : p4 = QPointF( width, yBuffer + innerHeight );
2810 : 0 : }
2811 : 0 : else if ( qgsDoubleNear( lineAngle, 90.0 ) || qgsDoubleNear( lineAngle, 270.0 ) )
2812 : : {
2813 : 0 : p1 = QPointF( xBuffer, height );
2814 : 0 : p2 = QPointF( xBuffer, 0 );
2815 : 0 : p3 = QPointF( xBuffer + innerWidth, height );
2816 : 0 : p4 = QPointF( xBuffer + innerWidth, 0 );
2817 : 0 : }
2818 : 0 : else if ( lineAngle > 0 && lineAngle < 90 )
2819 : : {
2820 : 0 : dx = outputPixelDist * std::cos( ( 90 - lineAngle ) * M_PI / 180.0 );
2821 : 0 : dy = outputPixelDist * std::sin( ( 90 - lineAngle ) * M_PI / 180.0 );
2822 : 0 : p1 = QPointF( 0, height );
2823 : 0 : p2 = QPointF( width, 0 );
2824 : 0 : p3 = QPointF( -dx, height - dy );
2825 : 0 : p4 = QPointF( width - dx, -dy );
2826 : 0 : p5 = QPointF( dx, height + dy );
2827 : 0 : p6 = QPointF( width + dx, dy );
2828 : 0 : }
2829 : 0 : else if ( lineAngle > 180 && lineAngle < 270 )
2830 : : {
2831 : 0 : dx = outputPixelDist * std::cos( ( 90 - lineAngle ) * M_PI / 180.0 );
2832 : 0 : dy = outputPixelDist * std::sin( ( 90 - lineAngle ) * M_PI / 180.0 );
2833 : 0 : p1 = QPointF( width, 0 );
2834 : 0 : p2 = QPointF( 0, height );
2835 : 0 : p3 = QPointF( width - dx, -dy );
2836 : 0 : p4 = QPointF( -dx, height - dy );
2837 : 0 : p5 = QPointF( width + dx, dy );
2838 : 0 : p6 = QPointF( dx, height + dy );
2839 : 0 : }
2840 : 0 : else if ( lineAngle > 90 && lineAngle < 180 )
2841 : : {
2842 : 0 : dy = outputPixelDist * std::cos( ( 180 - lineAngle ) * M_PI / 180 );
2843 : 0 : dx = outputPixelDist * std::sin( ( 180 - lineAngle ) * M_PI / 180 );
2844 : 0 : p1 = QPointF( 0, 0 );
2845 : 0 : p2 = QPointF( width, height );
2846 : 0 : p5 = QPointF( dx, -dy );
2847 : 0 : p6 = QPointF( width + dx, height - dy );
2848 : 0 : p3 = QPointF( -dx, dy );
2849 : 0 : p4 = QPointF( width - dx, height + dy );
2850 : 0 : }
2851 : 0 : else if ( lineAngle > 270 && lineAngle < 360 )
2852 : : {
2853 : 0 : dy = outputPixelDist * std::cos( ( 180 - lineAngle ) * M_PI / 180 );
2854 : 0 : dx = outputPixelDist * std::sin( ( 180 - lineAngle ) * M_PI / 180 );
2855 : 0 : p1 = QPointF( width, height );
2856 : 0 : p2 = QPointF( 0, 0 );
2857 : 0 : p5 = QPointF( width + dx, height - dy );
2858 : 0 : p6 = QPointF( dx, -dy );
2859 : 0 : p3 = QPointF( width - dx, height + dy );
2860 : 0 : p4 = QPointF( -dx, dy );
2861 : 0 : }
2862 : :
2863 : 0 : if ( !qgsDoubleNear( mOffset, 0.0 ) ) //shift everything
2864 : : {
2865 : 0 : QPointF tempPt;
2866 : 0 : tempPt = QgsSymbolLayerUtils::pointOnLineWithDistance( p1, p3, outputPixelDist + outputPixelOffset );
2867 : 0 : p3 = QPointF( tempPt.x(), tempPt.y() );
2868 : 0 : tempPt = QgsSymbolLayerUtils::pointOnLineWithDistance( p2, p4, outputPixelDist + outputPixelOffset );
2869 : 0 : p4 = QPointF( tempPt.x(), tempPt.y() );
2870 : 0 : tempPt = QgsSymbolLayerUtils::pointOnLineWithDistance( p1, p5, outputPixelDist - outputPixelOffset );
2871 : 0 : p5 = QPointF( tempPt.x(), tempPt.y() );
2872 : 0 : tempPt = QgsSymbolLayerUtils::pointOnLineWithDistance( p2, p6, outputPixelDist - outputPixelOffset );
2873 : 0 : p6 = QPointF( tempPt.x(), tempPt.y() );
2874 : :
2875 : : //update p1, p2 last
2876 : 0 : tempPt = QgsSymbolLayerUtils::pointOnLineWithDistance( p1, p3, outputPixelOffset );
2877 : 0 : p1 = QPointF( tempPt.x(), tempPt.y() );
2878 : 0 : tempPt = QgsSymbolLayerUtils::pointOnLineWithDistance( p2, p4, outputPixelOffset );
2879 : 0 : p2 = QPointF( tempPt.x(), tempPt.y() );
2880 : 0 : }
2881 : :
2882 : 0 : QPainter p( &patternImage );
2883 : :
2884 : : #if 0
2885 : : // DEBUG: Draw rectangle
2886 : : p.setRenderHint( QPainter::Antialiasing, false ); // get true rect
2887 : : QPen pen( QColor( Qt::black ) );
2888 : : pen.setWidthF( 0.1 );
2889 : : pen.setCapStyle( Qt::FlatCap );
2890 : : p.setPen( pen );
2891 : :
2892 : : // To see this rectangle, comment buffer cut below.
2893 : : // Subtract 1 because not antialiased are rendered to the right/down by 1 pixel
2894 : : QPolygon polygon = QPolygon() << QPoint( 0, 0 ) << QPoint( width - 1, 0 ) << QPoint( width - 1, height - 1 ) << QPoint( 0, height - 1 ) << QPoint( 0, 0 );
2895 : : p.drawPolygon( polygon );
2896 : :
2897 : : polygon = QPolygon() << QPoint( xBuffer, yBuffer ) << QPoint( width - xBuffer - 1, yBuffer ) << QPoint( width - xBuffer - 1, height - yBuffer - 1 ) << QPoint( xBuffer, height - yBuffer - 1 ) << QPoint( xBuffer, yBuffer );
2898 : : p.drawPolygon( polygon );
2899 : : #endif
2900 : :
2901 : : // Use antialiasing because without antialiasing lines are rendered to the
2902 : : // right and below the mathematically defined points (not symmetrical)
2903 : : // and such tiles become useless for are filling
2904 : 0 : p.setRenderHint( QPainter::Antialiasing, true );
2905 : :
2906 : : // line rendering needs context for drawing on patternImage
2907 : 0 : QgsRenderContext lineRenderContext;
2908 : 0 : lineRenderContext.setPainter( &p );
2909 : 0 : lineRenderContext.setScaleFactor( context.renderContext().scaleFactor() );
2910 : 0 : QgsMapToPixel mtp( context.renderContext().mapToPixel().mapUnitsPerPixel() );
2911 : 0 : lineRenderContext.setMapToPixel( mtp );
2912 : 0 : lineRenderContext.setForceVectorOutput( false );
2913 : 0 : lineRenderContext.setExpressionContext( context.renderContext().expressionContext() );
2914 : :
2915 : 0 : fillLineSymbol->startRender( lineRenderContext, context.fields() );
2916 : :
2917 : 0 : QVector<QPolygonF> polygons;
2918 : 0 : polygons.append( QPolygonF() << p1 << p2 );
2919 : 0 : polygons.append( QPolygonF() << p3 << p4 );
2920 : 0 : if ( !qgsDoubleNear( lineAngle, 0 ) && !qgsDoubleNear( lineAngle, 360 ) && !qgsDoubleNear( lineAngle, 90 ) && !qgsDoubleNear( lineAngle, 180 ) && !qgsDoubleNear( lineAngle, 270 ) )
2921 : : {
2922 : 0 : polygons.append( QPolygonF() << p5 << p6 );
2923 : 0 : }
2924 : :
2925 : 0 : for ( const QPolygonF &polygon : std::as_const( polygons ) )
2926 : : {
2927 : 0 : fillLineSymbol->renderPolyline( polygon, context.feature(), lineRenderContext, -1, context.selected() );
2928 : : }
2929 : :
2930 : 0 : fillLineSymbol->stopRender( lineRenderContext );
2931 : 0 : p.end();
2932 : :
2933 : : // Cut off the buffer
2934 : 0 : patternImage = patternImage.copy( xBuffer, yBuffer, patternImage.width() - 2 * xBuffer, patternImage.height() - 2 * yBuffer );
2935 : :
2936 : : //set image to mBrush
2937 : 0 : if ( !qgsDoubleNear( context.opacity(), 1.0 ) )
2938 : : {
2939 : 0 : QImage transparentImage = patternImage.copy();
2940 : 0 : QgsSymbolLayerUtils::multiplyImageOpacity( &transparentImage, context.opacity() );
2941 : 0 : brush.setTextureImage( transparentImage );
2942 : 0 : }
2943 : : else
2944 : : {
2945 : 0 : brush.setTextureImage( patternImage );
2946 : : }
2947 : :
2948 : 0 : QTransform brushTransform;
2949 : 0 : brush.setTransform( brushTransform );
2950 : 0 : }
2951 : :
2952 : 0 : void QgsLinePatternFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
2953 : : {
2954 : 0 : applyPattern( context, mBrush, mLineAngle, mDistance );
2955 : :
2956 : 0 : if ( mFillLineSymbol )
2957 : : {
2958 : 0 : mFillLineSymbol->startRender( context.renderContext(), context.fields() );
2959 : 0 : }
2960 : 0 : }
2961 : :
2962 : 0 : void QgsLinePatternFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
2963 : : {
2964 : 0 : if ( mFillLineSymbol )
2965 : : {
2966 : 0 : mFillLineSymbol->stopRender( context.renderContext() );
2967 : 0 : }
2968 : 0 : }
2969 : :
2970 : 0 : QVariantMap QgsLinePatternFillSymbolLayer::properties() const
2971 : : {
2972 : 0 : QVariantMap map;
2973 : 0 : map.insert( QStringLiteral( "angle" ), QString::number( mLineAngle ) );
2974 : 0 : map.insert( QStringLiteral( "distance" ), QString::number( mDistance ) );
2975 : 0 : map.insert( QStringLiteral( "line_width" ), QString::number( mLineWidth ) );
2976 : 0 : map.insert( QStringLiteral( "color" ), QgsSymbolLayerUtils::encodeColor( mColor ) );
2977 : 0 : map.insert( QStringLiteral( "offset" ), QString::number( mOffset ) );
2978 : 0 : map.insert( QStringLiteral( "distance_unit" ), QgsUnitTypes::encodeUnit( mDistanceUnit ) );
2979 : 0 : map.insert( QStringLiteral( "line_width_unit" ), QgsUnitTypes::encodeUnit( mLineWidthUnit ) );
2980 : 0 : map.insert( QStringLiteral( "offset_unit" ), QgsUnitTypes::encodeUnit( mOffsetUnit ) );
2981 : 0 : map.insert( QStringLiteral( "distance_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mDistanceMapUnitScale ) );
2982 : 0 : map.insert( QStringLiteral( "line_width_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mLineWidthMapUnitScale ) );
2983 : 0 : map.insert( QStringLiteral( "offset_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mOffsetMapUnitScale ) );
2984 : 0 : map.insert( QStringLiteral( "outline_width_unit" ), QgsUnitTypes::encodeUnit( mStrokeWidthUnit ) );
2985 : 0 : map.insert( QStringLiteral( "outline_width_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mStrokeWidthMapUnitScale ) );
2986 : 0 : return map;
2987 : 0 : }
2988 : :
2989 : 0 : QgsLinePatternFillSymbolLayer *QgsLinePatternFillSymbolLayer::clone() const
2990 : : {
2991 : 0 : QgsLinePatternFillSymbolLayer *clonedLayer = static_cast<QgsLinePatternFillSymbolLayer *>( QgsLinePatternFillSymbolLayer::create( properties() ) );
2992 : 0 : if ( mFillLineSymbol )
2993 : : {
2994 : 0 : clonedLayer->setSubSymbol( mFillLineSymbol->clone() );
2995 : 0 : }
2996 : 0 : copyPaintEffect( clonedLayer );
2997 : 0 : copyDataDefinedProperties( clonedLayer );
2998 : 0 : return clonedLayer;
2999 : 0 : }
3000 : :
3001 : 0 : void QgsLinePatternFillSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
3002 : : {
3003 : 0 : QDomElement symbolizerElem = doc.createElement( QStringLiteral( "se:PolygonSymbolizer" ) );
3004 : 0 : if ( !props.value( QStringLiteral( "uom" ), QString() ).toString().isEmpty() )
3005 : 0 : symbolizerElem.setAttribute( QStringLiteral( "uom" ), props.value( QStringLiteral( "uom" ), QString() ).toString() );
3006 : 0 : element.appendChild( symbolizerElem );
3007 : :
3008 : : // <Geometry>
3009 : 0 : QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( QStringLiteral( "geom" ), QString() ).toString() );
3010 : :
3011 : 0 : QDomElement fillElem = doc.createElement( QStringLiteral( "se:Fill" ) );
3012 : 0 : symbolizerElem.appendChild( fillElem );
3013 : :
3014 : 0 : QDomElement graphicFillElem = doc.createElement( QStringLiteral( "se:GraphicFill" ) );
3015 : 0 : fillElem.appendChild( graphicFillElem );
3016 : :
3017 : 0 : QDomElement graphicElem = doc.createElement( QStringLiteral( "se:Graphic" ) );
3018 : 0 : graphicFillElem.appendChild( graphicElem );
3019 : :
3020 : : //line properties must be inside the graphic definition
3021 : 0 : QColor lineColor = mFillLineSymbol ? mFillLineSymbol->color() : QColor();
3022 : 0 : double lineWidth = mFillLineSymbol ? mFillLineSymbol->width() : 0.0;
3023 : 0 : lineWidth = QgsSymbolLayerUtils::rescaleUom( lineWidth, mLineWidthUnit, props );
3024 : 0 : double distance = QgsSymbolLayerUtils::rescaleUom( mDistance, mDistanceUnit, props );
3025 : 0 : QgsSymbolLayerUtils::wellKnownMarkerToSld( doc, graphicElem, QStringLiteral( "horline" ), QColor(), lineColor, Qt::SolidLine, lineWidth, distance );
3026 : :
3027 : : // <Rotation>
3028 : 0 : QString angleFunc;
3029 : : bool ok;
3030 : 0 : double angle = props.value( QStringLiteral( "angle" ), QStringLiteral( "0" ) ).toDouble( &ok );
3031 : 0 : if ( !ok )
3032 : : {
3033 : 0 : angleFunc = QStringLiteral( "%1 + %2" ).arg( props.value( QStringLiteral( "angle" ), QStringLiteral( "0" ) ).toString() ).arg( mLineAngle );
3034 : 0 : }
3035 : 0 : else if ( !qgsDoubleNear( angle + mLineAngle, 0.0 ) )
3036 : : {
3037 : 0 : angleFunc = QString::number( angle + mLineAngle );
3038 : 0 : }
3039 : 0 : QgsSymbolLayerUtils::createRotationElement( doc, graphicElem, angleFunc );
3040 : :
3041 : : // <se:Displacement>
3042 : 0 : QPointF lineOffset( std::sin( mLineAngle ) * mOffset, std::cos( mLineAngle ) * mOffset );
3043 : 0 : lineOffset = QgsSymbolLayerUtils::rescaleUom( lineOffset, mOffsetUnit, props );
3044 : 0 : QgsSymbolLayerUtils::createDisplacementElement( doc, graphicElem, lineOffset );
3045 : 0 : }
3046 : :
3047 : 0 : QString QgsLinePatternFillSymbolLayer::ogrFeatureStyleWidth( double widthScaleFactor ) const
3048 : : {
3049 : 0 : QString featureStyle;
3050 : 0 : featureStyle.append( "Brush(" );
3051 : 0 : featureStyle.append( QStringLiteral( "fc:%1" ).arg( mColor.name() ) );
3052 : 0 : featureStyle.append( QStringLiteral( ",bc:%1" ).arg( QLatin1String( "#00000000" ) ) ); //transparent background
3053 : 0 : featureStyle.append( ",id:\"ogr-brush-2\"" );
3054 : 0 : featureStyle.append( QStringLiteral( ",a:%1" ).arg( mLineAngle ) );
3055 : 0 : featureStyle.append( QStringLiteral( ",s:%1" ).arg( mLineWidth * widthScaleFactor ) );
3056 : 0 : featureStyle.append( ",dx:0mm" );
3057 : 0 : featureStyle.append( QStringLiteral( ",dy:%1mm" ).arg( mDistance * widthScaleFactor ) );
3058 : 0 : featureStyle.append( ')' );
3059 : 0 : return featureStyle;
3060 : 0 : }
3061 : :
3062 : 0 : void QgsLinePatternFillSymbolLayer::applyDataDefinedSettings( QgsSymbolRenderContext &context )
3063 : : {
3064 : 0 : if ( !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyLineAngle ) && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyLineDistance )
3065 : 0 : && ( !mFillLineSymbol || !mFillLineSymbol->hasDataDefinedProperties() ) )
3066 : : {
3067 : 0 : return; //no data defined settings
3068 : : }
3069 : :
3070 : 0 : double lineAngle = mLineAngle;
3071 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyLineAngle ) )
3072 : : {
3073 : 0 : context.setOriginalValueVariable( mLineAngle );
3074 : 0 : lineAngle = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyLineAngle, context.renderContext().expressionContext(), mLineAngle );
3075 : 0 : }
3076 : 0 : double distance = mDistance;
3077 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyLineDistance ) )
3078 : : {
3079 : 0 : context.setOriginalValueVariable( mDistance );
3080 : 0 : distance = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyLineDistance, context.renderContext().expressionContext(), mDistance );
3081 : 0 : }
3082 : 0 : applyPattern( context, mBrush, lineAngle, distance );
3083 : 0 : }
3084 : :
3085 : 0 : QgsSymbolLayer *QgsLinePatternFillSymbolLayer::createFromSld( QDomElement &element )
3086 : : {
3087 : 0 : QString name;
3088 : 0 : QColor fillColor, lineColor;
3089 : : double size, lineWidth;
3090 : : Qt::PenStyle lineStyle;
3091 : :
3092 : 0 : QDomElement fillElem = element.firstChildElement( QStringLiteral( "Fill" ) );
3093 : 0 : if ( fillElem.isNull() )
3094 : 0 : return nullptr;
3095 : :
3096 : 0 : QDomElement graphicFillElem = fillElem.firstChildElement( QStringLiteral( "GraphicFill" ) );
3097 : 0 : if ( graphicFillElem.isNull() )
3098 : 0 : return nullptr;
3099 : :
3100 : 0 : QDomElement graphicElem = graphicFillElem.firstChildElement( QStringLiteral( "Graphic" ) );
3101 : 0 : if ( graphicElem.isNull() )
3102 : 0 : return nullptr;
3103 : :
3104 : 0 : if ( !QgsSymbolLayerUtils::wellKnownMarkerFromSld( graphicElem, name, fillColor, lineColor, lineStyle, lineWidth, size ) )
3105 : 0 : return nullptr;
3106 : :
3107 : 0 : if ( name != QLatin1String( "horline" ) )
3108 : 0 : return nullptr;
3109 : :
3110 : 0 : double angle = 0.0;
3111 : 0 : QString angleFunc;
3112 : 0 : if ( QgsSymbolLayerUtils::rotationFromSldElement( graphicElem, angleFunc ) )
3113 : : {
3114 : : bool ok;
3115 : 0 : double d = angleFunc.toDouble( &ok );
3116 : 0 : if ( ok )
3117 : 0 : angle = d;
3118 : 0 : }
3119 : :
3120 : 0 : double offset = 0.0;
3121 : 0 : QPointF vectOffset;
3122 : 0 : if ( QgsSymbolLayerUtils::displacementFromSldElement( graphicElem, vectOffset ) )
3123 : : {
3124 : 0 : offset = std::sqrt( std::pow( vectOffset.x(), 2 ) + std::pow( vectOffset.y(), 2 ) );
3125 : 0 : }
3126 : :
3127 : 0 : QString uom = element.attribute( QStringLiteral( "uom" ) );
3128 : 0 : size = QgsSymbolLayerUtils::sizeInPixelsFromSldUom( uom, size );
3129 : 0 : lineWidth = QgsSymbolLayerUtils::sizeInPixelsFromSldUom( uom, lineWidth );
3130 : :
3131 : 0 : std::unique_ptr< QgsLinePatternFillSymbolLayer > sl = std::make_unique< QgsLinePatternFillSymbolLayer >();
3132 : 0 : sl->setOutputUnit( QgsUnitTypes::RenderUnit::RenderPixels );
3133 : 0 : sl->setColor( lineColor );
3134 : 0 : sl->setLineWidth( lineWidth );
3135 : 0 : sl->setLineAngle( angle );
3136 : 0 : sl->setOffset( offset );
3137 : 0 : sl->setDistance( size );
3138 : :
3139 : : // try to get the stroke
3140 : 0 : QDomElement strokeElem = element.firstChildElement( QStringLiteral( "Stroke" ) );
3141 : 0 : if ( !strokeElem.isNull() )
3142 : : {
3143 : 0 : QgsSymbolLayer *l = QgsSymbolLayerUtils::createLineLayerFromSld( strokeElem );
3144 : 0 : if ( l )
3145 : : {
3146 : 0 : QgsSymbolLayerList layers;
3147 : 0 : layers.append( l );
3148 : 0 : sl->setSubSymbol( new QgsLineSymbol( layers ) );
3149 : 0 : }
3150 : 0 : }
3151 : :
3152 : 0 : return sl.release();
3153 : 0 : }
3154 : :
3155 : :
3156 : : ////////////////////////
3157 : :
3158 : 30 : QgsPointPatternFillSymbolLayer::QgsPointPatternFillSymbolLayer()
3159 : 30 : : QgsImageFillSymbolLayer()
3160 : 60 : {
3161 : 30 : mDistanceX = 15;
3162 : 30 : mDistanceY = 15;
3163 : 30 : mDisplacementX = 0;
3164 : 30 : mDisplacementY = 0;
3165 : 30 : mOffsetX = 0;
3166 : 30 : mOffsetY = 0;
3167 : 30 : setSubSymbol( new QgsMarkerSymbol() );
3168 : 30 : QgsImageFillSymbolLayer::setSubSymbol( nullptr ); //no stroke
3169 : 30 : }
3170 : :
3171 : 36 : QgsPointPatternFillSymbolLayer::~QgsPointPatternFillSymbolLayer()
3172 : 36 : {
3173 : 18 : delete mMarkerSymbol;
3174 : 36 : }
3175 : :
3176 : 0 : void QgsPointPatternFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
3177 : : {
3178 : 0 : QgsImageFillSymbolLayer::setOutputUnit( unit );
3179 : 0 : mDistanceXUnit = unit;
3180 : 0 : mDistanceYUnit = unit;
3181 : 0 : mDisplacementXUnit = unit;
3182 : 0 : mDisplacementYUnit = unit;
3183 : 0 : mOffsetXUnit = unit;
3184 : 0 : mOffsetYUnit = unit;
3185 : 0 : if ( mMarkerSymbol )
3186 : : {
3187 : 0 : mMarkerSymbol->setOutputUnit( unit );
3188 : 0 : }
3189 : :
3190 : 0 : }
3191 : :
3192 : 0 : QgsUnitTypes::RenderUnit QgsPointPatternFillSymbolLayer::outputUnit() const
3193 : : {
3194 : 0 : QgsUnitTypes::RenderUnit unit = QgsImageFillSymbolLayer::outputUnit();
3195 : 0 : if ( mDistanceXUnit != unit || mDistanceYUnit != unit || mDisplacementXUnit != unit || mDisplacementYUnit != unit || mOffsetXUnit != unit || mOffsetYUnit != unit )
3196 : : {
3197 : 0 : return QgsUnitTypes::RenderUnknownUnit;
3198 : : }
3199 : 0 : return unit;
3200 : 0 : }
3201 : :
3202 : 0 : bool QgsPointPatternFillSymbolLayer::usesMapUnits() const
3203 : : {
3204 : 0 : return mDistanceXUnit == QgsUnitTypes::RenderMapUnits || mDistanceXUnit == QgsUnitTypes::RenderMetersInMapUnits
3205 : 0 : || mDistanceYUnit == QgsUnitTypes::RenderMapUnits || mDistanceYUnit == QgsUnitTypes::RenderMetersInMapUnits
3206 : 0 : || mDisplacementXUnit == QgsUnitTypes::RenderMapUnits || mDisplacementXUnit == QgsUnitTypes::RenderMetersInMapUnits
3207 : 0 : || mDisplacementYUnit == QgsUnitTypes::RenderMapUnits || mDisplacementYUnit == QgsUnitTypes::RenderMetersInMapUnits
3208 : 0 : || mOffsetXUnit == QgsUnitTypes::RenderMapUnits || mOffsetXUnit == QgsUnitTypes::RenderMetersInMapUnits
3209 : 0 : || mOffsetYUnit == QgsUnitTypes::RenderMapUnits || mOffsetYUnit == QgsUnitTypes::RenderMetersInMapUnits;
3210 : : }
3211 : :
3212 : 0 : void QgsPointPatternFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
3213 : : {
3214 : 0 : QgsImageFillSymbolLayer::setMapUnitScale( scale );
3215 : 0 : mDistanceXMapUnitScale = scale;
3216 : 0 : mDistanceYMapUnitScale = scale;
3217 : 0 : mDisplacementXMapUnitScale = scale;
3218 : 0 : mDisplacementYMapUnitScale = scale;
3219 : 0 : mOffsetXMapUnitScale = scale;
3220 : 0 : mOffsetYMapUnitScale = scale;
3221 : 0 : }
3222 : :
3223 : 0 : QgsMapUnitScale QgsPointPatternFillSymbolLayer::mapUnitScale() const
3224 : : {
3225 : 0 : if ( QgsImageFillSymbolLayer::mapUnitScale() == mDistanceXMapUnitScale &&
3226 : 0 : mDistanceXMapUnitScale == mDistanceYMapUnitScale &&
3227 : 0 : mDistanceYMapUnitScale == mDisplacementXMapUnitScale &&
3228 : 0 : mDisplacementXMapUnitScale == mDisplacementYMapUnitScale &&
3229 : 0 : mDisplacementYMapUnitScale == mOffsetXMapUnitScale &&
3230 : 0 : mOffsetXMapUnitScale == mOffsetYMapUnitScale )
3231 : : {
3232 : 0 : return mDistanceXMapUnitScale;
3233 : : }
3234 : 0 : return QgsMapUnitScale();
3235 : 0 : }
3236 : :
3237 : 30 : QgsSymbolLayer *QgsPointPatternFillSymbolLayer::create( const QVariantMap &properties )
3238 : : {
3239 : 30 : std::unique_ptr< QgsPointPatternFillSymbolLayer > layer = std::make_unique< QgsPointPatternFillSymbolLayer >();
3240 : 60 : if ( properties.contains( QStringLiteral( "distance_x" ) ) )
3241 : : {
3242 : 60 : layer->setDistanceX( properties[QStringLiteral( "distance_x" )].toDouble() );
3243 : 30 : }
3244 : 60 : if ( properties.contains( QStringLiteral( "distance_y" ) ) )
3245 : : {
3246 : 60 : layer->setDistanceY( properties[QStringLiteral( "distance_y" )].toDouble() );
3247 : 30 : }
3248 : 60 : if ( properties.contains( QStringLiteral( "displacement_x" ) ) )
3249 : : {
3250 : 60 : layer->setDisplacementX( properties[QStringLiteral( "displacement_x" )].toDouble() );
3251 : 30 : }
3252 : 60 : if ( properties.contains( QStringLiteral( "displacement_y" ) ) )
3253 : : {
3254 : 60 : layer->setDisplacementY( properties[QStringLiteral( "displacement_y" )].toDouble() );
3255 : 30 : }
3256 : 60 : if ( properties.contains( QStringLiteral( "offset_x" ) ) )
3257 : : {
3258 : 60 : layer->setOffsetX( properties[QStringLiteral( "offset_x" )].toDouble() );
3259 : 30 : }
3260 : 60 : if ( properties.contains( QStringLiteral( "offset_y" ) ) )
3261 : : {
3262 : 60 : layer->setOffsetY( properties[QStringLiteral( "offset_y" )].toDouble() );
3263 : 30 : }
3264 : :
3265 : 60 : if ( properties.contains( QStringLiteral( "distance_x_unit" ) ) )
3266 : : {
3267 : 60 : layer->setDistanceXUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "distance_x_unit" )].toString() ) );
3268 : 30 : }
3269 : 60 : if ( properties.contains( QStringLiteral( "distance_x_map_unit_scale" ) ) )
3270 : : {
3271 : 60 : layer->setDistanceXMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "distance_x_map_unit_scale" )].toString() ) );
3272 : 30 : }
3273 : 60 : if ( properties.contains( QStringLiteral( "distance_y_unit" ) ) )
3274 : : {
3275 : 60 : layer->setDistanceYUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "distance_y_unit" )].toString() ) );
3276 : 30 : }
3277 : 60 : if ( properties.contains( QStringLiteral( "distance_y_map_unit_scale" ) ) )
3278 : : {
3279 : 60 : layer->setDistanceYMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "distance_y_map_unit_scale" )].toString() ) );
3280 : 30 : }
3281 : 60 : if ( properties.contains( QStringLiteral( "displacement_x_unit" ) ) )
3282 : : {
3283 : 60 : layer->setDisplacementXUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "displacement_x_unit" )].toString() ) );
3284 : 30 : }
3285 : 60 : if ( properties.contains( QStringLiteral( "displacement_x_map_unit_scale" ) ) )
3286 : : {
3287 : 60 : layer->setDisplacementXMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "displacement_x_map_unit_scale" )].toString() ) );
3288 : 30 : }
3289 : 60 : if ( properties.contains( QStringLiteral( "displacement_y_unit" ) ) )
3290 : : {
3291 : 60 : layer->setDisplacementYUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "displacement_y_unit" )].toString() ) );
3292 : 30 : }
3293 : 60 : if ( properties.contains( QStringLiteral( "displacement_y_map_unit_scale" ) ) )
3294 : : {
3295 : 60 : layer->setDisplacementYMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "displacement_y_map_unit_scale" )].toString() ) );
3296 : 30 : }
3297 : 60 : if ( properties.contains( QStringLiteral( "offset_x_unit" ) ) )
3298 : : {
3299 : 60 : layer->setOffsetXUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "offset_x_unit" )].toString() ) );
3300 : 30 : }
3301 : 60 : if ( properties.contains( QStringLiteral( "offset_x_map_unit_scale" ) ) )
3302 : : {
3303 : 60 : layer->setOffsetXMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "offset_x_map_unit_scale" )].toString() ) );
3304 : 30 : }
3305 : 60 : if ( properties.contains( QStringLiteral( "offset_y_unit" ) ) )
3306 : : {
3307 : 60 : layer->setOffsetYUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "offset_y_unit" )].toString() ) );
3308 : 30 : }
3309 : 60 : if ( properties.contains( QStringLiteral( "offset_y_map_unit_scale" ) ) )
3310 : : {
3311 : 60 : layer->setOffsetYMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "offset_y_map_unit_scale" )].toString() ) );
3312 : 30 : }
3313 : :
3314 : 60 : if ( properties.contains( QStringLiteral( "outline_width_unit" ) ) )
3315 : : {
3316 : 60 : layer->setStrokeWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "outline_width_unit" )].toString() ) );
3317 : 30 : }
3318 : 60 : if ( properties.contains( QStringLiteral( "outline_width_map_unit_scale" ) ) )
3319 : : {
3320 : 60 : layer->setStrokeWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "outline_width_map_unit_scale" )].toString() ) );
3321 : 30 : }
3322 : :
3323 : 30 : layer->restoreOldDataDefinedProperties( properties );
3324 : :
3325 : 30 : return layer.release();
3326 : 30 : }
3327 : :
3328 : 0 : QString QgsPointPatternFillSymbolLayer::layerType() const
3329 : : {
3330 : 0 : return QStringLiteral( "PointPatternFill" );
3331 : : }
3332 : :
3333 : 0 : void QgsPointPatternFillSymbolLayer::applyPattern( const QgsSymbolRenderContext &context, QBrush &brush, double distanceX, double distanceY,
3334 : : double displacementX, double displacementY, double offsetX, double offsetY )
3335 : : {
3336 : : //render 3 rows and columns in one go to easily incorporate displacement
3337 : 0 : const QgsRenderContext &ctx = context.renderContext();
3338 : 0 : double width = ctx.convertToPainterUnits( distanceX, mDistanceXUnit, mDistanceXMapUnitScale ) * 2.0;
3339 : 0 : double height = ctx.convertToPainterUnits( distanceY, mDistanceYUnit, mDisplacementYMapUnitScale ) * 2.0;
3340 : :
3341 : 0 : double widthOffset = std::fmod( ctx.convertToPainterUnits( offsetX, mOffsetXUnit, mOffsetXMapUnitScale ), width );
3342 : 0 : double heightOffset = std::fmod( ctx.convertToPainterUnits( offsetY, mOffsetYUnit, mOffsetYMapUnitScale ), height );
3343 : :
3344 : 0 : if ( width > 10000 || height > 10000 ) //protect symbol layer from eating too much memory
3345 : : {
3346 : 0 : QImage img;
3347 : 0 : brush.setTextureImage( img );
3348 : : return;
3349 : 0 : }
3350 : :
3351 : 0 : QImage patternImage( width, height, QImage::Format_ARGB32 );
3352 : 0 : patternImage.fill( 0 );
3353 : 0 : if ( patternImage.isNull() )
3354 : : {
3355 : 0 : brush.setTextureImage( QImage() );
3356 : 0 : return;
3357 : : }
3358 : 0 : if ( mMarkerSymbol )
3359 : : {
3360 : 0 : QPainter p( &patternImage );
3361 : :
3362 : : //marker rendering needs context for drawing on patternImage
3363 : 0 : QgsRenderContext pointRenderContext;
3364 : 0 : pointRenderContext.setRendererScale( context.renderContext().rendererScale() );
3365 : 0 : pointRenderContext.setPainter( &p );
3366 : 0 : pointRenderContext.setScaleFactor( context.renderContext().scaleFactor() );
3367 : :
3368 : 0 : if ( context.renderContext().flags() & QgsRenderContext::Antialiasing )
3369 : 0 : pointRenderContext.setFlag( QgsRenderContext::Antialiasing, true );
3370 : 0 : pointRenderContext.setFlag( QgsRenderContext::LosslessImageRendering, context.renderContext().flags() & QgsRenderContext::LosslessImageRendering );
3371 : :
3372 : 0 : context.renderContext().setPainterFlagsUsingContext( &p );
3373 : 0 : QgsMapToPixel mtp( context.renderContext().mapToPixel().mapUnitsPerPixel() );
3374 : 0 : pointRenderContext.setMapToPixel( mtp );
3375 : 0 : pointRenderContext.setForceVectorOutput( false );
3376 : 0 : pointRenderContext.setExpressionContext( context.renderContext().expressionContext() );
3377 : :
3378 : 0 : mMarkerSymbol->startRender( pointRenderContext, context.fields() );
3379 : :
3380 : : //render points on distance grid
3381 : 0 : for ( double currentX = -width; currentX <= width * 2.0; currentX += width )
3382 : : {
3383 : 0 : for ( double currentY = -height; currentY <= height * 2.0; currentY += height )
3384 : : {
3385 : 0 : mMarkerSymbol->renderPoint( QPointF( currentX + widthOffset, currentY + heightOffset ), context.feature(), pointRenderContext );
3386 : 0 : }
3387 : 0 : }
3388 : :
3389 : : //render displaced points
3390 : 0 : double displacementPixelX = ctx.convertToPainterUnits( displacementX, mDisplacementXUnit, mDisplacementXMapUnitScale );
3391 : 0 : double displacementPixelY = ctx.convertToPainterUnits( displacementY, mDisplacementYUnit, mDisplacementYMapUnitScale );
3392 : 0 : for ( double currentX = -width; currentX <= width * 2.0; currentX += width )
3393 : : {
3394 : 0 : for ( double currentY = -height / 2.0; currentY <= height * 2.0; currentY += height )
3395 : : {
3396 : 0 : mMarkerSymbol->renderPoint( QPointF( currentX + widthOffset + displacementPixelX, currentY + heightOffset ), context.feature(), pointRenderContext );
3397 : 0 : }
3398 : 0 : }
3399 : :
3400 : 0 : for ( double currentX = -width / 2.0; currentX <= width * 2.0; currentX += width )
3401 : : {
3402 : 0 : for ( double currentY = -height; currentY <= height * 2.0; currentY += height / 2.0 )
3403 : : {
3404 : 0 : mMarkerSymbol->renderPoint( QPointF( currentX + widthOffset + ( std::fmod( currentY, height ) != 0 ? displacementPixelX : 0 ), currentY + heightOffset - displacementPixelY ), context.feature(), pointRenderContext );
3405 : 0 : }
3406 : 0 : }
3407 : :
3408 : 0 : mMarkerSymbol->stopRender( pointRenderContext );
3409 : 0 : }
3410 : :
3411 : 0 : if ( !qgsDoubleNear( context.opacity(), 1.0 ) )
3412 : : {
3413 : 0 : QImage transparentImage = patternImage.copy();
3414 : 0 : QgsSymbolLayerUtils::multiplyImageOpacity( &transparentImage, context.opacity() );
3415 : 0 : brush.setTextureImage( transparentImage );
3416 : 0 : }
3417 : : else
3418 : : {
3419 : 0 : brush.setTextureImage( patternImage );
3420 : : }
3421 : 0 : QTransform brushTransform;
3422 : 0 : brush.setTransform( brushTransform );
3423 : 0 : }
3424 : :
3425 : 0 : void QgsPointPatternFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
3426 : : {
3427 : : // if we are using a vector based output, we need to render points as vectors
3428 : : // (OR if the marker has data defined symbology, in which case we need to evaluate this point-by-point)
3429 : 0 : mRenderUsingMarkers = context.renderContext().forceVectorOutput() || mMarkerSymbol->hasDataDefinedProperties();
3430 : :
3431 : 0 : if ( mRenderUsingMarkers )
3432 : : {
3433 : 0 : mMarkerSymbol->startRender( context.renderContext() );
3434 : 0 : }
3435 : : else
3436 : : {
3437 : : // optimised render for screen only, use image based brush
3438 : 0 : applyPattern( context, mBrush, mDistanceX, mDistanceY, mDisplacementX, mDisplacementY, mOffsetX, mOffsetY );
3439 : : }
3440 : :
3441 : 0 : if ( mStroke )
3442 : : {
3443 : 0 : mStroke->startRender( context.renderContext(), context.fields() );
3444 : 0 : }
3445 : 0 : }
3446 : :
3447 : 0 : void QgsPointPatternFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
3448 : : {
3449 : 0 : if ( mRenderUsingMarkers )
3450 : : {
3451 : 0 : mMarkerSymbol->stopRender( context.renderContext() );
3452 : 0 : }
3453 : :
3454 : 0 : if ( mStroke )
3455 : : {
3456 : 0 : mStroke->stopRender( context.renderContext() );
3457 : 0 : }
3458 : 0 : }
3459 : :
3460 : 0 : void QgsPointPatternFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
3461 : : {
3462 : 0 : if ( !mRenderUsingMarkers )
3463 : : {
3464 : : // use image based brush for speed
3465 : 0 : QgsImageFillSymbolLayer::renderPolygon( points, rings, context );
3466 : 0 : return;
3467 : : }
3468 : :
3469 : : // vector based output - so draw dot by dot!
3470 : 0 : QPainter *p = context.renderContext().painter();
3471 : 0 : if ( !p )
3472 : : {
3473 : 0 : return;
3474 : : }
3475 : :
3476 : 0 : double distanceX = mDistanceX;
3477 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDistanceX ) )
3478 : : {
3479 : 0 : context.setOriginalValueVariable( mDistanceX );
3480 : 0 : distanceX = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDistanceX, context.renderContext().expressionContext(), mDistanceX );
3481 : 0 : }
3482 : 0 : const double width = context.renderContext().convertToPainterUnits( distanceX, mDistanceXUnit, mDistanceXMapUnitScale );
3483 : :
3484 : 0 : double distanceY = mDistanceY;
3485 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDistanceY ) )
3486 : : {
3487 : 0 : context.setOriginalValueVariable( mDistanceY );
3488 : 0 : distanceY = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDistanceY, context.renderContext().expressionContext(), mDistanceY );
3489 : 0 : }
3490 : 0 : const double height = context.renderContext().convertToPainterUnits( distanceY, mDistanceYUnit, mDistanceYMapUnitScale );
3491 : :
3492 : 0 : double offsetX = mOffsetX;
3493 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffsetX ) )
3494 : : {
3495 : 0 : context.setOriginalValueVariable( mOffsetX );
3496 : 0 : offsetX = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyOffsetX, context.renderContext().expressionContext(), mOffsetX );
3497 : 0 : }
3498 : 0 : const double widthOffset = std::fmod( context.renderContext().convertToPainterUnits( offsetX, mOffsetXUnit, mOffsetXMapUnitScale ), width );
3499 : :
3500 : 0 : double offsetY = mOffsetY;
3501 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffsetY ) )
3502 : : {
3503 : 0 : context.setOriginalValueVariable( mOffsetY );
3504 : 0 : offsetY = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyOffsetY, context.renderContext().expressionContext(), mOffsetY );
3505 : 0 : }
3506 : 0 : const double heightOffset = std::fmod( context.renderContext().convertToPainterUnits( offsetY, mOffsetYUnit, mOffsetYMapUnitScale ), height );
3507 : :
3508 : 0 : double displacementX = mDisplacementX;
3509 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDisplacementX ) )
3510 : : {
3511 : 0 : context.setOriginalValueVariable( mDisplacementX );
3512 : 0 : displacementX = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDisplacementX, context.renderContext().expressionContext(), mDisplacementX );
3513 : 0 : }
3514 : 0 : const double displacementPixelX = context.renderContext().convertToPainterUnits( displacementX, mDisplacementXUnit, mDisplacementXMapUnitScale );
3515 : :
3516 : 0 : double displacementY = mDisplacementY;
3517 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDisplacementY ) )
3518 : : {
3519 : 0 : context.setOriginalValueVariable( mDisplacementY );
3520 : 0 : displacementY = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDisplacementY, context.renderContext().expressionContext(), mDisplacementY );
3521 : 0 : }
3522 : 0 : const double displacementPixelY = context.renderContext().convertToPainterUnits( displacementY, mDisplacementYUnit, mDisplacementYMapUnitScale );
3523 : :
3524 : 0 : p->setPen( QPen( Qt::NoPen ) );
3525 : :
3526 : 0 : if ( context.selected() )
3527 : : {
3528 : 0 : QColor selColor = context.renderContext().selectionColor();
3529 : 0 : p->setBrush( QBrush( selColor ) );
3530 : 0 : _renderPolygon( p, points, rings, context );
3531 : 0 : }
3532 : :
3533 : 0 : p->save();
3534 : :
3535 : 0 : QPainterPath path;
3536 : 0 : path.addPolygon( points );
3537 : 0 : if ( rings )
3538 : : {
3539 : 0 : for ( const QPolygonF &ring : *rings )
3540 : : {
3541 : 0 : path.addPolygon( ring );
3542 : : }
3543 : 0 : }
3544 : 0 : p->setClipPath( path, Qt::IntersectClip );
3545 : :
3546 : 0 : const double left = points.boundingRect().left();
3547 : 0 : const double top = points.boundingRect().top();
3548 : 0 : const double right = points.boundingRect().right();
3549 : 0 : const double bottom = points.boundingRect().bottom();
3550 : :
3551 : 0 : QgsExpressionContextScope *scope = new QgsExpressionContextScope();
3552 : 0 : QgsExpressionContextScopePopper scopePopper( context.renderContext().expressionContext(), scope );
3553 : 0 : int pointNum = 0;
3554 : 0 : const bool needsExpressionContext = hasDataDefinedProperties();
3555 : :
3556 : 0 : bool alternateColumn = false;
3557 : 0 : int currentCol = -3; // because we actually render a few rows/cols outside the bounds, try to align the col/row numbers to start at 1 for the first visible row/col
3558 : 0 : for ( double currentX = ( std::floor( left / width ) - 2 ) * width; currentX <= right + 2 * width; currentX += width, alternateColumn = !alternateColumn )
3559 : : {
3560 : 0 : if ( needsExpressionContext )
3561 : 0 : scope->addVariable( QgsExpressionContextScope::StaticVariable( QStringLiteral( "symbol_marker_column" ), ++currentCol, true ) );
3562 : :
3563 : 0 : bool alternateRow = false;
3564 : 0 : const double columnX = currentX + widthOffset;
3565 : 0 : int currentRow = -3;
3566 : 0 : for ( double currentY = ( std::floor( top / height ) - 2 ) * height; currentY <= bottom + 2 * height; currentY += height, alternateRow = !alternateRow )
3567 : : {
3568 : 0 : double y = currentY + heightOffset;
3569 : 0 : double x = columnX;
3570 : 0 : if ( alternateRow )
3571 : 0 : x += displacementPixelX;
3572 : :
3573 : 0 : if ( !alternateColumn )
3574 : 0 : y -= displacementPixelY;
3575 : :
3576 : 0 : if ( needsExpressionContext )
3577 : : {
3578 : 0 : scope->addVariable( QgsExpressionContextScope::StaticVariable( QgsExpressionContext::EXPR_GEOMETRY_POINT_NUM, ++pointNum, true ) );
3579 : 0 : scope->addVariable( QgsExpressionContextScope::StaticVariable( QStringLiteral( "symbol_marker_row" ), ++currentRow, true ) );
3580 : 0 : }
3581 : :
3582 : 0 : mMarkerSymbol->renderPoint( QPointF( x, y ), context.feature(), context.renderContext() );
3583 : 0 : }
3584 : 0 : }
3585 : :
3586 : 0 : p->restore();
3587 : :
3588 : 0 : if ( mStroke )
3589 : : {
3590 : 0 : mStroke->renderPolyline( points, context.feature(), context.renderContext(), -1, SELECT_FILL_BORDER && context.selected() );
3591 : 0 : if ( rings )
3592 : : {
3593 : 0 : for ( auto ringIt = rings->constBegin(); ringIt != rings->constEnd(); ++ringIt )
3594 : : {
3595 : 0 : mStroke->renderPolyline( *ringIt, context.feature(), context.renderContext(), -1, SELECT_FILL_BORDER && context.selected() );
3596 : 0 : }
3597 : 0 : }
3598 : 0 : }
3599 : 0 : }
3600 : :
3601 : 0 : QVariantMap QgsPointPatternFillSymbolLayer::properties() const
3602 : : {
3603 : 0 : QVariantMap map;
3604 : 0 : map.insert( QStringLiteral( "distance_x" ), QString::number( mDistanceX ) );
3605 : 0 : map.insert( QStringLiteral( "distance_y" ), QString::number( mDistanceY ) );
3606 : 0 : map.insert( QStringLiteral( "displacement_x" ), QString::number( mDisplacementX ) );
3607 : 0 : map.insert( QStringLiteral( "displacement_y" ), QString::number( mDisplacementY ) );
3608 : 0 : map.insert( QStringLiteral( "offset_x" ), QString::number( mOffsetX ) );
3609 : 0 : map.insert( QStringLiteral( "offset_y" ), QString::number( mOffsetY ) );
3610 : 0 : map.insert( QStringLiteral( "distance_x_unit" ), QgsUnitTypes::encodeUnit( mDistanceXUnit ) );
3611 : 0 : map.insert( QStringLiteral( "distance_y_unit" ), QgsUnitTypes::encodeUnit( mDistanceYUnit ) );
3612 : 0 : map.insert( QStringLiteral( "displacement_x_unit" ), QgsUnitTypes::encodeUnit( mDisplacementXUnit ) );
3613 : 0 : map.insert( QStringLiteral( "displacement_y_unit" ), QgsUnitTypes::encodeUnit( mDisplacementYUnit ) );
3614 : 0 : map.insert( QStringLiteral( "offset_x_unit" ), QgsUnitTypes::encodeUnit( mOffsetXUnit ) );
3615 : 0 : map.insert( QStringLiteral( "offset_y_unit" ), QgsUnitTypes::encodeUnit( mOffsetYUnit ) );
3616 : 0 : map.insert( QStringLiteral( "distance_x_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mDistanceXMapUnitScale ) );
3617 : 0 : map.insert( QStringLiteral( "distance_y_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mDistanceYMapUnitScale ) );
3618 : 0 : map.insert( QStringLiteral( "displacement_x_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mDisplacementXMapUnitScale ) );
3619 : 0 : map.insert( QStringLiteral( "displacement_y_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mDisplacementYMapUnitScale ) );
3620 : 0 : map.insert( QStringLiteral( "offset_x_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mOffsetXMapUnitScale ) );
3621 : 0 : map.insert( QStringLiteral( "offset_y_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mOffsetYMapUnitScale ) );
3622 : 0 : map.insert( QStringLiteral( "outline_width_unit" ), QgsUnitTypes::encodeUnit( mStrokeWidthUnit ) );
3623 : 0 : map.insert( QStringLiteral( "outline_width_map_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mStrokeWidthMapUnitScale ) );
3624 : 0 : return map;
3625 : 0 : }
3626 : :
3627 : 0 : QgsPointPatternFillSymbolLayer *QgsPointPatternFillSymbolLayer::clone() const
3628 : : {
3629 : 0 : QgsPointPatternFillSymbolLayer *clonedLayer = static_cast<QgsPointPatternFillSymbolLayer *>( QgsPointPatternFillSymbolLayer::create( properties() ) );
3630 : 0 : if ( mMarkerSymbol )
3631 : : {
3632 : 0 : clonedLayer->setSubSymbol( mMarkerSymbol->clone() );
3633 : 0 : }
3634 : 0 : copyDataDefinedProperties( clonedLayer );
3635 : 0 : copyPaintEffect( clonedLayer );
3636 : 0 : return clonedLayer;
3637 : 0 : }
3638 : :
3639 : 0 : void QgsPointPatternFillSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
3640 : : {
3641 : 0 : for ( int i = 0; i < mMarkerSymbol->symbolLayerCount(); i++ )
3642 : : {
3643 : 0 : QDomElement symbolizerElem = doc.createElement( QStringLiteral( "se:PolygonSymbolizer" ) );
3644 : 0 : if ( !props.value( QStringLiteral( "uom" ), QString() ).toString().isEmpty() )
3645 : 0 : symbolizerElem.setAttribute( QStringLiteral( "uom" ), props.value( QStringLiteral( "uom" ), QString() ).toString() );
3646 : 0 : element.appendChild( symbolizerElem );
3647 : :
3648 : : // <Geometry>
3649 : 0 : QgsSymbolLayerUtils::createGeometryElement( doc, symbolizerElem, props.value( QStringLiteral( "geom" ), QString() ).toString() );
3650 : :
3651 : 0 : QDomElement fillElem = doc.createElement( QStringLiteral( "se:Fill" ) );
3652 : 0 : symbolizerElem.appendChild( fillElem );
3653 : :
3654 : 0 : QDomElement graphicFillElem = doc.createElement( QStringLiteral( "se:GraphicFill" ) );
3655 : 0 : fillElem.appendChild( graphicFillElem );
3656 : :
3657 : : // store distanceX, distanceY, displacementX, displacementY in a <VendorOption>
3658 : 0 : double dx = QgsSymbolLayerUtils::rescaleUom( mDistanceX, mDistanceXUnit, props );
3659 : 0 : double dy = QgsSymbolLayerUtils::rescaleUom( mDistanceY, mDistanceYUnit, props );
3660 : 0 : QString dist = QgsSymbolLayerUtils::encodePoint( QPointF( dx, dy ) );
3661 : 0 : QDomElement distanceElem = QgsSymbolLayerUtils::createVendorOptionElement( doc, QStringLiteral( "distance" ), dist );
3662 : 0 : symbolizerElem.appendChild( distanceElem );
3663 : :
3664 : 0 : QgsSymbolLayer *layer = mMarkerSymbol->symbolLayer( i );
3665 : 0 : QgsMarkerSymbolLayer *markerLayer = static_cast<QgsMarkerSymbolLayer *>( layer );
3666 : 0 : if ( !markerLayer )
3667 : : {
3668 : 0 : QString errorMsg = QStringLiteral( "MarkerSymbolLayerV2 expected, %1 found. Skip it." ).arg( layer->layerType() );
3669 : 0 : graphicFillElem.appendChild( doc.createComment( errorMsg ) );
3670 : 0 : }
3671 : : else
3672 : : {
3673 : 0 : markerLayer->writeSldMarker( doc, graphicFillElem, props );
3674 : : }
3675 : 0 : }
3676 : 0 : }
3677 : :
3678 : 0 : QgsSymbolLayer *QgsPointPatternFillSymbolLayer::createFromSld( QDomElement &element )
3679 : : {
3680 : 0 : Q_UNUSED( element )
3681 : 0 : return nullptr;
3682 : : }
3683 : :
3684 : 60 : bool QgsPointPatternFillSymbolLayer::setSubSymbol( QgsSymbol *symbol )
3685 : : {
3686 : 60 : if ( !symbol )
3687 : : {
3688 : 0 : return false;
3689 : : }
3690 : :
3691 : 60 : if ( symbol->type() == QgsSymbol::Marker )
3692 : : {
3693 : 60 : QgsMarkerSymbol *markerSymbol = static_cast<QgsMarkerSymbol *>( symbol );
3694 : 60 : delete mMarkerSymbol;
3695 : 60 : mMarkerSymbol = markerSymbol;
3696 : 60 : }
3697 : 60 : return true;
3698 : 60 : }
3699 : :
3700 : 0 : void QgsPointPatternFillSymbolLayer::applyDataDefinedSettings( QgsSymbolRenderContext &context )
3701 : : {
3702 : 0 : if ( !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDistanceX ) && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDistanceY )
3703 : 0 : && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDisplacementX ) && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDisplacementY )
3704 : 0 : && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffsetX ) && !mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffsetY )
3705 : 0 : && ( !mMarkerSymbol || !mMarkerSymbol->hasDataDefinedProperties() ) )
3706 : : {
3707 : 0 : return;
3708 : : }
3709 : :
3710 : 0 : double distanceX = mDistanceX;
3711 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDistanceX ) )
3712 : : {
3713 : 0 : context.setOriginalValueVariable( mDistanceX );
3714 : 0 : distanceX = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDistanceX, context.renderContext().expressionContext(), mDistanceX );
3715 : 0 : }
3716 : 0 : double distanceY = mDistanceY;
3717 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDistanceY ) )
3718 : : {
3719 : 0 : context.setOriginalValueVariable( mDistanceY );
3720 : 0 : distanceY = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDistanceY, context.renderContext().expressionContext(), mDistanceY );
3721 : 0 : }
3722 : 0 : double displacementX = mDisplacementX;
3723 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDisplacementX ) )
3724 : : {
3725 : 0 : context.setOriginalValueVariable( mDisplacementX );
3726 : 0 : displacementX = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDisplacementX, context.renderContext().expressionContext(), mDisplacementX );
3727 : 0 : }
3728 : 0 : double displacementY = mDisplacementY;
3729 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDisplacementY ) )
3730 : : {
3731 : 0 : context.setOriginalValueVariable( mDisplacementY );
3732 : 0 : displacementY = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyDisplacementY, context.renderContext().expressionContext(), mDisplacementY );
3733 : 0 : }
3734 : 0 : double offsetX = mOffsetX;
3735 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffsetX ) )
3736 : : {
3737 : 0 : context.setOriginalValueVariable( mOffsetX );
3738 : 0 : offsetX = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyOffsetX, context.renderContext().expressionContext(), mOffsetX );
3739 : 0 : }
3740 : 0 : double offsetY = mOffsetY;
3741 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffsetY ) )
3742 : : {
3743 : 0 : context.setOriginalValueVariable( mOffsetY );
3744 : 0 : offsetY = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyOffsetY, context.renderContext().expressionContext(), mOffsetY );
3745 : 0 : }
3746 : 0 : applyPattern( context, mBrush, distanceX, distanceY, displacementX, displacementY, offsetX, offsetY );
3747 : 0 : }
3748 : :
3749 : 0 : double QgsPointPatternFillSymbolLayer::estimateMaxBleed( const QgsRenderContext & ) const
3750 : : {
3751 : 0 : return 0;
3752 : : }
3753 : :
3754 : 0 : QSet<QString> QgsPointPatternFillSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
3755 : : {
3756 : 0 : QSet<QString> attributes = QgsImageFillSymbolLayer::usedAttributes( context );
3757 : :
3758 : 0 : if ( mMarkerSymbol )
3759 : 0 : attributes.unite( mMarkerSymbol->usedAttributes( context ) );
3760 : :
3761 : 0 : return attributes;
3762 : 0 : }
3763 : :
3764 : 0 : bool QgsPointPatternFillSymbolLayer::hasDataDefinedProperties() const
3765 : : {
3766 : 0 : if ( QgsSymbolLayer::hasDataDefinedProperties() )
3767 : 0 : return true;
3768 : 0 : if ( mMarkerSymbol && mMarkerSymbol->hasDataDefinedProperties() )
3769 : 0 : return true;
3770 : 0 : return false;
3771 : 0 : }
3772 : :
3773 : 0 : void QgsPointPatternFillSymbolLayer::setColor( const QColor &c )
3774 : : {
3775 : 0 : mColor = c;
3776 : 0 : if ( mMarkerSymbol )
3777 : 0 : mMarkerSymbol->setColor( c );
3778 : 0 : }
3779 : :
3780 : 0 : QColor QgsPointPatternFillSymbolLayer::color() const
3781 : : {
3782 : 0 : return mMarkerSymbol ? mMarkerSymbol->color() : mColor;
3783 : : }
3784 : :
3785 : : //////////////
3786 : :
3787 : :
3788 : 0 : QgsCentroidFillSymbolLayer::QgsCentroidFillSymbolLayer()
3789 : 0 : {
3790 : 0 : setSubSymbol( new QgsMarkerSymbol() );
3791 : 0 : }
3792 : :
3793 : 0 : QgsSymbolLayer *QgsCentroidFillSymbolLayer::create( const QVariantMap &properties )
3794 : : {
3795 : 0 : std::unique_ptr< QgsCentroidFillSymbolLayer > sl = std::make_unique< QgsCentroidFillSymbolLayer >();
3796 : :
3797 : 0 : if ( properties.contains( QStringLiteral( "point_on_surface" ) ) )
3798 : 0 : sl->setPointOnSurface( properties[QStringLiteral( "point_on_surface" )].toInt() != 0 );
3799 : 0 : if ( properties.contains( QStringLiteral( "point_on_all_parts" ) ) )
3800 : 0 : sl->setPointOnAllParts( properties[QStringLiteral( "point_on_all_parts" )].toInt() != 0 );
3801 : 0 : if ( properties.contains( QStringLiteral( "clip_points" ) ) )
3802 : 0 : sl->setClipPoints( properties[QStringLiteral( "clip_points" )].toInt() != 0 );
3803 : 0 : if ( properties.contains( QStringLiteral( "clip_on_current_part_only" ) ) )
3804 : 0 : sl->setClipOnCurrentPartOnly( properties[QStringLiteral( "clip_on_current_part_only" )].toInt() != 0 );
3805 : :
3806 : 0 : sl->restoreOldDataDefinedProperties( properties );
3807 : :
3808 : 0 : return sl.release();
3809 : 0 : }
3810 : :
3811 : 0 : QString QgsCentroidFillSymbolLayer::layerType() const
3812 : : {
3813 : 0 : return QStringLiteral( "CentroidFill" );
3814 : : }
3815 : :
3816 : 0 : void QgsCentroidFillSymbolLayer::setColor( const QColor &color )
3817 : : {
3818 : 0 : mMarker->setColor( color );
3819 : 0 : mColor = color;
3820 : 0 : }
3821 : :
3822 : 0 : QColor QgsCentroidFillSymbolLayer::color() const
3823 : : {
3824 : 0 : return mMarker ? mMarker->color() : mColor;
3825 : : }
3826 : :
3827 : 0 : void QgsCentroidFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
3828 : : {
3829 : 0 : mMarker->startRender( context.renderContext(), context.fields() );
3830 : :
3831 : 0 : mCurrentFeatureId = -1;
3832 : 0 : mBiggestPartIndex = 0;
3833 : 0 : }
3834 : :
3835 : 0 : void QgsCentroidFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
3836 : : {
3837 : 0 : mMarker->stopRender( context.renderContext() );
3838 : 0 : }
3839 : :
3840 : 0 : void QgsCentroidFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
3841 : : {
3842 : 0 : Part part;
3843 : 0 : part.exterior = points;
3844 : 0 : if ( rings )
3845 : 0 : part.rings = *rings;
3846 : :
3847 : 0 : if ( mRenderingFeature )
3848 : : {
3849 : : // in the middle of rendering a possibly multi-part feature, so we collect all the parts and defer the actual rendering
3850 : : // until after we've received the final part
3851 : 0 : mFeatureSymbolOpacity = context.opacity();
3852 : 0 : mCurrentParts << part;
3853 : 0 : }
3854 : : else
3855 : : {
3856 : : // not rendering a feature, so we can just render the polygon immediately
3857 : 0 : const double prevOpacity = mMarker->opacity();
3858 : 0 : mMarker->setOpacity( mMarker->opacity() * context.opacity() );
3859 : 0 : render( context.renderContext(), QVector<Part>() << part, context.feature() ? *context.feature() : QgsFeature(), context.selected() );
3860 : 0 : mMarker->setOpacity( prevOpacity );
3861 : : }
3862 : 0 : }
3863 : :
3864 : 0 : void QgsCentroidFillSymbolLayer::startFeatureRender( const QgsFeature &, QgsRenderContext & )
3865 : : {
3866 : 0 : mRenderingFeature = true;
3867 : 0 : mCurrentParts.clear();
3868 : 0 : }
3869 : :
3870 : 0 : void QgsCentroidFillSymbolLayer::stopFeatureRender( const QgsFeature &feature, QgsRenderContext &context )
3871 : : {
3872 : 0 : mRenderingFeature = false;
3873 : :
3874 : 0 : const double prevOpacity = mMarker->opacity();
3875 : 0 : mMarker->setOpacity( mMarker->opacity() * mFeatureSymbolOpacity );
3876 : :
3877 : 0 : render( context, mCurrentParts, feature, false );
3878 : 0 : mFeatureSymbolOpacity = 1;
3879 : 0 : mMarker->setOpacity( prevOpacity );
3880 : 0 : }
3881 : :
3882 : 0 : void QgsCentroidFillSymbolLayer::render( QgsRenderContext &context, const QVector<QgsCentroidFillSymbolLayer::Part> &parts, const QgsFeature &feature, bool selected )
3883 : : {
3884 : 0 : bool pointOnAllParts = mPointOnAllParts;
3885 : 0 : bool pointOnSurface = mPointOnSurface;
3886 : 0 : bool clipPoints = mClipPoints;
3887 : 0 : bool clipOnCurrentPartOnly = mClipOnCurrentPartOnly;
3888 : :
3889 : : // TODO add expressions support
3890 : :
3891 : 0 : QVector< QgsGeometry > geometryParts;
3892 : 0 : geometryParts.reserve( parts.size() );
3893 : 0 : QPainterPath globalPath;
3894 : :
3895 : 0 : int maxArea = 0;
3896 : 0 : int maxAreaPartIdx = 0;
3897 : :
3898 : 0 : for ( int i = 0; i < parts.size(); i++ )
3899 : : {
3900 : 0 : const Part part = parts[i];
3901 : 0 : QgsGeometry geom = QgsGeometry::fromQPolygonF( part.exterior );
3902 : :
3903 : 0 : if ( !geom.isNull() && !part.rings.empty() )
3904 : : {
3905 : 0 : QgsPolygon *poly = qgsgeometry_cast< QgsPolygon * >( geom.get() );
3906 : :
3907 : 0 : if ( !pointOnAllParts )
3908 : : {
3909 : 0 : int area = poly->area();
3910 : :
3911 : 0 : if ( area > maxArea )
3912 : : {
3913 : 0 : maxArea = area;
3914 : 0 : maxAreaPartIdx = i;
3915 : 0 : }
3916 : 0 : }
3917 : 0 : }
3918 : :
3919 : 0 : if ( clipPoints && !clipOnCurrentPartOnly )
3920 : : {
3921 : 0 : globalPath.addPolygon( part.exterior );
3922 : 0 : for ( const QPolygonF &ring : part.rings )
3923 : : {
3924 : 0 : globalPath.addPolygon( ring );
3925 : : }
3926 : 0 : }
3927 : 0 : }
3928 : :
3929 : 0 : for ( int i = 0; i < parts.size(); i++ )
3930 : : {
3931 : 0 : if ( !pointOnAllParts && i != maxAreaPartIdx )
3932 : 0 : continue;
3933 : :
3934 : 0 : const Part part = parts[i];
3935 : :
3936 : 0 : if ( clipPoints )
3937 : : {
3938 : 0 : QPainterPath path;
3939 : :
3940 : 0 : if ( clipOnCurrentPartOnly )
3941 : : {
3942 : 0 : path.addPolygon( part.exterior );
3943 : 0 : for ( const QPolygonF &ring : part.rings )
3944 : : {
3945 : 0 : path.addPolygon( ring );
3946 : : }
3947 : 0 : }
3948 : : else
3949 : : {
3950 : 0 : path = globalPath;
3951 : : }
3952 : :
3953 : 0 : context.painter()->save();
3954 : 0 : context.painter()->setClipPath( path );
3955 : 0 : }
3956 : :
3957 : 0 : QPointF centroid = pointOnSurface ? QgsSymbolLayerUtils::polygonPointOnSurface( part.exterior, &part.rings ) : QgsSymbolLayerUtils::polygonCentroid( part.exterior );
3958 : 0 : mMarker->renderPoint( centroid, feature.isValid() ? &feature : nullptr, context, -1, selected );
3959 : :
3960 : 0 : if ( clipPoints )
3961 : : {
3962 : 0 : context.painter()->restore();
3963 : 0 : }
3964 : 0 : }
3965 : 0 : }
3966 : :
3967 : 0 : QVariantMap QgsCentroidFillSymbolLayer::properties() const
3968 : : {
3969 : 0 : QVariantMap map;
3970 : 0 : map[QStringLiteral( "point_on_surface" )] = QString::number( mPointOnSurface );
3971 : 0 : map[QStringLiteral( "point_on_all_parts" )] = QString::number( mPointOnAllParts );
3972 : 0 : map[QStringLiteral( "clip_points" )] = QString::number( mClipPoints );
3973 : 0 : map[QStringLiteral( "clip_on_current_part_only" )] = QString::number( mClipOnCurrentPartOnly );
3974 : 0 : return map;
3975 : 0 : }
3976 : :
3977 : 0 : QgsCentroidFillSymbolLayer *QgsCentroidFillSymbolLayer::clone() const
3978 : : {
3979 : 0 : std::unique_ptr< QgsCentroidFillSymbolLayer > x = std::make_unique< QgsCentroidFillSymbolLayer >();
3980 : 0 : x->mAngle = mAngle;
3981 : 0 : x->mColor = mColor;
3982 : 0 : x->setSubSymbol( mMarker->clone() );
3983 : 0 : x->setPointOnSurface( mPointOnSurface );
3984 : 0 : x->setPointOnAllParts( mPointOnAllParts );
3985 : 0 : x->setClipPoints( mClipPoints );
3986 : 0 : x->setClipOnCurrentPartOnly( mClipOnCurrentPartOnly );
3987 : 0 : copyDataDefinedProperties( x.get() );
3988 : 0 : copyPaintEffect( x.get() );
3989 : 0 : return x.release();
3990 : 0 : }
3991 : :
3992 : 0 : void QgsCentroidFillSymbolLayer::toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
3993 : : {
3994 : : // SLD 1.0 specs says: "if a line, polygon, or raster geometry is
3995 : : // used with PointSymbolizer, then the semantic is to use the centroid
3996 : : // of the geometry, or any similar representative point.
3997 : 0 : mMarker->toSld( doc, element, props );
3998 : 0 : }
3999 : :
4000 : 0 : QgsSymbolLayer *QgsCentroidFillSymbolLayer::createFromSld( QDomElement &element )
4001 : : {
4002 : 0 : QgsSymbolLayer *l = QgsSymbolLayerUtils::createMarkerLayerFromSld( element );
4003 : 0 : if ( !l )
4004 : 0 : return nullptr;
4005 : :
4006 : 0 : QgsSymbolLayerList layers;
4007 : 0 : layers.append( l );
4008 : 0 : std::unique_ptr< QgsMarkerSymbol > marker( new QgsMarkerSymbol( layers ) );
4009 : :
4010 : 0 : std::unique_ptr< QgsCentroidFillSymbolLayer > sl = std::make_unique< QgsCentroidFillSymbolLayer >();
4011 : 0 : sl->setSubSymbol( marker.release() );
4012 : 0 : sl->setPointOnAllParts( false );
4013 : 0 : return sl.release();
4014 : 0 : }
4015 : :
4016 : :
4017 : 0 : QgsSymbol *QgsCentroidFillSymbolLayer::subSymbol()
4018 : : {
4019 : 0 : return mMarker.get();
4020 : : }
4021 : :
4022 : 0 : bool QgsCentroidFillSymbolLayer::setSubSymbol( QgsSymbol *symbol )
4023 : : {
4024 : 0 : if ( !symbol || symbol->type() != QgsSymbol::Marker )
4025 : : {
4026 : 0 : delete symbol;
4027 : 0 : return false;
4028 : : }
4029 : :
4030 : 0 : mMarker.reset( static_cast<QgsMarkerSymbol *>( symbol ) );
4031 : 0 : mColor = mMarker->color();
4032 : 0 : return true;
4033 : 0 : }
4034 : :
4035 : 0 : QSet<QString> QgsCentroidFillSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
4036 : : {
4037 : 0 : QSet<QString> attributes = QgsFillSymbolLayer::usedAttributes( context );
4038 : :
4039 : 0 : if ( mMarker )
4040 : 0 : attributes.unite( mMarker->usedAttributes( context ) );
4041 : :
4042 : 0 : return attributes;
4043 : 0 : }
4044 : :
4045 : 0 : bool QgsCentroidFillSymbolLayer::hasDataDefinedProperties() const
4046 : : {
4047 : 0 : if ( QgsSymbolLayer::hasDataDefinedProperties() )
4048 : 0 : return true;
4049 : 0 : if ( mMarker && mMarker->hasDataDefinedProperties() )
4050 : 0 : return true;
4051 : 0 : return false;
4052 : 0 : }
4053 : :
4054 : 0 : bool QgsCentroidFillSymbolLayer::canCauseArtifactsBetweenAdjacentTiles() const
4055 : : {
4056 : 0 : return true;
4057 : : }
4058 : :
4059 : 0 : void QgsCentroidFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
4060 : : {
4061 : 0 : if ( mMarker )
4062 : : {
4063 : 0 : mMarker->setOutputUnit( unit );
4064 : 0 : }
4065 : 0 : }
4066 : :
4067 : 0 : QgsUnitTypes::RenderUnit QgsCentroidFillSymbolLayer::outputUnit() const
4068 : : {
4069 : 0 : if ( mMarker )
4070 : : {
4071 : 0 : return mMarker->outputUnit();
4072 : : }
4073 : 0 : return QgsUnitTypes::RenderUnknownUnit; //mOutputUnit;
4074 : 0 : }
4075 : :
4076 : 0 : bool QgsCentroidFillSymbolLayer::usesMapUnits() const
4077 : : {
4078 : 0 : if ( mMarker )
4079 : : {
4080 : 0 : return mMarker->usesMapUnits();
4081 : : }
4082 : 0 : return false;
4083 : 0 : }
4084 : :
4085 : 0 : void QgsCentroidFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
4086 : : {
4087 : 0 : if ( mMarker )
4088 : : {
4089 : 0 : mMarker->setMapUnitScale( scale );
4090 : 0 : }
4091 : 0 : }
4092 : :
4093 : 0 : QgsMapUnitScale QgsCentroidFillSymbolLayer::mapUnitScale() const
4094 : : {
4095 : 0 : if ( mMarker )
4096 : : {
4097 : 0 : return mMarker->mapUnitScale();
4098 : : }
4099 : 0 : return QgsMapUnitScale();
4100 : 0 : }
4101 : :
4102 : :
4103 : :
4104 : :
4105 : 0 : QgsRasterFillSymbolLayer::QgsRasterFillSymbolLayer( const QString &imageFilePath )
4106 : 0 : : QgsImageFillSymbolLayer()
4107 : 0 : , mImageFilePath( imageFilePath )
4108 : 0 : {
4109 : 0 : QgsImageFillSymbolLayer::setSubSymbol( nullptr ); //disable sub symbol
4110 : 0 : }
4111 : :
4112 : 0 : QgsSymbolLayer *QgsRasterFillSymbolLayer::create( const QVariantMap &properties )
4113 : : {
4114 : 0 : FillCoordinateMode mode = QgsRasterFillSymbolLayer::Feature;
4115 : 0 : double alpha = 1.0;
4116 : 0 : QPointF offset;
4117 : 0 : double angle = 0.0;
4118 : 0 : double width = 0.0;
4119 : :
4120 : 0 : QString imagePath;
4121 : 0 : if ( properties.contains( QStringLiteral( "imageFile" ) ) )
4122 : : {
4123 : 0 : imagePath = properties[QStringLiteral( "imageFile" )].toString();
4124 : 0 : }
4125 : 0 : if ( properties.contains( QStringLiteral( "coordinate_mode" ) ) )
4126 : : {
4127 : 0 : mode = static_cast< FillCoordinateMode >( properties[QStringLiteral( "coordinate_mode" )].toInt() );
4128 : 0 : }
4129 : 0 : if ( properties.contains( QStringLiteral( "alpha" ) ) )
4130 : : {
4131 : 0 : alpha = properties[QStringLiteral( "alpha" )].toDouble();
4132 : 0 : }
4133 : 0 : if ( properties.contains( QStringLiteral( "offset" ) ) )
4134 : : {
4135 : 0 : offset = QgsSymbolLayerUtils::decodePoint( properties[QStringLiteral( "offset" )].toString() );
4136 : 0 : }
4137 : 0 : if ( properties.contains( QStringLiteral( "angle" ) ) )
4138 : : {
4139 : 0 : angle = properties[QStringLiteral( "angle" )].toDouble();
4140 : 0 : }
4141 : 0 : if ( properties.contains( QStringLiteral( "width" ) ) )
4142 : : {
4143 : 0 : width = properties[QStringLiteral( "width" )].toDouble();
4144 : 0 : }
4145 : 0 : std::unique_ptr< QgsRasterFillSymbolLayer > symbolLayer = std::make_unique< QgsRasterFillSymbolLayer >( imagePath );
4146 : 0 : symbolLayer->setCoordinateMode( mode );
4147 : 0 : symbolLayer->setOpacity( alpha );
4148 : 0 : symbolLayer->setOffset( offset );
4149 : 0 : symbolLayer->setAngle( angle );
4150 : 0 : symbolLayer->setWidth( width );
4151 : 0 : if ( properties.contains( QStringLiteral( "offset_unit" ) ) )
4152 : : {
4153 : 0 : symbolLayer->setOffsetUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "offset_unit" )].toString() ) );
4154 : 0 : }
4155 : 0 : if ( properties.contains( QStringLiteral( "offset_map_unit_scale" ) ) )
4156 : : {
4157 : 0 : symbolLayer->setOffsetMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "offset_map_unit_scale" )].toString() ) );
4158 : 0 : }
4159 : 0 : if ( properties.contains( QStringLiteral( "width_unit" ) ) )
4160 : : {
4161 : 0 : symbolLayer->setWidthUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "width_unit" )].toString() ) );
4162 : 0 : }
4163 : 0 : if ( properties.contains( QStringLiteral( "width_map_unit_scale" ) ) )
4164 : : {
4165 : 0 : symbolLayer->setWidthMapUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "width_map_unit_scale" )].toString() ) );
4166 : 0 : }
4167 : :
4168 : 0 : symbolLayer->restoreOldDataDefinedProperties( properties );
4169 : :
4170 : 0 : return symbolLayer.release();
4171 : 0 : }
4172 : :
4173 : 0 : void QgsRasterFillSymbolLayer::resolvePaths( QVariantMap &properties, const QgsPathResolver &pathResolver, bool saving )
4174 : : {
4175 : 0 : QVariantMap::iterator it = properties.find( QStringLiteral( "imageFile" ) );
4176 : 0 : if ( it != properties.end() )
4177 : : {
4178 : 0 : if ( saving )
4179 : 0 : it.value() = pathResolver.writePath( it.value().toString() );
4180 : : else
4181 : 0 : it.value() = pathResolver.readPath( it.value().toString() );
4182 : 0 : }
4183 : 0 : }
4184 : :
4185 : 0 : bool QgsRasterFillSymbolLayer::setSubSymbol( QgsSymbol *symbol )
4186 : : {
4187 : : Q_UNUSED( symbol )
4188 : 0 : return true;
4189 : : }
4190 : :
4191 : 0 : QString QgsRasterFillSymbolLayer::layerType() const
4192 : : {
4193 : 0 : return QStringLiteral( "RasterFill" );
4194 : : }
4195 : :
4196 : 0 : void QgsRasterFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
4197 : : {
4198 : 0 : QPainter *p = context.renderContext().painter();
4199 : 0 : if ( !p )
4200 : : {
4201 : 0 : return;
4202 : : }
4203 : :
4204 : 0 : QPointF offset = mOffset;
4205 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOffset ) )
4206 : : {
4207 : 0 : context.setOriginalValueVariable( QgsSymbolLayerUtils::encodePoint( mOffset ) );
4208 : 0 : const QVariant val = mDataDefinedProperties.value( QgsSymbolLayer::PropertyOffset, context.renderContext().expressionContext(), QString() );
4209 : 0 : bool ok = false;
4210 : 0 : const QPointF res = QgsSymbolLayerUtils::toPoint( val, &ok );
4211 : 0 : if ( ok )
4212 : 0 : offset = res;
4213 : 0 : }
4214 : 0 : if ( !offset.isNull() )
4215 : : {
4216 : 0 : offset.setX( context.renderContext().convertToPainterUnits( offset.x(), mOffsetUnit, mOffsetMapUnitScale ) );
4217 : 0 : offset.setY( context.renderContext().convertToPainterUnits( offset.y(), mOffsetUnit, mOffsetMapUnitScale ) );
4218 : 0 : p->translate( offset );
4219 : 0 : }
4220 : 0 : if ( mCoordinateMode == Feature )
4221 : : {
4222 : 0 : QRectF boundingRect = points.boundingRect();
4223 : 0 : mBrush.setTransform( mBrush.transform().translate( boundingRect.left() - mBrush.transform().dx(),
4224 : 0 : boundingRect.top() - mBrush.transform().dy() ) );
4225 : 0 : }
4226 : :
4227 : 0 : QgsImageFillSymbolLayer::renderPolygon( points, rings, context );
4228 : 0 : if ( !offset.isNull() )
4229 : : {
4230 : 0 : p->translate( -offset );
4231 : 0 : }
4232 : 0 : }
4233 : :
4234 : 0 : void QgsRasterFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
4235 : : {
4236 : 0 : applyPattern( mBrush, mImageFilePath, mWidth, mOpacity * context.opacity(), context );
4237 : 0 : }
4238 : :
4239 : 0 : void QgsRasterFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
4240 : : {
4241 : 0 : Q_UNUSED( context )
4242 : 0 : }
4243 : :
4244 : 0 : QVariantMap QgsRasterFillSymbolLayer::properties() const
4245 : : {
4246 : 0 : QVariantMap map;
4247 : 0 : map[QStringLiteral( "imageFile" )] = mImageFilePath;
4248 : 0 : map[QStringLiteral( "coordinate_mode" )] = QString::number( mCoordinateMode );
4249 : 0 : map[QStringLiteral( "alpha" )] = QString::number( mOpacity );
4250 : 0 : map[QStringLiteral( "offset" )] = QgsSymbolLayerUtils::encodePoint( mOffset );
4251 : 0 : map[QStringLiteral( "offset_unit" )] = QgsUnitTypes::encodeUnit( mOffsetUnit );
4252 : 0 : map[QStringLiteral( "offset_map_unit_scale" )] = QgsSymbolLayerUtils::encodeMapUnitScale( mOffsetMapUnitScale );
4253 : 0 : map[QStringLiteral( "angle" )] = QString::number( mAngle );
4254 : 0 : map[QStringLiteral( "width" )] = QString::number( mWidth );
4255 : 0 : map[QStringLiteral( "width_unit" )] = QgsUnitTypes::encodeUnit( mWidthUnit );
4256 : 0 : map[QStringLiteral( "width_map_unit_scale" )] = QgsSymbolLayerUtils::encodeMapUnitScale( mWidthMapUnitScale );
4257 : 0 : return map;
4258 : 0 : }
4259 : :
4260 : 0 : QgsRasterFillSymbolLayer *QgsRasterFillSymbolLayer::clone() const
4261 : : {
4262 : 0 : std::unique_ptr< QgsRasterFillSymbolLayer > sl = std::make_unique< QgsRasterFillSymbolLayer >( mImageFilePath );
4263 : 0 : sl->setCoordinateMode( mCoordinateMode );
4264 : 0 : sl->setOpacity( mOpacity );
4265 : 0 : sl->setOffset( mOffset );
4266 : 0 : sl->setOffsetUnit( mOffsetUnit );
4267 : 0 : sl->setOffsetMapUnitScale( mOffsetMapUnitScale );
4268 : 0 : sl->setAngle( mAngle );
4269 : 0 : sl->setWidth( mWidth );
4270 : 0 : sl->setWidthUnit( mWidthUnit );
4271 : 0 : sl->setWidthMapUnitScale( mWidthMapUnitScale );
4272 : 0 : copyDataDefinedProperties( sl.get() );
4273 : 0 : copyPaintEffect( sl.get() );
4274 : 0 : return sl.release();
4275 : 0 : }
4276 : :
4277 : 0 : double QgsRasterFillSymbolLayer::estimateMaxBleed( const QgsRenderContext &context ) const
4278 : : {
4279 : 0 : return context.convertToPainterUnits( std::max( std::fabs( mOffset.x() ), std::fabs( mOffset.y() ) ), mOffsetUnit, mOffsetMapUnitScale );
4280 : : }
4281 : :
4282 : 0 : bool QgsRasterFillSymbolLayer::usesMapUnits() const
4283 : : {
4284 : 0 : return mWidthUnit == QgsUnitTypes::RenderMapUnits || mWidthUnit == QgsUnitTypes::RenderMetersInMapUnits
4285 : 0 : || mOffsetUnit == QgsUnitTypes::RenderMapUnits || mOffsetUnit == QgsUnitTypes::RenderMetersInMapUnits;
4286 : : }
4287 : :
4288 : 0 : void QgsRasterFillSymbolLayer::setImageFilePath( const QString &imagePath )
4289 : : {
4290 : 0 : mImageFilePath = imagePath;
4291 : 0 : }
4292 : :
4293 : 0 : void QgsRasterFillSymbolLayer::setCoordinateMode( const QgsRasterFillSymbolLayer::FillCoordinateMode mode )
4294 : : {
4295 : 0 : mCoordinateMode = mode;
4296 : 0 : }
4297 : :
4298 : 0 : void QgsRasterFillSymbolLayer::setOpacity( const double opacity )
4299 : : {
4300 : 0 : mOpacity = opacity;
4301 : 0 : }
4302 : :
4303 : 0 : void QgsRasterFillSymbolLayer::applyDataDefinedSettings( QgsSymbolRenderContext &context )
4304 : : {
4305 : 0 : if ( !dataDefinedProperties().hasActiveProperties() )
4306 : 0 : return; // shortcut
4307 : :
4308 : 0 : bool hasWidthExpression = mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyWidth );
4309 : 0 : bool hasFileExpression = mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyFile );
4310 : 0 : bool hasOpacityExpression = mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyOpacity );
4311 : 0 : bool hasAngleExpression = mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyAngle );
4312 : :
4313 : 0 : if ( !hasWidthExpression && !hasAngleExpression && !hasOpacityExpression && !hasFileExpression )
4314 : : {
4315 : 0 : return; //no data defined settings
4316 : : }
4317 : :
4318 : : bool ok;
4319 : 0 : if ( hasAngleExpression )
4320 : : {
4321 : 0 : context.setOriginalValueVariable( mAngle );
4322 : 0 : double nextAngle = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyAngle, context.renderContext().expressionContext(), 0, &ok );
4323 : 0 : if ( ok )
4324 : 0 : mNextAngle = nextAngle;
4325 : 0 : }
4326 : :
4327 : 0 : if ( !hasWidthExpression && !hasOpacityExpression && !hasFileExpression )
4328 : : {
4329 : 0 : return; //nothing further to do
4330 : : }
4331 : :
4332 : 0 : double width = mWidth;
4333 : 0 : if ( hasWidthExpression )
4334 : : {
4335 : 0 : context.setOriginalValueVariable( mWidth );
4336 : 0 : width = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyWidth, context.renderContext().expressionContext(), width );
4337 : 0 : }
4338 : 0 : double opacity = mOpacity;
4339 : 0 : if ( hasOpacityExpression )
4340 : : {
4341 : 0 : context.setOriginalValueVariable( mOpacity );
4342 : 0 : opacity = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyOpacity, context.renderContext().expressionContext(), opacity * 100 ) / 100.0;
4343 : 0 : }
4344 : 0 : QString file = mImageFilePath;
4345 : 0 : if ( hasFileExpression )
4346 : : {
4347 : 0 : context.setOriginalValueVariable( mImageFilePath );
4348 : 0 : file = context.renderContext().pathResolver().readPath( mDataDefinedProperties.valueAsString( QgsSymbolLayer::PropertyFile, context.renderContext().expressionContext(), file ) );
4349 : 0 : }
4350 : 0 : applyPattern( mBrush, file, width, opacity, context );
4351 : 0 : }
4352 : :
4353 : 0 : bool QgsRasterFillSymbolLayer::applyBrushTransformFromContext() const
4354 : : {
4355 : 0 : return false;
4356 : : }
4357 : :
4358 : 0 : void QgsRasterFillSymbolLayer::applyPattern( QBrush &brush, const QString &imageFilePath, const double width, const double alpha, const QgsSymbolRenderContext &context )
4359 : : {
4360 : 0 : QSize size;
4361 : 0 : if ( width > 0 )
4362 : : {
4363 : 0 : if ( mWidthUnit != QgsUnitTypes::RenderPercentage )
4364 : : {
4365 : 0 : size.setWidth( context.renderContext().convertToPainterUnits( width, mWidthUnit, mWidthMapUnitScale ) );
4366 : 0 : }
4367 : : else
4368 : : {
4369 : : // RenderPercentage Unit Type takes original image size
4370 : 0 : size = QgsApplication::imageCache()->originalSize( imageFilePath );
4371 : 0 : if ( size.isEmpty() )
4372 : 0 : return;
4373 : :
4374 : 0 : size.setWidth( ( width * size.width() ) / 100.0 );
4375 : :
4376 : : // don't render symbols with size below one or above 10,000 pixels
4377 : 0 : if ( static_cast< int >( size.width() ) < 1 || 10000.0 < size.width() )
4378 : 0 : return;
4379 : : }
4380 : :
4381 : 0 : size.setHeight( 0 );
4382 : 0 : }
4383 : :
4384 : : bool cached;
4385 : 0 : QImage img = QgsApplication::imageCache()->pathAsImage( imageFilePath, size, true, alpha, cached, ( context.renderContext().flags() & QgsRenderContext::RenderBlocking ) );
4386 : 0 : if ( img.isNull() )
4387 : 0 : return;
4388 : :
4389 : 0 : brush.setTextureImage( img );
4390 : 0 : }
4391 : :
4392 : :
4393 : : //
4394 : : // QgsRandomMarkerFillSymbolLayer
4395 : : //
4396 : :
4397 : 0 : QgsRandomMarkerFillSymbolLayer::QgsRandomMarkerFillSymbolLayer( int pointCount, CountMethod method, double densityArea, unsigned long seed )
4398 : 0 : : mCountMethod( method )
4399 : 0 : , mPointCount( pointCount )
4400 : 0 : , mDensityArea( densityArea )
4401 : 0 : , mSeed( seed )
4402 : 0 : {
4403 : 0 : setSubSymbol( new QgsMarkerSymbol() );
4404 : 0 : }
4405 : :
4406 : 0 : QgsSymbolLayer *QgsRandomMarkerFillSymbolLayer::create( const QVariantMap &properties )
4407 : : {
4408 : 0 : const CountMethod countMethod = static_cast< CountMethod >( properties.value( QStringLiteral( "count_method" ), QStringLiteral( "0" ) ).toInt() );
4409 : 0 : const int pointCount = properties.value( QStringLiteral( "point_count" ), QStringLiteral( "10" ) ).toInt();
4410 : 0 : const double densityArea = properties.value( QStringLiteral( "density_area" ), QStringLiteral( "250.0" ) ).toDouble();
4411 : :
4412 : 0 : unsigned long seed = 0;
4413 : 0 : if ( properties.contains( QStringLiteral( "seed" ) ) )
4414 : 0 : seed = properties.value( QStringLiteral( "seed" ) ).toUInt();
4415 : : else
4416 : : {
4417 : : // if we a creating a new random marker fill from scratch, we default to a random seed
4418 : : // because seed based fills are just nicer for users vs seeing points jump around with every map refresh
4419 : 0 : std::random_device rd;
4420 : 0 : std::mt19937 mt( seed == 0 ? rd() : seed );
4421 : 0 : std::uniform_int_distribution<> uniformDist( 1, 999999999 );
4422 : 0 : seed = uniformDist( mt );
4423 : 0 : }
4424 : :
4425 : 0 : std::unique_ptr< QgsRandomMarkerFillSymbolLayer > sl = std::make_unique< QgsRandomMarkerFillSymbolLayer >( pointCount, countMethod, densityArea, seed );
4426 : :
4427 : 0 : if ( properties.contains( QStringLiteral( "density_area_unit" ) ) )
4428 : 0 : sl->setDensityAreaUnit( QgsUnitTypes::decodeRenderUnit( properties[QStringLiteral( "density_area_unit" )].toString() ) );
4429 : 0 : if ( properties.contains( QStringLiteral( "density_area_unit_scale" ) ) )
4430 : 0 : sl->setDensityAreaUnitScale( QgsSymbolLayerUtils::decodeMapUnitScale( properties[QStringLiteral( "density_area_unit_scale" )].toString() ) );
4431 : :
4432 : 0 : if ( properties.contains( QStringLiteral( "clip_points" ) ) )
4433 : : {
4434 : 0 : sl->setClipPoints( properties[QStringLiteral( "clip_points" )].toInt() );
4435 : 0 : }
4436 : :
4437 : 0 : return sl.release();
4438 : 0 : }
4439 : :
4440 : 0 : QString QgsRandomMarkerFillSymbolLayer::layerType() const
4441 : : {
4442 : 0 : return QStringLiteral( "RandomMarkerFill" );
4443 : : }
4444 : :
4445 : 0 : void QgsRandomMarkerFillSymbolLayer::setColor( const QColor &color )
4446 : : {
4447 : 0 : mMarker->setColor( color );
4448 : 0 : mColor = color;
4449 : 0 : }
4450 : :
4451 : 0 : QColor QgsRandomMarkerFillSymbolLayer::color() const
4452 : : {
4453 : 0 : return mMarker ? mMarker->color() : mColor;
4454 : : }
4455 : :
4456 : 0 : void QgsRandomMarkerFillSymbolLayer::startRender( QgsSymbolRenderContext &context )
4457 : : {
4458 : 0 : mMarker->startRender( context.renderContext(), context.fields() );
4459 : 0 : }
4460 : :
4461 : 0 : void QgsRandomMarkerFillSymbolLayer::stopRender( QgsSymbolRenderContext &context )
4462 : : {
4463 : 0 : mMarker->stopRender( context.renderContext() );
4464 : 0 : }
4465 : :
4466 : 0 : void QgsRandomMarkerFillSymbolLayer::renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context )
4467 : : {
4468 : 0 : Part part;
4469 : 0 : part.exterior = points;
4470 : 0 : if ( rings )
4471 : 0 : part.rings = *rings;
4472 : :
4473 : 0 : if ( mRenderingFeature )
4474 : : {
4475 : : // in the middle of rendering a possibly multi-part feature, so we collect all the parts and defer the actual rendering
4476 : : // until after we've received the final part
4477 : 0 : mFeatureSymbolOpacity = context.opacity();
4478 : 0 : mCurrentParts << part;
4479 : 0 : }
4480 : : else
4481 : : {
4482 : : // not rendering a feature, so we can just render the polygon immediately
4483 : 0 : const double prevOpacity = mMarker->opacity();
4484 : 0 : mMarker->setOpacity( mMarker->opacity() * context.opacity() );
4485 : 0 : render( context.renderContext(), QVector< Part>() << part, context.feature() ? *context.feature() : QgsFeature(), context.selected() );
4486 : 0 : mMarker->setOpacity( prevOpacity );
4487 : : }
4488 : 0 : }
4489 : :
4490 : 0 : void QgsRandomMarkerFillSymbolLayer::render( QgsRenderContext &context, const QVector<QgsRandomMarkerFillSymbolLayer::Part> &parts, const QgsFeature &feature, bool selected )
4491 : : {
4492 : 0 : bool clipPoints = mClipPoints;
4493 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyClipPoints ) )
4494 : : {
4495 : 0 : context.expressionContext().setOriginalValueVariable( clipPoints );
4496 : 0 : clipPoints = mDataDefinedProperties.valueAsBool( QgsSymbolLayer::PropertyClipPoints, context.expressionContext(), clipPoints );
4497 : 0 : }
4498 : :
4499 : 0 : QVector< QgsGeometry > geometryParts;
4500 : 0 : geometryParts.reserve( parts.size() );
4501 : 0 : QPainterPath path;
4502 : :
4503 : 0 : for ( const Part &part : parts )
4504 : : {
4505 : 0 : QgsGeometry geom = QgsGeometry::fromQPolygonF( part.exterior );
4506 : 0 : if ( !geom.isNull() && !part.rings.empty() )
4507 : : {
4508 : 0 : QgsPolygon *poly = qgsgeometry_cast< QgsPolygon * >( geom.get() );
4509 : 0 : for ( const QPolygonF &ring : part.rings )
4510 : : {
4511 : 0 : poly->addInteriorRing( QgsLineString::fromQPolygonF( ring ) );
4512 : : }
4513 : 0 : }
4514 : 0 : if ( !geom.isGeosValid() )
4515 : : {
4516 : 0 : geom = geom.buffer( 0, 0 );
4517 : 0 : }
4518 : 0 : geometryParts << geom;
4519 : :
4520 : 0 : if ( clipPoints )
4521 : : {
4522 : 0 : path.addPolygon( part.exterior );
4523 : 0 : for ( const QPolygonF &ring : part.rings )
4524 : : {
4525 : 0 : path.addPolygon( ring );
4526 : : }
4527 : 0 : }
4528 : 0 : }
4529 : :
4530 : 0 : const QgsGeometry geom = geometryParts.count() != 1 ? QgsGeometry::unaryUnion( geometryParts ) : geometryParts.at( 0 );
4531 : :
4532 : 0 : if ( clipPoints )
4533 : : {
4534 : 0 : context.painter()->save();
4535 : 0 : context.painter()->setClipPath( path );
4536 : 0 : }
4537 : :
4538 : :
4539 : 0 : int count = mPointCount;
4540 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyPointCount ) )
4541 : : {
4542 : 0 : context.expressionContext().setOriginalValueVariable( count );
4543 : 0 : count = mDataDefinedProperties.valueAsInt( QgsSymbolLayer::PropertyPointCount, context.expressionContext(), count );
4544 : 0 : }
4545 : :
4546 : 0 : switch ( mCountMethod )
4547 : : {
4548 : : case DensityBasedCount:
4549 : : {
4550 : 0 : double densityArea = mDensityArea;
4551 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyDensityArea ) )
4552 : : {
4553 : 0 : context.expressionContext().setOriginalValueVariable( densityArea );
4554 : 0 : densityArea = mDataDefinedProperties.valueAsDouble( QgsSymbolLayer::PropertyPointCount, context.expressionContext(), densityArea );
4555 : 0 : }
4556 : 0 : densityArea = context.convertToPainterUnits( std::sqrt( densityArea ), mDensityAreaUnit, mDensityAreaUnitScale );
4557 : 0 : densityArea = std::pow( densityArea, 2 );
4558 : 0 : count = std::max( 0.0, std::ceil( count * ( geom.area() / densityArea ) ) );
4559 : 0 : break;
4560 : : }
4561 : : case AbsoluteCount:
4562 : 0 : break;
4563 : : }
4564 : :
4565 : 0 : unsigned long seed = mSeed;
4566 : 0 : if ( mDataDefinedProperties.isActive( QgsSymbolLayer::PropertyRandomSeed ) )
4567 : : {
4568 : 0 : context.expressionContext().setOriginalValueVariable( static_cast< unsigned long long >( seed ) );
4569 : 0 : seed = mDataDefinedProperties.valueAsInt( QgsSymbolLayer::PropertyRandomSeed, context.expressionContext(), seed );
4570 : 0 : }
4571 : :
4572 : 0 : QVector< QgsPointXY > randomPoints = geom.randomPointsInPolygon( count, seed );
4573 : : #if 0
4574 : : // in some cases rendering from top to bottom is nice (e.g. randomised tree markers), but in other cases it's not wanted..
4575 : : // TODO consider exposing this as an option
4576 : : std::sort( randomPoints.begin(), randomPoints.end(), []( const QgsPointXY & a, const QgsPointXY & b )->bool
4577 : : {
4578 : : return a.y() < b.y();
4579 : : } );
4580 : : #endif
4581 : 0 : QgsExpressionContextScope *scope = new QgsExpressionContextScope();
4582 : 0 : QgsExpressionContextScopePopper scopePopper( context.expressionContext(), scope );
4583 : 0 : int pointNum = 0;
4584 : 0 : const bool needsExpressionContext = hasDataDefinedProperties();
4585 : :
4586 : 0 : for ( const QgsPointXY &p : std::as_const( randomPoints ) )
4587 : : {
4588 : 0 : if ( needsExpressionContext )
4589 : 0 : scope->addVariable( QgsExpressionContextScope::StaticVariable( QgsExpressionContext::EXPR_GEOMETRY_POINT_NUM, ++pointNum, true ) );
4590 : 0 : mMarker->renderPoint( QPointF( p.x(), p.y() ), feature.isValid() ? &feature : nullptr, context, -1, selected );
4591 : : }
4592 : :
4593 : 0 : if ( clipPoints )
4594 : : {
4595 : 0 : context.painter()->restore();
4596 : 0 : }
4597 : 0 : }
4598 : :
4599 : 0 : QVariantMap QgsRandomMarkerFillSymbolLayer::properties() const
4600 : : {
4601 : 0 : QVariantMap map;
4602 : 0 : map.insert( QStringLiteral( "count_method" ), QString::number( static_cast< int >( mCountMethod ) ) );
4603 : 0 : map.insert( QStringLiteral( "point_count" ), QString::number( mPointCount ) );
4604 : 0 : map.insert( QStringLiteral( "density_area" ), QString::number( mDensityArea ) );
4605 : 0 : map.insert( QStringLiteral( "density_area_unit" ), QgsUnitTypes::encodeUnit( mDensityAreaUnit ) );
4606 : 0 : map.insert( QStringLiteral( "density_area_unit_scale" ), QgsSymbolLayerUtils::encodeMapUnitScale( mDensityAreaUnitScale ) );
4607 : 0 : map.insert( QStringLiteral( "seed" ), QString::number( mSeed ) );
4608 : 0 : map.insert( QStringLiteral( "clip_points" ), QString::number( mClipPoints ) );
4609 : 0 : return map;
4610 : 0 : }
4611 : :
4612 : 0 : QgsRandomMarkerFillSymbolLayer *QgsRandomMarkerFillSymbolLayer::clone() const
4613 : : {
4614 : 0 : std::unique_ptr< QgsRandomMarkerFillSymbolLayer > res = std::make_unique< QgsRandomMarkerFillSymbolLayer >( mPointCount, mCountMethod, mDensityArea, mSeed );
4615 : 0 : res->mAngle = mAngle;
4616 : 0 : res->mColor = mColor;
4617 : 0 : res->setDensityAreaUnit( mDensityAreaUnit );
4618 : 0 : res->setDensityAreaUnitScale( mDensityAreaUnitScale );
4619 : 0 : res->mClipPoints = mClipPoints;
4620 : 0 : res->setSubSymbol( mMarker->clone() );
4621 : 0 : copyDataDefinedProperties( res.get() );
4622 : 0 : copyPaintEffect( res.get() );
4623 : 0 : return res.release();
4624 : 0 : }
4625 : :
4626 : 0 : bool QgsRandomMarkerFillSymbolLayer::canCauseArtifactsBetweenAdjacentTiles() const
4627 : : {
4628 : 0 : return true;
4629 : : }
4630 : :
4631 : 0 : QgsSymbol *QgsRandomMarkerFillSymbolLayer::subSymbol()
4632 : : {
4633 : 0 : return mMarker.get();
4634 : : }
4635 : :
4636 : 0 : bool QgsRandomMarkerFillSymbolLayer::setSubSymbol( QgsSymbol *symbol )
4637 : : {
4638 : 0 : if ( !symbol || symbol->type() != QgsSymbol::Marker )
4639 : : {
4640 : 0 : delete symbol;
4641 : 0 : return false;
4642 : : }
4643 : :
4644 : 0 : mMarker.reset( static_cast<QgsMarkerSymbol *>( symbol ) );
4645 : 0 : mColor = mMarker->color();
4646 : 0 : return true;
4647 : 0 : }
4648 : :
4649 : 0 : QSet<QString> QgsRandomMarkerFillSymbolLayer::usedAttributes( const QgsRenderContext &context ) const
4650 : : {
4651 : 0 : QSet<QString> attributes = QgsFillSymbolLayer::usedAttributes( context );
4652 : :
4653 : 0 : if ( mMarker )
4654 : 0 : attributes.unite( mMarker->usedAttributes( context ) );
4655 : :
4656 : 0 : return attributes;
4657 : 0 : }
4658 : :
4659 : 0 : bool QgsRandomMarkerFillSymbolLayer::hasDataDefinedProperties() const
4660 : : {
4661 : 0 : if ( QgsSymbolLayer::hasDataDefinedProperties() )
4662 : 0 : return true;
4663 : 0 : if ( mMarker && mMarker->hasDataDefinedProperties() )
4664 : 0 : return true;
4665 : 0 : return false;
4666 : 0 : }
4667 : :
4668 : 0 : int QgsRandomMarkerFillSymbolLayer::pointCount() const
4669 : : {
4670 : 0 : return mPointCount;
4671 : : }
4672 : :
4673 : 0 : void QgsRandomMarkerFillSymbolLayer::setPointCount( int pointCount )
4674 : : {
4675 : 0 : mPointCount = pointCount;
4676 : 0 : }
4677 : :
4678 : 0 : unsigned long QgsRandomMarkerFillSymbolLayer::seed() const
4679 : : {
4680 : 0 : return mSeed;
4681 : : }
4682 : :
4683 : 0 : void QgsRandomMarkerFillSymbolLayer::setSeed( unsigned long seed )
4684 : : {
4685 : 0 : mSeed = seed;
4686 : 0 : }
4687 : :
4688 : 0 : bool QgsRandomMarkerFillSymbolLayer::clipPoints() const
4689 : : {
4690 : 0 : return mClipPoints;
4691 : : }
4692 : :
4693 : 0 : void QgsRandomMarkerFillSymbolLayer::setClipPoints( bool clipPoints )
4694 : : {
4695 : 0 : mClipPoints = clipPoints;
4696 : 0 : }
4697 : :
4698 : 0 : QgsRandomMarkerFillSymbolLayer::CountMethod QgsRandomMarkerFillSymbolLayer::countMethod() const
4699 : : {
4700 : 0 : return mCountMethod;
4701 : : }
4702 : :
4703 : 0 : void QgsRandomMarkerFillSymbolLayer::setCountMethod( CountMethod method )
4704 : : {
4705 : 0 : mCountMethod = method;
4706 : 0 : }
4707 : :
4708 : 0 : double QgsRandomMarkerFillSymbolLayer::densityArea() const
4709 : : {
4710 : 0 : return mDensityArea;
4711 : : }
4712 : :
4713 : 0 : void QgsRandomMarkerFillSymbolLayer::setDensityArea( double area )
4714 : : {
4715 : 0 : mDensityArea = area;
4716 : 0 : }
4717 : :
4718 : 0 : void QgsRandomMarkerFillSymbolLayer::startFeatureRender( const QgsFeature &, QgsRenderContext & )
4719 : : {
4720 : 0 : mRenderingFeature = true;
4721 : 0 : mCurrentParts.clear();
4722 : 0 : }
4723 : :
4724 : 0 : void QgsRandomMarkerFillSymbolLayer::stopFeatureRender( const QgsFeature &feature, QgsRenderContext &context )
4725 : : {
4726 : 0 : mRenderingFeature = false;
4727 : :
4728 : 0 : const double prevOpacity = mMarker->opacity();
4729 : 0 : mMarker->setOpacity( mMarker->opacity() * mFeatureSymbolOpacity );
4730 : :
4731 : 0 : render( context, mCurrentParts, feature, false );
4732 : :
4733 : 0 : mFeatureSymbolOpacity = 1;
4734 : 0 : mMarker->setOpacity( prevOpacity );
4735 : 0 : }
4736 : :
4737 : :
4738 : 0 : void QgsRandomMarkerFillSymbolLayer::setOutputUnit( QgsUnitTypes::RenderUnit unit )
4739 : : {
4740 : 0 : if ( mMarker )
4741 : : {
4742 : 0 : mMarker->setOutputUnit( unit );
4743 : 0 : }
4744 : 0 : }
4745 : :
4746 : 0 : QgsUnitTypes::RenderUnit QgsRandomMarkerFillSymbolLayer::outputUnit() const
4747 : : {
4748 : 0 : if ( mMarker )
4749 : : {
4750 : 0 : return mMarker->outputUnit();
4751 : : }
4752 : 0 : return QgsUnitTypes::RenderUnknownUnit; //mOutputUnit;
4753 : 0 : }
4754 : :
4755 : 0 : bool QgsRandomMarkerFillSymbolLayer::usesMapUnits() const
4756 : : {
4757 : 0 : if ( mMarker )
4758 : : {
4759 : 0 : return mMarker->usesMapUnits();
4760 : : }
4761 : 0 : return false;
4762 : 0 : }
4763 : :
4764 : 0 : void QgsRandomMarkerFillSymbolLayer::setMapUnitScale( const QgsMapUnitScale &scale )
4765 : : {
4766 : 0 : if ( mMarker )
4767 : : {
4768 : 0 : mMarker->setMapUnitScale( scale );
4769 : 0 : }
4770 : 0 : }
4771 : :
4772 : 0 : QgsMapUnitScale QgsRandomMarkerFillSymbolLayer::mapUnitScale() const
4773 : : {
4774 : 0 : if ( mMarker )
4775 : : {
4776 : 0 : return mMarker->mapUnitScale();
4777 : : }
4778 : 0 : return QgsMapUnitScale();
4779 : 0 : }
4780 : :
|