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