QGIS API Documentation  2.6.0-Brighton
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsellipsesymbollayerv2.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsellipsesymbollayerv2.h
3  ---------------------
4  begin : June 2011
5  copyright : (C) 2011 by Marco Hugentobler
6  email : marco dot hugentobler at sourcepole dot ch
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 QGSELLIPSESYMBOLLAYERV2_H
16 #define QGSELLIPSESYMBOLLAYERV2_H
17 
18 #include "qgsmarkersymbollayerv2.h"
19 #include <QPainterPath>
20 
21 class QgsExpression;
22 
25 {
26  public:
29 
30  static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() );
31  static QgsSymbolLayerV2* createFromSld( QDomElement &element );
32 
33  void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context );
34  QString layerType() const;
35  void startRender( QgsSymbolV2RenderContext& context );
36  void stopRender( QgsSymbolV2RenderContext& context );
37  QgsSymbolLayerV2* clone() const;
38  QgsStringMap properties() const;
39 
40  void toSld( QDomDocument& doc, QDomElement &element, QgsStringMap props ) const;
41  void writeSldMarker( QDomDocument& doc, QDomElement &element, QgsStringMap props ) const;
42 
43  bool writeDxf( QgsDxfExport& e, double mmMapUnitScaleFactor, const QString& layerName, const QgsSymbolV2RenderContext* context, const QgsFeature* f, const QPointF& shift = QPointF( 0.0, 0.0 ) ) const;
44 
45  void setSymbolName( const QString& name ) { mSymbolName = name; }
46  QString symbolName() const { return mSymbolName; }
47 
48  void setSymbolWidth( double w ) { mSymbolWidth = w; }
49  double symbolWidth() const { return mSymbolWidth; }
50 
51  void setSymbolHeight( double h ) { mSymbolHeight = h; }
52  double symbolHeight() const { return mSymbolHeight; }
53 
54  Qt::PenStyle outlineStyle() const { return mOutlineStyle; }
55  void setOutlineStyle( Qt::PenStyle outlineStyle ) { mOutlineStyle = outlineStyle; }
56 
57  void setOutlineWidth( double w ) { mOutlineWidth = w; }
58  double outlineWidth() const { return mOutlineWidth; }
59 
60  void setFillColor( const QColor& c ) { mFillColor = c;}
61  QColor fillColor() const { return mFillColor; }
62 
63  void setOutlineColor( const QColor& c ) { mOutlineColor = c; }
64  QColor outlineColor() const { return mOutlineColor; }
65 
66  void setSymbolWidthUnit( QgsSymbolV2::OutputUnit unit ) { mSymbolWidthUnit = unit; }
67  QgsSymbolV2::OutputUnit symbolWidthUnit() const { return mSymbolWidthUnit; }
68 
69  void setSymbolWidthMapUnitScale( const QgsMapUnitScale& scale ) { mSymbolWidthMapUnitScale = scale; }
70  const QgsMapUnitScale& symbolWidthMapUnitScale() const { return mSymbolWidthMapUnitScale; }
71 
72  void setSymbolHeightUnit( QgsSymbolV2::OutputUnit unit ) { mSymbolHeightUnit = unit; }
73  QgsSymbolV2::OutputUnit symbolHeightUnit() const { return mSymbolHeightUnit; }
74 
75  void setSymbolHeightMapUnitScale( const QgsMapUnitScale& scale ) { mSymbolHeightMapUnitScale = scale; }
76  const QgsMapUnitScale& symbolHeightMapUnitScale() const { return mSymbolHeightMapUnitScale; }
77 
78  void setOutlineWidthUnit( QgsSymbolV2::OutputUnit unit ) { mOutlineWidthUnit = unit; }
79  QgsSymbolV2::OutputUnit outlineWidthUnit() const { return mOutlineWidthUnit; }
80 
81  void setOutlineWidthMapUnitScale( const QgsMapUnitScale& scale ) { mOutlineWidthMapUnitScale = scale; }
82  const QgsMapUnitScale& outlineWidthMapUnitScale() const { return mOutlineWidthMapUnitScale; }
83 
86 
87  void setMapUnitScale( const QgsMapUnitScale& scale );
89 
90  private:
91  QString mSymbolName;
92  double mSymbolWidth;
93  QgsSymbolV2::OutputUnit mSymbolWidthUnit;
94  QgsMapUnitScale mSymbolWidthMapUnitScale;
95  double mSymbolHeight;
96  QgsSymbolV2::OutputUnit mSymbolHeightUnit;
97  QgsMapUnitScale mSymbolHeightMapUnitScale;
98  QColor mFillColor;
99  QColor mOutlineColor;
100  Qt::PenStyle mOutlineStyle;
101  double mOutlineWidth;
102  QgsSymbolV2::OutputUnit mOutlineWidthUnit;
103  QgsMapUnitScale mOutlineWidthMapUnitScale;
104 
105  QPainterPath mPainterPath;
106 
107  QPen mPen;
108  QBrush mBrush;
109 
117  void preparePath( const QString& symbolName, QgsSymbolV2RenderContext& context, double* scaledWidth = 0, double* scaledHeight = 0, const QgsFeature* f = 0 );
118 
120  bool hasDataDefinedProperty() const;
121 };
122 
123 #endif // QGSELLIPSESYMBOLLAYERV2_H
124 
125