mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-09 00:35:20 -05:00
The cpp/h file was getting too large, so split off the individual subcomponents into their own h/cpp files to keep code maintainable.
193 lines
6.3 KiB
Plaintext
193 lines
6.3 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/processing/models/qgsprocessingmodelchildparametersource.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
class QgsProcessingModelChildParameterSource
|
|
{
|
|
%Docstring
|
|
Source for the value of a parameter for a child algorithm within a model.
|
|
.. versionadded:: 3.0
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsprocessingmodelchildparametersource.h"
|
|
%End
|
|
public:
|
|
|
|
enum Source
|
|
{
|
|
ModelParameter,
|
|
ChildOutput,
|
|
StaticValue,
|
|
Expression,
|
|
};
|
|
|
|
QgsProcessingModelChildParameterSource();
|
|
%Docstring
|
|
Constructor for QgsProcessingModelChildParameterSource. It is recommended that the static methods
|
|
fromStaticValue(), fromModelParameter(), fromChildOutput() and fromExpression() are used instead.
|
|
%End
|
|
|
|
bool operator==( const QgsProcessingModelChildParameterSource &other ) const;
|
|
bool operator!=( const QgsProcessingModelChildParameterSource &other ) const;
|
|
%Docstring
|
|
:rtype: bool
|
|
%End
|
|
|
|
static QgsProcessingModelChildParameterSource fromStaticValue( const QVariant &value );
|
|
%Docstring
|
|
Returns a new QgsProcessingModelChildParameterSource which takes its value from a static ``value``.
|
|
.. seealso:: fromModelParameter()
|
|
.. seealso:: fromChildOutput()
|
|
.. seealso:: fromExpression()
|
|
:rtype: QgsProcessingModelChildParameterSource
|
|
%End
|
|
|
|
static QgsProcessingModelChildParameterSource fromModelParameter( const QString ¶meterName );
|
|
%Docstring
|
|
Returns a new QgsProcessingModelChildParameterSource which takes its value from a parent model parameter.
|
|
.. seealso:: fromStaticValue()
|
|
.. seealso:: fromChildOutput()
|
|
.. seealso:: fromExpression()
|
|
:rtype: QgsProcessingModelChildParameterSource
|
|
%End
|
|
|
|
static QgsProcessingModelChildParameterSource fromChildOutput( const QString &childId, const QString &outputName );
|
|
%Docstring
|
|
Returns a new QgsProcessingModelChildParameterSource which takes its value from an output generated by a child algorithm.
|
|
.. seealso:: fromStaticValue()
|
|
.. seealso:: fromModelParameter()
|
|
.. seealso:: fromExpression()
|
|
:rtype: QgsProcessingModelChildParameterSource
|
|
%End
|
|
|
|
static QgsProcessingModelChildParameterSource fromExpression( const QString &expression );
|
|
%Docstring
|
|
Returns a new QgsProcessingModelChildParameterSource which takes its value from an expression. The expression
|
|
is evaluated just before the child algorithm executes, and can use functions available
|
|
in its expression context to include results calculated from the child algorithms already
|
|
executed by the model.
|
|
.. seealso:: fromStaticValue()
|
|
.. seealso:: fromChildOutput()
|
|
.. seealso:: fromModelParameter()
|
|
:rtype: QgsProcessingModelChildParameterSource
|
|
%End
|
|
|
|
Source source() const;
|
|
%Docstring
|
|
Returns the parameter value's source.
|
|
:rtype: Source
|
|
%End
|
|
|
|
QVariant staticValue() const;
|
|
%Docstring
|
|
Returns the source's static value. This is only used when the source() is StaticValue.
|
|
.. seealso:: setStaticValue()
|
|
:rtype: QVariant
|
|
%End
|
|
|
|
void setStaticValue( const QVariant &value );
|
|
%Docstring
|
|
Sets the source's static value. Calling this will also change the source() to StaticValue.
|
|
.. seealso:: staticValue()
|
|
%End
|
|
|
|
QString parameterName() const;
|
|
%Docstring
|
|
Returns the source's model parameter name. This is only used when the source() is ModelParameter.
|
|
.. seealso:: setParameterName()
|
|
:rtype: str
|
|
%End
|
|
|
|
void setParameterName( const QString &name );
|
|
%Docstring
|
|
Sets the source's model parameter ``name``. Calling this will also change the source() to ModelParameter.
|
|
.. seealso:: parameterName()
|
|
%End
|
|
|
|
QString outputChildId() const;
|
|
%Docstring
|
|
Returns the source's child algorithm ID from which the output value will be taken. This is only used when the source() is ChildOutput.
|
|
.. seealso:: setOutputChildId()
|
|
.. seealso:: outputName()
|
|
:rtype: str
|
|
%End
|
|
|
|
void setOutputChildId( const QString &id );
|
|
%Docstring
|
|
Sets the source's child algorithm ``id`` from which the output value will be taken. Calling this will also change the source() to ChildOutput.
|
|
.. seealso:: parameterName()
|
|
.. seealso:: setOutputName()
|
|
%End
|
|
|
|
QString outputName() const;
|
|
%Docstring
|
|
Returns the source's child algorithm output name from which the output value will be taken. This is only used when the source() is ChildOutput.
|
|
.. seealso:: setOutputName()
|
|
.. seealso:: outputChildId()
|
|
:rtype: str
|
|
%End
|
|
|
|
void setOutputName( const QString &name );
|
|
%Docstring
|
|
Sets the source's child algorithm output ``name`` from which the output value will be taken. Calling this will also change the source() to ChildOutput.
|
|
.. seealso:: outputName()
|
|
.. seealso:: setOutputChildId()
|
|
%End
|
|
|
|
QString expression() const;
|
|
%Docstring
|
|
Returns the source's expression. This is only used when the source() is Expression.
|
|
.. seealso:: setExpression()
|
|
:rtype: str
|
|
%End
|
|
|
|
void setExpression( const QString &expression );
|
|
%Docstring
|
|
Sets the source's expression. Calling this will also change the source() to Expression.
|
|
The expression is evaluated just before the child algorithm executes, and can use functions available
|
|
in its expression context to include results calculated from the child algorithms already
|
|
executed by the model.
|
|
.. seealso:: expression()
|
|
%End
|
|
|
|
QVariant toVariant() const;
|
|
%Docstring
|
|
Saves this source to a QVariant.
|
|
.. seealso:: loadVariant()
|
|
:rtype: QVariant
|
|
%End
|
|
|
|
bool loadVariant( const QVariantMap &map );
|
|
%Docstring
|
|
Loads this source from a QVariantMap.
|
|
.. seealso:: toVariant()
|
|
:rtype: bool
|
|
%End
|
|
|
|
QString asPythonCode() const;
|
|
%Docstring
|
|
Attempts to convert the source to executable Python code.
|
|
:rtype: str
|
|
%End
|
|
|
|
};
|
|
|
|
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/processing/models/qgsprocessingmodelchildparametersource.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|