QGIS API Documentation 3.43.0-Master (ac54a16a525)
qgssymbollayer.h
Go to the documentation of this file.
1/***************************************************************************
2 qgssymbollayer.h
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#ifndef QGSSYMBOLLAYER_H
16#define QGSSYMBOLLAYER_H
17
18#define DEG2RAD(x) ((x)*M_PI/180)
19#define DEFAULT_SCALE_METHOD Qgis::ScaleMethod::ScaleDiameter
20
21#include "qgis_core.h"
22#include "qgis.h"
23#include "qgsfields.h"
26
27#include <QColor>
28#include <QMap>
29#include <QPointF>
30#include <QSet>
31#include <QDomDocument>
32#include <QDomElement>
33#include <QPainterPath>
34#include <QImage>
35
36class QPainter;
37class QSize;
38class QPolygonF;
39
40class QgsDxfExport;
41class QgsExpression;
43class QgsPaintEffect;
45
46#ifndef SIP_RUN
47typedef QMap<QString, QString> QgsStringMap;
48#endif
49
55class CORE_EXPORT QgsSymbolLayer
56{
57 //SIP_TYPEHEADER_INCLUDE( "qgslinesymbollayer.h" );
58
59
60#ifdef SIP_RUN
62 switch ( sipCpp->type() )
63 {
65 if ( sipCpp->layerType() == "EllipseMarker" )
66 sipType = sipType_QgsEllipseSymbolLayer;
67 else if ( sipCpp->layerType() == "FontMarker" )
68 sipType = sipType_QgsFontMarkerSymbolLayer;
69 else if ( sipCpp->layerType() == "SimpleMarker" )
70 sipType = sipType_QgsSimpleMarkerSymbolLayer;
71 else if ( sipCpp->layerType() == "FilledMarker" )
72 sipType = sipType_QgsFilledMarkerSymbolLayer;
73 else if ( sipCpp->layerType() == "SvgMarker" )
74 sipType = sipType_QgsSvgMarkerSymbolLayer;
75 else if ( sipCpp->layerType() == "RasterMarker" )
76 sipType = sipType_QgsRasterMarkerSymbolLayer;
77 else if ( sipCpp->layerType() == "AnimatedMarker" )
78 sipType = sipType_QgsAnimatedMarkerSymbolLayer;
79 else if ( sipCpp->layerType() == "VectorField" )
80 sipType = sipType_QgsVectorFieldSymbolLayer;
81 else if ( sipCpp->layerType() == "MaskMarker" )
82 sipType = sipType_QgsMaskMarkerSymbolLayer;
83 else
84 sipType = sipType_QgsMarkerSymbolLayer;
85 break;
86
88 if ( sipCpp->layerType() == "MarkerLine" )
89 sipType = sipType_QgsMarkerLineSymbolLayer;
90 else if ( sipCpp->layerType() == "SimpleLine" )
91 sipType = sipType_QgsSimpleLineSymbolLayer;
92 else if ( sipCpp->layerType() == "HashLine" )
93 sipType = sipType_QgsHashedLineSymbolLayer;
94 else if ( sipCpp->layerType() == "ArrowLine" )
95 sipType = sipType_QgsArrowSymbolLayer;
96 else if ( sipCpp->layerType() == "InterpolatedLine" )
97 sipType = sipType_QgsInterpolatedLineSymbolLayer;
98 else if ( sipCpp->layerType() == "RasterLine" )
99 sipType = sipType_QgsRasterLineSymbolLayer;
100 else if ( sipCpp->layerType() == "Lineburst" )
101 sipType = sipType_QgsLineburstSymbolLayer;
102 else if ( sipCpp->layerType() == "LinearReferencing" )
103 sipType = sipType_QgsLinearReferencingSymbolLayer;
104 else if ( sipCpp->layerType() == "FilledLine" )
105 sipType = sipType_QgsFilledLineSymbolLayer;
106 else
107 sipType = sipType_QgsLineSymbolLayer;
108 break;
109
111 if ( sipCpp->layerType() == "SimpleFill" )
112 sipType = sipType_QgsSimpleFillSymbolLayer;
113 else if ( sipCpp->layerType() == "LinePatternFill" )
114 sipType = sipType_QgsLinePatternFillSymbolLayer;
115 else if ( sipCpp->layerType() == "PointPatternFill" )
116 sipType = sipType_QgsPointPatternFillSymbolLayer;
117 else if ( sipCpp->layerType() == "SVGFill" )
118 sipType = sipType_QgsSVGFillSymbolLayer;
119 else if ( sipCpp->layerType() == "RasterFill" )
120 sipType = sipType_QgsRasterFillSymbolLayer;
121 else if ( sipCpp->layerType() == "CentroidFill" )
122 sipType = sipType_QgsCentroidFillSymbolLayer;
123 else if ( sipCpp->layerType() == "GradientFill" )
124 sipType = sipType_QgsGradientFillSymbolLayer;
125 else if ( sipCpp->layerType() == "ShapeburstFill" )
126 sipType = sipType_QgsShapeburstFillSymbolLayer;
127 else if ( sipCpp->layerType() == "RandomMarkerFill" )
128 sipType = sipType_QgsRandomMarkerFillSymbolLayer;
129 else
130 sipType = sipType_QgsFillSymbolLayer;
131 break;
132
134 sipType = sipType_QgsGeometryGeneratorSymbolLayer;
135 break;
136 }
137 SIP_END
138#endif
139 public:
140
141 // *INDENT-OFF*
142
147 {
148 Size SIP_MONKEYPATCH_COMPAT_NAME( PropertySize ) = 0,
149 Angle SIP_MONKEYPATCH_COMPAT_NAME( PropertyAngle ),
150 Name SIP_MONKEYPATCH_COMPAT_NAME( PropertyName ),
151 FillColor SIP_MONKEYPATCH_COMPAT_NAME( PropertyFillColor ),
152 StrokeColor SIP_MONKEYPATCH_COMPAT_NAME( PropertyStrokeColor ),
153 StrokeWidth SIP_MONKEYPATCH_COMPAT_NAME( PropertyStrokeWidth ),
154 StrokeStyle SIP_MONKEYPATCH_COMPAT_NAME( PropertyStrokeStyle ),
155 Offset SIP_MONKEYPATCH_COMPAT_NAME( PropertyOffset ),
156 Character SIP_MONKEYPATCH_COMPAT_NAME( PropertyCharacter ),
157 Width SIP_MONKEYPATCH_COMPAT_NAME( PropertyWidth ),
158 Height SIP_MONKEYPATCH_COMPAT_NAME( PropertyHeight ),
159 PreserveAspectRatio SIP_MONKEYPATCH_COMPAT_NAME( PropertyPreserveAspectRatio ),
160 FillStyle SIP_MONKEYPATCH_COMPAT_NAME( PropertyFillStyle ),
161 JoinStyle SIP_MONKEYPATCH_COMPAT_NAME( PropertyJoinStyle ),
162 SecondaryColor SIP_MONKEYPATCH_COMPAT_NAME( PropertySecondaryColor ),
163 LineAngle SIP_MONKEYPATCH_COMPAT_NAME( PropertyLineAngle ),
164 LineDistance SIP_MONKEYPATCH_COMPAT_NAME( PropertyLineDistance ),
165 GradientType SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientType ),
166 CoordinateMode SIP_MONKEYPATCH_COMPAT_NAME( PropertyCoordinateMode ),
167 GradientSpread SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientSpread ),
168 GradientReference1X SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientReference1X ),
169 GradientReference1Y SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientReference1Y ),
170 GradientReference2X SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientReference2X ),
171 GradientReference2Y SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientReference2Y ),
172 GradientReference1IsCentroid SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientReference1IsCentroid ),
173 GradientReference2IsCentroid SIP_MONKEYPATCH_COMPAT_NAME( PropertyGradientReference2IsCentroid ),
174 BlurRadius SIP_MONKEYPATCH_COMPAT_NAME( PropertyBlurRadius ),
175 ShapeburstUseWholeShape SIP_MONKEYPATCH_COMPAT_NAME( PropertyShapeburstUseWholeShape ),
176 ShapeburstMaxDistance SIP_MONKEYPATCH_COMPAT_NAME( PropertyShapeburstMaxDistance ),
177 ShapeburstIgnoreRings SIP_MONKEYPATCH_COMPAT_NAME( PropertyShapeburstIgnoreRings ),
178 File SIP_MONKEYPATCH_COMPAT_NAME( PropertyFile ),
179 DistanceX SIP_MONKEYPATCH_COMPAT_NAME( PropertyDistanceX ),
180 DistanceY SIP_MONKEYPATCH_COMPAT_NAME( PropertyDistanceY ),
181 DisplacementX SIP_MONKEYPATCH_COMPAT_NAME( PropertyDisplacementX ),
182 DisplacementY SIP_MONKEYPATCH_COMPAT_NAME( PropertyDisplacementY ),
183 Opacity SIP_MONKEYPATCH_COMPAT_NAME( PropertyOpacity ),
184 CustomDash SIP_MONKEYPATCH_COMPAT_NAME( PropertyCustomDash ),
185 CapStyle SIP_MONKEYPATCH_COMPAT_NAME( PropertyCapStyle ),
186 Placement SIP_MONKEYPATCH_COMPAT_NAME( PropertyPlacement ),
187 Interval SIP_MONKEYPATCH_COMPAT_NAME( PropertyInterval ),
188 OffsetAlongLine SIP_MONKEYPATCH_COMPAT_NAME( PropertyOffsetAlongLine ),
189 AverageAngleLength SIP_MONKEYPATCH_COMPAT_NAME( PropertyAverageAngleLength ),
190 HorizontalAnchor SIP_MONKEYPATCH_COMPAT_NAME( PropertyHorizontalAnchor ),
191 VerticalAnchor SIP_MONKEYPATCH_COMPAT_NAME( PropertyVerticalAnchor ),
192 LayerEnabled SIP_MONKEYPATCH_COMPAT_NAME( PropertyLayerEnabled ),
193 ArrowWidth SIP_MONKEYPATCH_COMPAT_NAME( PropertyArrowWidth ),
194 ArrowStartWidth SIP_MONKEYPATCH_COMPAT_NAME( PropertyArrowStartWidth ),
195 ArrowHeadLength SIP_MONKEYPATCH_COMPAT_NAME( PropertyArrowHeadLength ),
196 ArrowHeadThickness SIP_MONKEYPATCH_COMPAT_NAME( PropertyArrowHeadThickness ),
197 ArrowHeadType SIP_MONKEYPATCH_COMPAT_NAME( PropertyArrowHeadType ),
198 ArrowType SIP_MONKEYPATCH_COMPAT_NAME( PropertyArrowType ),
199 OffsetX SIP_MONKEYPATCH_COMPAT_NAME( PropertyOffsetX ),
200 OffsetY SIP_MONKEYPATCH_COMPAT_NAME( PropertyOffsetY ),
201 PointCount SIP_MONKEYPATCH_COMPAT_NAME( PropertyPointCount ),
202 RandomSeed SIP_MONKEYPATCH_COMPAT_NAME( PropertyRandomSeed ),
203 ClipPoints SIP_MONKEYPATCH_COMPAT_NAME( PropertyClipPoints ),
204 DensityArea SIP_MONKEYPATCH_COMPAT_NAME( PropertyDensityArea ),
205 FontFamily SIP_MONKEYPATCH_COMPAT_NAME( PropertyFontFamily ),
206 FontStyle SIP_MONKEYPATCH_COMPAT_NAME( PropertyFontStyle ),
207 DashPatternOffset SIP_MONKEYPATCH_COMPAT_NAME( PropertyDashPatternOffset ),
208 TrimStart SIP_MONKEYPATCH_COMPAT_NAME( PropertyTrimStart ),
209 TrimEnd SIP_MONKEYPATCH_COMPAT_NAME( PropertyTrimEnd ),
210 LineStartWidthValue SIP_MONKEYPATCH_COMPAT_NAME( PropertyLineStartWidthValue ),
211 LineEndWidthValue SIP_MONKEYPATCH_COMPAT_NAME( PropertyLineEndWidthValue ),
212 LineStartColorValue SIP_MONKEYPATCH_COMPAT_NAME( PropertyLineStartColorValue ),
213 LineEndColorValue SIP_MONKEYPATCH_COMPAT_NAME( PropertyLineEndColorValue ),
214 MarkerClipping SIP_MONKEYPATCH_COMPAT_NAME( PropertyMarkerClipping ),
215 RandomOffsetX SIP_MONKEYPATCH_COMPAT_NAME( PropertyRandomOffsetX ),
216 RandomOffsetY SIP_MONKEYPATCH_COMPAT_NAME( PropertyRandomOffsetY ),
217 LineClipping SIP_MONKEYPATCH_COMPAT_NAME( PropertyLineClipping ),
218 SkipMultiples,
219 ShowMarker,
220 };
221 // *INDENT-ON*
222
226 static const QgsPropertiesDefinition &propertyDefinitions();
227
229
230 QgsSymbolLayer &operator=( const QgsSymbolLayer &other ) = delete;
231
237 virtual Qgis::SymbolLayerFlags flags() const;
238
243 bool enabled() const { return mEnabled; }
244
251 void setEnabled( bool enabled ) { mEnabled = enabled; }
252
259 Qgis::SymbolLayerUserFlags userFlags() const;
260
267 void setUserFlags( Qgis::SymbolLayerUserFlags flags );
268
283 virtual QColor color() const;
284
296 virtual void setColor( const QColor &color );
297
308 virtual void setStrokeColor( const QColor &color );
309
321 virtual QColor strokeColor() const;
322
333 virtual void setFillColor( const QColor &color );
334
346 virtual QColor fillColor() const;
347
352 virtual QString layerType() const = 0;
353
366 virtual void startRender( QgsSymbolRenderContext &context ) = 0;
367
379 virtual void stopRender( QgsSymbolRenderContext &context ) = 0;
380
399 virtual void startFeatureRender( const QgsFeature &feature, QgsRenderContext &context );
400
419 virtual void stopFeatureRender( const QgsFeature &feature, QgsRenderContext &context );
420
424 virtual QgsSymbolLayer *clone() const = 0 SIP_FACTORY;
425
427 virtual void toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
428 { Q_UNUSED( props ) element.appendChild( doc.createComment( QStringLiteral( "SymbolLayerV2 %1 not implemented yet" ).arg( layerType() ) ) ); }
429
430 virtual QString ogrFeatureStyle( double mmScaleFactor, double mapUnitScaleFactor ) const { Q_UNUSED( mmScaleFactor ) Q_UNUSED( mapUnitScaleFactor ); return QString(); }
431
437 virtual QVariantMap properties() const = 0;
438
439 virtual void drawPreviewIcon( QgsSymbolRenderContext &context, QSize size ) = 0;
440
444 virtual QgsSymbol *subSymbol();
445
447 virtual bool setSubSymbol( QgsSymbol *symbol SIP_TRANSFER );
448
449 Qgis::SymbolType type() const { return mType; }
450
452 virtual bool isCompatibleWithSymbol( QgsSymbol *symbol ) const;
453
462 virtual bool canCauseArtifactsBetweenAdjacentTiles() const;
463
471 void setLocked( bool locked ) { mLocked = locked; }
472
478 bool isLocked() const { return mLocked; }
479
487 virtual double estimateMaxBleed( const QgsRenderContext &context ) const { Q_UNUSED( context ) return 0; }
488
497 virtual void setOutputUnit( Qgis::RenderUnit unit ) { Q_UNUSED( unit ) }
498
508
514 virtual bool usesMapUnits() const;
515
516 virtual void setMapUnitScale( const QgsMapUnitScale &scale ) { Q_UNUSED( scale ) }
517 virtual QgsMapUnitScale mapUnitScale() const { return QgsMapUnitScale(); }
518
525 void setRenderingPass( int renderingPass );
526
533 int renderingPass() const;
534
539 virtual QSet<QString> usedAttributes( const QgsRenderContext &context ) const;
540
547 virtual void setDataDefinedProperty( Property key, const QgsProperty &property );
548
550 virtual bool writeDxf( QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, QgsSymbolRenderContext &context, QPointF shift = QPointF( 0.0, 0.0 ) ) const;
551
553 virtual double dxfWidth( const QgsDxfExport &e, QgsSymbolRenderContext &context ) const;
554
556 virtual double dxfSize( const QgsDxfExport &e, QgsSymbolRenderContext &context ) const;
557
559 virtual double dxfOffset( const QgsDxfExport &e, QgsSymbolRenderContext &context ) const;
560
562 virtual QColor dxfColor( QgsSymbolRenderContext &context ) const;
563
565 virtual double dxfAngle( QgsSymbolRenderContext &context ) const;
566
568 virtual QVector<qreal> dxfCustomDashPattern( Qgis::RenderUnit &unit ) const;
569
571 virtual Qt::PenStyle dxfPenStyle() const;
572
574 virtual QColor dxfBrushColor( QgsSymbolRenderContext &context ) const;
575
577 virtual Qt::BrushStyle dxfBrushStyle() const;
578
584 QgsPaintEffect *paintEffect() const;
585
591 void setPaintEffect( QgsPaintEffect *effect SIP_TRANSFER );
592
598 virtual void prepareExpressions( const QgsSymbolRenderContext &context );
599
605 QgsPropertyCollection &dataDefinedProperties() { return mDataDefinedProperties; }
606
611 const QgsPropertyCollection &dataDefinedProperties() const SIP_SKIP { return mDataDefinedProperties; }
612
618 void setDataDefinedProperties( const QgsPropertyCollection &collection ) { mDataDefinedProperties = collection; }
619
625 virtual bool hasDataDefinedProperties() const;
626
632 virtual QList<QgsSymbolLayerReference> masks() const;
633
641 virtual void prepareMasks( const QgsSymbolRenderContext &context );
642
648 void setId( const QString &id );
649
655 QString id() const;
656
672 bool installMasks( QgsRenderContext &context, bool recursive, const QRectF &rect = QRectF() );
673
674 protected:
675 QgsSymbolLayer( const QgsSymbolLayer &other ) SIP_SKIP;
676
682 QgsSymbolLayer( Qgis::SymbolType type, bool locked = false );
683
685
687 bool mEnabled = true;
688
691
692 bool mLocked = false;
693 QColor mColor;
694 int mRenderingPass = 0;
695 QString mId;
697
698 std::unique_ptr< QgsPaintEffect > mPaintEffect;
700
701 // clip path to be used during rendering
702 QPainterPath mClipPath;
703
704 // Configuration of selected symbology implementation
706 static const bool SELECTION_IS_OPAQUE = true;
708 static const bool SELECT_FILL_BORDER = false;
710 static const bool SELECT_FILL_STYLE = false;
711
715 void restoreOldDataDefinedProperties( const QVariantMap &stringMap );
716
721 void copyDataDefinedProperties( QgsSymbolLayer *destLayer ) const;
722
727 void copyPaintEffect( QgsSymbolLayer *destLayer ) const;
728
736 void removeMasks( QgsRenderContext &context, bool recursive );
737
744 bool shouldRenderUsingSelectionColor( const QgsSymbolRenderContext &context ) const;
745
746 private:
747 static void initPropertyDefinitions();
748
750 static QgsPropertiesDefinition sPropertyDefinitions;
751
752#ifdef SIP_RUN
753 QgsSymbolLayer( const QgsSymbolLayer &other );
754#endif
755
756};
757
759
765class CORE_EXPORT QgsMarkerSymbolLayer : public QgsSymbolLayer
766{
767 public:
768
770
771 void startRender( QgsSymbolRenderContext &context ) override;
772
773 void stopRender( QgsSymbolRenderContext &context ) override;
774
781 virtual void renderPoint( QPointF point, QgsSymbolRenderContext &context ) = 0;
782
783 void drawPreviewIcon( QgsSymbolRenderContext &context, QSize size ) override;
784
791 void setAngle( double angle ) { mAngle = angle; }
792
797 double angle() const { return mAngle; }
798
807 void setLineAngle( double lineAngle ) { mLineAngle = lineAngle; }
808
816 virtual void setSize( double size ) { mSize = size; }
817
824 double size() const { return mSize; }
825
833 void setSizeUnit( Qgis::RenderUnit unit ) { mSizeUnit = unit; }
834
841 Qgis::RenderUnit sizeUnit() const { return mSizeUnit; }
842
850 void setSizeMapUnitScale( const QgsMapUnitScale &scale ) { mSizeMapUnitScale = scale; }
851
858 const QgsMapUnitScale &sizeMapUnitScale() const { return mSizeMapUnitScale; }
859
865 void setScaleMethod( Qgis::ScaleMethod scaleMethod ) { mScaleMethod = scaleMethod; }
866
871 Qgis::ScaleMethod scaleMethod() const { return mScaleMethod; }
872
881 void setOffset( QPointF offset ) { mOffset = offset; }
882
890 QPointF offset() const { return mOffset; }
891
899 void setOffsetUnit( Qgis::RenderUnit unit ) { mOffsetUnit = unit; }
900
907 Qgis::RenderUnit offsetUnit() const { return mOffsetUnit; }
908
916 void setOffsetMapUnitScale( const QgsMapUnitScale &scale ) { mOffsetMapUnitScale = scale; }
917
924 const QgsMapUnitScale &offsetMapUnitScale() const { return mOffsetMapUnitScale; }
925
933 void setHorizontalAnchorPoint( Qgis::HorizontalAnchorPoint h ) { mHorizontalAnchorPoint = h; }
934
941 Qgis::HorizontalAnchorPoint horizontalAnchorPoint() const { return mHorizontalAnchorPoint; }
942
950 void setVerticalAnchorPoint( Qgis::VerticalAnchorPoint v ) { mVerticalAnchorPoint = v; }
951
958 Qgis::VerticalAnchorPoint verticalAnchorPoint() const { return mVerticalAnchorPoint; }
959
960 void toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const override;
961
968 virtual void writeSldMarker( QDomDocument &doc, QDomElement &element, const QVariantMap &props ) const
969 { Q_UNUSED( props ) element.appendChild( doc.createComment( QStringLiteral( "QgsMarkerSymbolLayer %1 not implemented yet" ).arg( layerType() ) ) ); }
970
971 void setOutputUnit( Qgis::RenderUnit unit ) override;
972 Qgis::RenderUnit outputUnit() const override;
973 void setMapUnitScale( const QgsMapUnitScale &scale ) override;
974 QgsMapUnitScale mapUnitScale() const override;
975 virtual double dxfSize( const QgsDxfExport &e, QgsSymbolRenderContext &context ) const override;
976 virtual double dxfAngle( QgsSymbolRenderContext &context ) const override;
977
983 virtual QRectF bounds( QPointF point, QgsSymbolRenderContext &context ) = 0;
984
985 protected:
986
988
993 QgsMarkerSymbolLayer( bool locked = false );
994
1002 void markerOffset( QgsSymbolRenderContext &context, double &offsetX, double &offsetY ) const;
1003
1014 void markerOffset( QgsSymbolRenderContext &context, double width, double height, double &offsetX, double &offsetY ) const SIP_PYNAME( markerOffsetWithWidthAndHeight );
1015
1017 void markerOffset( QgsSymbolRenderContext &context, double width, double height,
1018 Qgis::RenderUnit widthUnit, Qgis::RenderUnit heightUnit,
1019 double &offsetX, double &offsetY,
1020 const QgsMapUnitScale &widthMapUnitScale, const QgsMapUnitScale &heightMapUnitScale ) const SIP_PYNAME( markerOffset2 );
1021
1028 static QPointF _rotatedOffset( QPointF offset, double angle );
1029
1031 double mAngle = 0;
1033 double mLineAngle = 0;
1035 double mSize = 2.0;
1041 QPointF mOffset;
1052
1053 private:
1054 static Qgis::HorizontalAnchorPoint decodeHorizontalAnchorPoint( const QString &str );
1055 static Qgis::VerticalAnchorPoint decodeVerticalAnchorPoint( const QString &str );
1056
1057#ifdef SIP_RUN
1059#endif
1060};
1061
1068class CORE_EXPORT QgsLineSymbolLayer : public QgsSymbolLayer
1069{
1070 public:
1071
1079
1080 QgsLineSymbolLayer( const QgsLineSymbolLayer &other ) = delete;
1082
1083 void setOutputUnit( Qgis::RenderUnit unit ) override;
1084 Qgis::RenderUnit outputUnit() const override;
1085 void setMapUnitScale( const QgsMapUnitScale &scale ) override;
1086 QgsMapUnitScale mapUnitScale() const override;
1087 void drawPreviewIcon( QgsSymbolRenderContext &context, QSize size ) override;
1088 double dxfWidth( const QgsDxfExport &e, QgsSymbolRenderContext &context ) const override;
1089
1094 virtual void renderPolyline( const QPolygonF &points, QgsSymbolRenderContext &context ) = 0;
1095
1104 virtual void renderPolygonStroke( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context );
1105
1119 virtual void setWidth( double width ) { mWidth = width; }
1120
1130 virtual double width() const { return mWidth; }
1131
1142 virtual double width( const QgsRenderContext &context ) const;
1143
1153 double offset() const { return mOffset; }
1154
1164 void setOffset( double offset ) { mOffset = offset; }
1165
1172 void setOffsetUnit( Qgis::RenderUnit unit ) { mOffsetUnit = unit; }
1173
1180 Qgis::RenderUnit offsetUnit() const { return mOffsetUnit; }
1181
1188 void setOffsetMapUnitScale( const QgsMapUnitScale &scale ) { mOffsetMapUnitScale = scale; }
1189
1196 const QgsMapUnitScale &offsetMapUnitScale() const { return mOffsetMapUnitScale; }
1197
1198 // TODO QGIS 4.0 - setWidthUnit(), widthUnit(), setWidthUnitScale(), widthUnitScale()
1199 // only apply to simple line symbol layers and do not belong here.
1200
1206 void setWidthUnit( Qgis::RenderUnit unit ) { mWidthUnit = unit; }
1207
1212 Qgis::RenderUnit widthUnit() const { return mWidthUnit; }
1213
1214 void setWidthMapUnitScale( const QgsMapUnitScale &scale ) { mWidthMapUnitScale = scale; }
1215 const QgsMapUnitScale &widthMapUnitScale() const { return mWidthMapUnitScale; }
1216
1227 RenderRingFilter ringFilter() const;
1228
1239 void setRingFilter( QgsLineSymbolLayer::RenderRingFilter filter );
1240
1241 protected:
1242 QgsLineSymbolLayer( bool locked = false );
1243
1244 double mWidth = 0;
1247 double mOffset = 0;
1250
1251 RenderRingFilter mRingFilter = AllRings;
1252
1253 private:
1254#ifdef SIP_RUN
1255 QgsLineSymbolLayer( const QgsLineSymbolLayer &other );
1256#endif
1257};
1258
1264class CORE_EXPORT QgsFillSymbolLayer : public QgsSymbolLayer
1265{
1266 public:
1267
1268 QgsFillSymbolLayer( const QgsFillSymbolLayer &other ) = delete;
1270
1276 virtual void renderPolygon( const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context ) = 0;
1277
1278 void drawPreviewIcon( QgsSymbolRenderContext &context, QSize size ) override;
1279
1287 void setAngle( double angle ) { mAngle = angle; }
1288
1296 double angle() const { return mAngle; }
1297
1308 virtual QImage toTiledPatternImage( ) const;
1309
1310 protected:
1311 QgsFillSymbolLayer( bool locked = false );
1313 void _renderPolygon( QPainter *p, const QPolygonF &points, const QVector<QPolygonF> *rings, QgsSymbolRenderContext &context );
1314
1315 double mAngle = 0.0;
1316
1317 private:
1318#ifdef SIP_RUN
1319 QgsFillSymbolLayer( const QgsFillSymbolLayer &other );
1320#endif
1321};
1322
1323class QgsSymbolLayerWidget; // why does SIP fail, when this isn't here
1324
1325#endif
ScaleMethod
Scale methods.
Definition qgis.h:588
@ ScaleDiameter
Calculate scale by the diameter.
QFlags< SymbolLayerFlag > SymbolLayerFlags
Symbol layer flags.
Definition qgis.h:851
QFlags< SymbolLayerUserFlag > SymbolLayerUserFlags
Symbol layer user flags.
Definition qgis.h:874
VerticalAnchorPoint
Marker symbol vertical anchor points.
Definition qgis.h:778
@ Center
Align to vertical center of symbol.
RenderUnit
Rendering size units.
Definition qgis.h:5013
@ Millimeters
Millimeters.
@ Unknown
Mixed or unknown units.
SymbolType
Symbol types.
Definition qgis.h:574
@ Marker
Marker symbol.
@ Line
Line symbol.
@ Fill
Fill symbol.
@ Hybrid
Hybrid symbol.
HorizontalAnchorPoint
Marker symbol horizontal anchor points.
Definition qgis.h:764
@ Center
Align to horizontal center of symbol.
Exports QGIS layers to the DXF format.
Handles parsing and evaluation of expressions (formerly called "search strings").
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
Container of fields for a vector layer.
Definition qgsfields.h:46
Abstract base class for fill symbol layers.
virtual void renderPolygon(const QPolygonF &points, const QVector< QPolygonF > *rings, QgsSymbolRenderContext &context)=0
Renders the fill symbol layer for the polygon whose outer ring is defined by points,...
double angle() const
Returns the rotation angle of the fill symbol, in degrees clockwise.
void setAngle(double angle)
Sets the rotation angle of the pattern, in degrees clockwise.
QgsFillSymbolLayer & operator=(const QgsFillSymbolLayer &other)=delete
QgsFillSymbolLayer(const QgsFillSymbolLayer &other)=delete
Abstract base class for line symbol layers.
const QgsMapUnitScale & widthMapUnitScale() const
RenderRingFilter
Options for filtering rings when the line symbol layer is being used to render a polygon's rings.
@ ExteriorRingOnly
Render the exterior ring only.
@ InteriorRingsOnly
Render the interior rings only.
@ AllRings
Render both exterior and interior rings.
QgsLineSymbolLayer & operator=(const QgsLineSymbolLayer &other)=delete
QgsMapUnitScale mWidthMapUnitScale
virtual void setWidth(double width)
Sets the width of the line symbol layer.
QgsLineSymbolLayer(const QgsLineSymbolLayer &other)=delete
void setWidthMapUnitScale(const QgsMapUnitScale &scale)
void setOffset(double offset)
Sets the line's offset.
virtual void renderPolyline(const QPolygonF &points, QgsSymbolRenderContext &context)=0
Renders the line symbol layer along the line joining points, using the given render context.
void setOffsetUnit(Qgis::RenderUnit unit)
Sets the unit for the line's offset.
void setWidthUnit(Qgis::RenderUnit unit)
Sets the units for the line's width.
virtual double width() const
Returns the estimated width for the line symbol layer.
QgsMapUnitScale mOffsetMapUnitScale
void setOffsetMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale for the line's offset.
double offset() const
Returns the line's offset.
const QgsMapUnitScale & offsetMapUnitScale() const
Returns the map unit scale for the line's offset.
Qgis::RenderUnit offsetUnit() const
Returns the units for the line's offset.
Qgis::RenderUnit widthUnit() const
Returns the units for the line's width.
Struct for storing maximum and minimum scales for measurements in map units.
Abstract base class for marker symbol layers.
virtual void setSize(double size)
Sets the symbol size.
void setVerticalAnchorPoint(Qgis::VerticalAnchorPoint v)
Sets the vertical anchor point for positioning the symbol.
virtual QRectF bounds(QPointF point, QgsSymbolRenderContext &context)=0
Returns the approximate bounding box of the marker symbol layer, taking into account any data defined...
QPointF offset() const
Returns the marker's offset, which is the horizontal and vertical displacement which the rendered mar...
void setOffsetUnit(Qgis::RenderUnit unit)
Sets the units for the symbol's offset.
void setAngle(double angle)
Sets the rotation angle for the marker.
Qgis::ScaleMethod scaleMethod() const
Returns the method to use for scaling the marker's size.
virtual void renderPoint(QPointF point, QgsSymbolRenderContext &context)=0
Renders a marker at the specified point.
QPointF mOffset
Marker offset.
const QgsMapUnitScale & sizeMapUnitScale() const
Returns the map unit scale for the symbol's size.
void setOffset(QPointF offset)
Sets the marker's offset, which is the horizontal and vertical displacement which the rendered marker...
void setSizeMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale for the symbol's size.
void setLineAngle(double lineAngle)
Sets the line angle modification for the symbol's angle.
double size() const
Returns the symbol size.
Qgis::VerticalAnchorPoint verticalAnchorPoint() const
Returns the vertical anchor point for positioning the symbol.
QgsMapUnitScale mOffsetMapUnitScale
Offset map unit scale.
const QgsMapUnitScale & offsetMapUnitScale() const
Returns the map unit scale for the symbol's offset.
void setHorizontalAnchorPoint(Qgis::HorizontalAnchorPoint h)
Sets the horizontal anchor point for positioning the symbol.
Qgis::RenderUnit offsetUnit() const
Returns the units for the symbol's offset.
void setScaleMethod(Qgis::ScaleMethod scaleMethod)
Sets the method to use for scaling the marker's size.
Qgis::HorizontalAnchorPoint horizontalAnchorPoint() const
Returns the horizontal anchor point for positioning the symbol.
QgsMarkerSymbolLayer & operator=(const QgsMarkerSymbolLayer &other)=delete
QgsMapUnitScale mSizeMapUnitScale
Marker size map unit scale.
Qgis::RenderUnit sizeUnit() const
Returns the units for the symbol's size.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units for the symbol's size.
virtual void writeSldMarker(QDomDocument &doc, QDomElement &element, const QVariantMap &props) const
Writes the symbol layer definition as a SLD XML element.
void setOffsetMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale for the symbol's offset.
double angle() const
Returns the rotation angle for the marker, in degrees clockwise from north.
Base class for visual effects which can be applied to QPicture drawings.
A grouped map of multiple QgsProperty objects, each referenced by an integer key value.
A store for object properties.
Contains information about the context of a rendering operation.
Type used to refer to a specific symbol layer in a symbol of a layer.
Abstract base class for widgets used to configure QgsSymbolLayer classes.
Abstract base class for symbol layers.
virtual QgsSymbolLayer * clone() const =0
Shall be reimplemented by subclasses to create a deep copy of the instance.
Qgis::SymbolType type() const
const QgsPropertyCollection & dataDefinedProperties() const
Returns a reference to the symbol layer's property collection, used for data defined overrides.
QPainterPath mClipPath
bool isLocked() const
Returns true if the symbol layer colors are locked and the layer will ignore any symbol-level color c...
virtual QgsMapUnitScale mapUnitScale() const
Qgis::SymbolType mType
Property
Data definable properties.
virtual void toSld(QDomDocument &doc, QDomElement &element, const QVariantMap &props) const
Saves the symbol layer as SLD.
virtual double estimateMaxBleed(const QgsRenderContext &context) const
Returns the estimated maximum distance which the layer style will bleed outside the drawn shape when ...
virtual void startRender(QgsSymbolRenderContext &context)=0
Called before a set of rendering operations commences on the supplied render context.
void setEnabled(bool enabled)
Sets whether symbol layer is enabled and should be drawn.
virtual QVariantMap properties() const =0
Should be reimplemented by subclasses to return a string map that contains the configuration informat...
std::unique_ptr< QgsPaintEffect > mPaintEffect
bool enabled() const
Returns true if symbol layer is enabled and will be drawn.
virtual QString layerType() const =0
Returns a string that represents this layer type.
virtual void stopRender(QgsSymbolRenderContext &context)=0
Called after a set of rendering operations has finished on the supplied render context.
virtual QString ogrFeatureStyle(double mmScaleFactor, double mapUnitScaleFactor) const
virtual Qgis::RenderUnit outputUnit() const
Returns the units to use for sizes and widths within the symbol layer.
Qgis::SymbolLayerUserFlags mUserFlags
User controlled flags.
void setLocked(bool locked)
Sets whether the layer's colors are locked.
virtual void setMapUnitScale(const QgsMapUnitScale &scale)
virtual ~QgsSymbolLayer()
virtual void setOutputUnit(Qgis::RenderUnit unit)
Sets the units to use for sizes and widths within the symbol layer.
virtual void drawPreviewIcon(QgsSymbolRenderContext &context, QSize size)=0
QgsPropertyCollection mDataDefinedProperties
QgsPropertyCollection & dataDefinedProperties()
Returns a reference to the symbol layer's property collection, used for data defined overrides.
QgsSymbolLayer & operator=(const QgsSymbolLayer &other)=delete
void setDataDefinedProperties(const QgsPropertyCollection &collection)
Sets the symbol layer's property collection, used for data defined overrides.
Encapsulates the context in which a symbol is being rendered.
Abstract base class for all rendered symbols.
Definition qgssymbol.h:231
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition qgis_sip.h:191
#define SIP_SKIP
Definition qgis_sip.h:126
#define SIP_MONKEYPATCH_SCOPEENUM_UNNEST(OUTSIDE_CLASS, FORMERNAME)
Definition qgis_sip.h:271
#define SIP_PYNAME(name)
Definition qgis_sip.h:81
#define SIP_TRANSFER
Definition qgis_sip.h:36
#define SIP_FACTORY
Definition qgis_sip.h:76
#define SIP_END
Definition qgis_sip.h:208
#define SIP_MONKEYPATCH_COMPAT_NAME(FORMERNAME)
Definition qgis_sip.h:273
QMap< int, QgsPropertyDefinition > QgsPropertiesDefinition
Definition of available properties.
QMap< QString, QString > QgsStringMap