QGIS API Documentation  3.6.0-Noosa (5873452)
qgsgeometryoptions.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsgeometryoptions.cpp
3  -------------------
4  begin : Aug 23, 2018
5  copyright : (C) 2018 by Matthias Kuhn
6  email : [email protected]
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 #include "qgsgeometryoptions.h"
19 
20 #include "qgsxmlutils.h"
21 
23 {
24  return mRemoveDuplicateNodes;
25 }
26 
28 {
29  mRemoveDuplicateNodes = value;
31 }
32 
34 {
35  return mGeometryPrecision;
36 }
37 
39 {
40  mGeometryPrecision = value;
42 }
43 
45 {
46  return mGeometryPrecision != 0.0 || mRemoveDuplicateNodes;
47 }
48 
49 void QgsGeometryOptions::apply( QgsGeometry &geometry ) const
50 {
51  if ( mGeometryPrecision != 0.0 )
52  geometry = geometry.snappedToGrid( mGeometryPrecision, mGeometryPrecision );
53 
54  if ( mRemoveDuplicateNodes )
55  geometry.removeDuplicateNodes();
56 }
57 
59 {
60  return mGeometryChecks;
61 }
62 
64 {
65  mGeometryChecks = geometryChecks;
66  emit geometryChecksChanged();
67 }
68 
69 QVariantMap QgsGeometryOptions::checkConfiguration( const QString &checkId ) const
70 {
71  return mCheckConfiguration.value( checkId ).toMap();
72 }
73 
74 void QgsGeometryOptions::setCheckConfiguration( const QString &checkId, const QVariantMap &checkConfiguration )
75 {
76  mCheckConfiguration[checkId] = checkConfiguration;
78 }
79 
80 void QgsGeometryOptions::writeXml( QDomNode &node ) const
81 {
82  QDomDocument doc = node.ownerDocument();
83  QDomElement geometryOptionsElement = doc.createElement( QStringLiteral( "geometryOptions" ) );
84  node.appendChild( geometryOptionsElement );
85 
86  geometryOptionsElement.setAttribute( QStringLiteral( "removeDuplicateNodes" ), mRemoveDuplicateNodes ? 1 : 0 );
87  geometryOptionsElement.setAttribute( QStringLiteral( "geometryPrecision" ), mGeometryPrecision );
88 
89  QDomElement activeCheckListElement = QgsXmlUtils::writeVariant( mGeometryChecks, doc );
90  activeCheckListElement.setTagName( QStringLiteral( "activeChecks" ) );
91  geometryOptionsElement.appendChild( activeCheckListElement );
92  QDomElement checkConfigurationElement = QgsXmlUtils::writeVariant( mCheckConfiguration, doc );
93  checkConfigurationElement.setTagName( QStringLiteral( "checkConfiguration" ) );
94  geometryOptionsElement.appendChild( checkConfigurationElement );
95 }
96 
97 void QgsGeometryOptions::readXml( const QDomNode &node )
98 {
99  QDomElement geometryOptionsElement = node.toElement();
100  setGeometryPrecision( geometryOptionsElement.attribute( QStringLiteral( "geometryPrecision" ), QStringLiteral( "0.0" ) ).toDouble() );
101  setRemoveDuplicateNodes( geometryOptionsElement.attribute( QStringLiteral( "removeDuplicateNodes" ), QStringLiteral( "0" ) ).toInt() == 1 );
102 
103  QDomElement activeChecksElem = node.namedItem( QStringLiteral( "activeChecks" ) ).toElement();
104  const QVariant activeChecks = QgsXmlUtils::readVariant( activeChecksElem );
105  setGeometryChecks( activeChecks.toStringList() );
106 
107  QDomElement checkConfigurationElem = node.namedItem( QStringLiteral( "checkConfiguration" ) ).toElement();
108  const QVariant checkConfiguration = QgsXmlUtils::readVariant( checkConfigurationElem );
109  mCheckConfiguration = checkConfiguration.toMap();
110 }
void setGeometryChecks(const QStringList &geometryChecks)
A list of activated geometry checks.
void readXml(const QDomNode &node)
Read the geometry options from node.
bool removeDuplicateNodes(double epsilon=4 *std::numeric_limits< double >::epsilon(), bool useZValues=false)
Removes duplicate nodes from the geometry, wherever removing the nodes does not result in a degenerat...
double geometryPrecision() const
The precision in which geometries on this layer should be saved.
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:106
void removeDuplicateNodesChanged()
Automatically remove duplicate nodes on all geometries which are edited on this layer.
QStringList geometryChecks() const
A list of activated geometry checks.
static QVariant readVariant(const QDomElement &element)
Read a QVariant from a QDomElement.
void setGeometryPrecision(double value)
The precision in which geometries on this layer should be saved.
bool removeDuplicateNodes() const
Automatically remove duplicate nodes on all geometries which are edited on this layer.
void setRemoveDuplicateNodes(bool value)
Automatically remove duplicate nodes on all geometries which are edited on this layer.
bool isActive() const
Determines if at least one fix is enabled.
void apply(QgsGeometry &geometry) const
Apply any fixes configured on this class to geometry.
void writeXml(QDomNode &node) const
Write the geometry options to the node.
QVariantMap checkConfiguration(const QString &checkId) const
Access the configuration for the check checkId.
QgsGeometry snappedToGrid(double hSpacing, double vSpacing, double dSpacing=0, double mSpacing=0) const
Returns a new geometry with all points or vertices snapped to the closest point of the grid...
void checkConfigurationChanged()
Access the configuration for the check checkId.
void geometryPrecisionChanged()
The precision in which geometries on this layer should be saved.
void setCheckConfiguration(const QString &checkId, const QVariantMap &checkConfiguration)
Set the configuration for the check checkId.
void geometryChecksChanged()
A list of activated geometry checks.
static QDomElement writeVariant(const QVariant &value, QDomDocument &doc)
Write a QVariant to a QDomElement.