16#ifndef QGSPROCESSINGPARAMETERVECTORTILEWRITERLAYERS_H 
   17#define QGSPROCESSINGPARAMETERVECTORTILEWRITERLAYERS_H 
   55    QString 
type() 
const override;
 
   61    static QString 
typeName() { 
return QStringLiteral( 
"vectortilewriterlayers" ); }
 
   64    static QList<QgsVectorTileWriter::Layer> parameterAsLayers( 
const QVariant &layersVariant, 
QgsProcessingContext &context );
 
 
   92      return QCoreApplication::translate( 
"Processing", 
"An input allowing selection of multiple layers for export in vector tiles." );
 
   95    QString 
name()
 const override 
   97      return QCoreApplication::translate( 
"Processing", 
"Vector Tile Writer Layers" );
 
  100    QString id()
 const override 
  105    QString pythonImportString()
 const override 
  107      return QStringLiteral( 
"from qgis.core import QgsProcessingParameterVectorTileWriterLayers" );
 
  110    QString className()
 const override 
  112      return QStringLiteral( 
"QgsProcessingParameterVectorTileWriterLayers" );
 
  115    QStringList acceptedPythonTypes()
 const override 
  117      return QStringList() << QObject::tr( 
"list[dict]: list of input layers as dictionaries, see QgsProcessingParameterVectorTileWriterLayers docs" );
 
  120    QStringList acceptedParameterTypes()
 const override 
  122      return QStringList();
 
  125    QStringList acceptedOutputTypes()
 const override 
  127      return QStringList();
 
Contains information about the context in which a processing algorithm is executed.
 
Base class for the definition of processing parameters.
 
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.
 
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.
 
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.