16#ifndef QGSPROCESSINGPARAMETERALIGNRASTERLAYERS_H
17#define QGSPROCESSINGPARAMETERALIGNRASTERLAYERS_H
26using namespace Qt::StringLiterals;
64 QString
type()
const override;
72 static QString
typeName() {
return u
"alignrasterlayers"_s; }
74 static QList<QgsAlignRasterData::RasterItem> parameterAsItems(
const QVariant &layersVariant,
QgsProcessingContext &context );
94 QgsProcessingParameterDefinition *create(
const QString &name )
const override SIP_FACTORY {
return new QgsProcessingParameterAlignRasterLayers( name ); }
96 QString
description()
const override {
return QCoreApplication::translate(
"Processing",
"An input allowing selection of multiple raster layers to align." ); }
98 QString
name()
const override {
return QCoreApplication::translate(
"Processing",
"Align raster Layers" ); }
102 QString pythonImportString()
const override {
return u
"from qgis.core import QgsProcessingParameterAlignRasterLayers"_s; }
104 QString className()
const override {
return u
"QgsProcessingParameterAlignRasterLayers"_s; }
106 QStringList acceptedPythonTypes()
const override
109 << QObject::tr(
"list[dict]: list of input layers as dictionaries, see QgsProcessingParameterAlignRasterLayers docs" )
110 << QObject::tr(
"list[str]: list of layer IDs" )
111 << QObject::tr(
"list[str]: list of layer names" )
112 << QObject::tr(
"list[str]: list of layer sources" )
113 << QObject::tr(
"str: layer ID" )
114 << QObject::tr(
"str: layer name" )
115 << QObject::tr(
"str: layer source" )
116 << u
"list[QgsMapLayer]"_s
117 << u
"QgsRasterLayer"_s;
120 QStringList acceptedParameterTypes()
const override
131 QStringList acceptedOutputTypes()
const override
Contains information about the context in which a processing algorithm is executed.
static QString typeName()
Returns the type name for the output class.
static QString typeName()
Returns the type name for the output class.
static QString typeName()
Returns the type name for the output class.
static QString typeName()
Returns the type name for the output class.
static QString typeName()
Returns the type name for the output class.
static QString typeName()
Returns the type name for the parameter class.
QgsProcessingParameterAlignRasterLayers(const QString &name, const QString &description=QString())
Constructor for QgsProcessingParameterAlignRasterLayers.
virtual QVariant valueAsJsonObject(const QVariant &value, QgsProcessingContext &context) const
Returns a version of the parameter input value, which is suitable for use in a JSON object.
virtual QString asPythonString(QgsProcessing::PythonOutputType outputType=QgsProcessing::PythonOutputType::PythonQgsProcessingAlgorithmSubclass) const
Returns the parameter definition as a Python command which can be used within a Python Processing scr...
QString description() const
Returns the description for the parameter.
QgsProcessingParameterDefinition(const QString &name, const QString &description=QString(), const QVariant &defaultValue=QVariant(), bool optional=false, const QString &help=QString())
Constructor for QgsProcessingParameterDefinition.
virtual QString valueAsString(const QVariant &value, QgsProcessingContext &context, bool &ok) const
Returns a string version of the parameter input value (if possible).
virtual QgsProcessingParameterDefinition * clone() const =0
Creates a clone of the parameter definition.
virtual QString type() const =0
Unique parameter type name.
QString name() const
Returns the name of the parameter.
virtual QString valueAsPythonString(const QVariant &value, QgsProcessingContext &context) const
Returns a string version of the parameter input value, which is suitable for use as an input paramete...
virtual bool checkValueIsAcceptable(const QVariant &input, QgsProcessingContext *context=nullptr) const
Checks whether the specified input value is acceptable for the parameter.
static QString typeName()
Returns the type name for the parameter class.
static QString typeName()
Returns the type name for the parameter class.
static QString typeName()
Returns the type name for the parameter class.
static QString typeName()
Returns the type name for the parameter class.
static QString typeName()
Returns the type name for the parameter class.
Makes metadata of processing parameters available.
static QString typeName()
Returns the type name for the parameter class.
PythonOutputType
Available Python output types.
@ PythonQgsProcessingAlgorithmSubclass
Full Python QgsProcessingAlgorithm subclass.
Definition of one raster layer for alignment.