Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmrectanglesovalsdiamonds.h 3 : : ---------------------- 4 : : begin : January 2020 5 : : copyright : (C) 2020 by Alexander Bruy 6 : : email : alexander dot bruy 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 QGSALGORITHMRECTANGLESOVALSDIAMONDS_H 19 : : #define QGSALGORITHMRECTANGLESOVALSDIAMONDS_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 rectangles, ovals, diamonds algorithm. 31 : : */ 32 : 0 : class QgsRectanglesOvalsDiamondsAlgorithm : public QgsProcessingFeatureBasedAlgorithm 33 : : { 34 : : 35 : : public: 36 : : 37 : 0 : QgsRectanglesOvalsDiamondsAlgorithm() = default; 38 : : QString name() const override; 39 : : QString displayName() const override; 40 : : QStringList tags() const override; 41 : : QString group() const override; 42 : : QString groupId() const override; 43 : : QString shortHelpString() const override; 44 : : QList<int> inputLayerTypes() const override; 45 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 46 : : QgsRectanglesOvalsDiamondsAlgorithm *createInstance() const override SIP_FACTORY; 47 : : 48 : : protected: 49 : : 50 : : QString outputName() const override; 51 : : QgsProcessing::SourceType outputLayerType() const override; 52 : : QgsWkbTypes::Type outputWkbType( QgsWkbTypes::Type inputWkbType ) const override; 53 : : 54 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 55 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 56 : : 57 : : private: 58 : 0 : int mShape = 0; 59 : 0 : int mSegments = 0; 60 : : 61 : 0 : double mWidth = 0.0; 62 : 0 : bool mDynamicWidth = false; 63 : : QgsProperty mWidthProperty; 64 : : 65 : 0 : double mHeight = 0.0; 66 : 0 : bool mDynamicHeight = false; 67 : : QgsProperty mHeightProperty; 68 : : 69 : 0 : double mRotation = 0.0; 70 : 0 : bool mDynamicRotation = false; 71 : : QgsProperty mRotationProperty; 72 : : }; 73 : : 74 : : ///@endcond PRIVATE 75 : : 76 : : #endif // QGSALGORITHMRECTANGLESOVALSDIAMONDS_H 77 : : 78 : :