LCOV - code coverage report
Current view: top level - analysis/processing - qgsalgorithmcentroid.h (source / functions) Hit Total Coverage
Test: coverage.info.cleaned Lines: 0 8 0.0 %
Date: 2021-04-10 08:29:14 Functions: 0 0 -
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :                          qgsalgorithmcentroid.h
       3                 :            :                          ----------------------
       4                 :            :     begin                : April 2017
       5                 :            :     copyright            : (C) 2017 by Nyall Dawson
       6                 :            :     email                : nyall dot dawson at gmail dot com
       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 QGSALGORITHMCENTROID_H
      19                 :            : #define QGSALGORITHMCENTROID_H
      20                 :            : 
      21                 :            : #define SIP_NO_FILE
      22                 :            : 
      23                 :            : #include "qgis_sip.h"
      24                 :            : #include "qgsprocessingalgorithm.h"
      25                 :            : #include "qgsapplication.h"
      26                 :            : 
      27                 :            : ///@cond PRIVATE
      28                 :            : 
      29                 :            : /**
      30                 :            :  * Native centroid algorithm.
      31                 :            :  */
      32                 :          0 : class QgsCentroidAlgorithm : public QgsProcessingFeatureBasedAlgorithm
      33                 :            : {
      34                 :            : 
      35                 :            :   public:
      36                 :            : 
      37                 :          0 :     QgsCentroidAlgorithm() = default;
      38                 :          0 :     QIcon icon() const override { return QgsApplication::getThemeIcon( QStringLiteral( "/algorithms/mAlgorithmCentroids.svg" ) ); }
      39                 :          0 :     QString svgIconPath() const override { return QgsApplication::iconPath( QStringLiteral( "/algorithms/mAlgorithmCentroids.svg" ) ); }
      40                 :            :     QString name() const override;
      41                 :            :     QString displayName() const override;
      42                 :            :     QStringList tags() const override;
      43                 :            :     QString group() const override;
      44                 :            :     QString groupId() const override;
      45                 :            :     QString shortHelpString() const override;
      46                 :            :     QgsCentroidAlgorithm *createInstance() const override SIP_FACTORY;
      47                 :            :     void initParameters( const QVariantMap &configuration = QVariantMap() ) override;
      48                 :            : 
      49                 :            :   protected:
      50                 :            : 
      51                 :            :     QString outputName() const override;
      52                 :          0 :     QgsProcessing::SourceType outputLayerType() const override { return QgsProcessing::TypeVectorPoint; }
      53                 :          0 :     QgsWkbTypes::Type outputWkbType( QgsWkbTypes::Type inputWkbType ) const override { Q_UNUSED( inputWkbType ) return QgsWkbTypes::Point; }
      54                 :            :     QgsFeatureSink::SinkFlags sinkFlags() const override;
      55                 :            : 
      56                 :            :     bool prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
      57                 :            :     QgsFeatureList processFeature( const QgsFeature &feature,  QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
      58                 :            : 
      59                 :            :   private:
      60                 :            : 
      61                 :          0 :     bool mAllParts = false;
      62                 :          0 :     bool mDynamicAllParts = false;
      63                 :            :     QgsProperty mAllPartsProperty;
      64                 :            : };
      65                 :            : 
      66                 :            : ///@endcond PRIVATE
      67                 :            : 
      68                 :            : #endif // QGSALGORITHMCENTROID_H
      69                 :            : 
      70                 :            : 

Generated by: LCOV version 1.14