QGIS API Documentation  3.0.2-Girona (307d082)
qgsxmlutils.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsxmlutils.h
3  ---------------------
4  begin : December 2013
5  copyright : (C) 2013 by Martin Dobias
6  email : wonder dot sk at gmail dot com
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 #ifndef QGSXMLUTILS_H
16 #define QGSXMLUTILS_H
17 
18 class QDomDocument;
19 class QDomElement;
20 
21 class QgsRectangle;
22 
23 #include "qgis_core.h"
24 #include "qgis.h"
25 #include "qgsunittypes.h"
26 
31 class CORE_EXPORT QgsXmlUtils
32 {
33  public:
34 
35  /* reading */
36 
43  static QgsUnitTypes::DistanceUnit readMapUnits( const QDomElement &element );
44 
45  static QgsRectangle readRectangle( const QDomElement &element );
46 
47  /* writing */
48 
56  static QDomElement writeMapUnits( QgsUnitTypes::DistanceUnit units, QDomDocument &doc );
57 
58  static QDomElement writeRectangle( const QgsRectangle &rect, QDomDocument &doc );
59 
71  static QDomElement writeVariant( const QVariant &value, QDomDocument &doc );
72 
76  static QVariant readVariant( const QDomElement &element );
77 };
78 
79 
80 #endif // QGSXMLUTILS_H
A rectangle specified with double values.
Definition: qgsrectangle.h:39
Assorted helper methods for reading and writing chunks of XML.
Definition: qgsxmlutils.h:31
DistanceUnit
Units of distance.
Definition: qgsunittypes.h:43