QGIS API Documentation
3.4.15-Madeira (e83d02e274)
|
QgsPropertyTransformer subclass for scaling an input numeric value into an output numeric value. More...
#include <qgspropertytransformer.h>
Public Member Functions | |
QgsGenericNumericTransformer (double minValue=0.0, double maxValue=1.0, double minOutput=0.0, double maxOutput=1.0, double nullOutput=0.0, double exponent=1.0) | |
Constructor for QgsGenericNumericTransformer. More... | |
QgsGenericNumericTransformer * | clone () const override |
Returns a clone of the transformer. More... | |
double | exponent () const |
Returns the exponent for an exponential expression. More... | |
bool | loadVariant (const QVariant &definition) override |
Loads this transformer from a QVariantMap, wrapped in a QVariant. More... | |
double | maxOutputValue () const |
Returns the maximum calculated size. More... | |
double | minOutputValue () const |
Returns the minimum calculated size. More... | |
double | nullOutputValue () const |
Returns the size value when an expression evaluates to NULL. More... | |
void | setExponent (double exponent) |
Sets the exponent for an exponential expression. More... | |
void | setMaxOutputValue (double size) |
Sets the maximum calculated size. More... | |
void | setMinOutputValue (double size) |
Sets the minimum calculated size. More... | |
void | setNullOutputValue (double size) |
Sets the size value for when an expression evaluates to NULL. More... | |
QString | toExpression (const QString &baseExpression) const override |
Converts the transformer to a QGIS expression string. More... | |
QVariant | toVariant () const override |
Saves this transformer to a QVariantMap, wrapped in a QVariant. More... | |
QVariant | transform (const QgsExpressionContext &context, const QVariant &value) const override |
Calculates the transform of a value. More... | |
Type | transformerType () const override |
Returns the transformer type. More... | |
double | value (double input) const |
Calculates the size corresponding to a specific input value. More... | |
Public Member Functions inherited from QgsPropertyTransformer | |
QgsPropertyTransformer (double minValue=0.0, double maxValue=1.0) | |
Constructor for QgsPropertyTransformer. More... | |
QgsPropertyTransformer (const QgsPropertyTransformer &other) | |
Copy constructor. More... | |
virtual | ~QgsPropertyTransformer ()=default |
QgsCurveTransform * | curveTransform () const |
Returns the curve transform applied to input values before they are transformed by the individual transform subclasses. More... | |
double | maxValue () const |
Returns the maximum value expected by the transformer. More... | |
double | minValue () const |
Returns the minimum value expected by the transformer. More... | |
QgsPropertyTransformer & | operator= (const QgsPropertyTransformer &other) |
void | setCurveTransform (QgsCurveTransform *transform) |
Sets a curve transform to apply to input values before they are transformed by the individual transform subclasses. More... | |
void | setMaxValue (double max) |
Sets the maximum value expected by the transformer. More... | |
void | setMinValue (double min) |
Sets the minimum value expected by the transformer. More... | |
Static Public Member Functions | |
static QgsGenericNumericTransformer * | fromExpression (const QString &expression, QString &baseExpression, QString &fieldName) |
Attempts to parse an expression into a corresponding QgsSizeScaleTransformer. More... | |
Static Public Member Functions inherited from QgsPropertyTransformer | |
static QgsPropertyTransformer * | create (Type type) |
Factory method for creating a new property transformer of the specified type. More... | |
static QgsPropertyTransformer * | fromExpression (const QString &expression, QString &baseExpression, QString &fieldName) |
Attempts to parse an expression into a corresponding property transformer. More... | |
Additional Inherited Members | |
Public Types inherited from QgsPropertyTransformer | |
enum | Type { GenericNumericTransformer, SizeScaleTransformer, ColorRampTransformer } |
Transformer types. More... | |
Protected Member Functions inherited from QgsPropertyTransformer | |
double | transformNumeric (double input) const |
Applies base class numeric transformations. More... | |
Protected Attributes inherited from QgsPropertyTransformer | |
std::unique_ptr< QgsCurveTransform > | mCurveTransform |
Optional curve transform. More... | |
double | mMaxValue |
Maximum value expected by the transformer. More... | |
double | mMinValue |
Minimum value expected by the transformer. More... | |
QgsPropertyTransformer subclass for scaling an input numeric value into an output numeric value.
Definition at line 343 of file qgspropertytransformer.h.
QgsGenericNumericTransformer::QgsGenericNumericTransformer | ( | double | minValue = 0.0 , |
double | maxValue = 1.0 , |
||
double | minOutput = 0.0 , |
||
double | maxOutput = 1.0 , |
||
double | nullOutput = 0.0 , |
||
double | exponent = 1.0 |
||
) |
Constructor for QgsGenericNumericTransformer.
minValue | minimum expected input value |
maxValue | maximum expected input value |
minOutput | minimum value to return |
maxOutput | maximum value to return |
nullOutput | value to return for null inputs |
exponent | optional exponential for non-linear scaling |
Definition at line 130 of file qgspropertytransformer.cpp.
|
overridevirtual |
Returns a clone of the transformer.
Implements QgsPropertyTransformer.
Definition at line 138 of file qgspropertytransformer.cpp.
|
inline |
Returns the exponent for an exponential expression.
Definition at line 436 of file qgspropertytransformer.h.
|
static |
Attempts to parse an expression into a corresponding QgsSizeScaleTransformer.
expression | expression to parse |
baseExpression | will be set to the component of the source expression which is used to calculate the input to the property transformer. This will be set to an empty string if a field reference is the transformer input. |
fieldName | will be set to a field name which is used to calculate the input to the property transformer. This will be set to an empty string if an expression is the transformer input. |
Definition at line 221 of file qgspropertytransformer.cpp.
|
overridevirtual |
Loads this transformer from a QVariantMap, wrapped in a QVariant.
You can use QgsXmlUtils::readVariant to read it from an XML document.
Reimplemented from QgsPropertyTransformer.
Definition at line 163 of file qgspropertytransformer.cpp.
|
inline |
Returns the maximum calculated size.
Definition at line 409 of file qgspropertytransformer.h.
|
inline |
Returns the minimum calculated size.
Definition at line 395 of file qgspropertytransformer.h.
|
inline |
Returns the size value when an expression evaluates to NULL.
Definition at line 423 of file qgspropertytransformer.h.
|
inline |
Sets the exponent for an exponential expression.
exponent | exponent |
Definition at line 443 of file qgspropertytransformer.h.
|
inline |
Sets the maximum calculated size.
size | maximum size |
Definition at line 417 of file qgspropertytransformer.h.
|
inline |
Sets the minimum calculated size.
size | minimum size |
Definition at line 403 of file qgspropertytransformer.h.
|
inline |
Sets the size value for when an expression evaluates to NULL.
size | null size |
Definition at line 430 of file qgspropertytransformer.h.
|
overridevirtual |
Converts the transformer to a QGIS expression string.
The baseExpression string consists of a sub-expression reflecting the parent property's state.
Implements QgsPropertyTransformer.
Definition at line 206 of file qgspropertytransformer.cpp.
|
overridevirtual |
Saves this transformer to a QVariantMap, wrapped in a QVariant.
You can use QgsXmlUtils::writeVariant to save it to an XML document.
Reimplemented from QgsPropertyTransformer.
Definition at line 151 of file qgspropertytransformer.cpp.
|
overridevirtual |
Calculates the transform of a value.
Derived classes must implement this to perform their transformations on input values
context | expression context |
value | input value to transform |
Implements QgsPropertyTransformer.
Definition at line 185 of file qgspropertytransformer.cpp.
|
inlineoverridevirtual |
Returns the transformer type.
Implements QgsPropertyTransformer.
Definition at line 363 of file qgspropertytransformer.h.
double QgsGenericNumericTransformer::value | ( | double | input | ) | const |
Calculates the size corresponding to a specific input value.
Definition at line 176 of file qgspropertytransformer.cpp.