45 if (
vidx.part != -1 )
47 const QgsGeometry geom = layerFeature.geometry();
48 mGeometry = QgsGeometry( QgsGeometryCheckerUtils::getGeomPart( geom.constGet(), vidx.part )->clone() );
52 mGeometry = layerFeature.geometry();
56 const QgsCoordinateTransform ct( layerFeature.layerCrs(), check->context()->mapCrs, check->context()->transformContext );
59 mGeometry.transform( ct );
60 mErrorLocation = ct.transform( mErrorLocation );
64 QgsDebugError( QStringLiteral(
"Can not show error in current map coordinate reference system" ) );
87 const QList<QgsGeometryCheckResolutionMethod> methods =
mCheck->availableResolutionMethods();
90 if ( fix.id() == method )
136 if (
mVidx.part == change.vidx.part )
140 else if (
mVidx.part > change.vidx.part )
147 if (
mVidx.partEqual( change.vidx ) )
149 if (
mVidx.ring == change.vidx.ring )
153 else if (
mVidx.ring > change.vidx.ring )
161 if (
mVidx.ringEqual( change.vidx ) )
163 if (
mVidx.vertex == change.vidx.vertex )
167 else if (
mVidx.vertex > change.vidx.vertex )
179 return QMap<QString, QSet<QgsFeatureId>>();
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
Custom exception class for Coordinate Reference System related exceptions.
ValueType
Describes the type of an error value.
virtual QMap< QString, QgsFeatureIds > involvedFeatures() const
Returns a list of involved features.
@ StatusPending
The error is detected and pending to be handled.
@ StatusFixed
The error is fixed.
@ StatusFixFailed
A fix has been tried on the error but failed.
@ StatusObsolete
The error is obsolete because of other modifications.
Status status() const
The status of the error.
const QgsVertexId & vidx() const
The id of the affected vertex.
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
virtual void update(const QgsGeometryCheckError *other)
Update this error with the information from other.
const QgsGeometryCheck * mCheck
QgsGeometryCheckError(const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsPointXY &errorLocation, QgsVertexId vidx=QgsVertexId(), const QVariant &value=QVariant(), ValueType valueType=ValueOther)
Create a new geometry check error with the parent check and for the layerFeature pair at the errorLoc...
void setFixed(int method)
Set the status to fixed and specify the method that has been used to fix the error.
void setFixFailed(const QString &reason)
Set the error status to failed and specify the reason for failure.
ValueType valueType() const
The type of the value.
QgsGeometry geometry() const
The geometry of the error in map units.
QgsPointXY mErrorLocation
QVariant value() const
An additional value for the error.
const QgsGeometryCheck * check() const
The geometry check that created this error.
virtual bool isEqual(QgsGeometryCheckError *other) const
Check if this error is equal to other.
const QString & layerId() const
The id of the layer on which this error has been detected.
virtual bool closeMatch(QgsGeometryCheckError *) const
Check if this error is almost equal to other.
virtual QgsRectangle affectedAreaBBox() const
The bounding box of the affected area of the error.
virtual QIcon icon() const
Returns an icon that should be shown for this kind of error.
virtual bool handleChanges(const QgsGeometryCheck::Changes &changes)
Apply a list of changes.
QString mResolutionMessage
virtual QgsRectangle contextBoundingBox() const
The context of the error.
Implements a resolution for problems detected in geometry checks.
Base class for geometry checks.
QMap< QString, QMap< QgsFeatureId, QList< QgsGeometryCheck::Change > > > Changes
A collection of changes.
@ ChangeNode
This change happens on node level.
@ ChangeRing
This change happens on ring level.
@ ChangeFeature
This change happens on feature level.
@ ChangePart
This change happens on part level.
@ FeatureNodeCheck
The check controls individual nodes.
@ ChangeChanged
Something has been updated.
@ ChangeAdded
Something has been added.
@ ChangeRemoved
Something has been removed.
A layer feature combination to uniquely identify and access a feature in a set of layers.
bool useMapCrs() const
Returns if the geometry is reprojected to the map CRS or not.
A geometry is the spatial representation of a feature.
A rectangle specified with double values.
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
#define QgsDebugError(str)
Descripts a change to fix a geometry.
QMap< QString, QgsFeatureIds > ids
LayerFeatureIds()=default
Utility class for identifying a unique vertex within a geometry.