/usr/include/qgis/qgspointdisplacementrenderer.h is in libqgis-dev 2.8.6+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | /***************************************************************************
qgspointdisplacementrenderer.cpp
--------------------------------
begin : January 26, 2010
copyright : (C) 2010 by Marco Hugentobler
email : marco at hugis dot net
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSPOINTDISPLACEMENTRENDERER_H
#define QGSPOINTDISPLACEMENTRENDERER_H
#include "qgsfeature.h"
#include "qgssymbolv2.h"
#include "qgspoint.h"
#include "qgsrendererv2.h"
#include <QFont>
#include <QSet>
class QgsSpatialIndex;
/**A renderer that automatically displaces points with the same position*/
class CORE_EXPORT QgsPointDisplacementRenderer: public QgsFeatureRendererV2
{
public:
QgsPointDisplacementRenderer( const QString& labelAttributeName = "" );
~QgsPointDisplacementRenderer();
QgsFeatureRendererV2* clone() const override;
virtual void toSld( QDomDocument& doc, QDomElement &element ) const override;
/**Reimplemented from QgsFeatureRendererV2*/
bool renderFeature( QgsFeature& feature, QgsRenderContext& context, int layer = -1, bool selected = false, bool drawVertexMarker = false ) override;
/** Partial proxy that will call this method on the embedded renderer. */
virtual QList<QString> usedAttributes() override;
/** Proxy that will call this method on the embedded renderer. */
virtual int capabilities() override;
/** Proxy that will call this method on the embedded renderer. */
virtual QgsSymbolV2List symbols() override;
/** Proxy that will call this method on the embedded renderer. */
virtual QgsSymbolV2* symbolForFeature( QgsFeature& feature ) override;
/** Proxy that will call this method on the embedded renderer. */
virtual QgsSymbolV2* originalSymbolForFeature( QgsFeature& feat ) override;
/** Proxy that will call this method on the embedded renderer. */
virtual QgsSymbolV2List symbolsForFeature( QgsFeature& feat ) override;
/** Proxy that will call this method on the embedded renderer. */
virtual QgsSymbolV2List originalSymbolsForFeature( QgsFeature& feat ) override;
/** Proxy that will call this method on the embedded renderer. */
virtual bool willRenderFeature( QgsFeature& feat ) override;
void startRender( QgsRenderContext& context, const QgsFields& fields ) override;
void stopRender( QgsRenderContext& context ) override;
//! create a renderer from XML element
static QgsFeatureRendererV2* create( QDomElement& symbologyElem );
QDomElement save( QDomDocument& doc ) override;
QgsLegendSymbologyList legendSymbologyItems( QSize iconSize ) override;
//! @note not available in python bindings
QgsLegendSymbolList legendSymbolItems( double scaleDenominator = -1, QString rule = "" ) override;
void setLabelAttributeName( const QString& name ) { mLabelAttributeName = name; }
QString labelAttributeName() const { return mLabelAttributeName; }
/**Sets embedded renderer (takes ownership)*/
void setEmbeddedRenderer( QgsFeatureRendererV2* r );
QgsFeatureRendererV2* embeddedRenderer() const { return mRenderer;}
//! not available in python bindings
//! @deprecated since 2.4
Q_DECL_DEPRECATED void setDisplacementGroups( const QList<QMap<QgsFeatureId, QgsFeature> >& list ) { Q_UNUSED( list ); }
void setLabelFont( const QFont& f ) { mLabelFont = f; }
QFont labelFont() const { return mLabelFont;}
void setCircleWidth( double w ) { mCircleWidth = w; }
double circleWidth() const { return mCircleWidth; }
void setCircleColor( const QColor& c ) { mCircleColor = c; }
QColor circleColor() const { return mCircleColor; }
void setLabelColor( const QColor& c ) { mLabelColor = c;}
QColor labelColor() const { return mLabelColor; }
void setCircleRadiusAddition( double d ) { mCircleRadiusAddition = d; }
double circleRadiusAddition() const { return mCircleRadiusAddition; }
void setMaxLabelScaleDenominator( double d ) { mMaxLabelScaleDenominator = d; }
double maxLabelScaleDenominator() const { return mMaxLabelScaleDenominator; }
/**Returns the symbol for the center of a displacement group (but _not_ ownership of the symbol)*/
QgsMarkerSymbolV2* centerSymbol() { return mCenterSymbol;}
/**Sets the center symbol (takes ownership)*/
void setCenterSymbol( QgsMarkerSymbolV2* symbol );
void setTolerance( double t ) { mTolerance = t; }
double tolerance() const { return mTolerance; }
//! creates a QgsPointDisplacementRenderer from an existing renderer.
//! @note added in 2.5
//! @returns a new renderer if the conversion was possible, otherwise 0.
static QgsPointDisplacementRenderer* convertFromRenderer( const QgsFeatureRendererV2 *renderer );
private:
/**Embedded renderer. Like This, it is possible to use a classification together with point displacement*/
QgsFeatureRendererV2* mRenderer;
/**Attribute name for labeling. Empty string means no labelling will be done*/
QString mLabelAttributeName;
/**Label attribute index (or -1 if none). This index is not stored, it is requested in the startRender() method*/
int mLabelIndex;
/**Center symbol for a displacement group*/
QgsMarkerSymbolV2* mCenterSymbol;
/**Tolerance. Points that are closer together are considered as equal*/
double mTolerance;
/**Font that is passed to the renderer*/
QFont mLabelFont;
QColor mLabelColor;
/**Line width for the circle*/
double mCircleWidth;
/**Color to draw the circle*/
QColor mCircleColor;
/**Addition to the default circle radius*/
double mCircleRadiusAddition;
/**Is set internally from startRender() depending on scale denominator*/
bool mDrawLabels;
/**Maximum scale denominator for label display. Negative number means no scale limitation*/
double mMaxLabelScaleDenominator;
typedef QMap<QgsFeatureId, QPair< QgsFeature, QgsSymbolV2* > > DisplacementGroup;
/**Groups of features that have the same position*/
QList<DisplacementGroup> mDisplacementGroups;
/**Mapping from feature ID to its group index*/
QMap<QgsFeatureId, int> mGroupIndex;
/**Spatial index for fast lookup of close points*/
QgsSpatialIndex* mSpatialIndex;
/** keeps trask which features are selected */
QSet<QgsFeatureId> mSelectedFeatures;
/**Creates a search rectangle with mTolerance*/
QgsRectangle searchRect( const QgsPoint& p ) const;
/**This is a debugging function to check the entries in the displacement groups*/
void printInfoDisplacementGroups();
/**Returns the label for a feature (using mLabelAttributeName as attribute field)*/
QString getLabel( const QgsFeature& f );
//rendering methods
void renderPoint( const QPointF& point, QgsSymbolV2RenderContext& context, const QList<QgsMarkerSymbolV2*>& symbols,
const QStringList& labels );
//helper functions
void calculateSymbolAndLabelPositions( const QPointF& centerPoint, int nPosition, double radius, double symbolDiagonal, QList<QPointF>& symbolPositions, QList<QPointF>& labelShifts ) const;
void drawGroup( const DisplacementGroup& group, QgsRenderContext& context );
void drawCircle( double radiusPainterUnits, QgsSymbolV2RenderContext& context, const QPointF& centerPoint, int nSymbols );
void drawSymbols( const QgsFeature& f, QgsRenderContext& context, const QList<QgsMarkerSymbolV2*>& symbolList, const QList<QPointF>& symbolPositions, bool selected = false );
void drawLabels( const QPointF& centerPoint, QgsSymbolV2RenderContext& context, const QList<QPointF>& labelShifts, const QStringList& labelList );
/**Returns first symbol for feature or 0 if none*/
QgsSymbolV2* firstSymbolForFeature( QgsFeatureRendererV2* r, QgsFeature& f );
};
#endif // QGSPOINTDISPLACEMENTRENDERER_H
|