QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsgeometryisvalidcheck.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsgeometryisvalidcheck.h
3  --------------------------------------
4 Date : 7.9.2018
5 Copyright : (C) 2018 by Matthias Kuhn
6 email : [email protected]
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 QGSGEOMETRYISVALIDCHECK_H
17 #define QGSGEOMETRYISVALIDCHECK_H
18 
19 #define SIP_NO_FILE
20 
21 #include "qgssinglegeometrycheck.h"
22 
32 {
33  public:
34 
38  QgsGeometryIsValidCheckError( const QgsSingleGeometryCheck *check, const QgsGeometry &geometry, const QgsGeometry &errorLocation, const QString &errorDescription );
39 
40  QString description() const override;
41 
42  private:
43  QString mDescription;
44 };
45 
54 class ANALYSIS_EXPORT QgsGeometryIsValidCheck : public QgsSingleGeometryCheck
55 {
56  Q_DECLARE_TR_FUNCTIONS( QgsGeometryIsValidCheck )
57  public:
58 
62  explicit QgsGeometryIsValidCheck( const QgsGeometryCheckContext *context, const QVariantMap &configuration );
63 
64  QList<QgsWkbTypes::GeometryType> compatibleGeometryTypes() const override;
65  QList<QgsSingleGeometryCheckError *> processGeometry( const QgsGeometry &geometry ) const override;
66  Q_DECL_DEPRECATED QStringList resolutionMethods() const override;
67  QString description() const override { return factoryDescription(); }
68  QString id() const override { return factoryId(); }
69  QgsGeometryCheck::CheckType checkType() const override { return factoryCheckType(); }
70 
72  static QList<QgsWkbTypes::GeometryType> factoryCompatibleGeometryTypes() SIP_SKIP;
73  static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP;
74  static QString factoryDescription() SIP_SKIP;
75  static QString factoryId() SIP_SKIP;
76  static QgsGeometryCheck::Flags factoryFlags() SIP_SKIP;
77  static QgsGeometryCheck::CheckType factoryCheckType() SIP_SKIP;
79 };
80 
81 #endif // QGSGEOMETRYISVALIDCHECK_H
QgsGeometryCheck::compatibleGeometryTypes
virtual QList< QgsWkbTypes::GeometryType > compatibleGeometryTypes() const =0
A list of geometry types for which this check can be performed.
QgsGeometryIsValidCheckError
An error for a QgsGeometryIsValid check.
Definition: qgsgeometryisvalidcheck.h:32
QgsGeometryCheck::resolutionMethods
virtual Q_DECL_DEPRECATED QStringList resolutionMethods() const
Returns a list of descriptions for available resolutions for errors.
Definition: qgsgeometrycheck.cpp:77
QgsSingleGeometryCheckError
An error from a QgsSingleGeometryCheck.
Definition: qgssinglegeometrycheck.h:40
QgsGeometryIsValidCheck
Checks if geometries are valid using the backend configured in the QGIS settings.
Definition: qgsgeometryisvalidcheck.h:55
QgsSingleGeometryCheck::processGeometry
virtual QList< QgsSingleGeometryCheckError * > processGeometry(const QgsGeometry &geometry) const =0
Check the geometry for errors.
QgsSingleGeometryCheckError::description
virtual QString description() const
A human readable description of this error.
Definition: qgssinglegeometrycheck.cpp:64
QgsGeometryIsValidCheck::checkType
QgsGeometryCheck::CheckType checkType() const override
Returns the check type.
Definition: qgsgeometryisvalidcheck.h:69
QgsSingleGeometryCheck
Base class for geometry checks for a single geometry without any context of the layer or other layers...
Definition: qgssinglegeometrycheck.h:150
QgsGeometryIsValidCheck::description
QString description() const override
Returns a human readable description for this check.
Definition: qgsgeometryisvalidcheck.h:67
QgsGeometryCheck
This class implements a geometry check.
Definition: qgsgeometrycheck.h:92
SIP_SKIP
#define SIP_SKIP
Definition: qgis_sip.h:126
QgsGeometryCheckContext
Base configuration for geometry checks.
Definition: qgsgeometrycheckcontext.h:32
QgsGeometryIsValidCheck::id
QString id() const override
Returns an id for this check.
Definition: qgsgeometryisvalidcheck.h:68
QgsGeometry
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:124
QgsVectorLayer
Represents a vector layer which manages a vector based data sets.
Definition: qgsvectorlayer.h:387
QgsGeometryCheck::CheckType
CheckType
The type of a check.
Definition: qgsgeometrycheck.h:155
qgssinglegeometrycheck.h