mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
58 lines
2.2 KiB
C++
58 lines
2.2 KiB
C++
/***************************************************************************
|
|
qgsalgorithmbuffer.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 QGSALGORITHMBUFFER_H
|
|
#define QGSALGORITHMBUFFER_H
|
|
|
|
#define SIP_NO_FILE
|
|
|
|
#include "qgis.h"
|
|
#include "qgsprocessingalgorithm.h"
|
|
|
|
///@cond PRIVATE
|
|
|
|
/**
|
|
* Native buffer algorithm.
|
|
*/
|
|
class QgsBufferAlgorithm : public QgsProcessingAlgorithm
|
|
{
|
|
|
|
public:
|
|
|
|
QgsBufferAlgorithm() = default;
|
|
void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override;
|
|
QIcon icon() const override { return QgsApplication::getThemeIcon( QStringLiteral( "/algorithms/mAlgorithmBuffer.svg" ) ); }
|
|
QString svgIconPath() const override { return QgsApplication::iconPath( QStringLiteral( "/algorithms/mAlgorithmBuffer.svg" ) ); }
|
|
QString name() const override;
|
|
QString displayName() const override;
|
|
QStringList tags() const override;
|
|
QString group() const override;
|
|
QString groupId() const override;
|
|
QString shortHelpString() const override;
|
|
QgsBufferAlgorithm *createInstance() const override SIP_FACTORY;
|
|
|
|
protected:
|
|
|
|
QVariantMap processAlgorithm( const QVariantMap ¶meters,
|
|
QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
|
|
|
|
};
|
|
|
|
///@endcond PRIVATE
|
|
|
|
#endif // QGSALGORITHMBUFFER_H
|