QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgssymbollayerv2.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgssymbollayerv2.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 QGSSYMBOLLAYERV2_H
16 #define QGSSYMBOLLAYERV2_H
17 
18 // MSVC compiler doesn't have defined M_PI in math.h
19 #ifndef M_PI
20 #define M_PI 3.14159265358979323846
21 #endif
22 
23 #define DEG2RAD(x) ((x)*M_PI/180)
24 #define DEFAULT_SCALE_METHOD QgsSymbolV2::ScaleArea
25 
26 #include <QColor>
27 #include <QMap>
28 #include <QPointF>
29 #include <QSet>
30 #include <QDomDocument>
31 #include <QDomElement>
32 
33 #include "qgssymbolv2.h"
34 
35 #include "qgssymbollayerv2utils.h" // QgsStringMap
36 
37 class QPainter;
38 class QSize;
39 class QPolygonF;
40 
41 class QgsDxfExport;
42 class QgsExpression;
43 class QgsRenderContext;
44 
45 class CORE_EXPORT QgsSymbolLayerV2
46 {
47  public:
48 
49  // not necessarily supported by all symbol layers...
50  virtual QColor color() const { return mColor; }
51  virtual void setColor( const QColor& color ) { mColor = color; }
54  virtual void setOutlineColor( const QColor& color ) { Q_UNUSED( color ); }
57  virtual QColor outlineColor() const { return QColor(); }
60  virtual void setFillColor( const QColor& color ) { Q_UNUSED( color ); }
63  virtual QColor fillColor() const { return QColor(); }
64 
65  virtual ~QgsSymbolLayerV2() { removeDataDefinedProperties(); }
66 
67  virtual QString layerType() const = 0;
68 
69  virtual void startRender( QgsSymbolV2RenderContext& context ) = 0;
70  virtual void stopRender( QgsSymbolV2RenderContext& context ) = 0;
71 
72  virtual QgsSymbolLayerV2* clone() const = 0;
73 
74  virtual void toSld( QDomDocument &doc, QDomElement &element, QgsStringMap props ) const
75  { Q_UNUSED( props ); element.appendChild( doc.createComment( QString( "SymbolLayerV2 %1 not implemented yet" ).arg( layerType() ) ) ); }
76 
77  virtual QString ogrFeatureStyle( double mmScaleFactor, double mapUnitScaleFactor ) const { Q_UNUSED( mmScaleFactor ); Q_UNUSED( mapUnitScaleFactor ); return QString(); }
78 
79  virtual QgsStringMap properties() const = 0;
80 
81  virtual void drawPreviewIcon( QgsSymbolV2RenderContext& context, QSize size ) = 0;
82 
83  virtual QgsSymbolV2* subSymbol() { return NULL; }
84  // set layer's subsymbol. takes ownership of the passed symbol
85  virtual bool setSubSymbol( QgsSymbolV2* symbol ) { delete symbol; return false; }
86 
87  QgsSymbolV2::SymbolType type() const { return mType; }
88 
89  void setLocked( bool locked ) { mLocked = locked; }
90  bool isLocked() const { return mLocked; }
91 
96  virtual double estimateMaxBleed() const { return 0; }
97 
98  virtual void setOutputUnit( QgsSymbolV2::OutputUnit unit ) { Q_UNUSED( unit ); } //= 0;
99  virtual QgsSymbolV2::OutputUnit outputUnit() const { return QgsSymbolV2::Mixed; } //= 0;
100 
101  virtual void setMapUnitScale( const QgsMapUnitScale& scale ) { Q_UNUSED( scale ); } //= 0;
102  virtual QgsMapUnitScale mapUnitScale() const { return QgsMapUnitScale(); } //= 0;
103 
104  // used only with rending with symbol levels is turned on (0 = first pass, 1 = second, ...)
105  void setRenderingPass( int renderingPass ) { mRenderingPass = renderingPass; }
106  int renderingPass() const { return mRenderingPass; }
107 
108  // symbol layers normally only use additional attributes to provide data defined settings
109  virtual QSet<QString> usedAttributes() const;
110 
111  virtual const QgsExpression* dataDefinedProperty( const QString& property ) const;
112  virtual QString dataDefinedPropertyString( const QString& property ) const;
113  virtual void setDataDefinedProperty( const QString& property, const QString& expressionString );
114  virtual void removeDataDefinedProperty( const QString& property );
115  virtual void removeDataDefinedProperties();
116  bool hasDataDefinedProperties() const { return mDataDefinedProperties.size() > 0; }
117 
118  virtual bool writeDxf( QgsDxfExport& e,
119  double mmMapUnitScaleFactor,
120  const QString& layerName,
121  const QgsSymbolV2RenderContext* context,
122  const QgsFeature* f,
123  const QPointF& shift = QPointF( 0.0, 0.0 ) ) const;
124 
125  virtual double dxfWidth( const QgsDxfExport& e, const QgsSymbolV2RenderContext& context ) const;
126  virtual double dxfOffset( const QgsDxfExport& e, const QgsSymbolV2RenderContext& context ) const;
127 
128  virtual QColor dxfColor( const QgsSymbolV2RenderContext& context ) const;
129 
130  virtual QVector<qreal> dxfCustomDashPattern( QgsSymbolV2::OutputUnit& unit ) const;
131  virtual Qt::PenStyle dxfPenStyle() const;
132  virtual QColor dxfBrushColor( const QgsSymbolV2RenderContext& context ) const;
133  virtual Qt::BrushStyle dxfBrushStyle() const;
134 
135  protected:
136  QgsSymbolLayerV2( QgsSymbolV2::SymbolType type, bool locked = false )
137  : mType( type ), mLocked( locked ), mRenderingPass( 0 ) {}
138 
140  bool mLocked;
141  QColor mColor;
143 
144  QMap< QString, QgsExpression* > mDataDefinedProperties;
145 
146  // Configuration of selected symbology implementation
147  static const bool selectionIsOpaque = true; // Selection ignores symbol alpha
148  static const bool selectFillBorder = false; // Fill symbol layer also selects border symbology
149  static const bool selectFillStyle = false; // Fill symbol uses symbol layer style..
150 
151  virtual void prepareExpressions( const QgsFields* fields, double scale = -1.0 );
152  virtual QgsExpression* expression( const QString& property ) const;
154  void saveDataDefinedProperties( QgsStringMap& stringMap ) const;
156  void copyDataDefinedProperties( QgsSymbolLayerV2* destLayer ) const;
157 };
158 
160 
161 class CORE_EXPORT QgsMarkerSymbolLayerV2 : public QgsSymbolLayerV2
162 {
163  public:
164 
166  {
169  Right
170  };
171 
173  {
176  Bottom
177  };
178 
179  void startRender( QgsSymbolV2RenderContext& context ) override;
180 
181  virtual void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context ) = 0;
182 
183  void drawPreviewIcon( QgsSymbolV2RenderContext& context, QSize size ) override;
184 
185  void setAngle( double angle ) { mAngle = angle; }
186  double angle() const { return mAngle; }
187 
188  void setSize( double size ) { mSize = size; }
189  double size() const { return mSize; }
190 
191  void setScaleMethod( QgsSymbolV2::ScaleMethod scaleMethod ) { mScaleMethod = scaleMethod; }
192  QgsSymbolV2::ScaleMethod scaleMethod() const { return mScaleMethod; }
193 
194  void setOffset( QPointF offset ) { mOffset = offset; }
195  QPointF offset() { return mOffset; }
196 
197  virtual void toSld( QDomDocument &doc, QDomElement &element, QgsStringMap props ) const override;
198 
199  virtual void writeSldMarker( QDomDocument &doc, QDomElement &element, QgsStringMap props ) const
200  { Q_UNUSED( props ); element.appendChild( doc.createComment( QString( "QgsMarkerSymbolLayerV2 %1 not implemented yet" ).arg( layerType() ) ) ); }
201 
202  void setOffsetUnit( QgsSymbolV2::OutputUnit unit ) { mOffsetUnit = unit; }
203  QgsSymbolV2::OutputUnit offsetUnit() const { return mOffsetUnit; }
204 
205  void setOffsetMapUnitScale( const QgsMapUnitScale& scale ) { mOffsetMapUnitScale = scale; }
206  const QgsMapUnitScale& offsetMapUnitScale() const { return mOffsetMapUnitScale; }
207 
208  void setSizeUnit( QgsSymbolV2::OutputUnit unit ) { mSizeUnit = unit; }
209  QgsSymbolV2::OutputUnit sizeUnit() const { return mSizeUnit; }
210 
211  void setSizeMapUnitScale( const QgsMapUnitScale& scale ) { mSizeMapUnitScale = scale; }
212  const QgsMapUnitScale& sizeMapUnitScale() const { return mSizeMapUnitScale; }
213 
214  void setOutputUnit( QgsSymbolV2::OutputUnit unit ) override;
215  QgsSymbolV2::OutputUnit outputUnit() const override;
216 
217  void setMapUnitScale( const QgsMapUnitScale& scale ) override;
218  QgsMapUnitScale mapUnitScale() const override;
219 
220  void setHorizontalAnchorPoint( HorizontalAnchorPoint h ) { mHorizontalAnchorPoint = h; }
221  HorizontalAnchorPoint horizontalAnchorPoint() const { return mHorizontalAnchorPoint; }
222 
223  void setVerticalAnchorPoint( VerticalAnchorPoint v ) { mVerticalAnchorPoint = v; }
224  VerticalAnchorPoint verticalAnchorPoint() const { return mVerticalAnchorPoint; }
225 
226  protected:
227  QgsMarkerSymbolLayerV2( bool locked = false );
228 
229  //handles marker offset and anchor point shift together
230  void markerOffset( const QgsSymbolV2RenderContext& context, double& offsetX, double& offsetY ) const;
231 
232  void markerOffset( const QgsSymbolV2RenderContext& context, double width, double height, double& offsetX, double& offsetY ) const;
233 
235  void markerOffset( const QgsSymbolV2RenderContext& context, double width, double height,
236  QgsSymbolV2::OutputUnit widthUnit, QgsSymbolV2::OutputUnit heightUnit,
237  double& offsetX, double& offsetY,
238  const QgsMapUnitScale &widthMapUnitScale, const QgsMapUnitScale &heightMapUnitScale ) const;
239 
240  static QPointF _rotatedOffset( const QPointF& offset, double angle );
241 
242  double mAngle;
243  double mSize;
246  QPointF mOffset;
252 
253  private:
254  static QgsMarkerSymbolLayerV2::HorizontalAnchorPoint decodeHorizontalAnchorPoint( const QString& str );
255  static QgsMarkerSymbolLayerV2::VerticalAnchorPoint decodeVerticalAnchorPoint( const QString& str );
256 
257  QgsExpression* mOffsetExpression;
258  QgsExpression* mHorizontalAnchorExpression;
259  QgsExpression* mVerticalAnchorExpression;
260 };
261 
262 class CORE_EXPORT QgsLineSymbolLayerV2 : public QgsSymbolLayerV2
263 {
264  public:
265  virtual void renderPolyline( const QPolygonF& points, QgsSymbolV2RenderContext& context ) = 0;
266 
267  virtual void renderPolygonOutline( const QPolygonF& points, QList<QPolygonF>* rings, QgsSymbolV2RenderContext& context );
268 
269  virtual void setWidth( double width ) { mWidth = width; }
270  virtual double width() const { return mWidth; }
271 
272  double offset() const { return mOffset; }
273  void setOffset( double offset ) { mOffset = offset; }
274 
275  void setWidthUnit( QgsSymbolV2::OutputUnit unit ) { mWidthUnit = unit; }
276  QgsSymbolV2::OutputUnit widthUnit() const { return mWidthUnit; }
277 
278  void setWidthMapUnitScale( const QgsMapUnitScale& scale ) { mWidthMapUnitScale = scale; }
279  const QgsMapUnitScale& widthMapUnitScale() const { return mWidthMapUnitScale; }
280 
281  void setOffsetUnit( QgsSymbolV2::OutputUnit unit ) { mOffsetUnit = unit; }
282  QgsSymbolV2::OutputUnit offsetUnit() const { return mOffsetUnit; }
283 
284  void setOffsetMapUnitScale( const QgsMapUnitScale& scale ) { mOffsetMapUnitScale = scale; }
285  const QgsMapUnitScale& offsetMapUnitScale() const { return mOffsetMapUnitScale; }
286 
287  void setOutputUnit( QgsSymbolV2::OutputUnit unit ) override;
288  QgsSymbolV2::OutputUnit outputUnit() const override;
289 
290  void setMapUnitScale( const QgsMapUnitScale& scale ) override;
291  QgsMapUnitScale mapUnitScale() const override;
292 
293  void drawPreviewIcon( QgsSymbolV2RenderContext& context, QSize size ) override;
294 
295  virtual double dxfWidth( const QgsDxfExport& e, const QgsSymbolV2RenderContext& context ) const override;
296 
297  protected:
298  QgsLineSymbolLayerV2( bool locked = false );
299 
300  double mWidth;
303  double mOffset;
306 };
307 
308 class CORE_EXPORT QgsFillSymbolLayerV2 : public QgsSymbolLayerV2
309 {
310  public:
311  virtual void renderPolygon( const QPolygonF& points, QList<QPolygonF>* rings, QgsSymbolV2RenderContext& context ) = 0;
312 
313  void drawPreviewIcon( QgsSymbolV2RenderContext& context, QSize size ) override;
314 
315  void setAngle( double angle ) { mAngle = angle; }
316  double angle() const { return mAngle; }
317 
318  protected:
319  QgsFillSymbolLayerV2( bool locked = false );
321  void _renderPolygon( QPainter* p, const QPolygonF& points, const QList<QPolygonF>* rings, QgsSymbolV2RenderContext& context );
322 
323  double mAngle;
324 };
325 
326 class QgsSymbolLayerV2Widget; // why does SIP fail, when this isn't here
327 
328 #endif
329 
330