QGIS API Documentation  2.12.0-Lyon
qgsmarkersymbollayerv2.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmarkersymbollayerv2.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 
16 #ifndef QGSMARKERSYMBOLLAYERV2_H
17 #define QGSMARKERSYMBOLLAYERV2_H
18 
19 #include "qgssymbollayerv2.h"
20 #include "qgsvectorlayer.h"
21 
22 #define DEFAULT_SIMPLEMARKER_NAME "circle"
23 #define DEFAULT_SIMPLEMARKER_COLOR QColor(255,0,0)
24 #define DEFAULT_SIMPLEMARKER_BORDERCOLOR QColor(0,0,0)
25 #define DEFAULT_SIMPLEMARKER_SIZE DEFAULT_POINT_SIZE
26 #define DEFAULT_SIMPLEMARKER_ANGLE 0
27 
28 #include <QPen>
29 #include <QBrush>
30 #include <QPicture>
31 #include <QPolygonF>
32 #include <QFont>
33 
35 {
36  public:
38  const QColor& color = DEFAULT_SIMPLEMARKER_COLOR,
39  const QColor& borderColor = DEFAULT_SIMPLEMARKER_BORDERCOLOR,
40  double size = DEFAULT_SIMPLEMARKER_SIZE,
43 
44  // static stuff
45 
46  static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() );
47  static QgsSymbolLayerV2* createFromSld( QDomElement &element );
48 
49  // implemented from base classes
50 
51  QString layerType() const override;
52 
53  void startRender( QgsSymbolV2RenderContext& context ) override;
54 
55  void stopRender( QgsSymbolV2RenderContext& context ) override;
56 
57  void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context ) override;
58 
59  QgsStringMap properties() const override;
60 
61  QgsSymbolLayerV2* clone() const override;
62 
63  void writeSldMarker( QDomDocument &doc, QDomElement &element, const QgsStringMap& props ) const override;
64 
65  QString ogrFeatureStyle( double mmScaleFactor, double mapUnitScaleFactor ) const override;
66 
67  QString name() const { return mName; }
68  void setName( const QString& name ) { mName = name; }
69 
70  QColor borderColor() const { return mBorderColor; }
71  void setBorderColor( const QColor& color ) { mBorderColor = color; }
72 
73  Qt::PenStyle outlineStyle() const { return mOutlineStyle; }
74  void setOutlineStyle( Qt::PenStyle outlineStyle ) { mOutlineStyle = outlineStyle; }
75 
78  QColor outlineColor() const override { return borderColor(); }
81  void setOutlineColor( const QColor& color ) override { setBorderColor( color ); }
82 
85  QColor fillColor() const override { return color(); }
88  void setFillColor( const QColor& color ) override { setColor( color ); }
89 
90  double outlineWidth() const { return mOutlineWidth; }
91  void setOutlineWidth( double w ) { mOutlineWidth = w; }
92 
93  void setOutlineWidthUnit( QgsSymbolV2::OutputUnit u ) { mOutlineWidthUnit = u; }
94  QgsSymbolV2::OutputUnit outlineWidthUnit() const { return mOutlineWidthUnit; }
95 
96  void setOutlineWidthMapUnitScale( const QgsMapUnitScale& scale ) { mOutlineWidthMapUnitScale = scale; }
97  const QgsMapUnitScale& outlineWidthMapUnitScale() const { return mOutlineWidthMapUnitScale; }
98 
99  bool writeDxf( QgsDxfExport& e, double mmMapUnitScaleFactor, const QString& layerName, QgsSymbolV2RenderContext* context, const QgsFeature* f, const QPointF& shift = QPointF( 0.0, 0.0 ) ) const override;
100 
101  void setOutputUnit( QgsSymbolV2::OutputUnit unit ) override;
102  QgsSymbolV2::OutputUnit outputUnit() const override;
103 
104  void setMapUnitScale( const QgsMapUnitScale& scale ) override;
105  QgsMapUnitScale mapUnitScale() const override;
106 
107  protected:
108  void drawMarker( QPainter* p, QgsSymbolV2RenderContext& context );
109 
110  bool prepareShape( const QString& name = QString() );
111  bool prepareShape( const QString& name, QPolygonF &polygon ) const;
112  bool preparePath( QString name = QString() );
113 
116  bool prepareCache( QgsSymbolV2RenderContext& context );
117 
119  Qt::PenStyle mOutlineStyle;
133 
134  //Maximum width/height of cache image
135  static const int mMaximumCacheWidth = 3000;
136 };
137 
139 
140 #define DEFAULT_SVGMARKER_NAME "/crosses/Star1.svg"
141 #define DEFAULT_SVGMARKER_SIZE 2*DEFAULT_POINT_SIZE
142 #define DEFAULT_SVGMARKER_ANGLE 0
143 
145 {
146  public:
148  double size = DEFAULT_SVGMARKER_SIZE,
151 
152  // static stuff
153 
154  static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() );
155  static QgsSymbolLayerV2* createFromSld( QDomElement &element );
156 
157  // implemented from base classes
158 
159  QString layerType() const override;
160 
161  void startRender( QgsSymbolV2RenderContext& context ) override;
162 
163  void stopRender( QgsSymbolV2RenderContext& context ) override;
164 
165  void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context ) override;
166 
167  QgsStringMap properties() const override;
168 
169  QgsSymbolLayerV2* clone() const override;
170 
171  void writeSldMarker( QDomDocument &doc, QDomElement &element, const QgsStringMap& props ) const override;
172 
173  QString path() const { return mPath; }
174  void setPath( const QString& path );
175 
176  QColor fillColor() const override { return color(); }
177  void setFillColor( const QColor& color ) override { setColor( color ); }
178 
179  QColor outlineColor() const override { return mOutlineColor; }
180  void setOutlineColor( const QColor& c ) override { mOutlineColor = c; }
181 
182  double outlineWidth() const { return mOutlineWidth; }
183  void setOutlineWidth( double w ) { mOutlineWidth = w; }
184 
185  void setOutlineWidthUnit( QgsSymbolV2::OutputUnit unit ) { mOutlineWidthUnit = unit; }
186  QgsSymbolV2::OutputUnit outlineWidthUnit() const { return mOutlineWidthUnit; }
187 
188  void setOutlineWidthMapUnitScale( const QgsMapUnitScale& scale ) { mOutlineWidthMapUnitScale = scale; }
189  const QgsMapUnitScale& outlineWidthMapUnitScale() const { return mOutlineWidthMapUnitScale; }
190 
191  void setOutputUnit( QgsSymbolV2::OutputUnit unit ) override;
192  QgsSymbolV2::OutputUnit outputUnit() const override;
193 
194  void setMapUnitScale( const QgsMapUnitScale& scale ) override;
195  QgsMapUnitScale mapUnitScale() const override;
196 
197  bool writeDxf( QgsDxfExport& e, double mmMapUnitScaleFactor, const QString& layerName, QgsSymbolV2RenderContext* context, const QgsFeature* f, const QPointF& shift = QPointF( 0.0, 0.0 ) ) const override;
198 
199  protected:
201 
202  //param(fill), param(outline), param(outline-width) are going
203  //to be replaced in memory
208 };
209 
210 
212 
213 #define POINT2MM(x) ( (x) * 25.4 / 72 ) // point is 1/72 of inch
214 #define MM2POINT(x) ( (x) * 72 / 25.4 )
215 
216 #define DEFAULT_FONTMARKER_FONT "Dingbats"
217 #define DEFAULT_FONTMARKER_CHR QChar('A')
218 #define DEFAULT_FONTMARKER_SIZE POINT2MM(12)
219 #define DEFAULT_FONTMARKER_COLOR QColor(Qt::black)
220 #define DEFAULT_FONTMARKER_ANGLE 0
221 
223 {
224  public:
227  double pointSize = DEFAULT_FONTMARKER_SIZE,
228  const QColor& color = DEFAULT_FONTMARKER_COLOR,
229  double angle = DEFAULT_FONTMARKER_ANGLE );
230 
232 
233  // static stuff
234 
235  static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() );
236  static QgsSymbolLayerV2* createFromSld( QDomElement &element );
237 
238  // implemented from base classes
239 
240  QString layerType() const override;
241 
242  void startRender( QgsSymbolV2RenderContext& context ) override;
243 
244  void stopRender( QgsSymbolV2RenderContext& context ) override;
245 
246  void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context ) override;
247 
248  QgsStringMap properties() const override;
249 
250  QgsSymbolLayerV2* clone() const override;
251 
252  void writeSldMarker( QDomDocument &doc, QDomElement &element, const QgsStringMap& props ) const override;
253 
254  // new methods
255 
256  QString fontFamily() const { return mFontFamily; }
257  void setFontFamily( const QString& family ) { mFontFamily = family; }
258 
259  QChar character() const { return mChr; }
260  void setCharacter( QChar ch ) { mChr = ch; }
261 
262  protected:
263 
267 
270  double mOrigSize;
271 
272 };
273 
274 
275 #endif
276 
277 
void setOutlineStyle(Qt::PenStyle outlineStyle)
QgsSymbolV2::OutputUnit outlineWidthUnit() const
QgsSymbolV2::OutputUnit outputUnit() const override
OutputUnit
The unit of the output.
Definition: qgssymbolv2.h:55
virtual QgsSymbolLayerV2 * clone() const =0
#define DEFAULT_FONTMARKER_COLOR
QgsSymbolV2::OutputUnit mOutlineWidthUnit
void setOutlineColor(const QColor &c) override
Set outline color.
#define DEFAULT_SIMPLEMARKER_ANGLE
virtual void writeSldMarker(QDomDocument &doc, QDomElement &element, const QgsStringMap &props) const
#define DEFAULT_FONTMARKER_CHR
#define DEFAULT_SIMPLEMARKER_COLOR
void setFillColor(const QColor &color) override
Set fill color.
QColor fillColor() const override
Get fill color.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:176
QMap< QString, QString > QgsStringMap
Definition: qgis.h:367
void setMapUnitScale(const QgsMapUnitScale &scale) override
#define DEFAULT_SVGMARKER_ANGLE
#define DEFAULT_SIMPLEMARKER_NAME
void setOutlineWidthUnit(QgsSymbolV2::OutputUnit unit)
void setOutlineWidthUnit(QgsSymbolV2::OutputUnit u)
virtual void renderPoint(const QPointF &point, QgsSymbolV2RenderContext &context)=0
void setFontFamily(const QString &family)
#define DEFAULT_SCALE_METHOD
void setFillColor(const QColor &color) override
Set fill color.
virtual QgsStringMap properties() const =0
#define DEFAULT_FONTMARKER_ANGLE
virtual QColor color() const
virtual bool writeDxf(QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, QgsSymbolV2RenderContext *context, const QgsFeature *f, const QPointF &shift=QPointF(0.0, 0.0)) const
void setOutlineWidthMapUnitScale(const QgsMapUnitScale &scale)
QgsSymbolV2::OutputUnit mOutlineWidthUnit
#define DEFAULT_SVGMARKER_SIZE
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)
virtual QString layerType() const =0
void setOutlineWidthMapUnitScale(const QgsMapUnitScale &scale)
#define DEFAULT_FONTMARKER_SIZE
void startRender(QgsSymbolV2RenderContext &context) override
#define DEFAULT_FONTMARKER_FONT
QgsSymbolV2::OutputUnit outlineWidthUnit() const
#define DEFAULT_SVGMARKER_NAME
void setBorderColor(const QColor &color)
#define DEFAULT_SIMPLEMARKER_SIZE
ScaleMethod
Scale method.
Definition: qgssymbolv2.h:78
const QgsMapUnitScale & outlineWidthMapUnitScale() const
Struct for storing maximum and minimum scales for measurements in map units.
QgsMapUnitScale mapUnitScale() const override
Qt::PenStyle outlineStyle() const
QColor fillColor() const override
Get fill color.
virtual void setColor(const QColor &color)
virtual void stopRender(QgsSymbolV2RenderContext &context)=0
QColor outlineColor() const override
Get outline color.
void setOutputUnit(QgsSymbolV2::OutputUnit unit) override
const QgsMapUnitScale & outlineWidthMapUnitScale() const
virtual QString ogrFeatureStyle(double mmScaleFactor, double mapUnitScaleFactor) const
QColor outlineColor() const override
Get outline color.
void setName(const QString &name)
#define DEFAULT_SIMPLEMARKER_BORDERCOLOR
void setOutlineColor(const QColor &color) override
Set outline color.