16 #ifndef QGSPROCESSINGPARAMETERVECTORTILEWRITERLAYERS_H 
   17 #define QGSPROCESSINGPARAMETERVECTORTILEWRITERLAYERS_H 
   51     QString 
type() 
const override;
 
   57     static QString 
typeName() { 
return QStringLiteral( 
"vectortilewriterlayers" ); }
 
   60     static QList<QgsVectorTileWriter::Layer> parameterAsLayers( 
const QVariant &layersVariant, 
QgsProcessingContext &context );
 
   88       return QCoreApplication::translate( 
"Processing", 
"An input allowing selection of multiple layers for export in vector tiles." );
 
   91     QString 
name()
 const override 
   93       return QCoreApplication::translate( 
"Processing", 
"Vector Tile Writer Layers" );
 
   96     QString id()
 const override 
  101     QString pythonImportString()
 const override 
  103       return QStringLiteral( 
"from qgis.core import QgsProcessingParameterVectorTileWriterLayers" );
 
  106     QString className()
 const override 
  108       return QStringLiteral( 
"QgsProcessingParameterVectorTileWriterLayers" );
 
  111     QStringList acceptedPythonTypes()
 const override 
  113       return QStringList() << QObject::tr( 
"list[dict]: list of input layers as dictionaries, see QgsProcessingParameterVectorTileWriterLayers docs" );
 
Contains information about the context in which a processing algorithm is executed.
Base class for the definition of processing parameters.
virtual QgsProcessingParameterDefinition * clone() const =0
Creates a clone of the parameter definition.
virtual QString asPythonString(QgsProcessing::PythonOutputType outputType=QgsProcessing::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.
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.
Makes metadata of processing parameters available.
A parameter for processing algorithms that need a list of input vector layers for writing of vector t...
static QString typeName()
Returns the type name for the parameter class.
PythonOutputType
Available Python output types.
@ PythonQgsProcessingAlgorithmSubclass
Full Python QgsProcessingAlgorithm subclass.
Configuration of a single input vector layer to be included in the output.