@@ -33,21 +33,45 @@ class QString;
33
33
class QgsConfigParserUtils
34
34
{
35
35
public:
36
+
37
+ /* *
38
+ * Appends a CRS XML element in the layer document.
39
+ */
36
40
static void appendCrsElementsToLayer ( QDomElement &layerElement, QDomDocument &doc, const QStringList &crsList,
37
41
const QStringList &constrainedCrsList );
42
+
43
+ /* *
44
+ * Appends a CRS XML element in the layer document.
45
+ */
38
46
static void appendCrsElementToLayer ( QDomElement &layerElement, const QDomElement &precedingElement,
39
47
const QString &crsText, QDomDocument &doc );
48
+
49
+ /* *
50
+ * Appends a BBOX XML element in the layer document.
51
+ */
40
52
static void appendLayerBoundingBoxes ( QDomElement &layerElem, QDomDocument &doc, const QgsRectangle &layerExtent,
41
53
const QgsCoordinateReferenceSystem &layerCRS, const QStringList &crsList,
42
54
const QStringList &constrainedCrsList );
55
+
56
+ /* *
57
+ * Appends a BBOX XML element in the layer document.
58
+ */
43
59
static void appendLayerBoundingBox ( QDomElement &layerElem, QDomDocument &doc, const QgsRectangle &layerExtent,
44
60
const QgsCoordinateReferenceSystem &layerCRS, const QString &crsText );
45
- // ! Returns a list of supported EPSG coordinate system numbers from a layer
61
+
62
+ /* *
63
+ * Returns a list of supported EPSG coordinate system numbers from a layer
64
+ */
46
65
static QStringList createCrsListForLayer ( QgsMapLayer *mapLayer );
47
66
48
- // ! Returns default service capabilities from wms_metadata.xml if nothing else is defined
67
+ /* *
68
+ * Returns default service capabilities from wms_metadata.xml if nothing else is defined
69
+ */
49
70
static void fallbackServiceCapabilities ( QDomElement &parentElement, QDomDocument &doc );
50
71
72
+ /* *
73
+ * Returns a list of layer from a map of layer.
74
+ */
51
75
static QList<QgsMapLayer *> layerMapToList ( const QMap< int , QgsMapLayer * > &layerMap, bool reverseOrder = false );
52
76
};
53
77
0 commit comments