Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmaffinetransform.h 3 : : --------------------- 4 : : begin : December 2019 5 : : copyright : (C) 2019 by Nyall Dawson 6 : : email : nyall dot dawson 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 QGSALGORITHMAFFINETRANSFORM_H 19 : : #define QGSALGORITHMAFFINETRANSFORM_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : 26 : : ///@cond PRIVATE 27 : : 28 : : /** 29 : : * Native affine transformation algorithm. 30 : : */ 31 : 0 : class QgsAffineTransformationAlgorithm : public QgsProcessingFeatureBasedAlgorithm 32 : : { 33 : : 34 : : public: 35 : : 36 : 0 : QgsAffineTransformationAlgorithm() = default; 37 : : QString name() const override; 38 : : QString displayName() const override; 39 : : QStringList tags() const override; 40 : : QString group() const override; 41 : : QString groupId() const override; 42 : : QString shortHelpString() const override; 43 : : QString shortDescription() const override; 44 : : QgsAffineTransformationAlgorithm *createInstance() const override SIP_FACTORY; 45 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 46 : : bool supportInPlaceEdit( const QgsMapLayer *layer ) const override; 47 : : 48 : : protected: 49 : : QString outputName() const override; 50 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 51 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 52 : : QgsWkbTypes::Type outputWkbType( QgsWkbTypes::Type inputWkbType ) const override; 53 : : 54 : : private: 55 : : 56 : 0 : double mDeltaX = 0.0; 57 : 0 : bool mDynamicDeltaX = false; 58 : : QgsProperty mDeltaXProperty; 59 : : 60 : 0 : double mDeltaY = 0.0; 61 : 0 : bool mDynamicDeltaY = false; 62 : : QgsProperty mDeltaYProperty; 63 : : 64 : 0 : double mDeltaZ = 0.0; 65 : 0 : bool mDynamicDeltaZ = false; 66 : : QgsProperty mDeltaZProperty; 67 : : 68 : 0 : double mDeltaM = 0.0; 69 : 0 : bool mDynamicDeltaM = false; 70 : : QgsProperty mDeltaMProperty; 71 : : 72 : 0 : double mScaleX = 0.0; 73 : 0 : bool mDynamicScaleX = false; 74 : : QgsProperty mScaleXProperty; 75 : : 76 : 0 : double mScaleY = 0.0; 77 : 0 : bool mDynamicScaleY = false; 78 : : QgsProperty mScaleYProperty; 79 : : 80 : 0 : double mScaleZ = 0.0; 81 : 0 : bool mDynamicScaleZ = false; 82 : : QgsProperty mScaleZProperty; 83 : : 84 : 0 : double mScaleM = 0.0; 85 : 0 : bool mDynamicScaleM = false; 86 : : QgsProperty mScaleMProperty; 87 : : 88 : 0 : double mRotationZ = 0.0; 89 : 0 : bool mDynamicRotationZ = false; 90 : : QgsProperty mRotationZProperty; 91 : : 92 : : }; 93 : : 94 : : 95 : : ///@endcond PRIVATE 96 : : 97 : : #endif // QGSALGORITHMAFFINETRANSFORM_H 98 : : 99 : :