QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
Go to the documentation of this file.
28 QMapIterator<QString, QgsExpression *> i( mExpressions );
39 if ( !mExpressions.contains( expression ) )
43 mExpressions[expression] = expr;
45 return mExpressions[expression];
69 int pixelsize = s.
font.pointSizeF() /
c.mapToPixel().mapUnitsPerPixel();
70 f.setPixelSize( pixelsize > 0 ? pixelsize : 1 );
74 f.setPixelSize( s.
font.pointSizeF() * 0.376 *
c.scaleFactor() );
82 double scaledValue = value;
89 scaledValue = std::sqrt( scaledValue );
90 scaledLowerValue = std::sqrt( scaledLowerValue );
91 scaledUpperValue = std::sqrt( scaledUpperValue );
95 double scaledRatio = ( scaledValue - scaledLowerValue ) / ( scaledUpperValue - scaledLowerValue );
97 QSizeF size = QSizeF( is.
upperSize.width() * scaledRatio + is.
lowerSize.width() * ( 1 - scaledRatio ),
111 size.setWidth( size.height() );
QgsExpression * getExpression(const QString &expression, const QgsExpressionContext &context)
Returns a prepared expression for the specified context.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QSizeF sizeForValue(double value, const QgsDiagramSettings &s, const QgsDiagramInterpolationSettings &is) const
Returns the scaled size of a diagram for a value, respecting the specified diagram interpolation sett...
double minimumSize
Scale diagrams smaller than mMinimumSize to mMinimumSize.
QFont scaledFont(const QgsDiagramSettings &s, const QgsRenderContext &c)
Calculates a size to match the current settings and rendering context.
void setPenWidth(QPen &pen, const QgsDiagramSettings &s, const QgsRenderContext &c)
Changes the pen width to match the current settings and rendering context.
QSizeF sizePainterUnits(QSizeF size, const QgsDiagramSettings &s, const QgsRenderContext &c)
Calculates a size to match the current settings and rendering context.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
QgsMapUnitScale lineSizeScale
Line unit scale.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
QgsMapUnitScale sizeScale
Diagram size unit scale.
QgsUnitTypes::RenderUnit sizeType
Diagram size unit.
QgsDiagram()=default
Constructor for QgsDiagram.
QgsUnitTypes::RenderUnit lineSizeUnit
Line unit index.
@ RenderMapUnits
Map units.
Stores the settings for rendering a single diagram.