QGIS API Documentation  2.14.0-Essen
qgsvectorfieldsymbollayer.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsvectorfieldsymbollayer.h
3  -------------------------
4  begin : Octorer 25, 2011
5  copyright : (C) 2011 by Marco Hugentobler
6  email : marco dot hugentobler at sourcepole dot ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSVECTORFIELDSYMBOLLAYER_H
19 #define QGSVECTORFIELDSYMBOLLAYER_H
20 
21 #include "qgssymbollayerv2.h"
22 
25 {
26  public:
28  {
29  Cartesian = 0,
31  Height
32  };
33 
35  {
36  ClockwiseFromNorth = 0,
37  CounterclockwiseFromEast
38  };
39 
41  {
42  Degrees = 0,
43  Radians
44  };
45 
48 
49  static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() );
50  static QgsSymbolLayerV2* createFromSld( QDomElement &element );
51 
52  QString layerType() const override { return "VectorField"; }
53 
54  bool setSubSymbol( QgsSymbolV2* symbol ) override;
55  QgsSymbolV2* subSymbol() override { return mLineSymbol; }
56 
57  void renderPoint( QPointF point, QgsSymbolV2RenderContext& context ) override;
58  void startRender( QgsSymbolV2RenderContext& context ) override;
59  void stopRender( QgsSymbolV2RenderContext& context ) override;
60 
61  QgsVectorFieldSymbolLayer* clone() const override;
62  QgsStringMap properties() const override;
63 
64  void toSld( QDomDocument& doc, QDomElement &element, const QgsStringMap& props ) const override;
65 
66  void drawPreviewIcon( QgsSymbolV2RenderContext& context, QSize size ) override;
67 
68  QSet<QString> usedAttributes() const override;
69 
70  //setters and getters
71  void setXAttribute( const QString& attribute ) { mXAttribute = attribute; }
72  QString xAttribute() const { return mXAttribute; }
73  void setYAttribute( const QString& attribute ) { mYAttribute = attribute; }
74  QString yAttribute() const { return mYAttribute; }
75  void setScale( double s ) { mScale = s; }
76  double scale() const { return mScale; }
77  void setVectorFieldType( VectorFieldType type ) { mVectorFieldType = type; }
78  VectorFieldType vectorFieldType() const { return mVectorFieldType; }
79  void setAngleOrientation( AngleOrientation orientation ) { mAngleOrientation = orientation; }
80  AngleOrientation angleOrientation() const { return mAngleOrientation; }
81  void setAngleUnits( AngleUnits units ) { mAngleUnits = units; }
82  AngleUnits angleUnits() const { return mAngleUnits; }
83 
84  void setOutputUnit( QgsSymbolV2::OutputUnit unit ) override;
85  QgsSymbolV2::OutputUnit outputUnit() const override;
86 
87  void setMapUnitScale( const QgsMapUnitScale& scale ) override;
88  QgsMapUnitScale mapUnitScale() const override;
89 
90  void setDistanceUnit( QgsSymbolV2::OutputUnit unit ) { mDistanceUnit = unit; }
91  QgsSymbolV2::OutputUnit distanceUnit() const { return mDistanceUnit; }
92 
93  void setDistanceMapUnitScale( const QgsMapUnitScale& scale ) { mDistanceMapUnitScale = scale; }
94  const QgsMapUnitScale& distanceMapUnitScale() const { return mDistanceMapUnitScale; }
95 
96  private:
97  QString mXAttribute;
98  QString mYAttribute;
99  QgsSymbolV2::OutputUnit mDistanceUnit;
100  QgsMapUnitScale mDistanceMapUnitScale;
101  double mScale;
102  VectorFieldType mVectorFieldType;
103  AngleOrientation mAngleOrientation;
104  AngleUnits mAngleUnits;
105 
106  QgsLineSymbolV2* mLineSymbol;
107 
108  //Attribute indices are resolved in startRender method
109  int mXIndex;
110  int mYIndex;
111 
112  //Converts length/angle to cartesian x/y
113  void convertPolarToCartesian( double length, double angle, double& x, double& y ) const;
114 };
115 
116 #endif // QGSVECTORFIELDSYMBOLLAYER_H
117 
118 
virtual QSet< QString > usedAttributes() const
Returns the set of attributes referenced by the layer.
virtual void renderPoint(QPointF point, QgsSymbolV2RenderContext &context)=0
void setXAttribute(const QString &attribute)
QgsSymbolV2::OutputUnit outputUnit() const override
QgsSymbolV2 * subSymbol() override
OutputUnit
The unit of the output.
Definition: qgssymbolv2.h:62
void setYAttribute(const QString &attribute)
virtual QgsSymbolLayerV2 * clone() const =0
Shall be reimplemented by subclasses to create a deep copy of the instance.
void setAngleUnits(AngleUnits units)
AngleOrientation angleOrientation() const
const QgsMapUnitScale & distanceMapUnitScale() const
VectorFieldType vectorFieldType() const
QMap< QString, QString > QgsStringMap
Definition: qgis.h:384
void setMapUnitScale(const QgsMapUnitScale &scale) override
QString layerType() const override
Returns a string that represents this layer type.
A symbol layer class for displaying displacement arrows based on point layer attributes.
virtual QgsStringMap properties() const =0
Should be reimplemented by subclasses to return a string map that contains the configuration informat...
void setDistanceMapUnitScale(const QgsMapUnitScale &scale)
QgsSymbolV2::SymbolType type() const
double ANALYSIS_EXPORT angle(Point3D *p1, Point3D *p2, Point3D *p3, Point3D *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
QgsSymbolV2::OutputUnit distanceUnit() const
void startRender(QgsSymbolV2RenderContext &context) override
virtual void toSld(QDomDocument &doc, QDomElement &element, const QgsStringMap &props) const override
Struct for storing maximum and minimum scales for measurements in map units.
QgsMapUnitScale mapUnitScale() const override
void drawPreviewIcon(QgsSymbolV2RenderContext &context, QSize size) override
void setDistanceUnit(QgsSymbolV2::OutputUnit unit)
void setAngleOrientation(AngleOrientation orientation)
virtual bool setSubSymbol(QgsSymbolV2 *symbol)
set layer&#39;s subsymbol. takes ownership of the passed symbol
void setVectorFieldType(VectorFieldType type)
virtual void stopRender(QgsSymbolV2RenderContext &context)=0
void setOutputUnit(QgsSymbolV2::OutputUnit unit) override