QGIS/python/core/auto_generated/symbology/qgspointdistancerenderer.sip.in
Nyall Dawson f1b8682e36 Improve API for exporting to SLD
Deprecate old methods and make methods always take QgsSldExportContext.
Add capacity to QgsSldExportContext to collect export errors and
warnings.

The old API had no way to reliably report errors/warnings during
export to users.
2025-05-04 17:55:25 +10:00

331 lines
9.5 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/symbology/qgspointdistancerenderer.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsPointDistanceRenderer: QgsFeatureRenderer
{
%Docstring(signature="appended")
An abstract base class for distance based point renderers (e.g.,
clusterer and displacement renderers).
:py:class:`QgsPointDistanceRenderer` handles calculation of point
clusters using a distance based threshold. Subclasses must implement
:py:func:`~drawGroup` to handle the rendering of individual point
clusters in the desired style.
%End
%TypeHeaderCode
#include "qgspointdistancerenderer.h"
%End
public:
struct GroupedFeature
{
GroupedFeature( const QgsFeature &feature, QgsMarkerSymbol *symbol /Transfer/, bool isSelected, const QString &label = QString() );
%Docstring
Constructor for GroupedFeature.
:param feature: feature
:param symbol: base symbol for rendering feature (owned by
GroupedFeature)
:param isSelected: set to ``True`` if feature is selected and should be
rendered in a selected state
:param label: optional label text, or empty string for no label
%End
~GroupedFeature();
QgsFeature feature;
QgsMarkerSymbol *symbol() const;
%Docstring
Base symbol for rendering feature
%End
bool isSelected;
QString label;
};
typedef QList< QgsPointDistanceRenderer::GroupedFeature > ClusteredGroup;
QgsPointDistanceRenderer( const QString &rendererName, const QString &labelAttributeName = QString() );
%Docstring
Constructor for QgsPointDistanceRenderer.
:param rendererName: name of renderer for registry
:param labelAttributeName: optional attribute for labeling points
%End
virtual void toSld( QDomDocument &doc, QDomElement &element, const QVariantMap &props = QVariantMap() ) const /Deprecated/;
virtual bool toSld( QDomDocument &doc, QDomElement &element, QgsSldExportContext &context ) const;
virtual bool renderFeature( const QgsFeature &feature, QgsRenderContext &context, int layer = -1, bool selected = false, bool drawVertexMarker = false ) throw( QgsCsException );
virtual QSet<QString> usedAttributes( const QgsRenderContext &context ) const;
virtual bool filterNeedsGeometry() const;
virtual QgsFeatureRenderer::Capabilities capabilities();
virtual QgsSymbolList symbols( QgsRenderContext &context ) const;
virtual QgsSymbol *symbolForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
virtual QgsSymbol *originalSymbolForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
virtual QgsSymbolList symbolsForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
virtual QgsSymbolList originalSymbolsForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
virtual QSet< QString > legendKeysForFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
virtual QString legendKeyToExpression( const QString &key, QgsVectorLayer *layer, bool &ok ) const;
virtual bool willRenderFeature( const QgsFeature &feature, QgsRenderContext &context ) const;
virtual void startRender( QgsRenderContext &context, const QgsFields &fields );
virtual void stopRender( QgsRenderContext &context );
virtual QgsLegendSymbolList legendSymbolItems() const;
virtual void setEmbeddedRenderer( QgsFeatureRenderer *r /Transfer/ );
virtual const QgsFeatureRenderer *embeddedRenderer() const;
virtual void setLegendSymbolItem( const QString &key, QgsSymbol *symbol /Transfer/ );
virtual bool legendSymbolItemsCheckable() const;
virtual bool legendSymbolItemChecked( const QString &key );
virtual void checkLegendSymbolItem( const QString &key, bool state );
virtual QString filter( const QgsFields &fields = QgsFields() );
virtual bool accept( QgsStyleEntityVisitorInterface *visitor ) const;
void setLabelAttributeName( const QString &name );
%Docstring
Sets the attribute name for labeling points.
:param name: attribute name, or empty string to avoid labeling features
by the renderer
.. seealso:: :py:func:`labelAttributeName`
.. seealso:: :py:func:`setLabelFont`
.. seealso:: :py:func:`setLabelColor`
.. seealso:: :py:func:`setMinimumLabelScale`
%End
QString labelAttributeName() const;
%Docstring
Returns the attribute name used for labeling points, or an empty string
if no labeling will be done by the renderer.
.. seealso:: :py:func:`setLabelAttributeName`
.. seealso:: :py:func:`labelFont`
.. seealso:: :py:func:`minimumLabelScale`
.. seealso:: :py:func:`labelColor`
%End
void setLabelFont( const QFont &font );
%Docstring
Sets the font used for labeling points.
:param font: label font
.. seealso:: :py:func:`labelFont`
.. seealso:: :py:func:`setLabelAttributeName`
.. seealso:: :py:func:`setLabelColor`
%End
QFont labelFont() const;
%Docstring
Returns the font used for labeling points.
.. seealso:: :py:func:`setLabelFont`
.. seealso:: :py:func:`labelAttributeName`
.. seealso:: :py:func:`labelColor`
%End
void setMinimumLabelScale( double scale );
%Docstring
Sets the minimum map ``scale`` (i.e. most "zoomed out") at which points
should be labeled by the renderer. The ``scale`` value indicates the
scale denominator, e.g. 1000.0 for a 1:1000 map.
.. seealso:: :py:func:`minimumLabelScale`
.. seealso:: :py:func:`setLabelAttributeName`
%End
double minimumLabelScale() const;
%Docstring
Returns the minimum map scale (i.e. most "zoomed out") at which points
should be labeled by the renderer. The scale value indicates the scale
denominator, e.g. 1000.0 for a 1:1000 map.
.. seealso:: :py:func:`setMinimumLabelScale`
.. seealso:: :py:func:`labelAttributeName`
%End
void setLabelColor( const QColor &color );
%Docstring
Sets the color to use for for labeling points.
:param color: label color
.. seealso:: :py:func:`labelColor`
.. seealso:: :py:func:`setLabelAttributeName`
.. seealso:: :py:func:`setLabelFont`
%End
QColor labelColor() const;
%Docstring
Returns the color used for for labeling points.
.. seealso:: :py:func:`setLabelColor`
.. seealso:: :py:func:`labelAttributeName`
.. seealso:: :py:func:`labelFont`
%End
void setTolerance( double distance );
%Docstring
Sets the tolerance distance for grouping points. Units are specified
using :py:func:`~QgsPointDistanceRenderer.setToleranceUnit`.
:param distance: tolerance distance
.. seealso:: :py:func:`tolerance`
.. seealso:: :py:func:`setToleranceUnit`
%End
double tolerance() const;
%Docstring
Returns the tolerance distance for grouping points. Units are retrieved
using :py:func:`~QgsPointDistanceRenderer.toleranceUnit`.
.. seealso:: :py:func:`setTolerance`
.. seealso:: :py:func:`toleranceUnit`
%End
void setToleranceUnit( Qgis::RenderUnit unit );
%Docstring
Sets the units for the tolerance distance.
:param unit: tolerance distance units
.. seealso:: :py:func:`setTolerance`
.. seealso:: :py:func:`toleranceUnit`
%End
Qgis::RenderUnit toleranceUnit() const;
%Docstring
Returns the units for the tolerance distance.
.. seealso:: :py:func:`tolerance`
.. seealso:: :py:func:`setToleranceUnit`
%End
void setToleranceMapUnitScale( const QgsMapUnitScale &scale );
%Docstring
Sets the map unit scale object for the distance tolerance. This is only
used if the :py:func:`~QgsPointDistanceRenderer.toleranceUnit` is set to
:py:class:`QgsUnitTypes`.RenderMapUnits.
:param scale: scale for distance tolerance
.. seealso:: :py:func:`toleranceMapUnitScale`
.. seealso:: :py:func:`setToleranceUnit`
%End
const QgsMapUnitScale &toleranceMapUnitScale() const;
%Docstring
Returns the map unit scale object for the distance tolerance. This is
only used if the :py:func:`~QgsPointDistanceRenderer.toleranceUnit` is
set to :py:class:`QgsUnitTypes`.RenderMapUnits.
.. seealso:: :py:func:`setToleranceMapUnitScale`
.. seealso:: :py:func:`toleranceUnit`
%End
protected:
void drawLabels( QPointF centerPoint, QgsSymbolRenderContext &context, const QList<QPointF> &labelShifts, const ClusteredGroup &group ) const;
%Docstring
Renders the labels for a group.
:param centerPoint: center point of group
:param context: destination render context
:param labelShifts: displacement for individual label positions
:param group: group of clustered features to label
.. note::
may not be available in Python bindings on some platforms
%End
private:
virtual void drawGroup( QPointF centerPoint, QgsRenderContext &context, const ClusteredGroup &group ) const = 0;
%Docstring
Draws a group of clustered points.
:param centerPoint: central point (geographic centroid) of all points
contained within the cluster
:param context: destination render context
:param group: contents of group
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/symbology/qgspointdistancerenderer.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/