mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
- update methods of existing classes - add comment to methods missing in the sip bindings - split up collective sip files into single files and use same directory structure in python/ as in src/ - add a lot of missing classes (some might not make sense because of missing python methods in those classes) - remove some non-existing methods from the header files - add scripts/sipdiff - replace some usages of std::vector and std::set with QVector/QSet
66 lines
2.0 KiB
Plaintext
66 lines
2.0 KiB
Plaintext
class QgsEllipseSymbolLayerV2 : QgsMarkerSymbolLayerV2
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsellipsesymbollayerv2.h>
|
|
%End
|
|
|
|
public:
|
|
QgsEllipseSymbolLayerV2();
|
|
~QgsEllipseSymbolLayerV2();
|
|
|
|
static QgsSymbolLayerV2* create( const QgsStringMap& properties = QgsStringMap() ) /Factory/;
|
|
static QgsSymbolLayerV2* createFromSld( QDomElement &element ) /Factory/;
|
|
|
|
void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context );
|
|
QString layerType() const;
|
|
void startRender( QgsSymbolV2RenderContext& context );
|
|
void stopRender( QgsSymbolV2RenderContext& context );
|
|
QgsSymbolLayerV2* clone() const /Factory/;
|
|
QgsStringMap properties() const;
|
|
|
|
void toSld( QDomDocument& doc, QDomElement &element, QgsStringMap props ) const;
|
|
void writeSldMarker( QDomDocument& doc, QDomElement &element, QgsStringMap props ) const;
|
|
|
|
void setSymbolName( const QString& name );
|
|
QString symbolName() const;
|
|
|
|
void setSymbolNameField( const QString& field );
|
|
const QString& symbolNameField() const;
|
|
|
|
void setSymbolWidth( double w );
|
|
double symbolWidth() const;
|
|
|
|
void setWidthField( const QString& field );
|
|
const QString& widthField() const;
|
|
|
|
void setSymbolHeight( double h );
|
|
double symbolHeight() const;
|
|
|
|
void setHeightField( const QString& field );
|
|
const QString& heightField() const;
|
|
|
|
void setRotationField( const QString& field );
|
|
const QString& rotationField() const;
|
|
|
|
void setOutlineWidth( double w );
|
|
double outlineWidth() const;
|
|
|
|
void setOutlineWidthField( const QString& field );
|
|
const QString& outlineWidthField() const;
|
|
|
|
void setFillColor( const QColor& c );
|
|
QColor fillColor() const;
|
|
|
|
void setFillColorField( const QString& field );
|
|
const QString& fillColorField() const;
|
|
|
|
void setOutlineColor( const QColor& c );
|
|
QColor outlineColor() const;
|
|
|
|
void setOutlineColorField( const QString& field );
|
|
const QString& outlineColorField() const;
|
|
|
|
QSet<QString> usedAttributes() const;
|
|
|
|
};
|