mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
s/Modeller/Modeler/
This commit is contained in:
parent
569b39b257
commit
0d00491436
@ -181,7 +181,7 @@ dependent algorithms.
|
||||
bool parametersCollapsed() const;
|
||||
%Docstring
|
||||
Returns true if the list of parameters for this algorithm should be collapsed
|
||||
in the graphical modeller.
|
||||
in the graphical modeler.
|
||||
|
||||
.. seealso:: :py:func:`setParametersCollapsed`
|
||||
|
||||
@ -191,7 +191,7 @@ in the graphical modeller.
|
||||
void setParametersCollapsed( bool collapsed );
|
||||
%Docstring
|
||||
Sets whether the list of parameters for this algorithm should be collapsed
|
||||
in the graphical modeller.
|
||||
in the graphical modeler.
|
||||
|
||||
.. seealso:: :py:func:`parametersCollapsed`
|
||||
|
||||
@ -201,7 +201,7 @@ in the graphical modeller.
|
||||
bool outputsCollapsed() const;
|
||||
%Docstring
|
||||
Returns true if the list of outputs for this algorithm should be collapsed
|
||||
in the graphical modeller.
|
||||
in the graphical modeler.
|
||||
|
||||
.. seealso:: :py:func:`setParametersCollapsed`
|
||||
|
||||
@ -211,7 +211,7 @@ in the graphical modeller.
|
||||
void setOutputsCollapsed( bool collapsed );
|
||||
%Docstring
|
||||
Sets whether the list of outputs for this algorithm should be collapsed
|
||||
in the graphical modeller.
|
||||
in the graphical modeler.
|
||||
|
||||
.. seealso:: :py:func:`outputsCollapsed`
|
||||
|
||||
|
@ -4475,6 +4475,7 @@ mkaes:makes
|
||||
mkaing:making
|
||||
mkea:make
|
||||
mmnemonic:mnemonic
|
||||
modeller:modeler
|
||||
moderm:modem
|
||||
modfied:modified
|
||||
modfies:modifies
|
||||
|
@ -175,7 +175,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
|
||||
|
||||
/**
|
||||
* Returns true if the list of parameters for this algorithm should be collapsed
|
||||
* in the graphical modeller.
|
||||
* in the graphical modeler.
|
||||
* \see setParametersCollapsed()
|
||||
* \see outputsCollapsed()
|
||||
*/
|
||||
@ -183,7 +183,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
|
||||
|
||||
/**
|
||||
* Sets whether the list of parameters for this algorithm should be collapsed
|
||||
* in the graphical modeller.
|
||||
* in the graphical modeler.
|
||||
* \see parametersCollapsed()
|
||||
* \see setOutputsCollapsed()
|
||||
*/
|
||||
@ -191,7 +191,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
|
||||
|
||||
/**
|
||||
* Returns true if the list of outputs for this algorithm should be collapsed
|
||||
* in the graphical modeller.
|
||||
* in the graphical modeler.
|
||||
* \see setParametersCollapsed()
|
||||
* \see parametersCollapsed()
|
||||
*/
|
||||
@ -199,7 +199,7 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
|
||||
|
||||
/**
|
||||
* Sets whether the list of outputs for this algorithm should be collapsed
|
||||
* in the graphical modeller.
|
||||
* in the graphical modeler.
|
||||
* \see outputsCollapsed()
|
||||
* \see setParametersCollapsed()
|
||||
*/
|
||||
@ -274,9 +274,9 @@ class CORE_EXPORT QgsProcessingModelChildAlgorithm : public QgsProcessingModelCo
|
||||
//! List of child algorithms from the parent model on which this algorithm is dependent
|
||||
QStringList mDependencies;
|
||||
|
||||
//! Whether list of parameters should be collapsed in the graphical modeller
|
||||
//! Whether list of parameters should be collapsed in the graphical modeler
|
||||
bool mParametersCollapsed = true;
|
||||
//! Whether list of outputs should be collapsed in the graphical modeller
|
||||
//! Whether list of outputs should be collapsed in the graphical modeler
|
||||
bool mOutputsCollapsed = true;
|
||||
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "qgsprocessingparametertype.h"
|
||||
|
||||
bool QgsProcessingParameterType::exposeToModeller() const
|
||||
bool QgsProcessingParameterType::exposeToModeler() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -45,10 +45,10 @@ class CORE_EXPORT QgsProcessingParameterType
|
||||
virtual QString id() const = 0;
|
||||
|
||||
/**
|
||||
* Determines if this parameter is available in the modeller.
|
||||
* Determines if this parameter is available in the modeler.
|
||||
* The default implementation returns true.
|
||||
*/
|
||||
virtual bool exposeToModeller() const;
|
||||
virtual bool exposeToModeler() const;
|
||||
|
||||
/**
|
||||
* Metadata for this parameter type. Can be used for example to define custom widgets.
|
||||
|
Loading…
x
Reference in New Issue
Block a user