QGIS/python/gui/symbology-ng/qgspointdisplacementrendererwidget.sip
Nyall Dawson a62c6a917a Give symbol widgets optional access to a map canvas
This allows symbol widgets to fetch properties from the main map
canvas, for instance fetching the current scale from the map.
2015-09-16 21:57:27 +10:00

14 lines
517 B
Plaintext

class QgsPointDisplacementRendererWidget: QgsRendererV2Widget
{
%TypeHeaderCode
#include <qgspointdisplacementrendererwidget.h>
%End
public:
static QgsRendererV2Widget* create( QgsVectorLayer* layer, QgsStyleV2* style, QgsFeatureRendererV2* renderer ) /Factory/;
QgsPointDisplacementRendererWidget( QgsVectorLayer* layer, QgsStyleV2* style, QgsFeatureRendererV2* renderer );
~QgsPointDisplacementRendererWidget();
QgsFeatureRendererV2* renderer();
void setMapCanvas( QgsMapCanvas* canvas );
};