QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
qgsprocessingparametervectortilewriterlayers.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsprocessingparametervectortilewriterlayers.h
3  ---------------------
4  Date : April 2020
5  Copyright : (C) 2020 by Martin Dobias
6  Email : wonder dot sk at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSPROCESSINGPARAMETERVECTORTILEWRITERLAYERS_H
17 #define QGSPROCESSINGPARAMETERVECTORTILEWRITERLAYERS_H
18 
21 #include "qgsvectortilewriter.h"
22 
23 
45 {
46  public:
48  QgsProcessingParameterVectorTileWriterLayers( const QString &name, const QString &description = QString() );
49 
50  QgsProcessingParameterDefinition *clone() const override;
51  QString type() const override;
52  bool checkValueIsAcceptable( const QVariant &input, QgsProcessingContext *context = nullptr ) const override;
53  QString valueAsPythonString( const QVariant &value, QgsProcessingContext &context ) const override;
55 
57  static QString typeName() { return QStringLiteral( "vectortilewriterlayers" ); }
58 
60  static QList<QgsVectorTileWriter::Layer> parameterAsLayers( const QVariant &layersVariant, QgsProcessingContext &context );
62  static QgsVectorTileWriter::Layer variantMapAsLayer( const QVariantMap &layerVariantMap, QgsProcessingContext &context );
64  static QVariantMap layerAsVariantMap( const QgsVectorTileWriter::Layer &layer );
65 
66 };
67 
68 #ifndef SIP_RUN
69 
78 class CORE_EXPORT QgsProcessingParameterTypeVectorTileWriterLayers : public QgsProcessingParameterType
79 {
80  public:
81  QgsProcessingParameterDefinition *create( const QString &name ) const override SIP_FACTORY
82  {
84  }
85 
86  QString description() const override
87  {
88  return QCoreApplication::translate( "Processing", "An input allowing selection of multiple layers for export in vector tiles." );
89  }
90 
91  QString name() const override
92  {
93  return QCoreApplication::translate( "Processing", "Vector Tile Writer Layers" );
94  }
95 
96  QString id() const override
97  {
99  }
100 
101  QString pythonImportString() const override
102  {
103  return QStringLiteral( "from qgis.core import QgsProcessingParameterVectorTileWriterLayers" );
104  }
105 
106  QString className() const override
107  {
108  return QStringLiteral( "QgsProcessingParameterVectorTileWriterLayers" );
109  }
110 
111  QStringList acceptedPythonTypes() const override
112  {
113  return QStringList() << QObject::tr( "list[dict]: list of input layers as dictionaries, see QgsProcessingParameterVectorTileWriterLayers docs" );
114  }
115 };
116 
118 #endif
119 
120 #endif // QGSPROCESSINGPARAMETERVECTORTILEWRITERLAYERS_H
QgsProcessingParameterType::create
virtual QgsProcessingParameterDefinition * create(const QString &name) const =0
Creates a new parameter of this type.
qgsprocessingparametertype.h
QgsProcessingParameterDefinition::valueAsPythonString
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...
Definition: qgsprocessingparameters.cpp:2444
QgsProcessingParameterType::description
virtual QString description() const =0
A human readable and translatable description for this parameter type.
QgsProcessingParameterType::name
virtual QString name() const =0
A human readable and translatable short name for this parameter type.
QgsProcessingParameterDefinition
Base class for the definition of processing parameters.
Definition: qgsprocessingparameters.h:334
QgsProcessingParameterType
Makes metadata of processing parameters available.
Definition: qgsprocessingparametertype.h:33
SIP_FACTORY
#define SIP_FACTORY
Definition: qgis_sip.h:76
QgsProcessing::PythonQgsProcessingAlgorithmSubclass
@ PythonQgsProcessingAlgorithmSubclass
Full Python QgsProcessingAlgorithm subclass.
Definition: qgsprocessing.h:64
QgsProcessingContext
Contains information about the context in which a processing algorithm is executed.
Definition: qgsprocessingcontext.h:46
QgsProcessingParameterType::id
virtual QString id() const =0
A static id for this type which will be used for storing this parameter type.
typeName
const QString & typeName
Definition: qgswfsgetfeature.cpp:109
QgsProcessingParameterVectorTileWriterLayers::typeName
static QString typeName()
Returns the type name for the parameter class.
Definition: qgsprocessingparametervectortilewriterlayers.h:70
qgsvectortilewriter.h
qgsprocessingparameters.h
QgsProcessingParameterVectorTileWriterLayers
A parameter for processing algorithms that need a list of input vector layers for writing of vector t...
Definition: qgsprocessingparametervectortilewriterlayers.h:44
QgsProcessingParameterType::className
virtual QString className() const
Returns the corresponding class name for the parameter type.
Definition: qgsprocessingparametertype.h:103
QgsProcessingParameterType::pythonImportString
virtual QString pythonImportString() const
Returns a valid Python import string for importing the corresponding parameter type,...
Definition: qgsprocessingparametertype.h:93
QgsVectorTileWriter::Layer
Configuration of a single input vector layer to be included in the output.
Definition: qgsvectortilewriter.h:86
QgsProcessingParameterDefinition::asPythonString
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...
Definition: qgsprocessingparameters.cpp:2870
QgsProcessingParameterDefinition::clone
virtual QgsProcessingParameterDefinition * clone() const =0
Creates a clone of the parameter definition.
QgsProcessingParameterDefinition::type
virtual QString type() const =0
Unique parameter type name.
QgsProcessing::PythonOutputType
PythonOutputType
Available Python output types.
Definition: qgsprocessing.h:62
QgsProcessingParameterType::acceptedPythonTypes
virtual QStringList acceptedPythonTypes() const
Returns a list of the Python data types accepted as values for the parameter.
Definition: qgsprocessingparametertype.cpp:30
QgsProcessingParameterDefinition::checkValueIsAcceptable
virtual bool checkValueIsAcceptable(const QVariant &input, QgsProcessingContext *context=nullptr) const
Checks whether the specified input value is acceptable for the parameter.
Definition: qgsprocessingparameters.cpp:2432