QGIS API Documentation  2.4.0-Chugiak
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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  QColor color = DEFAULT_SIMPLEMARKER_COLOR,
39  QColor borderColor = DEFAULT_SIMPLEMARKER_BORDERCOLOR,
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;
52 
53  void startRender( QgsSymbolV2RenderContext& context );
54 
55  void stopRender( QgsSymbolV2RenderContext& context );
56 
57  void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context );
58 
59  QgsStringMap properties() const;
60 
61  QgsSymbolLayerV2* clone() const;
62 
63  void writeSldMarker( QDomDocument &doc, QDomElement &element, QgsStringMap props ) const;
64 
65  QString ogrFeatureStyle( double mmScaleFactor, double mapUnitScaleFactor ) const;
66 
67  QString name() const { return mName; }
68  void setName( QString name ) { mName = name; }
69 
70  QColor borderColor() const { return mBorderColor; }
71  void setBorderColor( 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 { return borderColor(); }
81  void setOutlineColor( const QColor& color ) { setBorderColor( color ); }
82 
85  QColor fillColor() const { return color(); }
88  void setFillColor( const QColor& color ) { 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, const QgsSymbolV2RenderContext* context, const QgsFeature* f, const QPointF& shift = QPointF( 0.0, 0.0 ) ) const;
100 
103 
104  void setMapUnitScale( const QgsMapUnitScale& scale );
106 
107  protected:
108  void drawMarker( QPainter* p, QgsSymbolV2RenderContext& context );
109 
110  bool prepareShape( QString name = QString() );
111  bool preparePath( QString name = QString() );
112 
115  bool prepareCache( QgsSymbolV2RenderContext& context );
116 
117  QColor mBorderColor;
118  Qt::PenStyle mOutlineStyle;
122  QPen mPen;
123  QBrush mBrush;
124  QPolygonF mPolygon;
125  QPainterPath mPath;
126  QString mName;
127  QImage mCache;
128  QPen mSelPen;
129  QBrush mSelBrush;
130  QImage mSelCache;
132 
133  //Maximum width/height of cache image
134  static const int mMaximumCacheWidth = 3000;
135 
136  private:
139 };
140 
142 
143 #define DEFAULT_SVGMARKER_NAME "/crosses/Star1.svg"
144 #define DEFAULT_SVGMARKER_SIZE 2*DEFAULT_POINT_SIZE
145 #define DEFAULT_SVGMARKER_ANGLE 0
146 
148 {
149  public:
151  double size = DEFAULT_SVGMARKER_SIZE,
154 
155  // static stuff
156 
157  static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() );
158  static QgsSymbolLayerV2* createFromSld( QDomElement &element );
159 
160  // implemented from base classes
161 
162  QString layerType() const;
163 
164  void startRender( QgsSymbolV2RenderContext& context );
165 
166  void stopRender( QgsSymbolV2RenderContext& context );
167 
168  void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context );
169 
170  QgsStringMap properties() const;
171 
172  QgsSymbolLayerV2* clone() const;
173 
174  void writeSldMarker( QDomDocument &doc, QDomElement &element, QgsStringMap props ) const;
175 
176  QString path() const { return mPath; }
177  void setPath( QString path );
178 
179  QColor fillColor() const { return mFillColor; }
180  void setFillColor( const QColor& c ) { mFillColor = c; }
181 
182  QColor outlineColor() const { return mOutlineColor; }
183  void setOutlineColor( const QColor& c ) { mOutlineColor = c; }
184 
185  double outlineWidth() const { return mOutlineWidth; }
186  void setOutlineWidth( double w ) { mOutlineWidth = w; }
187 
188  void setOutlineWidthUnit( QgsSymbolV2::OutputUnit unit ) { mOutlineWidthUnit = unit; }
189  QgsSymbolV2::OutputUnit outlineWidthUnit() const { return mOutlineWidthUnit; }
190 
191  void setOutlineWidthMapUnitScale( const QgsMapUnitScale& scale ) { mOutlineWidthMapUnitScale = scale; }
192  const QgsMapUnitScale& outlineWidthMapUnitScale() const { return mOutlineWidthMapUnitScale; }
193 
196 
197  void setMapUnitScale( const QgsMapUnitScale& scale );
199 
200  bool writeDxf( QgsDxfExport& e, double mmMapUnitScaleFactor, const QString& layerName, const QgsSymbolV2RenderContext* context, const QgsFeature* f, const QPointF& shift = QPointF( 0.0, 0.0 ) ) const;
201 
202  protected:
203  QString mPath;
204 
205  //param(fill), param(outline), param(outline-width) are going
206  //to be replaced in memory
207  QColor mFillColor;
212  double mOrigSize;
213 };
214 
215 
217 
218 #define POINT2MM(x) ( (x) * 25.4 / 72 ) // point is 1/72 of inch
219 #define MM2POINT(x) ( (x) * 72 / 25.4 )
220 
221 #define DEFAULT_FONTMARKER_FONT "Dingbats"
222 #define DEFAULT_FONTMARKER_CHR QChar('A')
223 #define DEFAULT_FONTMARKER_SIZE POINT2MM(12)
224 #define DEFAULT_FONTMARKER_COLOR QColor(Qt::black)
225 #define DEFAULT_FONTMARKER_ANGLE 0
226 
228 {
229  public:
231  QChar chr = DEFAULT_FONTMARKER_CHR,
232  double pointSize = DEFAULT_FONTMARKER_SIZE,
233  QColor color = DEFAULT_FONTMARKER_COLOR,
234  double angle = DEFAULT_FONTMARKER_ANGLE );
235 
236  // static stuff
237 
238  static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() );
239  static QgsSymbolLayerV2* createFromSld( QDomElement &element );
240 
241  // implemented from base classes
242 
243  QString layerType() const;
244 
245  void startRender( QgsSymbolV2RenderContext& context );
246 
247  void stopRender( QgsSymbolV2RenderContext& context );
248 
249  void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context );
250 
251  QgsStringMap properties() const;
252 
253  QgsSymbolLayerV2* clone() const;
254 
255  void writeSldMarker( QDomDocument &doc, QDomElement &element, QgsStringMap props ) const;
256 
257  // new methods
258 
259  QString fontFamily() const { return mFontFamily; }
260  void setFontFamily( QString family ) { mFontFamily = family; }
261 
262  QChar character() const { return mChr; }
263  void setCharacter( QChar ch ) { mChr = ch; }
264 
265  protected:
266 
267  QString mFontFamily;
268  QChar mChr;
269 
270  QPointF mChrOffset;
271  QFont mFont;
272  double mOrigSize;
273 };
274 
275 
276 #endif
277 
278 
Class for parsing and evaluation of expressions (formerly called "search strings").
Definition: qgsexpression.h:89
void setOutlineStyle(Qt::PenStyle outlineStyle)
QgsSymbolV2::OutputUnit outlineWidthUnit() const
QgsSymbolV2::OutputUnit outputUnit() const
virtual QgsSymbolLayerV2 * clone() const =0
void setMapUnitScale(const QgsMapUnitScale &scale)
#define DEFAULT_FONTMARKER_COLOR
QgsSymbolV2::OutputUnit mOutlineWidthUnit
#define DEFAULT_SIMPLEMARKER_ANGLE
void startRender(QgsSymbolV2RenderContext &context)
void setFillColor(const QColor &c)
Set fill color.
#define DEFAULT_FONTMARKER_CHR
#define DEFAULT_SIMPLEMARKER_COLOR
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:113
void setOutputUnit(QgsSymbolV2::OutputUnit unit)
QMap< QString, QString > QgsStringMap
Definition: qgis.h:416
#define DEFAULT_SVGMARKER_ANGLE
void setFontFamily(QString family)
#define DEFAULT_SIMPLEMARKER_NAME
void setOutlineWidthUnit(QgsSymbolV2::OutputUnit unit)
virtual void writeSldMarker(QDomDocument &doc, QDomElement &element, QgsStringMap props) const
void setOutlineWidthUnit(QgsSymbolV2::OutputUnit u)
virtual void renderPoint(const QPointF &point, QgsSymbolV2RenderContext &context)=0
QColor fillColor() const
Get fill color.
#define DEFAULT_SCALE_METHOD
QColor outlineColor() const
Get outline color.
void setFillColor(const QColor &color)
Set fill color.
virtual QgsStringMap properties() const =0
#define DEFAULT_FONTMARKER_ANGLE
virtual QColor color() const
void setOutlineWidthMapUnitScale(const QgsMapUnitScale &scale)
QColor fillColor() const
Get fill color.
QgsMapUnitScale mapUnitScale() const
QgsSymbolV2::OutputUnit mOutlineWidthUnit
#define DEFAULT_SVGMARKER_SIZE
virtual bool writeDxf(QgsDxfExport &e, double mmMapUnitScaleFactor, const QString &layerName, const QgsSymbolV2RenderContext *context, const QgsFeature *f, const QPointF &shift=QPointF(0.0, 0.0)) 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)
virtual QString layerType() const =0
void setOutlineWidthMapUnitScale(const QgsMapUnitScale &scale)
QColor outlineColor() const
Get outline color.
#define DEFAULT_FONTMARKER_SIZE
#define DEFAULT_FONTMARKER_FONT
QgsSymbolV2::OutputUnit outlineWidthUnit() const
#define DEFAULT_SVGMARKER_NAME
#define DEFAULT_SIMPLEMARKER_SIZE
const QgsMapUnitScale & outlineWidthMapUnitScale() const
Qt::PenStyle outlineStyle() const
void setOutlineColor(const QColor &color)
Set outline color.
virtual void setColor(const QColor &color)
void setOutlineColor(const QColor &c)
Set outline color.
double size
Definition: qgssvgcache.cpp:77
virtual void stopRender(QgsSymbolV2RenderContext &context)=0
const QgsMapUnitScale & outlineWidthMapUnitScale() const
virtual QString ogrFeatureStyle(double mmScaleFactor, double mapUnitScaleFactor) const
#define DEFAULT_SIMPLEMARKER_BORDERCOLOR