Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmrandompointsinpolygons.h 3 : : --------------------- 4 : : begin : March 2020 5 : : copyright : (C) 2020 by HÃ¥vard Tveite 6 : : email : havard dot tveite at nmbu dot no 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 : : 19 : : #ifndef QGSALGORITHMRANDOMPOINTSINPOLYGONS_H 20 : : #define QGSALGORITHMRANDOMPOINTSINPOLYGONS_H 21 : : 22 : : #define SIP_NO_FILE 23 : : 24 : : #include "qgis_sip.h" 25 : : #include "qgsprocessingalgorithm.h" 26 : : #include "qgsapplication.h" 27 : : 28 : : ///@cond PRIVATE 29 : : 30 : : /** 31 : : * Native random points in polygons creation algorithm. 32 : : */ 33 : 0 : class QgsRandomPointsInPolygonsAlgorithm : public QgsProcessingAlgorithm 34 : : { 35 : : public: 36 : 0 : QgsRandomPointsInPolygonsAlgorithm() = default; 37 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override; 38 : 0 : QIcon icon() const override { return QgsApplication::getThemeIcon( QStringLiteral( "/algorithms/mAlgorithmRandomPointsInPolygons.svg" ) ); } 39 : 0 : QString svgIconPath() const override { return QgsApplication::iconPath( QStringLiteral( "/algorithms/mAlgorithmRandomPointsInPolygons.svg" ) ); } 40 : : QString name() const override; 41 : : QString displayName() const override; 42 : : QStringList tags() const override; 43 : : QString group() const override; 44 : : QString groupId() const override; 45 : : QString shortHelpString() const override; 46 : : QgsRandomPointsInPolygonsAlgorithm *createInstance() const override SIP_FACTORY; 47 : : 48 : : protected: 49 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) override; 50 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, 51 : : QgsProcessingContext &context, 52 : : QgsProcessingFeedback *feedback ) override; 53 : : 54 : : private: 55 : : int mNumPoints; 56 : 0 : bool mDynamicNumPoints = false; 57 : : QgsProperty mNumPointsProperty; 58 : : 59 : 0 : double mMinDistance = 0; 60 : 0 : bool mDynamicMinDistance = false; 61 : : QgsProperty mMinDistanceProperty; 62 : : 63 : 0 : double mMinDistanceGlobal = 0; 64 : : 65 : 0 : int mMaxAttempts = 10; 66 : 0 : bool mDynamicMaxAttempts = false; 67 : : QgsProperty mMaxAttemptsProperty; 68 : : 69 : 0 : bool mUseRandomSeed = false; 70 : 0 : int mRandSeed = 0; 71 : 0 : bool mIncludePolygonAttr = false; 72 : : }; 73 : : 74 : : ///@endcond PRIVATE 75 : : 76 : : #endif // QGSALGORITHMRANDOMPOINTSINPOLYGONS_H