Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmintersection.h 3 : : --------------------- 4 : : Date : April 2018 5 : : Copyright : (C) 2018 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 QGSALGORITHMINTERSECTION_H 17 : : #define QGSALGORITHMINTERSECTION_H 18 : : 19 : : #define SIP_NO_FILE 20 : : 21 : : #include "qgsprocessingalgorithm.h" 22 : : #include "qgsapplication.h" 23 : : 24 : : ///@cond PRIVATE 25 : : 26 : 0 : class QgsIntersectionAlgorithm : public QgsProcessingAlgorithm 27 : : { 28 : : public: 29 : 0 : QgsIntersectionAlgorithm() = default; 30 : 0 : QIcon icon() const override { return QgsApplication::getThemeIcon( QStringLiteral( "/algorithms/mAlgorithmIntersect.svg" ) ); } 31 : 0 : QString svgIconPath() const override { return QgsApplication::iconPath( QStringLiteral( "/algorithms/mAlgorithmIntersect.svg" ) ); } 32 : : QString name() const override; 33 : : QString displayName() const override; 34 : : QString group() const override; 35 : : QString groupId() const override; 36 : : QString shortHelpString() const override; 37 : : 38 : : protected: 39 : : QgsProcessingAlgorithm *createInstance() const override; 40 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override; 41 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 42 : : 43 : : }; 44 : : 45 : : ///@endcond PRIVATE 46 : : 47 : : #endif // QGSALGORITHMINTERSECTION_H