mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-17 00:09:36 -04:00
66 lines
2.2 KiB
C++
66 lines
2.2 KiB
C++
/***************************************************************************
|
|
qgsalgorithmsubdivide.h
|
|
---------------------
|
|
begin : April 2017
|
|
copyright : (C) 2017 by Nyall Dawson
|
|
email : nyall dot dawson at gmail dot com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef QGSALGORITHMSUBDIVIDE_H
|
|
#define QGSALGORITHMSUBDIVIDE_H
|
|
|
|
#define SIP_NO_FILE
|
|
|
|
#include "qgis.h"
|
|
#include "qgsprocessingalgorithm.h"
|
|
|
|
///@cond PRIVATE
|
|
|
|
/**
|
|
* Native subdivide algorithm.
|
|
*/
|
|
class QgsSubdivideAlgorithm : public QgsProcessingFeatureBasedAlgorithm
|
|
{
|
|
|
|
public:
|
|
|
|
QgsSubdivideAlgorithm() = default;
|
|
Flags flags() const override;
|
|
void initParameters( const QVariantMap &configuration = QVariantMap() ) override;
|
|
QString name() const override;
|
|
QString displayName() const override;
|
|
QStringList tags() const override;
|
|
QString group() const override;
|
|
QString groupId() const override;
|
|
QString shortHelpString() const override;
|
|
QgsSubdivideAlgorithm *createInstance() const override SIP_FACTORY;
|
|
|
|
protected:
|
|
QString outputName() const override;
|
|
|
|
QgsWkbTypes::Type outputWkbType( QgsWkbTypes::Type inputWkbType ) const override;
|
|
QgsFeature processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
|
|
|
|
bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
|
|
|
|
private:
|
|
|
|
int mMaxNodes = -1;
|
|
|
|
};
|
|
|
|
///@endcond PRIVATE
|
|
|
|
#endif // QGSALGORITHMSUBDIVIDE_H
|
|
|
|
|