Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmdensifygeometries.h 3 : : --------------------- 4 : : begin : January 2019 5 : : copyright : (C) 2019 by Matthias Kuhn 6 : : email : matthias@opengis.ch 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #ifndef QGSALGORITHMDENSIFYGEOMETRIES_H 19 : : #define QGSALGORITHMDENSIFYGEOMETRIES_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : 26 : : ///@cond PRIVATE 27 : : 28 : : 29 : 0 : class QgsDensifyGeometriesByIntervalAlgorithm : public QgsProcessingFeatureBasedAlgorithm 30 : : { 31 : : public: 32 : : 33 : 0 : QgsDensifyGeometriesByIntervalAlgorithm() = default; 34 : : QString name() const override; 35 : : QString displayName() const override; 36 : : QStringList tags() const override; 37 : : QString group() const override; 38 : : QString groupId() const override; 39 : : QString shortHelpString() const override; 40 : : QString shortDescription() const override; 41 : : QgsDensifyGeometriesByIntervalAlgorithm *createInstance() const override SIP_FACTORY; 42 : : QList<int> inputLayerTypes() const override; 43 : : 44 : : protected: 45 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 46 : : QString outputName() const override; 47 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 48 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 49 : : 50 : : private: 51 : 0 : double mInterval = 0.0; 52 : 0 : bool mDynamicInterval = false; 53 : : QgsProperty mIntervalProperty; 54 : : }; 55 : : 56 : : ///@endcond PRIVATE 57 : : #endif // QGSALGORITHMDENSIFYGEOMETRIES_H